@charset "UTF-8";
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

figure {
  margin: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0;
}
@media (max-width: 767px) {
  .l-container {
    padding-inline: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-container {
    padding-inline: 16px;
  }
}

.l-section {
  padding-block: 80px;
}
@media (max-width: 1023px) {
  .l-section {
    padding-block: 50px;
  }
}

.l-header {
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 200;
  background-color: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.l-header--scrolled {
  background-color: #fdfdfd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.l-header--scrolled .l-header__nav-link {
  color: #111111;
}

.l-header .l-container {
  max-width: 100%;
  padding-inline: 0;
}

.l-header__content {
  height: 100px;
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: auto;
}

.l-header__logo-image {
  height: 80px;
  width: auto;
  display: block;
}

.header__logo picture {
  display: block;
  line-height: 0;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.l-header__nav-link {
  font-size: 16px;
  color: #fdfdfd;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
  font-weight: 500;
}

.l-header__nav-link:hover {
  text-decoration: underline;
}

.header__actions {
  display: flex;
  align-items: stretch;
}

.header__contact,
.header__entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 100px;
  height: 80px;
  font-size: 14px;
  font-weight: 700;
  color: #fdfdfd;
  text-decoration: none;
}

.header__contact {
  background-color: #0071B9;
}

.header__entry {
  background-color: #E89B1C;
}

.header__contact-icon,
.header__entry-icon {
  display: block;
  margin-bottom: 4px;
}

.header__contact-icon img,
.header__entry-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.l-header__nav-link--accent {
  padding-inline: 16px;
  padding-block: 8px;
  border-radius: 999px;
  background-color: #0071B9;
  color: #fdfdfd;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.l-header__nav-link--accent:hover {
  background-color: rgb(0, 97.4243243243, 159.5);
  color: #fdfdfd;
}

/* SP用：TOPリンク・メニュー下ボタンはPCでは非表示 */
.header__nav-item--top,
.l-header__menu-buttons {
  display: none;
}

/* モバイル用メニューボタン（PCでは非表示） */
.header-menu-toggle {
  display: none;
}

.header__nav-item--has-sub {
  position: relative;
}

.header__nav-item--has-sub .header__nav-sub-toggle {
  display: none; /* SP用トグルはPCでは非表示 */
}

.l-header__nav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background-color: #fdfdfd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  z-index: 100;
}

.header__nav-item--has-sub:hover .l-header__nav-sub,
.header__nav-item--has-sub:focus-within .l-header__nav-sub,
.header__nav-item--has-sub.is-sub-open .l-header__nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-header__nav-sub-link {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.l-header__nav-sub-link:hover {
  background-color: rgba(0, 113, 185, 0.08);
  color: #0071B9;
}

@media (max-width: 1023px) {
  .l-header {
    background-color: #fdfdfd;
  }
  .l-header .l-container {
    padding-inline: 16px;
  }
  .l-header__content {
    height: 60px;
    padding-block: 0;
    gap: 8px;
  }
  .l-header__logo-image {
    height: 50px;
    width: auto;
  }
  /* PC ナビ／CTA は隠す */
  .header__actions {
    display: none;
  }
  /* SP: TOP・メニュー下ボタンを表示 */
  .header__nav-item--top {
    display: list-item;
  }
  .l-header__nav {
    position: fixed;
    inset: 60px 0 0 0;
    z-index: 199;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #fdfdfd;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }
  .l-header--menu-open .l-header__nav {
    transform: translateY(0);
    visibility: visible;
  }
  .l-header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 60px 16px 10px;
    list-style: none;
    gap: 0;
    flex-shrink: 0;
    order: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* 各メニュー項目の下に下線（box-shadowで1本ずつ描画し、重なって太く見えるのを防ぐ） */
  .l-header__nav-list .header__nav-item {
    order: 1;
    box-sizing: border-box;
    width: 100%;
    border-bottom: 1px solid #cbcbcb;
  }
  .l-header__nav-list .l-header__nav-link {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    line-height: 24px;
  }
  /* 採用情報：1行で左にラベル・右に＋。クリックで－になりサブメニュー展開*/
  .l-header__nav-list .header__nav-item--has-sub {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
    padding-right: 32px;
  }
  .l-header__nav-sub {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: none;
    visibility: hidden;
    transform: none;
    transition: none;
  }
  .l-header__nav-list .header__nav-item--has-sub > .l-header__nav-link {
    padding: 0;
    width: auto;
    flex: 1;
  }
  /* 右端の ＋ アイコン 15px（閉じ時）。開くと － になる */
  .l-header__nav-list .header__nav-sub-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .l-header__nav-list .header__nav-sub-toggle::before,
  .l-header__nav-list .header__nav-sub-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transition: transform 0.15s ease;
    pointer-events: none;
    background-color: #111111;
  }
  /* ＋ の横線 */
  .l-header__nav-list .header__nav-sub-toggle::before {
    width: 11px;
    height: 2px;
    margin-left: -5.5px;
    margin-top: -1px;
  }
  /* ＋ の縦線（開くと非表示で － になる） */
  .l-header__nav-list .header__nav-sub-toggle::after {
    width: 2px;
    height: 11px;
    margin-left: -1px;
    margin-top: -5.5px;
  }
  .l-header__nav-list .header__nav-item--sub-open .header__nav-sub-toggle::after {
    transform: scaleY(0);
  }
  /* サブメニュー：開閉アニメーション付き（0.5秒） */
  .l-header__nav-sub {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    order: 10;
    flex-basis: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
  }
  .header__nav-item--sub-open .l-header__nav-sub {
    max-height: 220px;
    opacity: 1;
    padding: 8px 0 10px 0;
  }
  .l-header__nav-sub-link {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    -webkit-tap-highlight-color: transparent;
  }
  .header__nav-item--sub-open .l-header__nav-sub-link {
    opacity: 1;
    transform: translateY(0);
  }
  /* スマホ：採用情報サブリンクのホバー効果をなしにする（通常の a:hover の opacity を打ち消し） */
  .header__nav-item--sub-open .l-header__nav-sub-link:hover {
    opacity: 1;
  }
  /* 子リンクを少しずらして表示（スタッガー） */
  .header__nav-item--sub-open .l-header__nav-sub-item:nth-child(1) .l-header__nav-sub-link {
    transition-delay: 0ms;
  }
  .header__nav-item--sub-open .l-header__nav-sub-item:nth-child(2) .l-header__nav-sub-link {
    transition-delay: 50ms;
  }
  .header__nav-item--sub-open .l-header__nav-sub-item:nth-child(3) .l-header__nav-sub-link {
    transition-delay: 100ms;
  }
  .header__nav-item--sub-open .l-header__nav-sub-item:nth-child(4) .l-header__nav-sub-link {
    transition-delay: 150ms;
  }
  .header__nav-item--sub-open .l-header__nav-sub-item:nth-child(5) .l-header__nav-sub-link {
    transition-delay: 200ms;
  }
  /* メニュー下ボタン*/
  .l-header__menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 60px 16px;
    background-color: #E3EFF7;
    flex-shrink: 0;
    order: 2;
    width: 94%;
  }
  .l-header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 65px;
    padding: 18px 23px;
    font-size: 20px;
    font-weight: 700;
    color: #fdfdfd;
    text-decoration: none;
    border: none;
    line-height: 1;
    transition: opacity 0.15s ease;
  }
  .l-header__menu-btn:hover {
    opacity: 0.9;
  }
  .l-header__menu-btn--contact {
    background-color: #0071B9;
  }
  .l-header__menu-btn--entry {
    background-color: #E89B1C;
  }
  .l-header__menu-btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 4px;
  }
  .l-header__nav-link--accent {
    border-radius: 0;
    background-color: transparent;
    color: #111111;
  }
  /* ハンバーガーメニュー */
  .header-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 25px;
    height: 50px;
    margin-left: auto;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
  }
  .l-header--menu-open .header-menu-toggle {
    align-items: center;
  }
  .header-menu-toggle__bar {
    display: block;
    height: 2px;
    border-radius: 9999px;
    background-color: #0071B9;
    transition: transform 0.15s ease, width 0.15s ease, opacity 0.15s ease;
  }
  .header-menu-toggle__bar:nth-child(1) {
    width: 24px;
  }
  .header-menu-toggle__bar:nth-child(2) {
    width: 20px;
    margin-top: 7px;
  }
  .header-menu-toggle__bar:nth-child(3) {
    width: 16px;
    margin-top: 7px;
  }
  .header-menu-toggle__label {
    margin-top: 4px;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #0071B9;
    text-align: left;
  }
  /* メニューオープン時：バツ印 */
  .l-header--menu-open .header-menu-toggle__bar:nth-child(1) {
    width: 20px;
    transform: translateY(9px) rotate(45deg);
  }
  .l-header--menu-open .header-menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .l-header--menu-open .header-menu-toggle__bar:nth-child(3) {
    width: 20px;
    transform: translateY(-9px) rotate(-45deg);
  }
  .l-header--menu-open .header-menu-toggle__label {
    color: #0071B9;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-header__content {
    height: 80px;
  }
  .l-header__logo-image {
    height: 80px;
  }
  .l-header__nav {
    inset: 80px 0 0 0;
  }
  .l-header__menu-buttons {
    width: 96%;
  }
  .header-menu-toggle__label {
    font-size: 10px;
  }
}
.p-top-cta {
  position: relative;
}

