@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1200px;
  --u-content-width: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 1000px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white:#fff;
  --color-grey:#aaa;
  --color-text:#333;
  --color-main:#111;
  --color-sub:#184416;
  --color-primary:#014FA2;
  --color-accent:#FF9D2C;
  --color-entry:#FF9800;
  --color-bg-lightblue:#E6F2FF;
  --color-bg-grey:#F5F5F5;
  --color-dark:#033c5e;
  --color-light:#2186bf;
  --font-main:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴシック", "メイリオ", sans-serif;
  --font-en:"Montserrat", sans-serif;
  --font-tel:"Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 32px;
    --content-negative-space: -32px;
    --content-width: 100%;
    --u-content-width:calc(100% - var(--content-space));
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  min-width: 1200px;
}

a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
li {
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

.sp {
  display: none !important;
}

.no-mt {
  margin-top: 0 !important;
}

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.l-header.is-hidden {
  -webkit-transform: translateY(-72px);
          transform: translateY(-72px);
}

.l-header__head {
  position: relative;
  z-index: 10;
}

.l-header__head.pc {
  position: absolute;
  left: 0;
  top: 0;
  width: 240px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(5px);
  border-radius: 0 0 20px 0;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.l-header.is-hidden .l-header__head.pc {
  opacity: 0;
  pointer-events: none;
}

.l-header__head.pc .l-header__logo-link {
  display: block;
}

.l-header__head.pc .l-header__logo-link,
.l-header__logo-sp h1,
.l-header__logo-sp .site-logo {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

.l-header__head.pc .l-header__logo-link a {
  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;
  width: 100%;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  gap: 24px;
}

.l-header__logo-main img {
  width: 180px;
  height: auto;
  display: block;
}

.l-header__logo-sub {
  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: 24px;
}

.l-header__logo-sub img:first-child {
  width: 132px;
  height: auto;
  display: block;
}

.l-header__logo-sub img:last-child {
  width: 173px;
  height: auto;
  display: block;
}

.l-header__body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-white);
}

/* PC top bar (電話 + ボタン) */
.hdr-top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 72px;
  border-bottom: 1px solid #dbdbdb;
}

.hdr-tel-wrap {
  position: relative;
  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;
  margin-right: 24px;
  gap: 1px;
}

.hdr-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
}

.hdr-tel img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hdr-tel a {
  font-family: var(--font-tel);
  font-weight: 500;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
}

.hdr-time {
  font-weight: 400;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

.hdr-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: pre-line;
}

.hdr-btn--contact {
  background: var(--color-primary);
  color: var(--color-white);
  width: 144px;
  height: 72px;
}

.hdr-btn--recruit {
  background: var(--color-accent);
  color: var(--color-white);
  width: 220px;
  height: 72px;
  font-size: 20px;
  font-size: 2rem;
}

.hdr-btn img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* PC nav bar (ナビゲーション) */
.c-nav {
  height: 39px;
  background: var(--color-white);
}

.c-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 940px;
  margin-inline: auto;
  list-style: none;
  padding: 0;
}

.c-nav-list > li {
  position: relative;
}

.c-nav-list__item--has-sub:hover .c-nav-list__sub {
  display: block;
}

.c-nav-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 4px 16px;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-text);
  text-decoration: none;
}

.c-nav-list__arrow {
  width: 10px;
  height: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* PC サブメニュー */
.c-nav-list__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 10;
}

.c-nav-list__sub-item {
  margin: 0;
}

.c-nav-list__sub-link {
  display: block;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.c-nav-list__sub-link:hover {
  background-color: #f5f5f5;
}

/* SP elements (PC時は非表示) */
.sp-tel {
  display: none;
}

.l-header__logo-sp {
  display: none;
}

.openbtn {
  display: none;
}

/* SP hamburger menu */
.mm-menu {
  position: fixed;
  width: 100%;
  height: calc(100% - 64px);
  background-color: var(--color-white);
  z-index: 100000;
  top: 64px;
  right: -100%;
  -webkit-transition: right 0.3s ease-in-out, visibility 0s 0.3s;
  transition: right 0.3s ease-in-out, visibility 0s 0.3s;
  visibility: hidden;
  overflow-y: auto;
}

.mm-menu.active {
  right: 0;
  visibility: visible;
  -webkit-transition: right 0.3s ease-in-out, visibility 0s 0s;
  transition: right 0.3s ease-in-out, visibility 0s 0s;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  pointer-events: none;
}

.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

/* SP menu list */
.sp-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-menu-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 64px;
  padding: 0 20px 0 30px;
  border-bottom: 1px solid #f0f0f0;
}

.sp-menu-list__item a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text);
  text-decoration: none;
  padding: 18px 0;
}

.sp-menu-list__arrow {
  width: 14px;
  height: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-menu-list__item--has-child {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sp-menu-list__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 64px;
  margin: 0 -10px 0 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-menu-list__toggle .sp-menu-list__arrow {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.sp-menu-list__toggle.active .sp-menu-list__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sp-menu-list__sub {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0 20px 20px 40px;
  list-style: none;
}

.sp-menu-list__sub li {
  margin: 0;
}

.sp-menu-list__sub a {
  display: block;
  padding: 10px 0;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-text);
  text-decoration: none;
}

/* SP menu contact */
.sp-menu-contact {
  padding: 40px 16px;
  text-align: center;
}

.sp-menu-contact__tel {
  margin-bottom: 24px;
}

.sp-menu-contact__tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
}

.sp-menu-contact__tel-number a {
  font-family: var(--font-tel);
  font-weight: 500;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
}

.sp-menu-contact__tel-time {
  margin: 0;
  font-weight: 400;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--color-text);
  text-align: center;
}

.sp-menu-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  height: 69px;
  padding: 0 16px 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  text-decoration: none;
}

.sp-menu-contact__btn-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sp-menu-contact__btn-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-menu-contact__btn-arrow img {
  width: 10px;
  height: auto;
}

/* SP menu footer */
.sp-menu-footer {
  padding: 0 16px 40px;
  text-align: center;
}

.sp-menu-footer__logo {
  margin-bottom: 16px;
}

.sp-menu-footer__logo img {
  width: 160px;
  height: auto;
  display: inline-block;
}

.sp-menu-footer__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.sp-menu-footer__sub img:first-child {
  width: 106px;
  height: auto;
}

.sp-menu-footer__sub img:last-child {
  width: 140px;
  height: auto;
}

/* page_top */
#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 64px;
  height: 128px;
  z-index: 9998;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

#page_top a {
  display: block;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#page_top a:hover {
  opacity: 0.9;
}

#page_top a img {
  display: block;
  width: 64px;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1400px) {
  .l-header__logo-sub {
    display: none;
  }
}
/* ========================================
   SP (max-width: 767px)
   ======================================== */
