@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* Modern CSS reset (trimmed) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

:root {
  --header-h: 72px;
}

html {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #011d2e;
  background: #ffffff;
  scroll-padding-top: calc(var(--header-h) + 0px);
}

body {
  line-height: 1.6;
}

::selection {
  background: rgba(10, 102, 255, 0.18);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(10, 102, 255, 0.35);
  outline-offset: 3px;
}

#page {
  position: relative;
  z-index: 1;
  background: #fcfcfc;
  padding-top: 85px;
}

.is-menu-open {
  overflow: hidden;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 0px);
}

.en {
  font-family: "Rubik", sans-serif;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}
.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
.l-container {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  position: relative;
  z-index: 9;
}
.l-container--full {
  width: 100%;
}
.l-container--wide {
  width: 95%;
}
@media (min-width: 768px) {
  .l-container--wide {
    width: 95%;
  }
}

.l-section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
}
.l-section--tight {
  padding: 40px 0;
}
.l-section--bg-white {
  background: #ffffff;
}
.l-section--message {
  padding-top: 0;
  padding-bottom: 100px;
}
.l-section--recruitinfo {
  padding-bottom: 80px;
  position: relative;
}
.l-section--recruitinfo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/sub/recruit/recruit-bg3.png) no-repeat top center/cover;
  z-index: -1;
}
@media (min-width: 768px) {
  .l-section--recruitinfo {
    padding-bottom: 160px;
  }
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.l-header.is-scrolled {
  background-color: #ffffff;
}
.l-header--recruit {
  background-color: transparent;
  backdrop-filter: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.l-header--recruit.is-scrolled {
  background-color: rgba(1, 90, 229, 0.88);
}
.l-header--recruit .l-header__nav {
  color: #ffffff;
}
.l-header--recruit .l-header__nav a {
  font-family: "Rubik", sans-serif;
}
.l-header--recruit .l-header__brand {
  width: auto;
  max-width: 110px;
  font-family: "Rubik", sans-serif;
}
@media (min-width: 768px) {
  .l-header--recruit .l-header__brand {
    width: auto;
    max-width: none;
  }
}
.l-header--recruit .l-header__brand-text {
  display: none;
}
@media (min-width: 768px) {
  .l-header--recruit .l-header__brand-text {
    display: block;
  }
}
.l-header--recruit .c-button {
  font-family: "Rubik", sans-serif;
}
.l-header--recruit .l-header__menu-footer a {
  width: 100%;
}
.l-header__inner {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding: 20px 0;
  }
}
.is-menu-open .l-header__inner {
  visibility: hidden;
}
.l-header__brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  max-width: 110px;
  width: auto;
  gap: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #011d2e;
  color: #ffffff;
  font-size: 16px;
}
@media (min-width: 768px) {
  .l-header__brand {
    max-width: 180px;
  }
}
.l-header__nav {
  display: none;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: flex;
  }
}
.l-header__nav-link {
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
}
.l-header__cta {
  padding: 8px 25px !important;
  min-width: auto !important;
  width: fit-content !important;
  font-size: 12px !important;
}
@media (min-width: 768px) {
  .l-header__cta {
    display: inline-flex !important;
    padding: 10px 20px !important;
    width: 160px !important;
    font-size: 16px !important;
  }
}
.l-header__cta--white {
  background-color: #ffffff !important;
  color: #1e7aea !important;
}
.l-header__menu-button {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #011d2e;
}
.l-header__menu-button .l-header__menu-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transition: background-color 0.22s ease;
}
.l-header__menu-button .l-header__menu-icon::before, .l-header__menu-button .l-header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.l-header__menu-button .l-header__menu-icon::before {
  top: calc(-1 * (3px + 5px));
}
.l-header__menu-button .l-header__menu-icon::after {
  top: calc(3px + 5px);
}
@media (min-width: 768px) {
  .l-header__menu-button {
    display: none;
  }
}
.is-menu-open .l-header__menu-button {
  visibility: hidden;
}
.l-header .l-header__menu-button.is-open .l-header__menu-icon {
  background-color: transparent;
}
.l-header .l-header__menu-button.is-open .l-header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header .l-header__menu-button.is-open .l-header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.l-header::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.is-menu-open .l-header::before {
  opacity: 1;
}
.l-header__menu-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
  max-height: 95dvh;
  overflow-y: auto;
  background: #0069e8;
  background: linear-gradient(125deg, rgb(0, 105, 232) 0%, rgb(31, 123, 234) 100%);
  padding: 30px 25px 30px;
  z-index: 1;
  animation: menuFadeIn 0.25s ease forwards;
  border-radius: 5px;
}
.l-header__menu-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/common/sp-header-bg01.png) no-repeat top left/contain;
  z-index: -1;
}
.l-header__menu-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/common/sp-header-bg02.png) no-repeat bottom right/contain;
  z-index: -1;
}
@keyframes menuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-header__menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 0px;
}
.l-header__menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.l-header__menu-brand img {
  width: 120px;
  height: auto;
}
.l-header__menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
}
.l-header__menu-list {
  display: grid;
}
.l-header__menu-footer {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.l-header__menu-footer a {
  width: 50%;
  min-width: auto !important;
  font-size: 14px;
  padding: 20px 0;
  border-radius: 5px;
}
.l-header__menu-footer a::before {
  display: none;
}
.l-header li:last-child .l-header__menu-link {
  border-bottom: none;
}
.l-header__menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.l-header__menu-link::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
}
.l-header__menu-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: rgba(255, 255, 255, 0.8) solid 2px;
  border-right: rgba(255, 255, 255, 0.8) solid 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 4px;
}
.l-header__menu-adress {
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 20px 25px;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.9;
}