.p-top-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/cta-bg.png");
  background-image: image-set(url("../images/cta-bg.webp") type('image/webp'), url("../images/cta-bg.png") type('image/png'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-top-cta .l-container {
  position: relative;
  z-index: 1;
}

.p-top-cta__frame {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1200px;
  margin: 80px auto;
  padding: 32px 40px;
  border-radius: 20px;
  background-color: #fdfdfd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .p-top-cta__frame {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
}

.p-top-cta__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-top-cta__icon {
  margin-bottom: 16px;
}

.p-top-cta__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.p-top-cta__title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
}
@media (max-width: 767px) {
  .p-top-cta__title {
    font-size: 24px;
  }
}

.p-top-cta__text {
  margin: 0 0 16px;
  line-height: 1.6;
  color: #111111;
}

.p-top-cta__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  min-width: 1px;
  background-color: #e0e0e0;
  /* スマホ：縦線を横線にする */
}
@media (max-width: 1023px) {
  .p-top-cta__divider {
    width: 100%;
    min-width: 0;
    height: 1px;
    min-height: 1px;
  }
}

.p-top-footer {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #0071B9;
  color: #fdfdfd;
}

.p-top-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 1023px) {
  .p-top-footer__inner {
    flex-direction: column;
    gap: 24px;
  }
}

.p-top-footer__left {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .p-top-footer__left {
    width: 100%;
    text-align: center;
  }
}

.p-top-footer__logo-image {
  display: block;
  height: 82px;
  width: auto;
}
@media (max-width: 1023px) {
  .p-top-footer__logo-image {
    margin: auto;
  }
}

.p-top-footer__logo figure picture {
  display: block;
  line-height: 0;
}

.p-top-footer__address {
  margin: 16px 0 0;
  line-height: 1.5;
  color: #fdfdfd;
}
@media (max-width: 1023px) {
  .p-top-footer__address {
    line-height: 1.8;
  }
}

.p-top-footer__address span {
  display: block;
}