@media screen and (max-width: 767px) {
  .l-header__head.pc {
    display: none;
  }
  .l-header__body {
    min-height: 64px;
    border-bottom: 1px solid #dbdbdb;
    padding: 0 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .hdr-top-bar {
    display: none;
  }
  .c-nav {
    display: none;
  }
  .l-header__logo-sp {
    display: block;
    padding: 0;
  }
  .l-header__logo-sp a {
    display: block;
  }
  .l-header__logo-sp img {
    width: 142px;
    height: auto;
    display: block;
  }
  .openbtn {
    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;
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100001;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .openbtn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin-bottom: 6px;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }
  .openbtn span:last-child {
    margin-bottom: 0;
  }
  .sp-menu-contact__tel-number a {
    font-size: 27px;
    font-size: 2.7rem;
  }
  .sp-menu-contact__tel-time {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .sp-menu-contact__btn {
    font-size: 18px;
    font-size: 1.8rem;
    height: 69px;
  }
}
/* ========================================
   Hover effects (hover対応端末のみ)
   ======================================== */
@media (hover: hover) {
  .c-nav-list__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .c-nav-list__link:hover {
    color: var(--color-primary);
  }
  .hdr-btn {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .hdr-btn:hover {
    opacity: 0.8;
  }
}
.fix-side {
  position: fixed;
  z-index: 99999;
  bottom: 0;
}

.fix-side__contact {
  display: block;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fix-side__recruit {
  display: block;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .fix-side__contact:hover,
  .fix-side__recruit:hover {
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .fix-side {
    display: none;
    width: 64px;
    right: -300px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-transition: 0.3s right;
    transition: 0.3s right;
  }
  .fix-side.active {
    right: 0;
  }
  .fix-side__contact img {
    display: block;
    width: 64px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .fix-side__recruit img {
    display: block;
    width: 64px;
    height: 128px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .fix-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    left: 0;
    bottom: -300px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-transition: 0.3s bottom;
    transition: 0.3s bottom;
  }
  .fix-side.active {
    bottom: 0;
  }
  .fix-side__contact,
  .fix-side__recruit {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .fix-side__contact img,
  .fix-side__recruit img {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* footer */
.l-footer {
  border-top: 1px solid #dbdbdb;
  padding: 0px 0 0;
  background: var(--color-white);
}

.l-footer .inner {
  width: 100%;
  min-width: var(--u-content-width);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  padding: 32px 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}

.l-footer .copyright {
  padding: 32px 16px;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-text);
}

.ftr-data {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ftr-data .ftr-logo {
  display: block;
}

.ftr-data .ftr-logo img {
  width: 220px;
  height: auto;
  display: block;
}

.ftr-data .addr {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-text);
}

.ftr-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.ftr-link nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}

.ftr-link__col {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ftr-link__head {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text);
}

.ftr-link__head--second {
  margin-top: 40px;
}

.ftr-link__col--last {
  margin-top: 40px;
}

.ftr-link__col li {
  list-style: none;
}

.ftr-link__col a {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-text);
  text-decoration: none;
}

.ftr-link__col a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (hover: hover) {
  .ftr-link__col a:hover {
    color: var(--color-primary);
  }
}
.ftr-bnr {
  margin-top: 40px;
}

.ftr-bnr a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  min-width: 280px;
  height: 72px;
  padding: 0 24px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.ftr-bnr a:hover {
  opacity: 0.9;
}

.ftr-fix {
  display: none;
}

#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 64px;
  height: 128px;
  z-index: 9998;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

#page_top a {
  display: block;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#page_top a:hover {
  opacity: 0.9;
}

#page_top a img {
  display: block;
  width: 64px;
  height: 128px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 48px 0 20vw;
  }
  .l-footer .inner {
    width: 100%;
    min-width: auto;
    padding: 0 16px;
    margin-inline: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .l-footer .copyright {
    padding: 16px 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .ftr-data {
    width: 100%;
  }
  .ftr-data .ftr-logo img {
    width: 220px;
  }
  .ftr-data .addr {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ftr-link {
    width: 100%;
    display: none;
  }
  .ftr-link nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .ftr-link__col {
    min-width: 0;
  }
  .ftr-link__head {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .ftr-link__col a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ftr-fix {
    width: 100%;
    position: fixed;
    bottom: -200px;
    left: 0;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: bottom 0.3s;
    transition: bottom 0.3s;
  }
  .ftr-fix.active {
    bottom: 0;
  }
  .ftr-fix a {
    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: 8px;
    width: 50%;
    height: 56px;
    background: var(--color-primary);
    font-weight: 700;
    font-size: 16px;
    font-size: 1.6rem;
    color: var(--color-white);
    text-decoration: none;
  }
  .ftr-fix a:last-child {
    background: var(--color-accent);
  }
  .ftr-fix a:nth-of-type(1) {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
  }
  .ftr-fix img {
    width: 24px;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .ftr-link__col--last {
    margin-top: 0;
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  width: var(--u-content-width);
  margin: 111px auto 0;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ol.breadcrumbs li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 10px;
  padding: 0 5px;
}
ol.breadcrumbs li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-primary);
  line-height: 1.6;
  white-space: nowrap;
}
ol.breadcrumbs li span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.6;
  white-space: nowrap;
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}
ol.breadcrumbs li:nth-last-of-type(1) span {
  white-space: normal;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    width: var(--u-content-width);
    margin: 64px auto 0;
    padding: 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li a {
    font-size: 12px;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  ol.breadcrumbs li span {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    white-space: nowrap;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
  ol.breadcrumbs li:nth-last-of-type(1) span {
    white-space: normal;
  }
}
/* ハンバーガーメニュー アニメーション */
/* activeクラスが付与されると線が回転して×に */
.openbtn.active span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
          transform: translateY(4px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  display: none;
}

.openbtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-4px) rotate(45deg);
          transform: translateY(-4px) rotate(45deg);
}

/* SP メニュー — スタイルは _header.scss に統合済み */
/* このファイルは互換性のために残す */
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

/* CTAはトップページでは pages/_top.scss の .cta に集約済み。他ページ用の共通CTAが必要な場合はここに追加。 */
.c-heading-lv2 + *,
.c-heading-lv3 + *,
.c-heading-lv4 + *,
.c-heading-lv5 + *,
.c-heading-lv6 + *,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}

.c-heading-lv2,
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 120px 0 24px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  color: var(--color-text);
  padding: 0 0 10px;
  border-bottom: 4px solid var(--color-primary);
}

.c-heading-lv3,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 72px 0 20px;
  font-size: 24px;
  font-size: 2.4rem;
  background-color: #f4f4f4;
  border-left: 4px solid var(--color-primary);
  line-height: 1.5;
  padding: 10px 20px;
}

.c-heading-lv4,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 64px 0 16px;
  font-size: 20px;
  font-size: 2rem;
  border-bottom: 2px solid #eaeaea;
  line-height: 1.5;
  padding: 0 0 16px;
}

.c-heading-lv5,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 16px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 700;
}

.c-heading-lv6,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-heading-lv2,
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 22px;
    font-size: 2.2rem;
    border-bottom: 2px solid var(--color-primary);
    margin: 60px 0 16px;
    padding-bottom: 7px;
  }
  .c-heading-lv3,
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    font-size: 20px;
    font-size: 2rem;
    padding: 5px 12px 5px 18px;
    border-left: 2px solid var(--color-primary);
  }
  .c-heading-lv4,
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
  }
  .c-heading-lv5,
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 32px 0 16px;
  }
  .c-heading-lv6,
  :where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
    margin: 20px 0 16px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.c-paragraph,
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}

.c-lead {
  margin-top: 1.2em;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c-paragraph,
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
  .c-lead.c-lead--sp-left {
    text-align: left;
  }
}
.c-unordered-list,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
  padding: 0;
  margin: 40px 0 0;
}
.c-unordered-list li,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  text-indent: -1.3em;
  margin-left: 1.3em;
  margin-bottom: 10px;
  line-height: 1.8;
}
.c-unordered-list li:before,
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li:before {
  content: "⚫︎";
  font-size: 10px;
  color: var(--color-primary);
  margin-right: 5px;
  padding: 0 3px;
  position: relative;
  top: -2px;
}

.c-order-list,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin: 40px 0 0;
  padding: 0;
}
.c-order-list li,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  text-indent: -1.6em;
  margin-left: 1.6em;
  margin-bottom: 8px;
  line-height: 1.8;
}
.c-order-list li a,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
.c-order-list li a:hover,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
.c-order-list li:before,
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-primary);
  font-weight: bold;
  line-height: 1.5;
}

dt,
dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-unordered-list,
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 32px;
  }
  .c-order-list,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 32px;
  }
  .c-order-list li,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
    margin-bottom: 8px;
    text-indent: -1.2em;
    margin-left: 1.2em;
  }
  .c-order-list li a,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  .c-order-list li a:hover,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
  .c-order-list li:before,
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: var(--color-main);
    padding-left: 0;
    margin-right: 1px;
    font-weight: bold;
  }
}
.c-for-list,
.wp-block-button:where(:not(.is-reset-wp-block)) {
  text-align: center;
  margin: 30px auto 0;
}
.c-for-list a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
  font-size: 20px;
  font-size: 2rem;
  padding: 10px 67px 10px 0;
  margin-top: 40px;
  text-decoration: none;
  line-height: 1;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid var(--color-primary);
  background-color: transparent;
  border-radius: 0;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.c-for-list a::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  content: url(../img/page/icon-arrow-right.png);
  right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-37%);
          transform: translateY(-37%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.c-for-list a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  color: var(--color-main);
  font-weight: bold;
}
.c-for-list a:hover::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover::after {
  right: 10px;
}

.c-for-list a {
  margin: 40px auto 0;
}

:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .wp-block-button:where(:not(.is-reset-wp-block)) {
    text-align: center;
    margin: 60px auto 64px;
    display: block !important;
  }
  .c-for-list a,
  .wp-block-button:where(:not(.is-reset-wp-block)) a {
    position: relative;
    display: block;
    width: 80%;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 17px 0;
    margin: 0 auto;
  }
  :where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
    margin-top: 30px;
  }
}
.c-blockquote,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px 80px;
  background-color: #F2F2F2;
  position: relative;
}
.c-blockquote cite,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-blockquote::before,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
  content: url(../img/page/icon-blockquote.svg);
  position: absolute;
  top: 16px;
  left: 24px;
}
.c-blockquote::after,
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
  content: url(../img/page/icon-blockquote-end.svg);
  position: absolute;
  bottom: 16px;
  right: 24px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .c-blockquote,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 100%;
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 48px 36px;
    background-color: #F2F2F2;
    position: relative;
  }
  .c-blockquote cite,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .c-blockquote::before,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::before {
    top: 12px;
    left: 12px;
  }
  .c-blockquote::after,
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block))::after {
    bottom: 12px;
    right: 12px;
  }
}
.c-image,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
.c-image img,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
.c-image figcaption,
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 16px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .c-image,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  .c-image img,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  .c-image figcaption,
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 12px 0 0;
    padding: 0;
  }
}
.c-iframe,
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