.l-footer {
  padding: 30px 0 30px;
  border-top: 0px solid #efefef;
  background: #ffffff;
  font-size: 13px;
  color: #5f6f86;
}
@media (min-width: 768px) {
  .l-footer {
    border-top: 1px solid #efefef;
    padding: 120px 0 60px;
  }
}
.l-footer--recruit {
  background-color: #0069e8;
  position: relative;
}
.l-footer--recruit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/sub/recruit/footer-bg.png") no-repeat center center/cover;
}
.l-footer--recruit .l-footer__head-brand a {
  display: flex;
  gap: 20px;
  align-items: center;
}
.l-footer--recruit .l-footer__head-brand a span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  letter-spacing: 0.02em;
  border: 1px solid #ffffff;
  padding: 5px 15px;
  border-radius: 10px;
}
.l-footer--recruit .l-footer__title {
  display: block;
  color: #ffffff;
}
.l-footer--recruit .l-footer__title::before {
  border-radius: 50px;
  background: #ffffff;
}
.l-footer--recruit .l-footer__list a {
  color: #ffffff;
}
.l-footer--recruit .l-footer__policies a {
  color: #ffffff;
}
.l-footer--recruit .l-footer__address {
  color: #ffffff;
}
.l-footer--recruit .l-footer__bottom {
  color: #ffffff;
}
.l-footer__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .l-footer__head {
    align-items: center;
    flex-direction: row;
    gap: 24px;
    padding-bottom: 60px;
    margin-bottom: 80px;
  }
}
.l-footer__head-brand img {
  display: block;
  width: 140px;
  height: auto;
}
@media (min-width: 768px) {
  .l-footer__head-brand img {
    width: 100%;
    max-width: 240px;
  }
}
.l-footer__head-actions {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__head-actions {
    width: fit-content;
    flex-direction: row;
    gap: 8px;
  }
}
.l-footer__head-actions a {
  width: 50%;
  min-width: auto;
  padding: 15px 10px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .l-footer__head-actions a {
    width: 100%;
    min-width: 240px;
    font-size: 14px;
  }
}
.l-footer__upper {
  display: grid;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .l-footer__upper {
    grid-template-columns: auto 1fr auto;
    gap: 40px;
  }
}
.l-footer__nav {
  display: grid;
  gap: 25px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .l-footer__nav {
    gap: 50px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.l-footer__column {
  min-width: 0;
}
.l-footer__title {
  margin: 0 0 20px;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #011d2e;
  position: relative;
  line-height: 1;
}
.l-footer__title::before {
  content: "";
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../../assets/images/common/dot.svg) no-repeat right/contain;
}
.l-footer__list {
  margin-left: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.l-footer__list a {
  color: #011d2e;
  font-size: 13px;
}
.l-footer__badges {
  display: flex;
  gap: 8px;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
}
.l-footer__badges.sp-only {
  display: flex !important;
  justify-content: flex-start;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .l-footer__badges.sp-only {
    margin-top: 0px;
    display: none !important;
  }
}
.l-footer__badge img {
  width: auto;
  object-fit: contain;
  max-height: 75px;
}
.l-footer__middle {
  margin-top: 50px;
  padding-top: 16px;
  display: grid;
  gap: 8px;
}
.l-footer__policies {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.l-footer__policies a {
  color: #5f6f86;
  font-size: 14px;
}
.l-footer__address {
  margin: 40px 0 0;
  font-size: 14px;
  color: #011d2e;
  line-height: 2;
}
.l-footer__bottom {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #011d2e;
}
@media (min-width: 768px) {
  .l-footer__bottom {
    justify-content: flex-end;
  }
}
.l-footer__copyright {
  margin: 0;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  isolation: isolate;
  vertical-align: middle;
  transition: color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
}
@media (min-width: 768px) {
  .c-button {
    width: fit-content;
    min-width: 180px;
    padding: 15px 20px;
    font-size: 14px;
  }
}
.c-button::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: background-color 0.28s ease;
  z-index: 3;
}
.c-button::after {
  content: "";
  position: absolute;
  inset: -1px;
  background-color: var(--c-button-hover-fill);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
@media (hover: hover) {
  .c-button--primary:hover::after, .c-button--partner:hover::after, .c-button--default:hover::after, .c-button--white:hover::after, .c-button--ghost:hover::after {
    transform: scaleX(1);
  }
  .c-button--white:hover {
    color: #ffffff;
    border-color: #011d2e;
  }
  .c-button--ghost:hover {
    border-color: #011d2e;
    color: #ffffff;
  }
  .c-button--recruit:hover {
    color: #1e7aea;
  }
  .c-button--recruit:hover::after {
    right: 5px;
  }
}
.c-button--primary {
  background-color: #1e7aea;
  color: #ffffff;
  --c-button-hover-fill: #011d2e;
}
.c-button--partner {
  background-color: #011d2e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(6, 14, 29, 0.08);
  --c-button-hover-fill: #1e7aea;
}
.c-button--white {
  background-color: #ffffff;
  color: #1e7aea;
  --c-button-hover-fill: #011d2e;
}
.c-button--white::before {
  background-color: #1e7aea;
}
.c-button--default {
  background-color: #011d2e;
  color: #ffffff;
  --c-button-hover-fill: #1e7aea;
}
.c-button--ghost {
  background-color: #ffffff;
  border-color: #1e7aea;
  color: #1e7aea;
  --c-button-hover-fill: #011d2e;
}
.c-button--recruit {
  background-color: #ffffff;
  color: #011d2e;
  width: 100%;
}
.c-button--recruit::before {
  display: none;
}
.c-button--recruit::after {
  inset: auto;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: transparent;
  background: url("../../assets/images/common/btn-arrow.svg") no-repeat center center/contain;
  transition: right 0.3s ease;
  z-index: 1;
}
.c-button--entry {
  background-color: #1e7aea;
  color: #ffffff;
  --c-button-hover-fill: #011d2e;
  width: 100%;
  max-width: 360px;
  margin: 80px auto 0;
  padding: 15px 30px;
  display: block;
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-button--entry {
    padding: 25px 30px;
    font-size: 18px;
  }
}
.c-button--entry::before {
  display: none;
}
.c-button--entry::after {
  inset: auto;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 31px;
  background-color: transparent;
  background: url("../../assets/images/common/btn-arrow-white.svg") no-repeat center center/contain;
  transition: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-button--entry::after {
    right: 5%;
    width: 36px;
    height: 36px;
  }
}
.c-button__icon {
  width: 18px;
  height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .c-button::after {
    transform: none;
    transition: none;
  }
  .c-button:hover::after {
    transform: none;
  }
}
.c-card {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(6, 14, 29, 0.08);
  border: 1px solid #c9c9c9;
  overflow: hidden;
}
.c-card__body {
  padding: 18px;
}
.c-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.c-card__title {
  margin: 10px 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #ffffff;
}
.c-card__text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}
.c-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.c-card--soft {
  background: #f6f8fc;
}

.c-title {
  display: grid;
  gap: 10px;
  margin: 0 0 40px;
}
.c-title__heading {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.2;
  color: #011d2e;
  position: relative;
  padding-left: 0.8em;
}
@media (min-width: 768px) {
  .c-title__heading {
    font-size: 48px;
    margin: 0 0 30px;
  }
}
.c-title__heading::before {
  content: "";
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10%;
  left: 0;
  background: url(../../assets/images/common/dot.svg) no-repeat right/contain;
}
.c-title__text {
  gap: 0px;
  justify-content: center;
  align-items: center;
}
.c-title__lead {
  margin: 0;
  font-size: 20px;
}
@media (min-width: 768px) {
  .c-title__lead {
    font-size: 24px;
  }
}
.c-title__desc {
  font-size: 16px;
  margin: 0;
  line-height: 2em;
}
.c-title--recruit .c-title__heading {
  margin-bottom: 20px;
}
.c-title--recruit .c-title__lead {
  font-size: 18px;
  color: #011d2e;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-title--recruit .c-title__lead {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.c-title--recruit .c-title__desc {
  font-size: 14px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .c-title--recruit .c-title__desc {
    font-size: 18px;
  }
}
.c-title--center {
  text-align: center;
}

.c-breadcrumbs {
  margin: 8px 0 0;
  font-size: 12px;
  color: #1e7aea;
  text-transform: uppercase;
  overflow-x: scroll;
}
.c-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
}
.c-breadcrumbs__item {
  list-style: none;
}
.c-breadcrumbs__link {
  color: #1e7aea;
  text-decoration: none;
}
.c-breadcrumbs__dott {
  width: 20px;
  height: 1px;
  background-color: #1e7aea;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.c-post-nav {
  margin-top: 120px;
}
.c-post-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.c-post-nav__item--prev {
  text-align: left;
}
.c-post-nav__item--prev a::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c9c9;
  border-radius: 50%;
}
.c-post-nav__item--archive {
  text-align: center;
}
.c-post-nav__item--archive a::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}
.c-post-nav__item--next {
  text-align: right;
}
.c-post-nav__item--next a::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c9c9;
  border-radius: 50%;
}
.c-post-nav__item--next a, .c-post-nav__item--prev a {
  border-radius: 4px !important;
  border: 1px solid #c9c9c9;
  text-align: center;
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #c9c9c9 !important;
  transition: all 0.3s !important;
}
@media (hover: hover) {
  .c-post-nav__item--next a:hover, .c-post-nav__item--prev a:hover {
    transition: all 0.3s !important;
    color: #ffffff !important;
    background-color: #011d2e !important;
    opacity: 1 !important;
  }
}
.c-post-nav__item a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  position: relative;
  width: 150px;
}
.c-post-nav__item a:hover {
  opacity: 0.7;
}
.c-post-nav__link {
  display: block;
  padding: 10px 20px;
  background-color: #1e7aea;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .c-post-nav__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "prev next" "archive archive";
  }
  .c-post-nav__item--prev {
    grid-area: prev;
  }
  .c-post-nav__item--next {
    grid-area: next;
  }
  .c-post-nav__item--archive {
    grid-area: archive;
    margin-top: 10px;
  }
}
.p-hero {
  position: relative;
  padding: 100px 0px 60px;
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
}
.p-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 210px;
  top: 30%;
  right: -65px;
  background: url("../../assets/images/top/fv-img.png") no-repeat right/contain;
  transform: translate3d(var(--hero-fv-deco-x, 0px), 0, 0);
  opacity: var(--hero-fv-deco-opacity, 1);
  will-change: transform, opacity;
}
@media (min-width: 768px) {
  .p-hero::before {
    width: 54.9048316252vw;
    height: clamp(380px, 35.1390922401vw, 580px);
    top: 20%;
    right: 0;
    transform: translate3d(var(--hero-fv-deco-x, 0px), 0, 0);
  }
}
.p-hero--recruit {
  background-color: transparent;
  padding-top: 80px;
}
.p-hero--recruit::before {
  display: none;
}
@media (min-width: 768px) {
  .p-hero {
    padding: 200px 0 185px;
  }
}
.p-hero__grid {
  display: grid;
  gap: 24px;
  align-items: center;
  width: 90%;
}
@media (min-width: 1024px) {
  .p-hero__grid {
    gap: 40px;
  }
}
.p-hero__title {
  margin: 14px 0 0;
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #011d2e;
  font-weight: 500;
  z-index: 99;
  position: relative;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-hero__title {
    font-size: 40px;
  }
}
@media (min-width: 1280px) {
  .p-hero__title {
    font-size: 4.6852122987vw;
  }
}
.p-hero__lead {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 1280px) {
  .p-hero__lead {
    margin: 40px 0 30px;
    font-size: 1.756954612vw;
  }
}
.p-hero__desc {
  font-size: 14px;
  line-height: 2em;
}
@media (min-width: 1280px) {
  .p-hero__desc {
    font-size: 1.6105417277vw;
  }
}
.p-hero__actions {
  margin-top: 30px;
}
.p-hero__actions a {
  min-width: unset;
  max-width: 160px;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .p-hero__actions a {
    max-width: 240px;
    font-size: 16px;
    border: none;
  }
}
.p-hero__actions .c-button--primary {
  position: relative;
  overflow: hidden;
}
.p-hero__visual-inner {
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(10, 102, 255, 0.13), rgba(0, 194, 255, 0.13)), repeating-linear-gradient(90deg, rgba(11, 18, 32, 0.08) 0, rgba(11, 18, 32, 0.08) 1px, transparent 1px, transparent 20px);
}
.p-hero__visual-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #c9c9c9;
  color: #011d2e;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(6, 14, 29, 0.08);
}
.p-hero--recruit h1 {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .p-hero--recruit h1 {
    width: 90%;
  }
}