.p-top-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 64px;
}
@media (max-width: 767px) {
  .p-top-footer__nav {
    grid-template-columns: auto auto;
    gap: 24px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-footer__nav {
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
}

.p-top-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-top-footer__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fdfdfd;
  text-decoration: none;
}

.p-top-footer__nav-link:hover {
  text-decoration: underline;
}

.p-top-footer__nav-sub {
  font-size: 14px;
  margin-top: 4px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-top-footer__nav-sub-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.p-top-footer__nav-sub-link:hover {
  text-decoration: underline;
}

.p-top-footer__copyright {
  margin: 24px 0 0;
  padding-top: 24px;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.c-btn-circle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0071B9;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(0);
}
.c-btn-circle:hover {
  opacity: 0.85;
  transform: translateX(20px);
}

.c-btn-circle__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid currentColor;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #0071B9;
}

.c-btn-circle__arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fdfdfd;
  flex-shrink: 0;
}

.c-btn-circle__arrow::before,
.c-btn-circle__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  transform-origin: 100% 50%;
  background-color: #fdfdfd;
}

.c-btn-circle__arrow::before {
  transform: rotate(45deg);
}

.c-btn-circle__arrow::after {
  transform: rotate(-45deg);
}

.c-btn-circle--card {
  margin-top: 12px;
}

.btn-block {
  margin-top: 32px;
  text-align: center;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease;
}
.c-btn:hover {
  opacity: 0.9;
}

.c-btn--accent {
  background-color: #E89B1C;
  color: #fdfdfd;
}

.c-btn--main {
  background-color: #0071B9;
  color: #fdfdfd;
}

.c-btn__arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  flex-shrink: 0;
}

.p-top-cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 80px;
  margin-top: auto;
  padding-right: 48px;
  font-size: 24px;
  font-weight: 700;
  color: #fdfdfd;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-top-cta__button {
    height: 65px;
    font-size: 20px;
  }
}
.p-top-cta__button::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 20px;
  width: 54px;
  height: 2px;
  margin-top: -1px;
  border-radius: 9999px;
  background-color: currentColor;
}
.p-top-cta__button::before {
  content: "";
  position: absolute;
  top: 58%;
  right: 23px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(-135deg);
  box-sizing: border-box;
}

.p-top-cta__button--entry {
  background-color: #E89B1C;
}

.p-top-cta__button--contact {
  background-color: #0071B9;
}

.section-heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 24px;
  }
}

.section-heading__en {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0071B9;
  margin: 0 0 -10px;
  letter-spacing: 0.05em;
  display: block;
}

.section-heading__ja {
  font-size: 32px;
  font-weight: 500;
  color: #0071B9;
  margin: 0;
  display: block;
}
@media (max-width: 767px) {
  .section-heading__ja {
    font-size: 28px;
  }
}

.c-title-under {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .c-title-under {
    margin-bottom: 24px;
  }
}

.c-title-under__title {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  color: #0071B9;
}
@media (max-width: 767px) {
  .c-title-under__title {
    font-size: 28px;
  }
}

.c-title-under__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #E89B1C 0%, #E89B1C 12%, #0071B9 12%, #0071B9 100%);
}
@media (max-width: 767px) {
  .c-title-under__line {
    background: linear-gradient(to right, #E89B1C 0%, #E89B1C 25%, #0071B9 25%, #0071B9 100%);
  }
}

.p-top-section-heading {
  margin-bottom: 16px;
  color: #0071B9;
}

.p-top-section-heading__en {
  margin: 0 0 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .p-top-section-heading__en {
    font-size: 40px;
  }
}

.p-top-section-heading__ja {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .p-top-section-heading__ja {
    font-size: 16px;
  }
}

/* 企業情報セクションだけ見出しを白にする */
.p-top-recruit .p-top-section-heading__en,
.p-top-recruit .p-top-section-heading__ja {
  color: #fdfdfd;
}

.p-top-section-heading--center .p-top-section-heading__en,
.p-top-section-heading--center .p-top-section-heading__ja {
  text-align: center;
}

.p-top-hero {
  position: relative;
  padding-block: 0;
  min-height: 600px;
  height: 85vh;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-top-hero {
    height: 80vh;
  }
}

.p-top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-image: url("../images/hero-bg.jpeg");
  background-image: image-set(url("../images/hero-bg.webp") type('image/webp'), url("../images/hero-bg.jpeg") type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.p-top-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.p-top-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.p-top-hero .l-container {
  position: absolute;
  top: 50%;
  left: clamp(24px, 5vw, 96px);
  translate: 0 -40%;
  z-index: 2;
}
@media (max-width: 1023px) {
  .p-top-hero .l-container {
    left: 0;
  }
}

.p-top-hero__content {
  color: #fdfdfd;
}

.p-top-hero__titles {
  margin-bottom: 16px;
}

.p-top-hero__title-en {
  margin: 0 0 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .p-top-hero__title-en {
    font-size: 3rem;
    line-height: 1.1;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-hero__title-en {
    font-size: 4.5rem;
  }
}

.p-top-hero__title-en span:first-of-type {
  color: #0071B9;
}

.p-top-hero__title-en span:last-of-type {
  color: #fdfdfd;
}

.p-top-hero__title-ja {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #fdfdfd;
}
@media (max-width: 767px) {
  .p-top-hero__title-ja {
    font-size: 18px;
  }
}

.p-top-hero__lead {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
  color: #fdfdfd;
}
@media (max-width: 767px) {
  .p-top-hero__lead {
    font-size: 14px;
  }
}

.p-top-service__intro {
  max-width: 710px;
  margin: 0 0 32px;
  line-height: 2;
  color: #111111;
}

.p-top-service__intro span {
  display: block;
}

.p-top-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-top-service__list {
    gap: 20px;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-service__list {
    gap: 20px;
  }
}

.p-top-service-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 20px);
  max-width: 580px;
  height: 300px;
  color: #fdfdfd;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-service-card {
    width: 100%;
    height: 230px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-service-card {
    height: 230px;
  }
}

.p-top-service-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.p-top-service-card:hover .p-top-service-card__image {
  transform: scale(1.2);
}

.p-top-service-card__image figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.p-top-service-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.p-top-service-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #fdfdfd;
}
@media (max-width: 767px) {
  .p-top-service-card__title {
    font-size: 28px;
  }
}