.u-editor {
  --table-border-color: #C9C9C9;
  --table-bg-color: #E6F2FF;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
.u-editor table {
  margin-top: 40px;
  border-collapse: collapse;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
.u-editor table tr th,
.u-editor table tr td {
  line-height: 1.5;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 16px 40px;
  text-align: left;
  border-color: var(--table-border-color);
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
.u-editor table thead th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
  line-height: 2;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
.u-editor table tbody th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
  line-height: 1.5;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
.u-editor table tbody td {
  border-right: 1px solid var(--table-border-color);
  line-height: 1.5;
}

.wp-block-flexible-table-block-table figcaption {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout:not(.is-stacked-on-mobile) {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  .u-editor table {
    margin-top: 40px;
    border-collapse: collapse;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  .u-editor table tr {
    border-top: transparent;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  .u-editor table tr th,
  .u-editor table tr td {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 16px;
    text-align: left;
    border-color: var(--table-border-color);
    border-top: transparent;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr:nth-of-type(1),
  .u-editor table tr:nth-of-type(1) {
    border-top: 1px solid var(--table-border-color);
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  .u-editor table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
    line-height: 2;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  .u-editor table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
    padding: 16px;
    line-height: 1.5;
  }
  .u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  .u-editor table tbody td {
    border-right: 1px solid var(--table-border-color);
    line-height: 1.5;
    padding: 16px;
  }
}
.wp-block-media-text {
  gap: 36px;
  margin: 80px 0 0;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding: 0 !important;
}

@media screen and (max-width: 767px) {
  .wp-block-media-text {
    gap: 18px;
    margin: 60px 0 0;
  }
}
.wp-block-gallery.has-nested-images.is-layout-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px 0 0;
}

.wp-block-gallery > .wp-block-image {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .wp-block-gallery.has-nested-images.is-layout-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 0;
  }
}
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  margin: 88px auto 0;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  margin: 0;
  padding: 18px 20px;
  line-height: 2;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
}
.wp-pagenavi .pages,
.wp-pagenavi .extend {
  padding: 0;
}
.wp-pagenavi .pages {
  border: none;
}
.wp-pagenavi span.current,
.wp-pagenavi a {
  min-width: 49px;
}
.wp-pagenavi a {
  border: 1px solid var(--color-main);
}
.wp-pagenavi a:hover {
  background-color: var(--color-main);
  color: #fff;
}

.next-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 28px;
  margin: 60px auto 0;
}
.next-prev .prev,
.next-prev .next {
  max-width: 384px;
}
.next-prev .prev a,
.next-prev .next a {
  display: inline-block;
  position: relative;
  line-height: 1.5;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.next-prev .prev a:hover,
.next-prev .next a:hover {
  text-decoration: none;
}
.next-prev .prev a::before,
.next-prev .next a::before {
  position: absolute;
}
.next-prev .prev {
  margin-right: auto;
}
.next-prev .prev a {
  padding-left: 1em;
}
.next-prev .prev a::before {
  content: "«";
  top: 0;
  left: 0;
}
.next-prev .next {
  margin-left: auto;
}
.next-prev .next a {
  padding-right: 1em;
}
.next-prev .next a::before {
  content: "»";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 70px auto 0;
    text-align: center;
  }
  .wp-pagenavi span.current,
  .wp-pagenavi a {
    padding: 10px 7px;
    min-width: 46px;
  }
  .wp-pagenavi .pages {
    width: 100%;
  }
  .next-prev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 42px auto 0;
  }
  .next-prev .prev,
  .next-prev .next {
    max-width: none;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-group__inner-container > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-group__inner-container > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

.wp-block-columns {
  margin-top: 40px;
}

.c-slider .splide__slide,
.c-slider--sp .splide__slide {
  list-style: none;
}
.c-slider .splide__slide::before,
.c-slider--sp .splide__slide::before {
  display: none !important;
}

.c-slider02 .splide__slide {
  height: 590px;
  list-style: none;
}
.c-slider02 .splide__slide::before {
  display: none !important;
}

.c-slider,
.c-slider--sp {
  margin-top: 50px;
}
.c-slider .splide__controls,
.c-slider--sp .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
}
.c-slider .splide__toggle .splide__toggle__play,
.c-slider--sp .splide__toggle .splide__toggle__play {
  background-image: url(../img/common/icon-slider-play01.png);
}
.c-slider .splide__toggle .splide__toggle__pause,
.c-slider--sp .splide__toggle .splide__toggle__pause {
  background-image: url(../img/common/icon-slider-stop01.png);
}
.c-slider .splide__toggle:not(.is-active) .splide__toggle__play,
.c-slider--sp .splide__toggle:not(.is-active) .splide__toggle__play {
  display: block;
}
.c-slider .splide__toggle.is-active .splide__toggle__pause,
.c-slider--sp .splide__toggle.is-active .splide__toggle__pause {
  display: block;
}
.c-slider .splide__pagination button,
.c-slider .splide__toggle,
.c-slider--sp .splide__pagination button,
.c-slider--sp .splide__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.c-slider .splide__pagination,
.c-slider--sp .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  padding: 0;
}
.c-slider .splide__pagination button,
.c-slider--sp .splide__pagination button {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-grey);
  border-radius: 10px;
}
.c-slider .splide__pagination button.is-active,
.c-slider--sp .splide__pagination button.is-active {
  background: var(--color-accent);
}
.c-slider .splide__pagination > li,
.c-slider--sp .splide__pagination > li {
  margin: 0;
  padding: 0;
}
.c-slider .splide__pagination > li::before,
.c-slider--sp .splide__pagination > li::before {
  display: none !important;
}

.c-slider--sp {
  margin-top: 50px;
}

.c-slider02 {
  margin-top: 50px;
}

.c-slider02__main img,
.c-slider02__thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.c-slider02__main {
  position: relative;
}
.c-slider02__main .splide__arrows {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.c-slider02__main .splide__arrow {
  --arrow-space: 26px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 20px;
  text-indent: -9999px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  pointer-events: visible;
}
.c-slider02__main .splide__arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 3px solid #000;
}
.c-slider02__main .splide__arrow--prev {
  left: var(--arrow-space);
}
.c-slider02__main .splide__arrow--prev::before {
  left: 36%;
  border-left: 3px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-slider02__main .splide__arrow--next {
  right: var(--arrow-space);
}
.c-slider02__main .splide__arrow--next::before {
  right: 36%;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-slider__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.c-slider02__thumbnail {
  margin-top: 40px;
}
.c-slider02__thumbnail .splide__slide {
  width: 160px;
  height: 153px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  /* Safari用のハードウェアアクセラレーション */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: opacity;
}
.c-slider02__thumbnail .splide__slide:not(.is-active) {
  opacity: 0.3;
}
.c-slider02__thumbnail .splide__slide.is-active {
  opacity: 1;
}

.c-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 24px;
  margin: 40px 0 0;
  padding: 0;
}
.c-card-wrap > li {
  list-style: none;
  padding: 0;
}
.c-card-wrap > li::before {
  display: none;
}
.c-card-wrap > .c-card {
  margin: 0;
}

.c-card-wrap.c-card-wrap--columns3 {
  grid-template-columns: repeat(3, 1fr);
}

.c-card {
  margin-top: 50px;
}

.c-card__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.c-card__type:hover .c-card__img {
  opacity: 0.6;
}
.c-card__type > :first-child {
  margin-top: 0 !important;
}
.c-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-card__type.c-card__type--horizon {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}

.c-card__img {
  aspect-ratio: 317/220;
  overflow: hidden;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
:where(.c-card__type--horizon) > .c-card__img {
  width: 317px;
}
.c-card__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-card__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.c-card__prop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
:where(.c-card__type--horizon > .c-card__detail) > .c-card__prop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-card__date {
  line-height: 1.5;
  color: var(--color-main);
  font-size: 1.4rem;
}

.c-card__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.c-card__category-wrap > li {
  list-style: none;
}

.c-card__category {
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid var(--color-grey);
}
.c-card__category.c-card__category--tag {
  color: var(--color-white);
  background-color: var(--color-main);
}

.c-card__title {
  line-height: 1.5;
  font-size: 1.6rem;
}

.c-card__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-card__tag-wrap > li {
  list-style: none;
}

.c-card__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
}

.c-simple-posts__item {
  list-style: none;
  background-color: var(--color-white);
  border-bottom: 1px solid #e0e0e0;
}

.c-simple-posts__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  text-decoration: none;
}

.c-simple-posts__prop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
}

.c-simple-posts__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-grey);
}

.c-simple-posts__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.c-simple-posts__category {
  display: inline-block;
  color: var(--color-grey);
  padding: 8px 10px;
  line-height: 1;
  font-size: 1.2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey);
}

.c-simple-posts__tag-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 10px;
  margin: 10px 0 0;
  padding: 0;
}
.c-simple-posts__tag-wrap > li {
  list-style: none;
}

.c-simple-posts__tag {
  color: var(--color-grey);
  font-size: 1.4rem;
}

.c-simple-posts__title {
  margin: 0;
  line-height: 1.6;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 500;
}
.c-simple-posts__item-link:hover .c-simple-posts__title {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .c-slider--sp .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .c-slider--sp .splide__controls {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .c-slider .splide__slide,
  .c-slider02 .splide__slide,
  .c-slider--sp .splide__slide {
    height: 55vw;
  }
  .c-slider--sp .splide__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  .c-slider02__thumbnail {
    margin-top: 10px;
  }
  .c-slider02__thumbnail .splide__slide {
    height: 12vw;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    /* Safari用のハードウェアアクセラレーション */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
  }
  .c-card-wrap,
  .c-card-wrap.c-card-wrap--columns3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  :where(.c-card__type--horizon) > .c-card__img {
    width: 50%;
  }
  .c-card__prop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4px;
  }
  .c-card__category-wrap {
    gap: 4px;
  }
  .c-card__category {
    font-size: 1.4rem;
  }
}
.c-qa-layout {
  padding-bottom: 48px;
}
.c-qa-layout:nth-of-type(1) {
  margin-top: 40px;
}

.c-qa-layout__head,
.c-qa-layout__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-qa-layout__head {
  margin: 0;
  padding: 0;
  background-color: #E6F2FF;
  border: none;
}

.c-qa-layout__body {
  background-color: var(--color-white);
  margin-top: 16px;
}

.c-qa-layout__head__pref {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5em;
  height: 2em;
  text-align: center;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.c-qa-layout__body__pref {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5em;
  height: 2.5em;
  text-align: center;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  top: 9px;
}

.c-qa-layout__head__pref {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: auto;
}

.c-qa-layout__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 16px;
}

.c-qa-layout__detail {
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.c-qa-layout__detail > :first-child {
  margin-top: 0 !important;
}
.c-qa-layout__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin: 50px 0 0;
  padding: 30px;
  background-color: var(--color-grey);
}

.c-box__head > :first-child,
.c-box__detail > :first-child {
  margin-top: 0 !important;
}
.c-box__head > :last-child,
.c-box__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box__title {
  font-size: 2rem;
  font-weight: 700;
}

.wp-element-caption {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .c-box {
    margin: 30px 0 0;
    padding: 16px;
  }
  .c-box__title {
    font-size: 1.8rem;
  }
  .c-qa-layout__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 12px 10px;
  }
  .c-qa-layout__detail {
    padding: 0 10px;
  }
}
.c-flow-list {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin: 50px 0 0;
}
.c-flow-list > li {
  margin: 0;
  padding: 30px 15px;
  text-indent: 0;
}

.c-flow-list__item {
  position: relative;
  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;
  width: 100%;
  text-align: center;
  background-color: var(--color-light-base);
  border: 1px solid var(--color-main);
}
.c-flow-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.3rem;
  margin: 0;
  width: 1rem;
  height: 1.5rem;
  font-size: inherit;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-main);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.c-flow-list__item:first-child::before {
  display: none;
}

.c-flow-list__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-cta-section {
  margin: 60px 0 0;
  padding: 30px;
  background-color: var(--color-grey);
}
.c-cta-section > :first-child {
  margin-top: 0 !important;
}
.c-cta-section > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-section__title {
  margin: 30px auto 15px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0 0;
}

.c-cta-card {
  margin: 0;
  padding: 0;
}