main#top .p-hero[data-hero-fv] .p-hero__title-reveal {
  display: block;
}
main#top .p-hero[data-hero-fv] .p-hero__title-char {
  display: inline-block;
}

main#page .p-hero--recruit[data-hero-fv] .p-hero__title-reveal--visual {
  display: block;
}
main#page .p-hero--recruit[data-hero-fv] .p-hero__title-reveal--visual img {
  display: block;
  width: 100%;
  height: auto;
}

.p-service__button--cyan {
  color: #0082c9;
}
.p-service__button--cyan::before {
  background: #0082c9;
}
@media (hover: hover) {
  .p-service__button--cyan:hover::before {
    background: #ffffff;
  }
}
.p-service__button--green {
  color: #0ba775;
}
.p-service__button--green::before {
  background: #0ba775;
}
@media (hover: hover) {
  .p-service__button--green:hover::before {
    background: #ffffff;
  }
}
.p-service__button--purple {
  color: #442e8d;
}
.p-service__button--purple::before {
  background: #442e8d;
}
@media (hover: hover) {
  .p-service__button--purple:hover::before {
    background: #ffffff;
  }
}
.p-service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.p-service-title__text {
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-service-title__text {
    flex-direction: row;
  }
}
.p-service-title__lead {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-service-title__lead {
    width: 50%;
  }
}
.p-service-title__desc {
  width: 100%;
}
@media (min-width: 768px) {
  .p-service-title__desc {
    width: 50%;
  }
}
.p-service__card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  color: #fff;
  padding: 30px 25px 30px;
  position: relative;
}
@media (min-width: 768px) {
  .p-service__card {
    padding: 60px 80px 60px;
  }
}
.p-service__card--large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.p-service__card--large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/top/service-img01-bg.png") no-repeat top right/contain;
  z-index: 0;
}
.p-service__card--large::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-service__card--large .p-service__content {
  width: 45%;
  z-index: 2;
}
.p-service__card--large .p-service__image {
  width: 50%;
  z-index: 1;
}
.p-service__card--small {
  flex-direction: column;
  justify-content: center;
}
.p-service__card--small::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p-service__card--small .p-service__content {
  flex-direction: column;
  display: flex;
}
@media (min-width: 768px) {
  .p-service__card--small .p-service__content {
    row-gap: 0px;
  }
}
.p-service__card--small .p-service__content img {
  order: 1;
}
.p-service__card--small .p-service__content .p-service__title {
  order: 2;
}
.p-service__card--small .p-service__content .p-service__lead {
  order: 3;
}
.p-service__card--small .p-service__content .p-service__desc {
  order: 4;
}
.p-service__card--small .p-service__content .c-button {
  order: 5;
}
.p-service__card--small img {
  position: static;
  object-fit: contain;
  z-index: 1;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-service__card--small img {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: fit-content;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.p-service__card--blue {
  background: #0069e8;
  background: linear-gradient(180deg, rgb(0, 105, 232) 0%, rgb(31, 123, 234) 100%);
}
.p-service__card--blue::before {
  background: url("../../assets/images/top/service-img04-01-bg.png") no-repeat top left/contain !important;
}
.p-service__card--blue::after {
  background: url("../../assets/images/top/service-img04-02-bg.png") no-repeat bottom right/contain !important;
}
.p-service__card--cyan {
  background: #0082c9;
  background: linear-gradient(180deg, rgb(0, 130, 201) 0%, rgb(6, 153, 234) 100%);
}
.p-service__card--cyan::before {
  background: url("../../assets/images/top/service-img02-bg.png") no-repeat top left/contain !important;
  mix-blend-mode: overlay;
}
.p-service__card--green {
  background: #0ba775;
  background: linear-gradient(180deg, rgb(11, 167, 117) 0%, rgb(3, 187, 128) 100%);
}
.p-service__card--green::before {
  background: url("../../assets/images/top/service-img03-bg.png") no-repeat top left/contain !important;
  mix-blend-mode: multiply;
}
.p-service__card--purple {
  background: #442e8d;
  background: linear-gradient(180deg, rgb(68, 46, 141) 0%, rgb(87, 59, 173) 100%);
}
.p-service__card--purple::before {
  background: url("../../assets/images/top/service-img04-01-bg.png") no-repeat top left/contain !important;
}
.p-service__card--purple::after {
  background: url("../../assets/images/top/service-img04-02-bg.png") no-repeat bottom right/contain !important;
}
.p-service__title {
  font-size: 24px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .p-service__title {
    font-size: 40px;
  }
}
.p-service__title small {
  display: block;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 400;
  border: 1px solid #fff;
}
@media (min-width: 768px) {
  .p-service__title small {
    font-size: 12px;
  }
}
.p-service__lead {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-service__lead {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.p-service__desc {
  font-size: 13px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-service__desc {
    font-size: 16px;
  }
}
.p-service__pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .p-service__grid {
    grid-template-columns: 1fr;
  }
  .p-service__card--large {
    grid-column: span 1;
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .p-service__card--large .p-service__content,
  .p-service__card--large .p-service__image {
    width: 100%;
  }
  .p-service__card--large .p-service__content {
    margin-bottom: 0px;
  }
}
#picup-news {
  background-color: #fcfcfc;
  padding: 25px 0;
}

.p-news {
  display: grid;
  grid-template-columns: auto auto;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  font-size: 14px;
  color: #011d2e;
}
@media (min-width: 768px) {
  .p-news {
    align-items: center;
    gap: 20px;
  }
}
.p-news__article {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 768px) {
  .p-news__article {
    gap: 12px;
    flex-direction: row;
  }
}
.p-news__label {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Rubik", sans-serif;
  width: 100%;
}
@media (min-width: 768px) {
  .p-news__label {
    font-size: 18px;
    width: auto;
  }
}
.p-news__date {
  font-size: 16x;
  font-family: "Rubik", sans-serif;
}
.p-news__category {
  font-size: 16x;
  color: #1e7aea;
}
.p-news__title {
  color: #011d2e;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media (min-width: 768px) {
  .p-news__title {
    white-space: nowrap;
    width: auto;
  }
}
.p-news__more {
  position: absolute;
  right: 0;
  min-width: auto;
  padding-inline: 20px;
  font-size: 10px;
  padding: 5px 5px 5px 25px;
  width: 120px;
  border: 1px solid #1e7aea;
}
@media (min-width: 768px) {
  .p-news__more {
    padding: 10px 5px 10px 25px;
    font-size: 12px;
    position: relative;
  }
}
@media (hover: hover) {
  .p-news__more:hover {
    border: 1px solid #011d2e;
  }
}
.p-news__more::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  width: 12px;
  height: 8px;
  /* マスクの設定 */
  -webkit-mask: url("../../assets/images/common/all-icon.svg") no-repeat center center/contain;
  mask: url("../../assets/images/common/all-icon.svg") no-repeat center center/contain;
  /* 初期状態のアイコンの色 */
  background-color: #1e7aea;
  border-radius: 0;
}
@media (hover: hover) {
  .p-news__more:hover::before {
    /* 初期状態のアイコンの色 */
    background-color: #ffffff;
  }
}
.p-news-detail__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-news-detail__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-news-detail__social {
  display: flex;
  gap: 10px;
}
.p-news-detail__social span {
  border-radius: 50px !important;
}
.p-news-detail__content {
  padding-top: 40px;
}
.p-news-detail__content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-block: 30px 40px;
  border-bottom: 2px solid #011d2e;
}
.p-news-detail__content h2:first-child {
  margin-top: 0;
}
.p-news-detail__content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-block: 30px 40px;
  border-left: 4px solid #011d2e;
  padding-left: 20px;
  color: #011d2e;
}
.p-news-detail__content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-block: 20px 10px;
}
.p-news-detail p {
  margin-bottom: 25px;
  line-height: 2em;
}
.p-news-detail ul {
  margin-bottom: 20px;
  padding-left: 1em;
}
.p-news-detail ul li {
  margin-bottom: 10px;
  list-style: disc;
}
.p-news-detail ol {
  margin-bottom: 20px;
  padding-left: 1em;
}
.p-news-detail ol li {
  margin-bottom: 10px;
  list-style: decimal;
}
.p-news-detail a {
  color: #1e7aea;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 5px;
}
.p-news-detail a:hover {
  opacity: 0.8;
}
.p-news-detail img {
  margin-block: 20px;
  height: auto;
}
.p-news-detail .wp-block-image .alignleft {
  float: none !important;
}
.p-news-detail .wp-block-buttons .wp-block-button__link {
  background-color: #1e7aea;
  color: #ffffff !important;
  text-decoration: none;
  position: relative;
  padding-right: 40px;
}
.p-news-detail .wp-block-buttons .wp-block-button__link:before {
  content: "";
  position: absolute;
  transition: all 0.3s;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-news-detail .wp-block-button__link[target=_blank]:before {
  content: "";
  position: absolute;
  transition: all 0.3s;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background: url(../images/common/blank-white.svg) no-repeat;
  background-size: contain;
  border: none;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.p-news-archive {
  padding-block: 60px 120px;
}
@media (min-width: 768px) {
  .p-news-archive {
    padding-block: 80px 160px;
  }
}
.p-news-archive__controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-news-archive__controls {
    flex-direction: row;
    align-items: center;
    margin-bottom: 48px;
  }
}
.p-news-archive__controls p {
  font-size: 16px;
  font-weight: 600;
}
.p-news-archive__categories {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-news-archive__category {
  width: fit-content;
  padding: 3px 20px;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  background-color: #fff;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
  text-transform: uppercase;
  color: #c9c9c9;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.p-news-archive__category.is-active {
  background-color: #1e7aea;
  color: #fff;
  border-color: #1e7aea;
}
.p-news-archive__category:hover {
  opacity: 0.9;
}
.p-news-archive__year {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.p-news-archive__year-label {
  font-size: 12px;
  color: #5f6f86;
}
.p-news-archive__year-select-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-news-archive__year-select {
  width: fit-content;
  padding: 5px 35px 5px 15px;
  border-radius: 999px;
  border: 1px solid #c9c9c9;
  font-size: 13px;
  appearance: none;
  background: url("../../assets/images/common/select-arrow.svg") no-repeat right 10px center/10px auto, #fff;
}
.p-news-archive__reset {
  font-size: 12px;
  color: #5f6f86;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  margin-left: 20px;
  padding: 5px 15px;
  cursor: pointer;
}
.p-news-archive__reset:hover {
  opacity: 0.8;
}
.p-news-archive__list {
  display: flex;
  flex-direction: column;
}
.p-news-archive__pagination {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-top: 40px;
  gap: 24px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-news-archive__pagination {
    grid-template-columns: 130px 1fr 130px;
  }
}
.p-news-archive__pagination-prev {
  justify-self: start;
}
.p-news-archive__pagination-next {
  justify-self: end;
}
@media (min-width: 768px) {
  .p-news-archive__pagination-numbers {
    min-width: 0;
  }
}
.p-news-archive__pagination-prev .previouspostslink, .p-news-archive__pagination-next .nextpostslink {
  display: flex;
  width: fit-content;
  padding: 0px 20px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #c9c9c9;
  color: #c9c9c9;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  transition: all ease 0.3s;
}
@media (hover: hover) {
  .p-news-archive__pagination-prev .previouspostslink:hover, .p-news-archive__pagination-next .nextpostslink:hover {
    transition: all ease 0.3s;
    background-color: #c9c9c9 !important;
    color: #ffffff !important;
  }
  .p-news-archive__pagination-prev .previouspostslink:hover::after, .p-news-archive__pagination-next .nextpostslink:hover::after {
    background-color: #ffffff !important;
  }
}
@media (min-width: 768px) {
  .p-news-archive__pagination-prev .previouspostslink, .p-news-archive__pagination-next .nextpostslink {
    font-size: 16px;
    width: 130px;
    height: 50px;
    padding: 0;
  }
}
.p-news-archive__pagination-next .nextpostslink::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c9c9;
  border-radius: 50%;
}
.p-news-archive__pagination-prev .previouspostslink::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c9c9;
  border-radius: 50%;
}
.p-news-archive__pagination .wp-pagenavi {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
}
.p-news-archive__pagination .wp-pagenavi a,
.p-news-archive__pagination .wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #c9c9c9;
  margin: 0;
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  .p-news-archive__pagination .wp-pagenavi a,
  .p-news-archive__pagination .wp-pagenavi span {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
@media (hover: hover) {
  .p-news-archive__pagination .wp-pagenavi a:hover {
    transition: all ease 0.3s;
    background-color: #c9c9c9;
    color: #ffffff;
  }
}
.p-news-archive__pagination .wp-pagenavi .current {
  background-color: #c9c9c9;
  color: #fff;
}
.p-news-archive__pagination .wp-pagenavi .nextpostslink {
  background-color: transparent;
  border: 1px solid #c9c9c9 !important;
  color: #c9c9c9 !important;
  position: relative;
}
@media (min-width: 768px) {
  .p-news-archive__pagination .wp-pagenavi .nextpostslink {
    width: 130px !important;
  }
}
.p-news-archive__pagination .wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c9c9;
  border-radius: 50%;
}
.p-news-archive__pagination .wp-pagenavi .previouspostslink {
  background-color: transparent !important;
  border: 1px solid #c9c9c9 !important;
  color: #c9c9c9 !important;
  position: relative;
}
@media (min-width: 768px) {
  .p-news-archive__pagination .wp-pagenavi .previouspostslink {
    width: 130px !important;
  }
}
.p-news-archive__pagination .wp-pagenavi .previouspostslink::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c9c9;
  border-radius: 50%;
}
.p-news-archive__pagination .wp-pagenavi .is-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.p-news-archive__pagination .wp-pagenavi .pages,
.p-news-archive__pagination .wp-pagenavi .extend,
.p-news-archive__pagination .wp-pagenavi .previouspostslink,
.p-news-archive__pagination .wp-pagenavi .nextpostslink {
  display: none;
}