.p-top-company {
  position: relative;
}

.p-top-company__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/top-company-bg.png");
  background-image: image-set(url("../images/top-company-bg.webp") type('image/webp'), url("../images/top-company-bg.png") type('image/png'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-top-company__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1023px) {
  .p-top-company__inner {
    flex-direction: column;
    gap: 24px;
  }
}

.p-top-company__content-left {
  max-width: 540px;
}
@media (max-width: 1023px) {
  .p-top-company__content-left {
    max-width: 100%;
  }
}

.p-top-company__text {
  margin: 0 0 24px;
  line-height: 2;
  color: #111111;
}

.p-top-company__text span {
  display: block;
}

.p-top-company__content-right {
  flex-shrink: 0;
  width: 100%;
  max-width: 560px;
}
@media (max-width: 1023px) {
  .p-top-company__content-right {
    max-width: 100%;
  }
}

.p-top-company__content-right figure picture {
  display: block;
}

.p-top-company__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-company__image {
    height: 450px;
  }
}

@media (max-width: 1023px) {
  .p-top-company .sp-none {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-top-company .pc-none {
    display: none;
  }
}
.p-top-works__intro {
  max-width: 710px;
  margin: 0 0 40px;
  line-height: 1.6;
  color: #111111;
}
@media (max-width: 1023px) {
  .p-top-works__intro {
    max-width: 100%;
  }
}

.p-top-works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-top-works__list {
    gap: 32px;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-works__list {
    gap: 40px;
  }
}

.p-top-works-card {
  position: relative;
  width: calc(33.333% - 38px);
  min-width: 320px;
  max-width: 360px;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fdfdfd;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top-works-card {
    width: 100%;
    min-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-top-works-card {
    width: calc(50% - 20px);
    max-width: 400px;
  }
}

.p-top-works-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-top-works-card__image {
  width: 100%;
  height: 201px;
  overflow: hidden;
}

.p-top-works-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-works-card__body {
  padding: 8px 12px 16px;
}

.p-top-works-card__title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 500;
  color: #111111;
}

.p-top-works-card__meta {
  margin: 0;
  color: #111111;
}

.p-top-recruit {
  position: relative;
  color: #fdfdfd;
  min-height: 640px;
}

.p-top-recruit__members {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 0;
  /* スマホ：背景を縦並びで表示 */
}
@media (max-width: 767px) {
  .p-top-recruit__members {
    flex-direction: column;
  }
}

.p-top-recruit__member {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* スマホ：縦並びで背景を描画（3段に均等分割） */
}
@media (max-width: 767px) {
  .p-top-recruit__member {
    flex: 1 1 0;
    min-height: 0;
    background-position: top center;
  }
}

.p-top-recruit__member--01 {
  background-image: url("../images/recruit-pr-01.jpg");
  background-image: image-set(url("../images/recruit-pr-01.webp") type('image/webp'), url("../images/recruit-pr-01.jpg") type('image/jpeg'));
}

.p-top-recruit__member--02 {
  background-image: url("../images/recruit-yoshihara.png");
  background-image: image-set(url("../images/recruit-yoshihara.webp") type('image/webp'), url("../images/recruit-yoshihara.png") type('image/png'));
}

.p-top-recruit__member--03 {
  background-image: url("../images/recruit-hirakata.jpg");
  background-image: image-set(url("../images/recruit-hirakata.webp") type('image/webp'), url("../images/recruit-hirakata.jpg") type('image/jpeg'));
}

.p-top-recruit__member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.p-top-recruit__inner {
  position: relative;
  z-index: 1;
}

.p-top-recruit__intro {
  max-width: 650px;
  margin: 40px auto 40px;
  line-height: 2;
  text-align: center;
  color: #fdfdfd;
}
@media (max-width: 767px) {
  .p-top-recruit__intro {
    text-align: left;
    margin: 20px auto 20px;
  }
}

.p-top-recruit__intro span {
  display: block;
}

.p-top-recruit__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 730px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-top-recruit__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-top-recruit-card {
  text-align: center;
}

.p-top-recruit-card .hover-lift {
  background-color: #fdfdfd;
  padding: 40px 24px;
}
@media (max-width: 1023px) {
  .p-top-recruit-card .hover-lift {
    opacity: 0.9;
  }
}

.p-top-recruit-card__icon {
  margin-bottom: 16px;
}

.p-top-recruit-card__icon img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  object-fit: contain;
  display: block;
}

.p-top-recruit-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #111111;
}

.p-page-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-page-hero {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: 320px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-page-hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.p-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 113, 185, 0.35) 0%, rgba(0, 113, 185, 0.6) 100%);
}

.p-page-hero > .l-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-page-hero__title {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: #fdfdfd;
}
@media (max-width: 767px) {
  .p-page-hero__title {
    font-size: 3rem;
  }
}

.p-page-hero__subtitle {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fdfdfd;
}
@media (max-width: 767px) {
  .p-page-hero__subtitle {
    font-size: 16px;
  }
}

.p-page-hero__breadcrumb {
  position: absolute;
  left: 0;
  bottom: 24px;
  z-index: 1;
  font-size: 14px;
  color: #fdfdfd;
  text-align: left;
  max-width: none;
  margin-inline: 0;
  padding-left: 24px;
  padding-right: 24px;
  width: auto;
}
@media (max-width: 767px) {
  .p-page-hero__breadcrumb {
    font-size: 12px;
    bottom: 12px;
  }
}