.c-cta-card__type {
  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;
  padding: 15px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 15px;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.c-cta-card__type:hover {
  opacity: 0.7;
}
.c-cta-card__type > :first-child {
  margin-top: 0 !important;
}
.c-cta-card__type > :last-child {
  margin-bottom: 0 !important;
}

.c-cta-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.c-cta-card__heading__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
}

.c-cta-card__heading__title {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: 700;
}

.c-cta-card__heading__title--tel {
  font-size: 4rem;
}

.c-cta-card__text {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.c-cta-card__lead {
  margin-top: 5px;
  line-height: 1.2;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
}

.c-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 75px 0 0;
  padding: 0;
}
.c-sns-list > li {
  list-style: none;
}

.c-sns-list--contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-sns__type {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-flow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    margin-inline: auto;
    padding-right: 20px;
  }
  .c-flow-list > li {
    padding: 15px;
  }
  .c-flow-list__item::before {
    left: calc(100% + 12px);
    width: 10px;
    height: 15px;
  }
  .c-flow-list__item:first-child::before {
    display: block;
  }
  .c-flow-list__item:last-child::before {
    display: none;
  }
  .c-flow-list__text {
    font-size: 1.6rem;
  }
  .c-cta-card-wrap {
    grid-template-columns: 1fr;
  }
  .c-cta-card__type {
    padding: 15px 10px;
    min-height: 100px;
  }
  .c-cta-card__heading__icon {
    width: 30px;
  }
  .c-cta-card__heading__title {
    font-size: 2rem;
  }
  .c-cta-card__heading__title--tel {
    font-size: 3rem;
  }
  .c-cta-card__text {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }
  .c-cta-card__lead {
    font-size: 2.2rem;
  }
}
/*
 * pages
 */
.c-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 0;
  padding: 0;
}
.c-tag-list > li {
  list-style: none;
}

.c-tag {
  font-size: 1.8rem;
}

.c-tag__type {
  text-decoration: none;
}
.c-tag__type:hover {
  text-decoration: underline;
}

.cat-area {
  max-width: var(--content-width);
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cat-area p.date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 26px;
}
.cat-area .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cat-area .cat a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cat-area .cat a:hover {
  background-color: #fff;
  color: #000;
}
.cat-area ul.cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
  padding: 0;
}
.cat-area ul.cat li {
  list-style: none;
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: #fff;
  color: var(--color-main);
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}
.cat-area ul.cat li a:hover {
  background-color: var(--color-main);
  color: #fff;
}
.cat-area ul.cat li span.current {
  display: inline-block;
  padding: 10px 24px;
  font-size: 18px;
  font-size: 1.8rem;
  background-color: var(--color-main);
  color: #fff;
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}

.no-posts {
  margin-top: 60px;
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .cat-area {
    width: 92%;
    margin: 10px auto 0;
    display: block;
  }
  .cat-area p.date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .cat-area .cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 26px;
  }
  .cat-area .cat a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .cat-area .cat a:hover {
    background-color: #fff;
    color: #000;
  }
  .cat-area ul.cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .cat-area ul.cat li a:active {
    background-color: var(--color-main);
    color: #fff;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  .cat-area ul.cat li span.current {
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.single-main {
  text-align: center;
  min-height: 340px;
  background-image: url(../img/page/single-main-bg.jpg);
  background-size: cover;
  padding: 47px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-main .inner {
  width: var(--u-content-width);
  margin: 0 auto;
}
.single-main .inner p.date {
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: left;
}
.single-main .inner .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.single-main .inner .cat a {
  font-size: 1.4rem;
  background-color: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  text-align: left;
  margin-top: 10px;
  border-radius: 20px;
  padding: 2px 14px;
  line-height: 1.6;
  text-decoration: none;
}
.single-main .inner .cat a:hover {
  color: var(--color-accent);
}
.single-main h1 {
  width: var(--u-content-width);
  margin: 0 auto;
  font-size: 36px;
  font-size: 3.6rem;
  color: #fff;
  text-align: left;
  line-height: 1.3;
  margin-top: 10px;
}

.p-works__description {
  font-size: 1.8rem;
}

.p-works-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-point-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-point-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-point__image {
  position: relative;
}

.p-works-point__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 22px;
  left: 35px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-main);
  border-radius: 30px;
}

.p-works-point__description {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 50px 0 0;
}

.p-works-gallery-grid__item > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__item > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__before-after {
  --gap: 36px;
  --gap-half: calc(var(--gap) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  margin: 50px 0 0;
}

.p-works-gallery-grid__ba {
  position: relative;
}
.p-works-gallery-grid__ba > :first-child {
  margin-top: 0 !important;
}
.p-works-gallery-grid__ba > :last-child {
  margin-bottom: 0 !important;
}

.p-works-gallery-grid__ba--before {
  width: calc(30% - var(--gap-half));
}

.p-works-gallery-grid__ba--after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  width: calc(70% - var(--gap-half));
}

.p-works-gallery-grid__ba__badge {
  position: absolute;
  display: inline-block;
  padding: 8px 15px;
  top: 0;
  left: 0;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--color-main);
}

.p-works-gallery-grid__ba__badge--before,
.p-works-gallery-grid__ba__badge--after {
  text-transform: uppercase;
}

.p-works-gallery__image__caption {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 1.4rem;
}

.p-works-about__data {
  --border-color: var(--color-dark);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.p-works-about__data__dl {
  display: grid;
  grid-template-columns: 30% 70%;
  background-color: #fff;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.p-works-about__data__dl__title {
  padding: 10px 15px;
  font-weight: 700;
  background-color: var(--color-grey);
}

.p-works-about__data__dl__detail {
  border-left: 1px solid var(--border-color);
  padding: 10px 15px;
}

.p-vice-mv {
  margin: 100px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .single-main {
    text-align: center;
    min-height: auto;
    text-align: left;
    padding: 32px 4%;
    background-image: url(../img/page/single-main-sp.jpg);
  }
  .single-main h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    font-size: 2.2rem;
    border-bottom: none;
    text-align: left;
    line-height: 1.6;
  }
  .single-main .inner .cat a {
    padding: 0 24px;
    margin-top: 0;
  }
  .p-works-point-grid {
    grid-template-columns: 1fr;
  }
  .p-works-point__badge {
    top: 10px;
    left: 10px;
    font-size: 1.6rem;
  }
  .p-works-gallery-grid__ba__badge {
    font-size: 1.6rem;
  }
  .p-works-about__data {
    grid-template-columns: 1fr;
  }
}
.u-main {
  width: 100%;
  height: 230px;
  margin: 0 auto;
  background-image: url("../img/page/u-main-bg.jpg");
  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;
}
.u-main .h1-wrap {
  text-align: center;
  width: var(--u-content-width);
  margin: 0 auto;
}
.u-main .h1-wrap h1 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-primary);
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

.p-jobs-table {
  width: 100%;
  border: 1px solid var(--table-border-color);
}
.p-jobs-table tr {
  border: 1px solid var(--table-border-color);
}

@media screen and (max-width: 767px) {
  .u-main {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    background-color: #f4f4f4;
    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;
    background-image: url(../img/page/u-main-bg-sp.jpg);
    background-size: cover;
  }
  .u-main .h1-wrap {
    text-align: center;
  }
  .u-main .h1-wrap h1 {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.6;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
  .p-jobs-table th,
  .p-jobs-table td {
    display: block;
    width: 100% !important;
  }
}
/* ベーススタイル ------------------------------------------------------------*/
.page-recruit .u-contents,
.page-interview .u-contents {
  width: 100%;
  max-width: 1280px;
}

.page-recruit .u-contents {
  padding: 148px 40px 120px;
}

.page-interview .u-contents {
  padding: 80px 40px 120px;
}

.page-recruit :where(.u-editor p),
.page-interview :where(.u-editor p) {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}

/* 共通パーツ ------------------------------------------------------------*/
.text-gradient {
  background: -webkit-gradient(linear, left top, right top, from(#019AA2), to(#076EDB));
  background: linear-gradient(90deg, #019AA2 0%, #076EDB 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

/* セクションタイトル */
.c-section-title {
  margin-bottom: 60px;
}
.c-section-title__en {
  font-size: 27px;
  font-size: 2.7rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-primary);
}
.c-section-title__jp {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-top: 20px;
}
.c-section-title--white .c-section-title__en {
  color: var(--color-white);
}
.c-section-title--white .c-section-title__jp {
  color: var(--color-white);
}

/* 四角ボタンベーススタイル */
.c-button-square a {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  min-width: 420px;
  padding: 18px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 0;
}
.c-button-square a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center center;
}
.c-button-square a:hover {
  opacity: 0.7;
}
.c-button-square a:hover::after {
  right: 18px !important;
}

/* 四角ボタンホワイト */
.c-button-square--white a {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  background-color: var(--color-white);
}
.c-button-square--white a::after {
  background-image: url(../img/common/icon-circle-arrow-white.svg);
}
.c-button-square--white a:hover {
  color: var(--color-primary);
}

/* 四角ボタンオレンジ */
.c-button-square--orange a {
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  background-color: var(--color-accent);
}
.c-button-square--orange a::after {
  background-image: url(../img/common/icon-circle-arrow-orange.svg);
}
.c-button-square--orange a:hover {
  color: var(--color-white) !important;
}

/* 下線ボタン */
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  color: var(--color-primary);
  opacity: 0.7;
}
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover::after {
  right: 0;
}

/* 採用情報ページ ------------------------------------------------------------*/
.p-recruit-intro__catch {
  font-size: 56px;
  font-size: 5.6rem;
  line-height: 1.6;
  -webkit-transform: skewX(-9deg);
          transform: skewX(-9deg);
}
.p-recruit-intro__content {
  position: relative;
  margin-top: 80px;
  z-index: 0;
}
.p-recruit-intro__content::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 80px;
  width: 480px;
  height: 627px;
  background: url(../img/page/kyushu.svg) no-repeat center center/contain;
  z-index: -1;
}
.p-recruit-intro__media {
  gap: 74px;
}
.p-recruit-intro__media-title {
  font-size: 44px;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-recruit-intro__media-text {
  margin-top: 24px;
}
.p-recruit-intro__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.p-recruit-intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-recruit-intro__item p {
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 15px;
}
.p-recruit-intro__item p .text-accent {
  font-size: 1.33em;
}
.p-recruit-intro__item p .number {
  font-size: 1.75em;
  font-family: var(--font-en);
}
.p-recruit-intro__item--01 {
  background-image: url(../img/page/recruit-intro01.png);
}
.p-recruit-intro__item--02 {
  background-image: url(../img/page/recruit-intro02.png);
}
.p-recruit-intro__item--02 p {
  line-height: 1.3;
}
.p-recruit-intro__item--03 {
  background-image: url(../img/page/recruit-intro03.png);
}
.p-recruit-intro__item--03 .text-accent {
  line-height: 1;
}
.p-recruit-intro__item--04 {
  background-image: url(../img/page/recruit-intro04.png);
}
.p-recruit-intro__item--04 p {
  line-height: 1.4;
}
.p-recruit-intro__item--04 p .text-accent {
  font-size: 1.55em;
}
.p-recruit-intro__item--05 {
  background-image: url(../img/page/recruit-intro05.png);
}
.p-recruit-intro__item--05 .text-accent {
  line-height: 1.2;
}

.p-strength {
  padding: 140px 0 164px;
}

.p-strength__title {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  color: var(--color-text);
}

.p-strength-cards {
  gap: 40px;
  margin-top: 60px;
}

.p-strength-card {
  -webkit-box-shadow: inset 0 0 0 1px #DAECFF, 0 0 14px rgba(0, 0, 0, 0.12);
          box-shadow: inset 0 0 0 1px #DAECFF, 0 0 14px rgba(0, 0, 0, 0.12);
}
.p-strength-card__title {
  grid-template-columns: auto 1fr !important;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-primary);
  padding: 20px 18px;
}
.p-strength-card__title-meta {
  font-size: 20px;
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-align: center;
  padding-right: 20px;
  border-right: 1px solid var(--color-white);
}
.p-strength-card__title-num {
  font-size: 36px;
  font-size: 3.6rem;
  font-family: var(--font-en);
  color: var(--color-white);
}
.p-strength-card__title-text {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.4;
  color: var(--color-white);
  padding-left: 20px;
}
.p-strength-card__body {
  padding: 16px 16px 20px;
}
.p-strength-card img {
  width: 100%;
}
.p-strength-card__detail {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 30px;
}
.p-strength-card__detail:not(:first-child) {
  margin-top: 10px;
}
.p-strength-card__detail::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 16px;
  height: 12px;
  background: url(../img/page/icon-check.svg) no-repeat center center/contain;
}