.p-news-card {
  border-bottom: 1px solid #c9c9c9;
}
.p-news-card:first-child {
  border-top: 1px solid #c9c9c9;
}
.p-news-card__link {
  display: flex;
  align-items: stretch;
  padding-block: 25px 20px;
  column-gap: 40px;
  position: relative;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .p-news-card__link {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .p-news-card__link:after, .p-news-card__link:before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    top: 50%;
    right: 10px;
    background: no-repeat center center/contain;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 360ms ease, filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }
}
@media (min-width: 768px) {
  .p-news-card__link:after {
    background-image: url("../../assets/images/common/btn-arrow.svg");
    transform: translate3d(-2px, -50%, 0) scale(0.96);
    opacity: 1;
    filter: none;
  }
}
@media (min-width: 768px) {
  .p-news-card__link:before {
    background-image: url("../../assets/images/common/btn-arrow-blue.svg");
    transform: translate3d(-2px, -50%, 0) scale(0.96);
    opacity: 0;
    filter: drop-shadow(0 14px 22px rgba(1, 29, 46, 0));
  }
}
@media (hover: hover) and (min-width: 768px) {
  .p-news-card__link:hover:after {
    opacity: 0;
    transform: translate3d(8px, -50%, 0) scale(1);
  }
}
@media (hover: hover) and (min-width: 768px) {
  .p-news-card__link:hover:before {
    opacity: 1;
    transform: translate3d(8px, -50%, 0) scale(1);
    filter: drop-shadow(0 14px 22px rgba(1, 29, 46, 0.16));
  }
}
.p-news-card__thumb {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .p-news-card__thumb {
    width: 25%;
  }
}
.p-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-news-card__body {
    padding-right: 100px;
    width: 75%;
  }
}
.p-news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.p-news-card__date {
  font-family: "Rubik", sans-serif;
  color: #5f6f86;
}
.p-news-card__category {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Rubik", sans-serif;
  color: #1e7aea;
}
.p-news-card__category--seminar {
  color: #1e7aea;
}
.p-news-card__category--press {
  color: #f97316;
}
.p-news-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: #011d2e;
}
@media (min-width: 768px) {
  .p-news-card__title {
    font-size: 20px;
  }
}
.p-news-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-news-card__arrow::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid #c9c9c9;
  background: url("../../assets/images/common/arrow-right.svg") no-repeat center center/7px auto;
}
.p-page-header {
  padding: 35px 0 35px;
  background: #ffffff;
  width: 95%;
  margin: 0px auto 0;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-page-header {
    padding: 60px 0 60px;
    width: 95%;
  }
}
.p-page-header__inner {
  display: grid;
  gap: 8px;
}
.p-page-header__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  color: #011d2e;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-page-header__title {
    font-size: 40px;
  }
}
.p-page-header__title-sub {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  position: relative;
  padding-left: 1.5em;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.p-page-header__title-sub::before {
  content: "";
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10%;
  left: 0;
  z-index: 3;
  background: url(../../assets/images/common/dot.svg) no-repeat right/contain;
}
.p-page-header__lead {
  margin: 0;
  font-size: 14px;
  color: #1e7aea;
}
.p-page-header--company {
  /* 会社ページ固有の調整があればここに追加 */
}
.p-page-header--recruit-archive {
  padding: 40px 0 40px;
  background: url(../../assets/images/sub/recruit/sub/header-bg.jpg) no-repeat center/cover;
  width: 100%;
  margin: 0px auto 0;
  padding: 80px 0 20px;
  border-radius: 0px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-page-header--recruit-archive {
    padding: 100px 0;
  }
}
.p-page-header--recruit-archive__inner {
  display: grid;
  gap: 8px;
}
.p-page-header--recruit-archive h1 {
  color: #ffffff;
  font-size: 18px;
}
@media (min-width: 768px) {
  .p-page-header--recruit-archive h1 {
    font-size: 24px;
  }
}
.p-page-header--recruit-archive h1 span {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-page-header--recruit-archive h1 span {
    margin-top: 30px;
    font-size: 46px;
  }
}
.p-page-header--recruit-archive .c-breadcrumbs__list {
  justify-content: flex-end;
}
.p-page-header--recruit-archive .c-breadcrumbs__list li * {
  color: #ffffff;
}
.p-page-header--recruit-archive .c-breadcrumbs__list li .c-breadcrumbs__dott {
  background-color: #ffffff;
}

.p-about__cards {
  display: grid;
  gap: 14px;
}
.p-about__card {
  border-radius: 22px;
  border: 1px solid #c9c9c9;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(6, 14, 29, 0.08);
  padding: 18px;
}
.p-about__card-title {
  margin: 0;
  font-size: 18px;
  color: #011d2e;
}
.p-about__card-text {
  margin: 10px 0 0;
  color: #5f6f86;
  font-size: 14px;
}

.p-company {
  position: relative;
  border-radius: 10px;
  background: #1e7aea;
  color: #ffffff;
}
.p-company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/top/company-img-bg01.png") no-repeat top left/contain;
  z-index: 0;
  mix-blend-mode: hard-light;
  z-index: 0;
}
.p-company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/top/company-img-bg02.png") no-repeat bottom right/contain;
  z-index: 0;
  mix-blend-mode: hard-light;
  z-index: 0;
}
.p-company__inner {
  padding: 22px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 25px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-company__inner {
    padding: 130px 40px;
  }
}
.p-company__grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .p-company__grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
}
.p-company__heading {
  margin: 0 0 30px;
  font-size: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-company__heading {
    font-size: 55px;
  }
}
.p-company__lead {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-company__lead {
    font-size: 28px;
  }
}
.p-company__list {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.p-company__item:not(:last-child) {
  border-bottom: 1px solid #ffffff;
}
.p-company__item a {
  font-size: 16px;
  position: relative;
  padding-left: 1.8em;
  width: 100%;
  display: block;
  padding-block: 20px;
}
@media (min-width: 768px) {
  .p-company__item a {
    font-size: 20px;
  }
}
.p-company__item a::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}
.p-company__item a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #ffffff solid 1px;
  border-right: #ffffff solid 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 5%;
  transition: right 0.3s ease;
}
@media (hover: hover) {
  .p-company__item a:hover::before {
    right: 1%;
    transition: right 0.3s ease;
  }
}
.p-company__dt {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.p-company__dd {
  margin: 0;
}
.p-company__loopimg {
  padding-block: 0 30px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-company__loopimg {
    padding-block: 0 80px;
  }
}
.p-company .swiper-container-loopimg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  transition-timing-function: linear !important;
}
.p-company .swiper-container-loopimg .swiper-wrapper {
  transition-timing-function: linear !important;
}
.p-company .swiper-container-loopimg .swiper-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.p-company-table {
  padding: 60px 40px 60px;
  border-radius: 10px;
  background: #1e7aea;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-company-table {
    padding: 160px 40px 160px;
  }
}
.p-company-table__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.p-company-table__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .p-company-table__head {
    font-size: 18px;
  }
}
.p-company-table__head-en {
  font-weight: 500;
  font-size: 32px;
  position: relative;
  padding-left: 0.8em;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-company-table__head-en {
    font-size: 48px;
  }
}
.p-company-table__head-en::before {
  content: "";
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-company-table__head-en::before {
    width: 15px;
    height: 15px;
  }
}
.p-company-table__head-ja {
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-company-table__head-ja {
    font-size: 22px;
  }
}
.p-company-table__grid {
  display: grid;
  gap: 0px;
}
@media (min-width: 768px) {
  .p-company-table__grid {
    gap: 60px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-company-table__block {
  margin: 0;
}
.p-company-table__row {
  padding: 25px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.p-company-table__term {
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 18px;
}
.p-company-table__desc {
  margin: 0;
  line-height: 1.8;
  font-size: 14px;
}
@media (min-width: 768px) {
  .p-company-table__desc {
    font-size: 16px;
  }
}
.p-company-table__desc span {
  font-weight: 600;
  display: block;
}

.p-mission {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .p-mission {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 48px;
  }
}
.p-mission__label {
  margin: 0 0 25px;
  font-size: 22px;
  font-weight: 500;
  position: relative;
  padding-left: 1.5em;
}
.p-mission__label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../../assets/images/common/dot.svg") no-repeat right/contain;
}
.p-mission__title {
  margin: 0 0 40px;
  font-size: 28px;
  line-height: 1.4;
  color: #011d2e;
}
@media (min-width: 768px) {
  .p-mission__title {
    font-size: 46px;
  }
}
.p-mission__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #011d2e;
}
@media (min-width: 768px) {
  .p-mission__text {
    font-size: 18px;
  }
}
.p-mission__visual {
  display: flex;
  justify-content: right;
  align-items: center;
  position: absolute;
  top: 10px;
  right: -80px;
  z-index: -1;
  width: 100%;
}
@media (min-width: 768px) {
  .p-mission__visual {
    position: unset;
    top: 100px;
    z-index: 0;
  }
}
.p-mission__logo {
  width: 55%;
  height: 55%;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .p-mission__logo {
    position: unset;
    top: 100px;
    z-index: 0;
    opacity: 1;
    width: 400px;
    height: 400px;
  }
}
.p-mission__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-company-vision {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.p-company-vision__container {
  background: #ffffff;
  padding: 40px;
}
.p-company-vision__label {
  margin: 0 0 15px;
  font-size: 30px;
  font-weight: 500;
  color: #1e7aea;
}
.p-company-vision__title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.6;
  color: #011d2e;
}
@media (min-width: 768px) {
  .p-company-vision__title {
    font-size: 32px;
  }
}
.p-company-vision__text {
  margin: 0;
  font-size: 14px;
  color: #011d2e;
}

.p-company-value {
  margin-inline: auto;
}
.p-company-value__label {
  margin: 0 0 30px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  color: #1e7aea;
}
.p-company-value__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-company-value__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
.p-company-value__item {
  padding: 25px;
  border-radius: 10px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .p-company-value__item {
    padding: 40px 25px;
  }
}
.p-company-value__name {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 500;
  color: #1e7aea;
}
@media (min-width: 768px) {
  .p-company-value__name {
    font-size: 36px;
  }
}
.p-company-value__lead {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
}
.p-company-value__desc {
  margin: 20px 0 0;
  font-size: 16px;
  color: #011d2e;
}

.p-company-member__heading {
  font-weight: 500;
}
.p-company-member__section {
  padding-bottom: 0 !important;
}
.p-company-member__bg {
  background: #0069e8;
  padding: 40px 25px;
}
@media (min-width: 768px) {
  .p-company-member__bg {
    padding: 40px;
  }
}
.p-company-member__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0px;
}
@media (min-width: 768px) {
  .p-company-member__inner {
    padding: 40px 0;
  }
}
.p-company-member__swiper {
  overflow: hidden !important;
}
@media (min-width: 768px) {
  .p-company-member__swiper {
    overflow: visible !important;
  }
}
.p-company-member__swiper.is-static .swiper-controller {
  display: none;
}
.p-company-member__swiper.is-static .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transform: none !important;
}
.p-company-member__swiper.is-static .swiper-slide {
  width: auto !important;
  flex-shrink: 1;
}
@media (min-width: 768px) {
  .p-company-member__swiper.is-static .swiper-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
.p-company-member .swiper-controller {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: flex-end;
  margin-top: 3.2rem;
}
.p-company-member .swiper-pagination {
  margin-right: auto;
}
.p-company-member .swiper-button-next,
.p-company-member .swiper-button-prev {
  position: static;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  display: flex;
  border-radius: 10px;
}
.p-company-member .swiper-button-prev:after,
.p-company-member .swiper-rtl .swiper-button-next:after,
.p-company-member .swiper-button-next:after,
.p-company-member .swiper-rtl .swiper-button-prev:after {
  font-size: 20px;
  color: #fff;
}
.p-company-member__heading {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto 40px;
}
.p-company-member__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-company-member__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
.p-company-member__card {
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  background: #ffffff;
  padding: 30px 25px;
  display: flex !important;
  flex-direction: column;
  gap: 30px;
  height: auto !important;
}
@media (min-width: 768px) {
  .p-company-member__card {
    padding: 30px 40px;
    flex-direction: row;
    display: flex !important;
    align-items: flex-start;
  }
}
.p-company-member__photo {
  width: 60%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-company-member__photo {
    width: 30%;
  }
}
.p-company-member__photo img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}
.p-company-member__meta {
  width: 100%;
}
@media (min-width: 768px) {
  .p-company-member__meta {
    width: 70%;
  }
}
.p-company-member__role {
  margin: 0;
  font-size: 14px;
  color: #5f6f86;
}
.p-company-member__name {
  margin: 5px 0 15px;
  font-size: 24px;
  font-weight: 500;
  color: #011d2e;
}
.p-company-member__name small {
  display: block;
  font-size: 16px;
}
.p-company-member__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #011d2e;
}