.p-page-hero__breadcrumb a {
  color: #fdfdfd;
  text-decoration: none;
}

.p-page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.p-page-hero__breadcrumb-sep {
  margin: 0 0.35em;
  opacity: 0.9;
}

/* 会社案内ページ用ヒーロー背景 */
.p-page-hero--company .p-page-hero__bg {
  background-image: url("../images/page-top-back-fujinet-company.jpg");
  background-image: image-set(url("../images/page-top-back-fujinet-company.webp") type('image/webp'), url("../images/page-top-back-fujinet-company.jpg") type('image/jpeg'));
}

/* 事業案内ページ用ヒーロー背景 */
.p-page-hero--service .p-page-hero__bg {
  background-image: url("../images/page-top-back-fujinet-service.jpg");
  background-image: image-set(url("../images/page-top-back-fujinet-service.webp") type('image/webp'), url("../images/page-top-back-fujinet-service.jpg") type('image/jpeg'));
}

/* 施工実績ページ用ヒーロー背景 */
.p-page-hero--works .p-page-hero__bg {
  background-image: url("../images/page-top-back-fujinet-works.jpg");
  background-image: image-set(url("../images/page-top-back-fujinet-works.webp") type('image/webp'), url("../images/page-top-back-fujinet-works.jpg") type('image/jpeg'));
}

/* インタビュー対象者紹介ページ用ヒーロー背景 */
.p-page-hero--recruit .p-page-hero__bg {
  background-image: url("../images/page-top-back-fujinet-recruit.jpg");
  background-image: image-set(url("../images/page-top-back-fujinet-recruit.webp") type('image/webp'), url("../images/page-top-back-fujinet-recruit.jpg") type('image/jpeg'));
}

/* お問い合わせページ用ヒーロー背景 */
.p-page-hero--contact .p-page-hero__bg {
  background-image: url("../images/page-top-back-fujinet-company.jpg");
  background-image: image-set(url("../images/page-top-back-fujinet-company.webp") type('image/webp'), url("../images/page-top-back-fujinet-company.jpg") type('image/jpeg'));
}