.p-strength__button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.p-message {
  position: relative;
  padding: 100px 0;
}
.p-message::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -50vw;
  right: -50vw;
  background-image: url(../img/page/recruit-message-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.p-message__item {
  gap: 48px;
}
.p-message__item--02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 73px 0 0;
}
.p-message__item-title {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
}
.p-message__item-text {
  color: var(--color-white);
}

.p-recruit-work {
  padding: 120px 0;
}
.p-recruit-work__button {
  margin-top: 80px !important;
}

.p-recruit-work-loop {
  overflow: hidden;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  margin-top: 60px;
}

.p-recruit-work-loop__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: work-loop 60s linear infinite;
          animation: work-loop 60s linear infinite;
}

.p-recruit-work-loop__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.p-recruit-work-loop__item img {
  width: 2070px;
}

@-webkit-keyframes work-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes work-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-recruit-numbers {
  position: relative;
  padding: 100px 0;
}
.p-recruit-numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -50vw;
  right: -50vw;
  background-color: var(--color-bg-lightblue);
  z-index: -1;
}

.p-recruit-numbers__img-pc {
  gap: 30px;
  width: 1000px;
  margin: 40px auto 0;
}

.p-recruit-numbers__img-pc02 {
  margin-top: 30px;
}

.p-recruit-numbers__button {
  margin-top: 40px !important;
}