.p-company-message {
  position: relative;
}
.p-company-message__heading {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  color: #1e7aea;
  position: relative;
  padding-left: 1.5em;
}
.p-company-message__heading::before {
  content: "";
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 14px;
  background: url(../../assets/images/common/dot2.svg) no-repeat center center/contain;
}
.p-company-message__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #011d2e;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-company-message__text {
    font-size: 24px;
  }
}
.p-company-message__visual {
  margin-top: 30px;
  border-radius: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .p-company-message__visual {
    margin-top: 60px;
  }
}
.p-company-message__ceo-name {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  position: absolute;
  bottom: 3%;
  right: 3%;
  text-align: right;
}
@media (min-width: 768px) {
  .p-company-message__ceo-name {
    font-size: 28px;
  }
}
.p-company-message__ceo-name small {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-company-message__ceo-name small {
    font-size: 16px;
  }
}
.p-company-message__btn {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-company-message__btn {
    position: absolute;
    top: 60px;
    right: 0;
  }
}

.p-company-story {
  padding-bottom: 80px;
}
.p-company-story__heading {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  color: #1e7aea;
  position: relative;
  padding-left: 1.5em;
}
.p-company-story__heading::before {
  content: "";
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 14px;
  background: url(../../assets/images/common/dot2.svg) no-repeat center center/contain;
}
.p-company-story__grid {
  display: grid;
  gap: 80px;
}
@media (min-width: 768px) {
  .p-company-story__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-company-story__title {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 400;
  color: #011d2e;
}
.p-company-story__text {
  margin: 0;
  font-size: 15px;
  color: #011d2e;
}
.p-company-story__logo {
  margin-top: 40px;
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(6, 14, 29, 0.08);
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-company-story__logo {
    flex-direction: row;
    padding: 40px;
  }
}
.p-company-story__logo-left {
  width: 100%;
}
@media (min-width: 768px) {
  .p-company-story__logo-left {
    width: 50%;
  }
}
.p-company-story__logo-left .u-flex {
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-company-story__logo-left .u-flex {
    flex-direction: row;
  }
}
.p-company-story__logo-left-name {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-company-story__logo-left-name {
    text-align: left;
    font-size: 42px;
  }
}
.p-company-story__logo-left-name small {
  display: block;
  font-size: 20px;
  font-weight: 400;
}
.p-company-story__logo-right {
  width: 100%;
}
@media (min-width: 768px) {
  .p-company-story__logo-right {
    width: 50%;
  }
}
.p-company-story__logo-messageimg {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
  max-width: 800px;
  margin-inline: auto;
}
.p-company-story__logo-messageimg img {
  width: 100%;
}

#mission {
  overflow: hidden;
}