.p-intro__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 1023px) {
  .p-intro__body {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

.p-intro__content {
  flex: 1 1 60%;
  max-width: 640px;
}
@media (max-width: 1023px) {
  .p-intro__content {
    max-width: 100%;
  }
}

.p-intro__quote {
  margin: 0 0 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #0071B9;
}
@media (max-width: 767px) {
  .p-intro__quote {
    margin-bottom: 24px;
    font-size: 18px;
  }
}

.p-intro__text {
  margin: 0 0 40px;
  line-height: 2;
  color: #111111;
}

.p-intro__text p {
  margin: 0 0 1em;
}

.p-intro__text p:last-child {
  margin-bottom: 0;
}

.p-intro__name {
  margin: 0;
  color: #111111;
  text-align: right;
  font-size: 16px;
}
.p-intro__name span {
  font-size: 20px;
}

.p-intro__figure {
  width: 500px;
  max-height: 500px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-intro__figure {
    width: 100%;
    max-height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-intro__figure {
    max-width: 100%;
    width: 100%;
    max-height: 450px;
  }
}

.p-intro__figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-intro__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-company-concept {
  position: relative;
  background-image: url("../images/company-bg.jpg");
  background-image: image-set(url("../images/company-bg.webp") type('image/webp'), url("../images/company-bg.jpg") type('image/jpeg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.p-company-concept__lead {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #0071B9;
}
@media (max-width: 767px) {
  .p-company-concept__lead {
    text-align: left;
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-company-concept__lead {
    font-size: 28px;
  }
}

.p-company-concept__text {
  font-size: 28px;
  line-height: 2;
  color: #111111;
}
@media (max-width: 767px) {
  .p-company-concept__text {
    font-size: 20px;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-company-concept__text {
    font-size: 24px;
  }
}

.p-company-concept__visual {
  margin: 0 auto 48px;
  text-align: center;
  max-width: 100%;
}
@media (max-width: 1023px) {
  .p-company-concept__visual {
    margin-bottom: 0;
  }
}

.p-company-concept__visual figure picture {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.p-company-concept__visual img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.p-company-content {
  text-align: center;
  background-color: #fdfdfd;
}

.p-company-section__body {
  max-width: 800px;
  margin: 0 auto;
}

.p-company-table {
  width: 100%;
  border-collapse: collapse;
}

.p-company-table th,
.p-company-table td {
  padding: 20px 24px;
  text-align: left;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #cbcbcb;
}

.p-company-table th {
  width: 160px;
  font-weight: 500;
  color: #111111;
}

.p-company-table td {
  color: #111111;
  line-height: 1.7;
}

/* SP: 会社概要テーブルは th と td を上下に並べる */
@media (max-width: 767px) {
  .p-company-table tbody tr {
    display: block;
  }
  .p-company-table th,
  .p-company-table td {
    display: block;
    width: 100%;
    padding-inline: 16px;
  }
  .p-company-table th {
    width: auto;
    padding-top: 16px;
    padding-bottom: 4px;
    border-bottom: none;
    font-weight: 500;
  }
  .p-company-table td {
    padding-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #cbcbcb;
  }
}
.p-service-section__body {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .p-service-section__body {
    flex-direction: column;
    gap: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-service-section__body {
    flex-direction: column;
    gap: 48px;
  }
}

@media (max-width: 1023px) {
  .p-service-section--image-right .p-service-section__body {
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .p-service-section--image-left .p-service-section__body {
    flex-direction: column;
  }
}

.p-service-section__text {
  flex: 1 1 50%;
  min-width: 0;
}
@media (max-width: 1023px) {
  .p-service-section__text {
    order: 2;
  }
}

.p-service-section__text p {
  line-height: 2;
}

.p-service-section__figure {
  flex: 0 0 48%;
  max-width: 560px;
  overflow: hidden;
  height: 420px;
}
@media (max-width: 767px) {
  .p-service-section__figure {
    order: 1;
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-service-section__figure {
    max-width: 100%;
    order: 1;
    width: 100%;
    height: 450px;
  }
}

.p-service-section__figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-service-section__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-service-section__figure img {
    height: 260px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-service-section__figure img {
    height: 450px;
  }
}

.p-works-intro__text {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  color: #0071B9;
  margin: 0;
}
@media (max-width: 767px) {
  .p-works-intro__text {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-works-intro__text {
    margin: 0 auto;
  }
}

.works-detail-block {
  text-align: center;
}

.p-works-detail-head__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  color: #0071B9;
}
@media (max-width: 767px) {
  .p-works-detail-head__title {
    margin: 0 0 8px;
  }
}

.p-works-detail-head__period {
  margin: 0;
  font-weight: 500;
  color: #111111;
}

/* 施工前・施工後 */
.p-works-detail__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .p-works-detail__gallery {
    grid-template-columns: 1fr;
  }
}

.p-works-detail__figure {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.p-works-detail__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .l-section.p-works-detail-nav {
    padding-top: 0;
  }
}
/* Recruit ヒーロー */
.p-recruit-hero {
  position: relative;
  overflow: hidden;
  color: #fdfdfd;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding: 40px 16px;
}
@media (max-width: 767px) {
  .p-recruit-hero {
    min-height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-hero {
    min-height: 500px;
  }
}

.p-recruit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/recruit-bg.jpg");
  background-image: image-set(url("../images/recruit-bg.webp") type("image/webp"), url("../images/recruit-bg.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
}

.p-recruit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.p-recruit-hero__inner {
  position: relative;
  bottom: 200px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-recruit-hero__inner {
    bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-hero__inner {
    bottom: 100px;
  }
}

.p-recruit-hero__catch {
  margin: 0 0 12px;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p-recruit-hero__catch {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-hero__catch {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .p-recruit-hero__catch br {
    display: none;
  }
}

.p-recruit-hero__sub-catch {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-recruit-hero__sub-catch {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-hero__sub-catch {
    font-size: 18px;
  }
}

/* 採用メッセージ */
.p-recruit-message {
  background-color: #E3EFF7;
}

.p-recruit-message .section-heading {
  text-align: center;
}

.p-recruit-message__body {
  max-width: 950px;
  margin: 0 auto;
}

.p-recruit-message__lead {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #0071B9;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .p-recruit-message__lead {
    font-size: 18px;
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-message__lead {
    text-align: left;
  }
}

.p-recruit-message__text {
  margin: 0 0 20px;
  line-height: 2;
  color: #111111;
}

.p-recruit-message__text:last-child {
  margin-bottom: 0;
}

/* 働く環境・カルチャー */
.p-recruit-culture__box {
  background-color: #E3EFF7;
  border-radius: 4px;
  padding: 30px 41px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .p-recruit-culture__box {
    padding: 20px 24px;
  }
}

.p-recruit-culture__box:last-of-type {
  margin-bottom: 40px;
}

.p-recruit-culture__box-header {
  display: flex;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 26px;
  color: #0071B9;
}
@media (max-width: 767px) {
  .p-recruit-culture__box-header {
    gap: 16px;
    margin-bottom: 16px;
  }
}

.p-recruit-culture__number {
  margin: 0;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-recruit-culture__number {
    font-size: 40px;
  }
}

.p-recruit-culture__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-recruit-culture__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-culture__title {
    font-size: 28px;
  }
}

.p-recruit-culture__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .p-recruit-culture__inner {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.p-recruit-culture__text-block {
  max-width: 550px;
  line-height: 2.2;
  color: #111111;
}
@media (max-width: 767px) {
  .p-recruit-culture__text-block {
    order: 2;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-culture__text-block {
    max-width: 100%;
    order: 2;
  }
}

.p-recruit-culture__text-block p {
  margin: 0 0 16px;
}

.p-recruit-culture__text-block p:last-child {
  margin-bottom: 0;
}

.p-recruit-culture__image {
  width: 450px;
  height: 300px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-recruit-culture__image {
    order: 1;
    width: 100%;
    height: 280px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-culture__image {
    width: 100%;
    height: 450px;
  }
}

.p-recruit-culture__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-recruit-culture__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-recruit-culture__action {
  margin: 0;
  text-align: center;
}

.p-recruit-culture__action .p-top-cta__button {
  margin: 0 auto;
}

/* 社員インタビュー */
.p-recruit-interview__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .p-recruit-interview__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-recruit-interview__list {
    grid-template-columns: 1fr 1fr;
  }
}

.p-recruit-interview__card {
  display: flex;
  flex-direction: column;
  background-color: #fdfdfd;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 600px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
@media (max-width: 1023px) {
  .p-recruit-interview__card {
    height: auto;
  }
}
.p-recruit-interview__card:hover {
  opacity: 0.95;
}

.p-recruit-interview__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0;
}

.p-recruit-interview__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-recruit-interview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-recruit-interview__body {
  padding: 24px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
@media (max-width: 767px) {
  .p-recruit-interview__body {
    padding: 16px 16px 16px;
    gap: 8px;
  }
}

.p-recruit-interview__person {
  display: flex;
  gap: 8px;
}

.p-recruit-interview__person-number {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
}

.p-recruit-interview__person-name {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-recruit-interview__person-name {
    font-size: 20px;
  }
}

.p-recruit-interview__comment {
  margin: 0 0 8px;
  line-height: 1.7;
}

.p-recruit-interview__body .c-btn-circle {
  justify-content: flex-end;
}

/* よくあるご質問 */
.p-recruit-faq {
  background-color: #E3EFF7;
}

.p-recruit-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 40px;
  background-color: #fdfdfd;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .p-recruit-faq__inner {
    padding: 24px 24px 24px;
  }
}

.p-recruit-faq__item {
  margin-bottom: 16px;
}

.p-recruit-faq__item:last-child {
  margin-bottom: 0;
}

.p-recruit-faq__q {
  margin: 0 0 8px;
  padding: 12px 16px;
  font-weight: 700;
  color: #fdfdfd;
  background-color: #0071B9;
}

.p-recruit-faq__a {
  margin: 0;
  padding: 12px 16px 16px;
  line-height: 1.8;
}

/* 募集要項 */
.p-recruit-guideline .section-heading {
  text-align: center;
}

.p-recruit-guideline__rows {
  padding: 32px 40px 24px;
  margin-bottom: 32px;
}

.p-recruit-guideline__row {
  display: flex;
  gap: 150px;
  align-items: center;
  line-height: 1.7;
  color: #111111;
  padding: 12px 0;
}
@media (max-width: 767px) {
  .p-recruit-guideline__row {
    padding: 4px 0;
  }
}

.p-recruit-guideline__term {
  margin: 0;
  font-weight: 700;
  min-width: 80px;
}

.p-recruit-guideline__desc {
  margin: 0;
  flex: 1;
}

.p-recruit-guideline__note {
  display: block;
  margin-top: 6px;
  font-size: 0.85em;
  line-height: 1.6;
}

.p-recruit-guideline__divider {
  height: 0;
  border-bottom: 1px solid #cbcbcb;
  margin: 12px 0;
}

/* SP: 募集要項の term と desc を左右から上下に */
@media (max-width: 767px) {
  .p-recruit-guideline__rows {
    padding: 0;
  }
  .p-recruit-guideline__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .p-recruit-guideline__term {
    min-width: 0;
  }
}
.p-recruit-guideline .p-recruit-guideline__action {
  margin: 0;
  text-align: center;
}

.p-recruit-guideline .p-recruit-guideline__action .p-top-cta__button {
  margin: 0 auto;
}

/* インタビュー対象者紹介 */
.p-interview-intro {
  background-color: #E3EFF7;
}

.p-interview-intro__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .p-interview-intro__body {
    flex-direction: column;
    gap: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-interview-intro__body {
    flex-direction: column;
    gap: 40px;
  }
}

.p-interview-intro__text {
  width: 100%;
  max-width: 625px;
  background-color: #fdfdfd;
  padding: 20px 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-interview-intro__text {
    max-width: 100%;
  }
}

.p-interview-intro__heading {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 30px;
  color: #0071B9;
}
@media (max-width: 767px) {
  .p-interview-intro__heading {
    margin-bottom: 12px;
  }
}

.p-interview-intro__name {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
}
@media (max-width: 767px) {
  .p-interview-intro__name {
    font-size: 28px;
  }
}

.p-interview-intro__meta {
  margin-bottom: 4px;
  font-weight: 500;
}

.p-interview-intro__quote {
  margin: 0;
  font-weight: 700;
  line-height: 2;
  color: #0071B9;
  line-height: 1.95;
}

.p-interview-intro__figure {
  margin: 0;
  width: 100%;
  max-width: 500px;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-interview-intro__figure {
    height: 280px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-interview-intro__figure {
    max-width: 100%;
    height: 450px;
  }
}

.p-interview-intro__figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-interview-intro__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* インタビュー Q&A */
.p-interview-qa__item {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .p-interview-qa__item {
    padding: 50px 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-interview-qa__item {
    padding: 50px 0;
  }
}

.p-interview-qa__item:first-child {
  padding-top: 0;
}

@media (max-width: 767px) {
  .p-interview-qa__item .c-title-under__title {
    font-size: 20px;
  }
}

.p-interview-qa__content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 1023px) {
  .p-interview-qa__content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.p-interview-qa__image {
  max-width: 560px;
  width: 100%;
  height: 400px;
}
@media (max-width: 767px) {
  .p-interview-qa__image {
    margin: 0;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    order: 1;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-interview-qa__image {
    max-width: 100%;
    height: 450px;
    order: 1;
  }
}

.p-interview-qa__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-interview-qa__a {
  min-width: 0;
  flex: 1;
}
@media (max-width: 767px) {
  .p-interview-qa__a {
    order: 2;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-interview-qa__a {
    order: 2;
  }
}

.p-interview-qa__a p {
  margin: 0 0 1em;
  line-height: 2.2;
  color: #111111;
}

.p-interview-qa__a p:last-child {
  margin-bottom: 0;
}

/* お問い合わせフォーム */
.p-contact-form__intro-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.p-contact-form__intro {
  margin: 0;
  max-width: 980px;
  line-height: 2.2;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-contact-form__intro {
    text-align: left;
  }
}

.p-contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 980px;
  margin: 0 auto;
}

.p-contact-form__item {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.p-contact-form__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-contact-form__label {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}

.p-contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 21px;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 400;
  color: #fdfdfd;
  background-color: #ef0a0d;
  border-radius: 2px;
}

.p-contact-form__input,
.p-contact-form__textarea {
  width: 100%;
  height: 60px;
  padding: 0 12px;
  line-height: 1.5;
  color: #111111;
  border: 1px solid #cbcbcb;
  font-family: inherit;
  box-sizing: border-box;
  border-radius: 0 !important;
}

.p-contact-form__input::placeholder,
.p-contact-form__textarea::placeholder {
  color: #cbcbcb;
  font-size: 14px;
}

.p-contact-form__textarea {
  height: 280px;
  min-height: 280px;
  padding: 12px;
  resize: vertical;
}

.p-contact-form__item--textarea .p-contact-form__textarea {
  height: 280px;
  min-height: 280px;
}

.p-contact-form__privacy {
  margin: 0;
  line-height: 1.8;
  color: #111111;
  max-width: 980px;
  margin: 40px auto;
}

.p-contact-form__privacy a {
  color: #0071B9;
  text-decoration: underline;
}

.p-contact-form__privacy a:hover {
  opacity: 0.85;
}

.p-contact-form__submit {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin: 0;
}

.p-contact-form__btn {
  max-width: 422px;
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* 採用エントリーフォーム */
.p-entry-form__intro-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.p-entry-form__intro {
  max-width: 980px;
  margin: 0;
  line-height: 2.2;
}
@media (max-width: 1023px) {
  .p-entry-form__intro {
    text-align: left;
  }
}

.p-entry-form__intro p {
  margin: 0 0 1em;
}

.p-entry-form__intro p:last-child {
  margin-bottom: 0;
}

.p-entry-form__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 980px;
  margin: 0 auto;
}

.p-entry-form__item {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.p-entry-form__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-entry-form__label {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}

.p-entry-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 21px;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 400;
  color: #fdfdfd;
  background-color: #ef0a0d;
  border-radius: 2px;
}

.p-entry-form__input,
.p-entry-form__textarea {
  width: 100%;
  height: 60px;
  padding: 0 12px;
  line-height: 1.5;
  color: #111111;
  border: 1px solid #cbcbcb;
  font-family: inherit;
  box-sizing: border-box;
}

.p-entry-form__input::placeholder,
.p-entry-form__textarea::placeholder {
  color: #cbcbcb;
  font-size: 14px;
}

.p-entry-form__textarea {
  height: 280px;
  min-height: 280px;
  padding: 12px;
  resize: vertical;
}

.p-entry-form__item--textarea .p-entry-form__textarea {
  height: 280px;
  min-height: 280px;
}

.p-entry-form__privacy {
  margin: 0;
  line-height: 1.8;
  color: #111111;
  max-width: 980px;
  margin: 40px auto;
}

.p-entry-form__privacy a {
  color: #0071B9;
  text-decoration: underline;
}

.p-entry-form__privacy a:hover {
  opacity: 0.85;
}

.p-entry-form__submit {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin: 0;
}

.p-entry-form__btn {
  max-width: 422px;
  width: 100%;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.p-404__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.p-404__title {
  font-size: 28px;
  margin-bottom: 20px;
}

.p-404__text {
  line-height: 1.6;
  margin-bottom: 40px;
}

.p-404__actions {
  display: flex;
  justify-content: center;
}

/* Noto Sans JP - regular */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotSansJP/noto-sans-jp-v56-japanese_latin-regular.woff2") format("woff2");
}
/* Noto Sans JP - 500 */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotSansJP/noto-sans-jp-v56-japanese_latin-500.woff2") format("woff2");
}
/* Noto Sans JP - 700 */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotSansJP/noto-sans-jp-v56-japanese_latin-700.woff2") format("woff2");
}
/* Noto Sans JP - 900 */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotSansJP/noto-sans-jp-v56-japanese_latin-900.woff2") format("woff2");
}
/* Roboto - regular */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto/roboto-v50-latin-regular.woff2") format("woff2");
}
/* Roboto - 500 */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto/roboto-v50-latin-500.woff2") format("woff2");
}
/* Roboto - 700 */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto/roboto-v50-latin-700.woff2") format("woff2");
}
/* Roboto - 900 */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Roboto/roboto-v51-latin-900.woff2") format("woff2");
}
/* ===============================
fade / slide / zoom
スクロール発火用
=============================== */
.fade-up,
.fade-down,
.fade-left,
.zoom-in {
  will-change: opacity, transform;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fade-down {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-down.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.is-active {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.zoom-in.is-active {
  opacity: 1;
  transform: scale(1);
}

/* ===============================
hover lift
=============================== */
.hover-lift {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
  will-change: transform, opacity;
}
.hover-lift:hover {
  transform: translateY(-10px);
  opacity: 0.8;
}

/* ===============================
image zoom
=============================== */
.hover-zoom {
  overflow: hidden;
}
.hover-zoom img {
  transition: transform 0.5s ease;
}
.hover-zoom:hover img {
  transform: scale(1.08);
}

/* ===============================
delay utilities
transition と animation の両方に対応
=============================== */
.delay-1 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
  animation-delay: 1s;
}

/* ===============================
image reveal base
=============================== */
.reveal-img,
.reveal-left,
.reveal-right {
  position: relative;
  overflow: hidden;
}

.reveal-img img,
.reveal-left img,
.reveal-right img {
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.1);
  will-change: opacity, transform;
}

/* overlay color */
.reveal-img::before,
.reveal-left::before,
.reveal-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0071B9;
  z-index: 2;
  will-change: transform;
}

/* ===============================
reveal left → right
=============================== */
@keyframes revealLeftMask {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes revealLeftImage {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal-left::before {
  transform: translateX(0);
}

.reveal-left.is-active::before {
  animation: revealLeftMask 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.reveal-left.is-active img {
  animation: revealLeftImage 0.9s ease 0.25s forwards;
}

/* ===============================
reveal right → left
=============================== */
@keyframes revealRightMask {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes revealRightImage {
  from {
    transform: translateX(40px) scale(1.1);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
.reveal-right::before {
  transform: translateX(0);
}

.reveal-right.is-active::before {
  animation: revealRightMask 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.reveal-right.is-active img {
  animation: revealRightImage 0.9s ease 0.25s forwards;
}