.p-recruit-benefits {
  padding: 120px 0 186px;
}
.p-recruit-benefits__content {
  gap: 68px;
}
.p-recruit-benefits__content-text p:nth-child(2) {
  margin-top: 30px;
}
.p-recruit-benefits__content-button a {
  margin-top: 20px;
}
.p-recruit-benefits__buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  margin: 70px 0 0 !important;
}
.p-recruit-benefits__button {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
  -ms-flex-preferred-size: 460px !important;
      flex-basis: 460px !important;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
.p-recruit-benefits__button:hover {
  opacity: 0.7;
}

/* 現在募集中の職種 */
.p-recruit-jobs {
  padding: 60px 0;
  background-image: url(../img/page/recruit-jobs-bg-pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-recruit-jobs__title {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 60px;
  border: none;
  text-align: center;
}
.p-recruit-jobs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  list-style: none;
  padding: 0 40px;
}
.p-recruit-jobs__item {
  position: relative;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-recruit-jobs__item:after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 26px;
  aspect-ratio: 1;
  background-image: url(../img/common/icon-circle-arrow-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-recruit-jobs__item a {
  display: block;
  padding: 16px 16px 17px;
  text-decoration: none;
}
.p-recruit-jobs__item-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}
.p-recruit-jobs__item-category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.p-recruit-jobs__item-category {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 20px;
  padding: 2px 14px;
  text-align: center;
  border: 1px solid var(--color-primary);
}
.p-recruit-jobs__item-category--01 {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.p-recruit-jobs__item-category--02 {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.p-recruit-jobs__item:hover {
  opacity: 0.8;
}
.p-recruit-jobs__area {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #9B9B9B;
  margin-top: 12px;
  padding-left: 1.5em;
  margin-top: 12px;
}
.p-recruit-jobs__area::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-49%);
          transform: translateY(-49%);
  left: 0;
  width: 1.3em;
  aspect-ratio: 12.5/16.25;
  background: url(../img/common/icon-pin.svg) no-repeat center center/contain;
}
.p-recruit-jobs__button {
  text-align: center;
  margin-top: 60px;
}

/* 仕事紹介・社員インタビューページ ------------------------------------------------------------*/
/* 仕事紹介セクション */
.p-work h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
}
.p-work__lead {
  margin-top: 50px;
}
.p-work__catch {
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  -webkit-transform: skewX(-9deg);
          transform: skewX(-9deg);
  margin-top: 90px;
}
.p-work__content {
  gap: 64px;
  margin: 60px 0 0;
}

.p-work-point__wrap {
  gap: 20px;
  margin-top: 25px;
}
.p-work-point__item {
  gap: 20px;
}
.p-work-point__image {
  -ms-flex-preferred-size: 80px !important;
      flex-basis: 80px !important;
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
  aspect-ratio: 1;
}
.p-work-point__body {
  padding-top: 5px;
}
.p-work-point__title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
}
.p-work-point__text {
  margin-top: 6px;
}

.p-work-fit {
  position: relative;
  padding: 40px 0 80px;
  margin-top: 80px;
  background-color: var(--color-bg-lightblue);
}
.p-work-fit::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 49px;
  width: 385px;
  height: 220px;
  background-image: url(../img/page/interview-persons-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-work-fit h3 {
  color: var(--color-primary);
}
.p-work-fit__wrap {
  gap: 20px;
  max-width: 1000px;
  margin: 32px auto 0;
}
.p-work-fit__item {
  position: relative;
  width: 100%;
  padding: 16px 21px 16px;
  background-color: #fff;
}
.p-work-fit__title {
  position: relative;
  font-size: 22px;
  font-size: 2.2rem;
  color: var(--color-primary);
  font-weight: 700;
  padding-left: 32px;
}
.p-work-fit__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  aspect-ratio: 1;
  background-image: url(../img/common/icon-circle-check.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.p-work-fit__text {
  padding-left: 32px;
  margin-top: 4px;
}

/* 社員インタビューセクション */
.p-interview {
  padding: 180px 0 120px;
}

.p-interview-anchor {
  gap: 32px;
}
.p-interview-anchor__item {
  position: relative;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
.p-interview-anchor__item a {
  position: absolute;
  inset: 0;
}
.p-interview-anchor__item img {
  width: 100%;
}
.p-interview-anchor__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 47px;
  aspect-ratio: 1;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  background-color: var(--color-primary);
}
.p-interview-anchor__item::after {
  content: "";
  position: absolute;
  bottom: 8.45px;
  right: 8.45px;
  width: 11px;
  aspect-ratio: 1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url(../img/common/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.p-interview-anchor__item > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.p-interview-anchor__item-body {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  background-color: var(--color-white);
}
.p-interview-anchor__item-body > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  height: 100%;
}
.p-interview-anchor__item-job {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-interview-anchor__item-location {
  font-size: 16px;
  font-size: 1.6rem;
  color: #9B9B9B;
  margin-top: auto;
}

.p-interview-hr {
  margin: 100px 0;
}

.p-interview-item {
  margin-top: 160px;
}
.p-interview-item__header {
  gap: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-interview-item__header-info {
  position: relative;
  -ms-flex-preferred-size: 400px !important;
      flex-basis: 400px !important;
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: var(--color-primary);
  padding: 16px 20px 24px;
  margin: 188px -80px 0 0 !important;
  z-index: 1;
}
.p-interview-item__header-info p {
  color: var(--color-white);
}
.p-interview-item__header-info-job {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  margin-top: 6px;
}
.p-interview-item__header-info-location {
  margin-top: 6px;
}
.p-interview-item__header-info-date {
  padding-top: 10px;
  margin-top: 17px;
  border-top: 1px solid var(--color-white);
}
.p-interview-item__header-image {
  -ms-flex-preferred-size: 840px !important;
      flex-basis: 840px !important;
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}
.p-interview-item h4 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
}
.p-interview-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 48px;
}
.p-interview-item__content p {
  margin-top: 20px;
}
.p-interview-item__content-image {
  -ms-flex-preferred-size: 491px !important;
      flex-basis: 491px !important;
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}
.p-interview-item__content-image img {
  width: 100%;
}
.p-interview-item__message {
  position: relative;
  padding: 41px 22px 40px;
  border: 2px solid #014FA2;
}
.p-interview-item__message h4 {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  padding: 0 20px;
  margin-top: -50px;
  background-color: var(--color-white);
}
.p-interview-item__message p {
  margin-top: 0;
}

.p-interview-item--01 {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  /* ベーススタイル ---------------------------*/
  .page-recruit .u-contents,
  .page-interview .u-contents {
    padding: 60px 16px 80px;
  }
  .page-recruit :where(.u-editor p),
  .page-interview :where(.u-editor p) {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .page-recruit :where(.u-editor img),
  .page-interview :where(.u-editor img) {
    margin-inline: auto;
  }
  /* 共通パーツ --------------------------*/
  /* セクションタイトル */
  .c-section-title {
    margin-bottom: 40px;
  }
  .c-section-title__en {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--color-primary);
  }
  .c-section-title__jp {
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 10px;
  }
  .c-button-square {
    width: 100%;
  }
  .c-button-square a {
    width: 318px !important;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    padding: 12px 24px;
  }
  /* 採用情報ページ --------------------------*/
  .p-recruit-intro__catch {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .p-recruit-intro__content {
    margin-top: 60px;
  }
  .p-recruit-intro__content::before {
    top: -88px;
    width: 405px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-recruit-intro__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 42px;
  }
  .p-recruit-intro__media-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-recruit-intro__media-text {
    margin-top: 24px;
  }
  .p-recruit-intro__item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 calc((100% - 22px) / 3) !important;
            flex: 0 0 calc((100% - 22px) / 3) !important;
  }
  .p-recruit-intro__item p {
    font-size: clamp(11px, 2vw + 2.7px, 18px);
  }
  .p-recruit-intro__item p .text-accent {
    font-size: 1.18em;
  }
  .p-recruit-intro__item p .number {
    font-size: 2.09em;
  }
  .p-recruit-intro__item--04 p .text-accent {
    font-size: 1.36em;
  }
  .p-recruit-intro__list.wp-block-columns.is-not-stacked-on-mobile {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 11px;
    margin-top: 20px;
  }
  .p-strength {
    padding: 80px 0;
  }
  .p-strength__title {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .p-strength__lead {
    text-align: left !important;
  }
  .p-strength-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 26px;
  }
  .p-strength-card__title {
    padding: 16px 20px 13px;
  }
  .p-strength-card__title-meta {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-strength-card__title-num {
    font-size: 34px;
    font-size: 3.4rem;
  }
  .p-strength-card__title-text {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-strength-card__body {
    padding: 16px 16px 21px;
  }
  .p-strength__button {
    gap: 24px;
  }
  .p-message {
    padding: 80px 0 85px;
  }
  .p-message__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
  }
  .p-message__item--02 {
    margin-top: 45px;
  }
  .p-message__item-title {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-recruit-work {
    padding: 60px 0 80px;
  }
  .p-recruit-work__lead {
    text-align: left !important;
    margin-top: 0;
  }
  .p-recruit-work__button {
    margin-top: 10px !important;
  }
  .p-recruit-work__button a {
    line-height: 1.4;
  }
  .p-recruit-work-loop {
    margin-top: 43px;
  }
  .p-recruit-work-loop__track {
    -webkit-animation: work-loop 80s linear infinite;
            animation: work-loop 80s linear infinite;
  }
  .p-recruit-work-loop__item img {
    width: 1300px;
  }
  .p-recruit-numbers {
    padding: 60px 0 80px;
  }
  .p-recruit-numbers__lead {
    text-align: left !important;
    margin-top: 0;
  }
  .p-recruit-numbers__img-sp {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-top: 43px;
  }
  .p-recruit-numbers__button {
    margin-top: 10px !important;
  }
  .p-recruit-numbers__button a {
    line-height: 1.4;
  }
  .p-recruit-benefits {
    padding: 60px 0;
  }
  .p-recruit-benefits__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .p-recruit-benefits__content-button a {
    padding-right: 42px;
    margin-top: 0;
  }
  .p-recruit-benefits__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 60px 0 0 !important;
  }
  .p-recruit-benefits__button {
    -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
  }
  /* 現在募集中の職種 */
  .p-recruit-jobs {
    padding: 30px 0 40px;
    background-image: url(../img/page/recruit-jobs-bg-sp.png);
  }
  .p-recruit-jobs__title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  .p-recruit-jobs__list {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 0 16px;
  }
  .p-recruit-jobs__item a {
    padding: 16px 16px 16px;
  }
  .p-recruit-jobs__item-title {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-recruit-jobs__item-category-wrap {
    gap: 10px;
  }
  .p-recruit-jobs__item-category {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-recruit-jobs__button {
    margin-top: 40px;
  }
  /* 仕事紹介・社員インタビューページ --------------------------*/
  .p-work h3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-work__lead {
    text-align: left !important;
    margin-top: 40px;
  }
  .p-work__catch {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: left !important;
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    margin-top: 65px;
  }
  .p-work__content {
    gap: 25px;
    margin-top: 32px;
  }
  .p-work-point {
    margin-top: 40px;
  }
  .p-work-point__wrap {
    margin-top: 12px;
  }
  .p-work-point__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-work-fit {
    margin-top: 150px;
    padding: 32px 16px 24px;
  }
  .p-work-fit::before {
    width: 269px;
    height: 114px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    background-image: url(../img/page/interview-persons-sp.webp);
  }
  .p-work-fit__item {
    padding: 16px 16px 18px;
  }
  .p-work-fit__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding-left: 28px;
  }
  .p-work-fit__title::before {
    width: 20px;
  }
  .p-work-fit__text {
    padding-left: 0;
    margin-top: 10px;
  }
  .p-interview {
    padding: 100px 0 80px;
  }
  .p-interview-anchor {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .p-interview-anchor__item {
    min-height: 223px;
    -webkit-box-shadow: 0 0 18.57px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 18.57px rgba(0, 0, 0, 0.12);
  }
  .p-interview-anchor__item::before {
    width: 31px;
  }
  .p-interview-anchor__item::after {
    width: 7px;
    bottom: 5.5px;
    right: 6px;
  }
  .p-interview-anchor__item-body {
    padding: 10px;
  }
  .p-interview-anchor__item-body > .wp-block-group__inner-container {
    gap: 2px;
  }
  .p-interview-anchor__item-image {
    aspect-ratio: 183/130;
    overflow: hidden;
  }
  .p-interview-anchor__item-job {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-interview-anchor__item-location {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-interview-hr {
    margin: 60px 0 64px;
  }
  .p-interview-item {
    margin-top: 100px;
  }
  .p-interview-item h4 {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-interview-item__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-interview-item__header-info {
    -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
    width: min(55%, 300px);
    padding: 2% 2.5%;
    margin: -46px 0 0 !important;
  }
  .p-interview-item__header-info p {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-interview-item__header-info-job {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-interview-item__header-info-date {
    padding-top: 8px;
    margin-top: 8px;
  }
  .p-interview-item__header-image {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    margin-left: 16px !important;
  }
  .p-interview-item__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 37px;
  }
  .p-interview-item__content--03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-interview-item__content-image {
    -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
  }
  .p-interview-item__message {
    padding: 32px 16px 30px;
    margin-top: 50px;
  }
  .p-interview-item--01 {
    margin-top: 64px;
  }
}
.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.menu-list li {
  text-indent: 0;
  margin-left: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
}

.menu-list li a {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 5px 5px 5px 1.5em;
}

.menu-list li:hover {
  opacity: 0.8;
}

.menu-list li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0.5em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.u-contents details summary {
  margin: 60px 0 24px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  color: var(--color-primary);
  padding: 10px 0;
  border-bottom: 4px solid var(--color-primary);
}

@media screen and (max-width: 767px) {
  .u-contents details summary {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.p-jobs-title {
  font-size: inherit;
}

.p-jobs-cat {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-jobs-heading {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin: 120px 0 24px;
  width: 100%;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  color: var(--color-text);
  padding: 0 0 10px;
  border-bottom: 4px solid var(--color-primary);
}

@media screen and (max-width: 767px) {
  .p-jobs-heading {
    font-size: 22px;
    font-size: 2.2rem;
    border-bottom: 2px solid var(--color-primary);
    margin: 60px 0 16px;
    padding-bottom: 7px;
  }
}
/* ========================================
   top-fv (ファーストビュー)
   ======================================== */
.top-fv {
  position: relative;
  width: 100%;
  height: calc(100svh - 111px);
  min-height: 680px;
  overflow: hidden;
  margin-top: 111px;
}

.top-fv__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.top-fv__bg picture {
  height: 100%;
  width: 100%;
}

.top-fv__bg img,
.top-fv__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-fv__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.5;
  display: block;
  pointer-events: none;
}

.top-fv__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1280px;
  height: 100%;
  padding-top: 100px;
}

.top-fv__title {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", var(--font-main);
  font-weight: 700;
  font-size: 60px;
  font-size: 6rem;
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(52, 63, 71, 0.17);
}

.top-fv__bottom {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 0;
}

.top-fv__lead {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 32px;
}

.top-fv__balloon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 496px;
}

.top-fv__balloon-mens {
  position: absolute;
  top: -143px;
  right: 0;
  width: 232px;
  height: auto;
  z-index: 2;
}

.top-fv__balloon-content {
  position: relative;
  z-index: 2;
  background-color: #E6F2FF;
  padding: 32px 14px 14px 14px;
}

.top-fv__balloon-catch {
  width: 100%;
  position: absolute;
  left: 0;
  top: -25px;
}

.top-fv__balloon-catch img {
  width: 100%;
  height: auto;
  display: block;
}

.top-fv__balloon-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.top-fv__balloon-point {
  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: 47px;
  background: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-primary);
  text-align: center;
}

.top-fv__balloon-point--small {
  font-size: 16px;
  font-size: 1.6rem;
}

.top-fv__balloon-note {
  font-size: 10px;
  font-size: 1rem;
  vertical-align: super;
}

.top-fv__balloon-area {
  font-weight: 500;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 12px;
}

.top-fv__balloon-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  width: 100%;
  height: 47px;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  text-decoration: none;
}

.top-fv__balloon-btn img {
  position: absolute;
  right: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ========================================
   top-about (私たちについて)
   ======================================== */
.top-about {
  position: relative;
  width: 100%;
  background: var(--color-primary);
  background-image: url(../img/top/aboutus-bg.webp);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  padding: 120px 0 160px;
}

.top-about > * {
  position: relative;
  z-index: 1;
}

.top-about__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 24px;
}

.top-about__heading-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 128px;
}

.top-about__main {
  font-weight: 700;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
  margin: 0 auto;
}

.top-about__main ruby {
  ruby-position: over;
}

.top-about__main rt {
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  color: var(--color-white);
}

.top-about__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 104px;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 var(--content-space);
}

.top-about__block {
  position: relative;
  width: 100%;
}

.top-about__block-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

/* 2番目のブロックはHTMLソース順で画像→テキストなのでそのまま表示 */
.top-about__block-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 609px;
}

.top-about__block-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.top-about__block-title {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.5;
  padding: 4px 12px;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-about__block-text {
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 60px;
}

.top-about__block-text p {
  font-size: 18px;
  font-size: 1.8rem;
}

.top-about__block-text ul {
  font-size: 18px;
  font-size: 1.8rem;
  list-style: none;
  padding-left: 0px;
  margin: 0;
}

.top-about__block-text ul li::before {
  content: "・";
  font-size: 18px;
  font-size: 1.8rem;
}

.top-about__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-about__links li {
  margin-bottom: 20px;
}

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

.top-about__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 294px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
}

.top-about__block--reverse .top-about__links a {
  max-width: 330px;
}

.top-about__links a img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  padding: 6px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.top-about__block-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 485px;
}

.top-about__block--reverse .top-about__block-img {
  max-width: 510px;
}

.top-about__block-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   top-recruit (採用情報)
   ======================================== */
.top-recruit {
  position: relative;
  width: 100%;
  background: var(--color-white);
  padding: 120px 0 160px;
  overflow: hidden;
}

.top-recruit__bg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.top-recruit__bg img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right center;
     object-position: right center;
}

.top-recruit__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 24px;
}

.top-recruit__title {
  font-weight: 700;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 48px;
}

.top-recruit__catch {
  font-weight: 700;
  font-size: 56px;
  font-size: 5.6rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  -webkit-transform: skewX(-9deg);
          transform: skewX(-9deg);
  max-width: 800px;
  margin: 0 auto 120px;
}

.top-recruit__catch-gradient {
  background: linear-gradient(91deg, #019AA2 0%, #076EDB 101.7%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-recruit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 40px;
  max-width: 1232px;
  margin: 0 auto 124px;
  padding: 0 var(--content-space);
}

.top-recruit__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 640px;
}

.top-recruit__sub {
  font-weight: 700;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
  max-width: 640px;
  margin: 0 0 16px;
}

.top-recruit__sub-gradient {
  background: linear-gradient(91deg, #019AA2 0%, #076EDB 101.7%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-recruit__place {
  max-width: 640px;
  margin: 0 0 16px;
  padding: 16px 24px;
  background: var(--color-white);
  border: 3px solid var(--color-white);
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
}

.top-recruit__desc {
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
  max-width: 640px;
  margin: 0 0 16px;
}

.top-recruit__desc p {
  font-size: 18px;
  font-size: 1.8rem;
}

.top-recruit__cards {
  display: grid;
  grid-template-columns: repeat(2, 308px);
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  max-width: 640px;
  margin: 0 0 80px;
}

.top-recruit__card {
  border: 1px solid var(--color-primary);
  overflow: hidden;
}

.top-recruit__card img {
  width: 100%;
  height: auto;
  display: block;
}

.top-recruit__visual {
  position: absolute;
  right: -110px;
  width: 576px;
}

.top-recruit__visual picture img {
  width: 100%;
  height: auto;
  display: block;
}

.top-recruit__cta {
  position: relative;
  background: var(--color-primary);
  padding: 48px 112px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.top-recruit__cta-mens {
  position: absolute;
  left: 194px;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 324px;
  height: auto;
  margin-bottom: -1px;
  display: block;
}

.top-recruit__cta-title {
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 24px;
}

.top-recruit__cta-lead {
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 20px;
}

.top-recruit__cta-lead p {
  font-size: 18px;
  font-size: 1.8rem;
}

.top-recruit__cta-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 468px;
  height: 57px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.3;
  text-decoration: none;
  margin-bottom: 20px;
}

.top-recruit__cta-btn--orange {
  background: var(--color-accent);
  color: var(--color-white);
}

.top-recruit__cta-btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-white);
  margin-bottom: 0;
}

.top-recruit__cta-btn img {
  position: absolute;
  right: 24px;
}

/* ========================================
   top-news (新着情報)
   ======================================== */
.top-news {
  width: 100%;
  background: var(--color-bg-lightblue);
  padding: 110px 0 120px;
}

.top-news__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 24px;
}

.top-news__title {
  font-weight: 700;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 32px;
}

.top-news__inner {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 var(--content-space);
}

.top-news__item {
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(1, 79, 162, 0.2);
}

.top-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-news__meta time {
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-primary);
}