.p-recruit__grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 1024px) {
  .p-recruit__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
  }
}
.p-recruit__media {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.p-recruit__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-recruit__title {
  margin: 0;
  font-size: 22px;
  color: #011d2e;
}
.p-recruit__text {
  margin: 10px 0 0;
  color: #5f6f86;
  font-size: 14px;
}
.p-recruit__actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.recruit-bg {
  position: relative;
}
.recruit-bg--01:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/sub/recruit/recruit-bg1.png) no-repeat top center/cover;
  z-index: -1;
}
.recruit-bg--02:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/sub/recruit/recruit-bg2.png) no-repeat top center/cover;
  z-index: -1;
}
.recruit-bg--03:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/sub/recruit/recruitinfo-bg.png) no-repeat top center/cover;
  z-index: -1;
}

.p-recruit-page-intro {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.p-recruit-page-intro__lead {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #011d2e;
}
.p-recruit-page-intro__text {
  margin: 0;
  font-size: 14px;
  color: #011d2e;
}

#numbers {
  padding-block: 80px 80px;
}
@media (min-width: 768px) {
  #numbers {
    padding-block: 120px 180px;
  }
}

.p-recruit-page-section-title {
  margin: 0 0 20px;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-recruit-page-section-title {
    margin: 0 0 40px;
    font-size: 70px;
  }
}
.p-recruit-page-section-title-sub {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  padding-left: 1.5em;
  position: relative;
}
.p-recruit-page-section-title-sub::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}
.p-recruit-page-section__title {
  margin: 0 0 0px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.p-recruit-page-section__title::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #ffffff;
}
.p-recruit-page-section__title-sub {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  display: block;
}
@media (min-width: 768px) {
  .p-recruit-page-section__title-sub {
    font-size: 70px;
  }
}
.p-recruit-page-section__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-recruit-page-section__text {
    font-size: 18px;
  }
}

.p-recruit-page-positions__grid {
  margin-top: 80px;
  display: grid;
  gap: 45px;
}
@media (min-width: 768px) {
  .p-recruit-page-positions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px 30px;
  }
}
.p-recruit-page-positions__grid article:nth-child(2) img {
  width: 100%;
}
#recruit #page {
  padding-top: 0;
  background-color: #0069e8;
}
#recruit {
  position: relative;
  /* スライダー全体の囲い */
}
#recruit .swiper-container-recruit {
  width: 100%; /* 親要素いっぱいに広げる */
  margin: -25px auto 0; /* 中央寄せ */
  overflow: hidden; /* はみ出した画像を見せない（超重要） */
}
@media (min-width: 768px) {
  #recruit .swiper-container-recruit {
    margin: -65px auto 0;
  }
}
#recruit {
  /* 各スライドの中の画像 */
}
#recruit .swiper-slide img {
  width: 100%; /* スライドの幅（1.5枚分の計算結果）に合わせる */
  height: auto; /* 縦横比を維持 */
  display: block;
  border-radius: 10px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#recruit .swiper-container-interview {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