.top-news__cat {
  display: inline-block;
  padding: 2px 14px;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-primary);
}

.top-news__item-title {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0;
}

.top-news__item-title a {
  position: relative;
  color: var(--color-text);
  text-decoration: none;
}

.top-news__item-title a::after {
  content: "";
  position: absolute;
  top: -200px;
  left: -500px;
  right: -500px;
  bottom: -200px;
  z-index: -1;
}

.top-news__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-news__arrow img {
  display: block;
}

.top-news__more a {
  display: inline-block;
  padding: 12px 48px;
  border: 1px solid var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-primary);
  text-decoration: none;
}

/* ========================================
   cta (お問い合わせ・エントリー)
   ======================================== */
.cta {
  width: 100%;
  background: var(--color-bg-grey);
  padding: 80px 0 100px;
}

.cta__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 var(--content-space);
}

.cta__box {
  width: 460px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}

.cta__title {
  font-weight: 700;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: 44px;
}

.cta__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-family: var(--font-tel);
  font-weight: 500;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 12px;
}

.cta__tel img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta__tel span {
  font-size: 20px;
  font-size: 2rem;
  margin-right: 4px;
}

.cta__tel a {
  color: inherit;
  text-decoration: none;
}

.cta__time {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 36px;
}

.cta__btn {
  display: block;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  min-height: 209px;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  padding: 16px 24px;
}

.cta__btn-label {
  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: 4px;
}