#recruit {
  /* 3枚以下の時（is-shortがある時）だけ中央寄せ */
}
#recruit .swiper-container-interview.is-short .swiper-wrapper {
  justify-content: center;
}
#recruit {
  /* 3枚以下の時の各スライドの幅（PC・タブレット用） */
}
#recruit .swiper-container-interview.is-short .swiper-slide {
  width: 30%; /* 3枚が収まるサイズ */
}
#recruit {
  /* スマホでは1枚ずつ見せたい（＝見切れてほしい）なら、スマホ版だけクラスを無視させる */
}
@media (max-width: 767px) {
  #recruit .swiper-container-interview.is-short .swiper-wrapper {
    justify-content: flex-start; /* 左寄せに戻す */
  }
  #recruit .swiper-container-interview.is-short .swiper-slide {
    width: 80%; /* スマホではあえて見切れる幅にする */
  }
}

.p-recruit-page-message {
  padding: 0 0px;
}
@media (min-width: 768px) {
  .p-recruit-page-message {
    padding: 0 0 100px;
  }
}
.p-recruit-page-message__label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding-left: 1.5em;
  position: relative;
}
.p-recruit-page-message__label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}
.p-recruit-page-message__lead {
  font-size: 28px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-recruit-page-message__lead {
    font-size: 42px;
  }
}
.p-recruit-page-message__text {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 2em;
}
@media (min-width: 768px) {
  .p-recruit-page-message__text {
    font-size: 22px;
  }
}

.p-recruit-page-position {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-recruit-page-position__title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-recruit-page-position__title {
    font-size: 32px;
  }
}
.p-recruit-page-position__text {
  margin: auto;
}
.p-recruit-page-position__text img {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-recruit-page-position__text img {
    width: 100%;
    min-height: 90px;
  }
}

.p-recruit-page-interview {
  position: relative;
}
.p-recruit-page-interview__button {
  position: static;
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-recruit-page-interview__button {
    position: absolute;
    top: 5%;
    right: 0;
  }
}
.p-recruit-page-interview h2 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-recruit-page-interview h2 {
    margin-bottom: 80px;
  }
}
.p-recruit-page-interview__title {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  position: absolute;
  bottom: 5%;
  left: 5%;
}
.p-recruit-page-interview__title span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  background-color: #ffffff;
  color: #1e7aea;
  width: fit-content;
  padding: 5px 5px;
}
@media (min-width: 768px) {
  .p-recruit-page-interview__title span {
    font-size: 0.9722222222vw;
    padding: 5px 20px;
  }
}
.p-recruit-page-interview__title span:first-child {
  margin-bottom: 5px;
}
.p-recruit-page-interview__name {
  font-size: 14px;
  position: absolute;
  top: 5%;
  right: 5%;
  color: #ffffff;
  text-align: right;
}
@media (min-width: 768px) {
  .p-recruit-page-interview__name {
    font-size: 16px;
  }
}
.p-recruit-page-interview__name span {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-recruit-page-interview__name span {
    font-size: 16px;
  }
}

.p-recruit-page-recruitinfo__heading {
  display: flex;
  align-items: left;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-recruit-page-recruitinfo__heading {
    align-items: center;
    flex-direction: row;
  }
}
.p-recruit-page-recruitinfo__link {
  margin-top: 40px;
  text-align: center;
}
.p-recruit-page-recruitinfo__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .p-recruit-page-recruitinfo__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-recruit-page-recruitinfo__item a {
  padding: 20px 20px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}
@media (min-width: 768px) {
  .p-recruit-page-recruitinfo__item a {
    padding: 30px 20px;
    font-size: 20px;
  }
}

.p-recruit-page-faq__heading h2 {
  color: #1e7aea;
  position: sticky;
  top: 60px;
}
.p-recruit-page-faq__heading h2 span {
  color: #1e7aea;
}
.p-recruit-page-faq__heading h2 span::before {
  background: #1e7aea;
}
.p-recruit-page-faq__grid {
  max-width: 800px;
  margin: 0 auto;
}
.p-recruit-page-faq__flex {
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-recruit-page-faq__flex {
    flex-direction: row;
  }
}

.accordion dl {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid #c9c9c9;
}
.accordion dl:last-child {
  border-bottom: 1px solid #c9c9c9;
}
.accordion .question {
  display: block;
  cursor: pointer;
}
.accordion .question p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #011d2e;
}
.accordion .answer {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding-top 0.25s ease;
}
.accordion .answer.is-open {
  padding-top: 8px;
  opacity: 1;
}
.accordion .answer p {
  margin: 0;
  font-size: 13px;
  color: #011d2e;
  line-height: 1.8;
}

.p-recruit-page-cta {
  padding-block: 40px;
}
@media (min-width: 768px) {
  .p-recruit-page-cta {
    padding-block: 80px;
  }
}
.p-recruit-page-cta__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .p-recruit-page-cta__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-recruit-page-cta__item {
  background-color: #212020;
  border-radius: 10px;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .p-recruit-page-cta__item:hover {
    transition: all 0.3s ease;
    background-color: #ffffff;
  }
}
.p-recruit-page-cta__item a {
  padding: 40px 40px;
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
}
.p-recruit-page-cta__item a span {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  padding-left: 0.8em;
}
.p-recruit-page-cta__item a span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  width: 15px;
  height: 14px;
  background: url(../../assets/images/common/dot.svg) no-repeat center center/contain;
  border-radius: 50%;
}
.p-recruit-page-cta__item a p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-recruit-page-cta__item a p {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .p-recruit-page-cta__item a:hover {
    transition: all ease 0.3s;
    color: #1e7aea;
  }
  .p-recruit-page-cta__item a:hover * {
    color: #212020;
    transition: all ease 0.3s;
  }
}

.recruit-footer-img {
  margin-bottom: -1px;
}
.recruit-footer-img__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.recruit-footer-img__item img {
  width: 100%;
}

.p-recruit-type-archive {
  background: #ffffff !important;
}
.p-recruit-type-archive .p-news-card__tax {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}
.p-recruit-type-archive .p-news-card__title {
  font-size: 20px;
}
@media (min-width: 768px) {
  .p-recruit-type-archive .p-news-card__title {
    font-size: 24px;
  }
}
.p-recruit-type-archive .p-news-card__tax-parent {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 18px;
  border-radius: 3px;
  background: #1e7aea;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.p-recruit-type-archive .p-news-card__tax-parent--fallback-chuto {
  background: #1e7aea;
}
.p-recruit-type-archive .p-news-card__tax-children {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-recruit-type-archive .p-news-card__tax-child {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid #c9c9c9;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #1e7aea;
  line-height: 1.3;
}
.p-recruit-type-archive .l-section--recruitinfo {
  width: 100%;
  height: 100%;
  background: url(../../assets/images/sub/recruit/sub/cta-bg.jpg) no-repeat top center/cover;
  margin-top: 120px;
  padding-bottom: 0;
}

.p-recruit-archive-tabs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-recruit-archive-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.p-recruit-archive-tabs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #c9c9c9;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #1e7aea;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 768px) {
  .p-recruit-archive-tabs__item {
    margin-bottom: 40px;
  }
}
.p-recruit-archive-tabs__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.p-recruit-archive-tabs__item::after {
  content: "";
  position: absolute;
  inset: -1px;
  background-color: var(--item-hover-fill);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
}
@media (hover: hover) {
  .p-recruit-archive-tabs__item:hover::after {
    transform: scaleX(1);
  }
  .p-recruit-archive-tabs__item:hover {
    color: #fff;
    border-color: transparent;
  }
}
.p-recruit-archive-tabs__item.is-active {
  background: #1e7aea;
  color: #fff;
  border-color: #1e7aea;
}
.p-recruit-archive-tabs__item--shinsotu {
  background: #ffffff;
  color: #1e7aea;
  border-color: #1e7aea;
  --item-hover-fill: #1e7aea;
}
.p-recruit-archive-tabs__item--shinsotu.is-active {
  background: #1e7aea;
  border-color: #1e7aea;
}
.p-recruit-archive-tabs__item--chuto {
  background: #ffffff;
  color: #03b7cf;
  border-color: #03b7cf;
  --item-hover-fill: #03b7cf;
}
.p-recruit-archive-tabs__item--chuto.is-active {
  background: #03b7cf;
  border-color: #03b7cf;
}
.p-recruit-archive-tabs__item--intern {
  background: #ffffff;
  color: #4b3690;
  border-color: #4b3690;
  --item-hover-fill: #4b3690;
}
.p-recruit-archive-tabs__item--intern.is-active {
  background: #4b3690;
  border-color: #4b3690;
}
.p-recruit-archive-tabs__notice {
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #f6f8fc;
  border-radius: 8px;
  font-size: 13px;
  color: #5f6f86;
}
.p-recruit-archive-tabs__notice code {
  font-size: 12px;
}

#recruit .p-news-card__category {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.p-contact__inner {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .p-contact__inner {
    padding: 0px 0px;
  }
}
.p-contact__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 1024px) {
  .p-contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 22px;
  }
}
.p-contact__form {
  display: grid;
  gap: 40px;
}
.p-contact__name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.p-contact__field {
  display: grid;
  gap: 6px;
}
.p-contact__field--two-col {
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.p-contact__field--submit {
  width: fit-content;
  margin: 0 auto;
}
.p-contact__label {
  font-size: 18px;
  font-weight: 600;
  color: #011d2e;
}
.p-contact__input, .p-contact__textarea, .p-contact__select {
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  padding: 12px 12px;
  background: #ffffff;
  width: 100%;
}
.p-contact__textarea {
  min-height: 140px;
  resize: vertical;
}
.p-contact__note {
  margin: 0;
  color: #5f6f86;
  font-size: 13px;
}
.p-contact__privacy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #011d2e;
}
.p-contact__privacy-checkbox {
  width: 18px;
  height: 18px;
}
.p-contact__privacy-box {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  max-height: 180px;
  overflow: auto;
  font-size: 13px;
}
.p-contact__privacy-text {
  margin: 0;
  white-space: pre-line;
  line-height: 1.7;
}

.form-all {
  max-width: 100% !important;
}

.looptext {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.looptext__inner {
  display: flex;
  width: max-content;
  line-height: 1;
  margin-bottom: 40px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.looptext__inner span {
  color: #edf3f7;
  font-weight: 600;
  white-space: nowrap;
  font-size: 40px;
  font-family: "Rubik", sans-serif;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .looptext__inner span {
    font-size: 80px;
  }
}
.looptext__inner.is-active {
  animation: loop-animation 40s linear infinite;
}

@keyframes loop-animation {
  0% {
    transform: translateZ(0) translateX(0);
  }
  100% {
    /* 要素の半分（1つ分のspanの塊）まで行ったら 0 に戻る
       これにより継ぎ目なくループします
    */
    transform: translateZ(0) translateX(-50%);
  }
}
.p-partner-message__inner {
  padding: 0px 0 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-partner-message__inner {
    padding: 0px 0 120px;
  }
}
.p-partner-message__label {
  margin: 0 auto 12px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 1.5em;
  width: fit-content;
}
.p-partner-message__label::before {
  content: "";
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  background: url(../../assets/images/common/dot.svg) no-repeat center/contain;
}
.p-partner-message__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #011d2e;
}
@media (min-width: 768px) {
  .p-partner-message__title {
    font-size: 42px;
  }
}
.p-partner-message__text {
  font-size: 14px;
  line-height: 2em;
}
@media (min-width: 768px) {
  .p-partner-message__text {
    font-size: 16px;
  }
}
.p-partner-message__problem {
  gap: 20px;
  max-width: 800px;
  margin: 30px auto;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-partner-message__problem {
    margin: 60px auto;
    flex-direction: row;
  }
}
.p-partner-message__problem-item {
  width: 100%;
  background-color: #ffffff;
  padding: 40px 25px;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  font-size: 15px;
  font-weight: 600;
}
.p-partner-message__problem-item span {
  color: #1e7aea;
}
@media (min-width: 768px) {
  .p-partner-message__problem-item {
    padding: 40px;
    width: 50%;
    font-size: 18px;
  }
}
.p-partner-message__contact {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.p-accordion {
  max-width: 760px;
  padding: 0;
  margin-left: auto;
}
.p-accordion__item {
  border-bottom: 1px solid #c9c9c9;
  padding-inline: 15px;
}
.p-accordion__title {
  display: block;
  width: 100%;
  padding-block: 25px;
  position: relative;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}
.p-accordion__title:before, .p-accordion__title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0, -50%);
  width: 14px;
  height: 2px;
  background: #1e7aea;
  transition: 0.2s ease transform;
}
@media (min-width: 768px) {
  .p-accordion__title:before, .p-accordion__title:after {
    right: 15px;
  }
}
.p-accordion__title:after {
  transform: translate(0, -50%) rotate(-90deg);
}
.p-accordion__title.active:after {
  transform: translate(0, -50%) rotate(0deg);
}
.p-accordion__title p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
  font-size: 14px;
}
@media (min-width: 768px) {
  .p-accordion__title p {
    font-size: 1.125rem;
    padding-right: 0em;
  }
}
.p-accordion__title p:before {
  color: #1e7aea;
  content: "Q.";
  position: absolute;
  top: -7px;
  left: 0em;
  font-weight: 600;
  font-size: 24px;
}
@media (min-width: 768px) {
  .p-accordion__title p:before {
    font-size: 24px;
    top: -7px;
  }
}
.p-accordion__content {
  line-height: 1.5;
  background: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease max-height;
  padding-bottom: 0;
}
.p-accordion__content p {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0;
  position: relative;
  padding-left: 2em;
}
.p-accordion__content p:before {
  color: #1e7aea;
  line-height: 1.2;
  content: "A.";
  position: absolute;
  left: 0em;
  font-weight: 600;
  font-size: 24px;
}
.p-accordion__title.active + .p-accordion__content {
  padding-bottom: 25px;
}

/* ============== policy ============== */
.policy {
  max-width: 1080px;
  margin-inline: auto;
  color: #011d2e;
}
.policy h3 {
  color: #1e7aea;
  margin-top: 56px;
  margin-bottom: 22px;
  font-size: 30px;
  line-height: 1.35;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 12px;
}
.policy h4 {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  margin-left: 0;
}
.policy p {
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.01em;
  margin-bottom: 1.2em;
}
.policy p.description {
  font-weight: 600;
  margin-bottom: 60px;
}
.policy .cti_box {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 32px;
  line-height: 1.9;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  background: #fbfdff;
}
.policy .cti_box dl:not(:last-child) {
  margin-bottom: 2.2em;
}
.policy dl {
  margin-bottom: 20px;
}
.policy dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}
.policy dt {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 15px;
  color: #011d2e;
}
.policy ol,
.policy ul {
  margin-top: 1em;
}
.policy li {
  line-height: 1.9;
  font-family: "Noto Sans JP", sans-serif;
  list-style: none;
  font-size: 16px;
}
.policy li:before {
  content: none;
}
.policy li:not(:last-child) {
  margin-bottom: 0.8em;
}
.policy ol ol li {
  list-style-type: none;
  counter-increment: cnt;
  margin-left: 1.5em;
}
.policy ol ol li::before {
  content: "(" counter(cnt) ") ";
  margin-left: -1.5em;
}
.policy .cti_footer .right,
.policy .align-r {
  font-family: "Noto Sans JP", sans-serif;
  text-align: right;
}
.policy .cti_footer .left {
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}
.policy .noto {
  font-family: "Noto Sans JP", sans-serif;
}
.policy ol li {
  list-style-type: decimal;
  margin-left: 1.35em;
}
.policy ol.in li {
  list-style-type: none;
  counter-increment: cnt;
  margin-left: 1.5em;
}
.policy ol.in li::before {
  content: "(" counter(cnt) ") ";
  margin-left: -1.5em;
}
.policy ol.alpha li {
  list-style-type: lower-alpha;
}
.policy ol li ol.in {
  margin-top: 0.8em;
}
.policy a {
  color: #1e7aea;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (max-width: 820px) {
  .policy {
    max-width: 100%;
  }
  .policy .cti_box {
    padding: 22px 16px;
  }
  .policy h3 {
    margin-top: 44px;
    font-size: 24px;
  }
  .policy h4 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .policy dt {
    font-size: 17px;
  }
  .policy p,
  .policy li,
  .policy dd {
    font-size: 15px;
  }
}
.u-hidden {
  display: none !important;
}

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

.u-flex {
  display: flex;
}

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

.u-mt-8 {
  margin-top: 8px !important;
}

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

.u-mt-12 {
  margin-top: 12px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mt-26 {
  margin-top: 26px !important;
}

.u-mt-28 {
  margin-top: 28px !important;
}

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

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

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

/*# sourceMappingURL=main.css.map */