.cta__btn-label img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta__btn-text {
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.cta__btn--contact {
  background: var(--color-primary);
  color: var(--color-white);
}

.cta__btn--entry {
  background: var(--color-entry);
  color: var(--color-white);
}

.cta__note {
  display: inline-block;
  padding: 4px 16px;
  border: 2px solid var(--color-white);
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 10px;
}

.cta__note-sub {
  display: block;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
}

/* ========================================
   SP (max-width: 1400px)
   ======================================== */
@media screen and (max-width: 1400px) {
  .top-fv__inner {
    padding: 0 20px;
  }
  .top-recruit__visual {
    right: 20px;
    width: 500px;
  }
  .top-fv__balloon {
    right: 24px;
  }
}
/* ========================================
   SP (max-width: 767px)
   ======================================== */
@media screen and (max-width: 767px) {
  .top-fv {
    position: relative;
    height: calc(100svh - 64px);
    overflow: visible;
    margin-top: 64px;
    min-height: calc(100svh - 64px);
  }
  .top-fv__inner {
    position: initial;
    padding: 22vw 4vw 0 4vw;
  }
  .top-fv__title {
    font-size: 36px;
    font-size: 3.6rem;
    position: relative;
    white-space: nowrap;
  }
  .top-fv__lead {
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 21vw;
  }
  .top-fv__bottom {
    width: 94%;
    left: 3%;
    bottom: -21vw;
  }
  .top-fv__balloon {
    position: relative;
    width: 94%;
    left: auto;
    right: auto;
    margin: auto;
    bottom: auto;
  }
  .top-fv__balloon-bg {
    top: 80px;
  }
  .top-fv__balloon-content {
    padding: 26px 10px 10px;
  }
  .top-fv__balloon-mens {
    width: 40%;
    max-width: 180px;
    top: -90px;
  }
  .top-fv__balloon-point {
    font-size: 16px;
    font-size: 1.6rem;
    height: 40px;
  }
  .top-fv__balloon-point--small {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .top-fv__balloon-btn {
    height: 40px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .top-fv__balloon-btn img {
    right: 80px;
  }
  .top-about {
    padding: 60vw 0px 80px;
    background-image: url(../img/top/aboutus-bg-sp.webp);
  }
  .top-about__en {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
  .top-about__heading-wrap {
    margin-bottom: 60px;
  }
  .top-about__main {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .top-about__main rt {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .top-about__blocks {
    gap: 100px;
    padding: 0;
  }
  .top-about__block-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 48px;
  }
  /* SP: 2番目もcolumn化（block-inner共通） */
  .top-about__block-content {
    max-width: 100%;
    padding: 0 16px;
  }
  .top-about__block-titles {
    margin-bottom: 32px;
  }
  .top-about__block-title {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 4px 12px;
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .top-about__links a {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .top-about__block-text p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .top-about__block-text ul {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .top-about__block-text ul li::before {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .top-about__block-img {
    max-width: 100%;
  }
  .top-about__block--reverse .top-about__block-content {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .top-recruit {
    padding: 60px 0 80px;
  }
  .top-recruit__bg {
    top: 580px;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    max-width: none;
    right: 0;
  }
  .top-recruit__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
  }
  .top-recruit__content {
    max-width: 100%;
    padding: 0 16px;
  }
  .top-recruit__en {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .top-recruit__title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
  .top-recruit__catch {
    font-size: 32px;
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
  .top-recruit__sub {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .top-recruit__place {
    background: var(--color-bg-lightblue);
    padding: 16px 24px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .top-recruit__desc {
    margin-bottom: 24px;
  }
  .top-recruit__desc p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .top-recruit__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
    margin-bottom: 48px;
  }
  .top-recruit__card img {
    width: 100%;
  }
  .top-recruit__visual {
    position: static;
    top: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 160px;
  }
  .top-recruit__cta-mens {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0;
  }
  .top-recruit__cta {
    padding: 48px 24px;
    margin: 0 16px;
    max-width: none;
  }
  .top-recruit__cta-title {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  .top-recruit__cta-lead {
    margin-bottom: 24px;
  }
  .top-recruit__cta-lead p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .top-recruit__cta-btn {
    max-width: 636px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .top-recruit__cta-btn:last-child {
    margin-bottom: 0;
  }
  .top-news {
    padding: 60px 0 80px;
  }
  .top-news__inner {
    padding: 0 16px;
  }
  .top-news__en {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .top-news__title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  .top-news__item {
    padding: 20px 0;
    gap: 12px;
  }
  .top-news__item:first-child {
    padding-top: 0;
  }
  .top-news__meta time {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .top-news__cat {
    padding: 2px 12px;
    border-radius: 40px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .top-news__item-title {
    font-size: 16px;
    font-size: 1.6rem;
    width: 100%;
    padding-right: 60px;
  }
  .top-news__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .top-news__more {
    display: none;
  }
  .top-news__more a {
    padding: 16px 64px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .cta {
    padding: 48px 0 80px;
  }
  .cta__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 16px;
  }
  .cta__box {
    width: 100%;
    max-width: 764px;
  }
  .cta__title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  .cta__tel {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 12px;
  }
  .cta__time {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
  .cta__btn {
    font-size: 40px;
    font-size: 4rem;
    padding: 24px;
    gap: 16px;
    max-width: none;
  }
  .cta__btn-label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
  .cta__btn-text {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 0;
  }
  .cta__note {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 4px 16px;
    border-radius: 60px;
    margin-bottom: 14px;
  }
  .cta__note-sub {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* ========================================
   SP (max-width: 410px)
   ======================================== */
@media screen and (max-width: 410px) {
  .top-fv__balloon {
    width: 94%;
  }
  .top-fv__balloon-mens {
    top: -80px;
  }
  .top-fv__balloon-btn img {
    right: 60px;
  }
  .top-fv__balloon-point {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .top-fv__balloon-point--small {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .top-fv__balloon-points {
    gap: 6px;
  }
  .top-fv__balloon-area {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .top-fv__balloon-btn {
    height: 36px;
  }
  .top-recruit__cta {
    padding: 48px 12px;
  }
}
/* ========================================
   Hover effects (hover対応端末のみ)
   ======================================== */
@media (hover: hover) {
  .top-fv__balloon-btn {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .top-fv__balloon-btn:hover {
    opacity: 0.8;
  }
  .top-about__links a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .top-about__links a:hover {
    opacity: 0.7;
  }
  .top-recruit__cta-btn {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .top-recruit__cta-btn:hover {
    opacity: 0.8;
  }
  .top-news__item {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .top-news__item:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .top-news__item-title a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .top-news__item:hover .top-news__item-title a {
    color: var(--color-primary);
  }
  .cta__btn {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .cta__btn:hover {
    opacity: 0.85;
  }
}
.p-data-lead {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-data-lead {
    text-align: left;
  }
}

.p-data-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-data-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.anchor-btn {
  display: inline-block;
  text-indent: unset;
  margin: 0;
}
.anchor-btn::before, .anchor-btn::after {
  display: none;
}
.anchor-btn a {
  display: block;
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 8px 8px 8px 64px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 140%;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .anchor-btn a {
    padding: 14px 10px 14px 33px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.anchor-btn a span, .anchor-btn a strong {
  display: block;
  padding: 8px 20px;
  border-left: 1px solid #fff;
  font-weight: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .anchor-btn a span, .anchor-btn a strong {
    padding: 2px 10px;
  }
}
.anchor-btn a span::before, .anchor-btn a strong::before {
  content: "";
  width: 20px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fff;
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .anchor-btn a span::before, .anchor-btn a strong::before {
    width: 13px;
    height: 6px;
    left: -23px;
  }
}
.anchor-btn a:hover {
  background: #fff;
  color: var(--color-primary);
}
.anchor-btn a:hover span, .anchor-btn a:hover strong {
  border-color: var(--color-primary);
}
.anchor-btn a:hover span::before, .anchor-btn a:hover strong::before {
  background: var(--color-primary);
}

.p-data-h2 {
  font-size: 28px;
  font-size: 2.8rem;
  border: none;
  padding-bottom: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-data-h2 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
}

.p-data-number__block01 {
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-data-number__block01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.p-data-number__block01 .p-data-number__left {
  width: 313px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-data-number__block01 .p-data-number__left {
    width: 100%;
    gap: 16px;
  }
}
.p-data-number__block01 .p-data-number__right {
  width: calc(100% - 343px);
}
@media screen and (max-width: 767px) {
  .p-data-number__block01 .p-data-number__right {
    width: 100%;
  }
}
.p-data-number__block02 {
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-data-number__block02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.p-data-number__block02 > div {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-data-number__block02 > div {
    width: 100%;
  }
}
.p-data-number__block03 {
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-data-number__block03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.p-data-number__block03 .p-data-number__left {
  width: 313px;
}
@media screen and (max-width: 767px) {
  .p-data-number__block03 .p-data-number__left {
    width: 100%;
  }
}
.p-data-number__block03 .p-data-number__right {
  width: calc(100% - 343px);
}
@media screen and (max-width: 767px) {
  .p-data-number__block03 .p-data-number__right {
    width: 100%;
  }
}
.p-data-number__block04 {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-data-number__block04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.p-data-number__block04 > div {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767px) {
  .p-data-number__block04 > div {
    width: 100%;
  }
}

.p-data-graph {
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-data-graph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
    margin-bottom: 45px;
  }
}
.p-data-graph > div {
  width: calc((100% - 32px) / 2);
  padding: 24px 24px 44px;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-data-graph > div {
    width: 100%;
    padding: 0;
    gap: 16px;
  }
}
.p-data-graph__ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-data-graph__ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-data-graph__ttl::before {
  display: inline-block;
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-data-graph__ttl::before {
    width: 14px;
    margin-right: 6px;
  }
}
.p-data-graph__img {
  width: 62%;
  margin: 0 auto !important;
}

.p-data-other {
  border: 1px solid var(--color-primary);
  padding: 24px 60px 34px;
  gap: 0;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-data-other {
    padding: 20px 16px;
    margin-top: 16px;
  }
}
.p-data-other__head {
  font-size: 24px;
  font-size: 2.4rem;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .p-data-other__head {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 24px !important;
  }
}
.p-data-other__rank li {
  font-size: 22px;
  font-size: 2.2rem;
  min-height: 48px;
  padding-left: 68px;
  margin: 0;
  line-height: 150%;
  text-indent: unset;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-data-other__rank li {
    font-size: 18px;
    font-size: 1.8rem;
    min-height: 32px;
    padding-left: 48px;
  }
}
.p-data-other__rank li::before {
  display: block;
  content: "";
  width: 48px;
  aspect-ratio: 1/1;
  background: url(../img/data/data_rank01.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-data-other__rank li::before {
    width: 32px;
  }
}
.p-data-other__rank li + li {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-data-other__rank li + li {
    margin-top: 16px;
  }
}
.p-data-other__rank li:nth-child(1) {
  font-weight: bold;
}
.p-data-other__rank li:nth-child(2)::before {
  background-image: url(../img/data/data_rank02.png);
}
.p-data-other__rank li:nth-child(3)::before {
  background-image: url(../img/data/data_rank03.png);
}
.p-data-other__icon li {
  font-size: 18px;
  font-size: 1.8rem;
  min-height: 40px;
  padding-left: 60px;
  line-height: 150%;
  text-indent: unset;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-data-other__icon li {
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 40px;
  }
}
.p-data-other__icon li::before {
  display: block;
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../img/data/data_icon.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-data-other__icon li::before {
    width: 30px;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.p-data-other__icon li + li {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-data-other__icon li + li {
    margin-top: 20px;
  }
}
.p-data-other__area {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  gap: 107px;
}
@media screen and (max-width: 767px) {
  .p-data-other__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-data-other__text {
  width: calc(100% - 380px);
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-data-other__text {
    width: 100%;
    line-height: 150%;
  }
}
.p-data-other__img {
  width: 273px;
  margin-top: -30px !important;
}
@media screen and (max-width: 767px) {
  .p-data-other__img {
    width: 100%;
    margin-top: 0 !important;
  }
}
.p-data-other__tag {
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-data-other__tag {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.p-data-other__tag ul {
  width: calc((100% - 40px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-data-other__tag ul {
    width: 100%;
    display: block;
    gap: 12px;
  }
}
.p-data-other__tag li {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 160%;
  padding: 4px 10px;
  margin: 0;
  background: var(--color-bg-lightblue);
  text-indent: unset;
}
@media screen and (max-width: 767px) {
  .p-data-other__tag li {
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
.p-data-other__tag li::before {
  display: none;
}

.amap-block {
  gap: 5%;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .amap-block {
    margin-top: 40px;
  }
  .amap-block.sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.amap-btn-area {
  width: 240px;
  padding-top: 30px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .amap-btn-area {
    width: 50%;
    padding-top: 0;
  }
}
.amap-btn-area > div, .amap-btn-area .anchor-btn {
  width: 100%;
}
.amap-btn-area .main-store {
  padding-top: calc(32px + 0.5em);
}
.amap-ttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
.amap-ttl::before {
  display: block;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  background: #FFE45F;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.amap-ttl.red::before {
  background: #E34949;
}
.amap-ttl.blue::before {
  background: #47ACF5;
}
.amap-img-area {
  width: calc(100% - 480px - 10%);
}
@media screen and (max-width: 767px) {
  .amap-img-area {
    width: 100%;
  }
}

.u-contents {
  width: var(--u-content-width);
  margin: 0 auto;
  padding: 80px 0 140px;
}
.u-contents > :first-child {
  margin-top: 0 !important;
}
.u-contents > :last-child {
  margin-bottom: 0 !important;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-main {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  .u-contents {
    padding: 30px 0 80px;
  }
}