@charset "UTF-8";
:root {
  /* Design */
  --design-widith-sm: 375;
  --design-widith-md: 768;
  --design-widith-lg: 1200;
  /* Color */
  --c-white: #fff;
  --c-black: #212121;
  --c-accent: #00AEEF;
  --c-yellow: #FFEE00;
  --c-theme: #003366;
  --font-ja: "Noto Sans JP",
   sans-serif;
  --font-en: "Space Grotesk", sans-serif;
  /* Font Size */
  /*---------- SP ----------*/
  /*40px*/
  --font-size-sp40: min(10.2222vw, 2.5rem);
  /*32px*/
  --font-size-sp32: min(8.533333vw, 2rem);
  /*24px*/
  --font-size-sp24: min(6.4vw, 1.5rem);
  /*20px*/
  --font-size-sp20: min(5.33333vw, 1.25rem);
  /*18px*/
  --font-size-sp18: min(4.8vw, 1.125rem);
  /*16px*/
  --font-size-sp16: min(4.26666vw, 1rem);
  /*14px*/
  --font-size-sp14: min(3.733333vw, .875rem);
  /*---------- PC----------*/
  /*48px*/
  --font-size-pc48: min(4vw, 3rem);
  /*40px*/
  --font-size-pc40: min(3.33333vw, 2.5rem);
  /*32px*/
  --font-size-pc32: min(2.96296vw, 2rem);
  /*28px*/
  --font-size-pc28: min(2.33333vw, 1.75rem);
  /*24px*/
  --font-size-pc24: min(2vw, 1.5rem);
  /*20px*/
  --font-size-pc20: min(1.66666vw, 1.25rem);
  /*18x*/
  --font-size-pc18: min(1.5vw, 1.125rem);
  /*16px*/
  --font-size-pc16: min(1.33333vw, 1rem);
  /*14px*/
  --font-size-pc14: min(1.16666vw, 0.875rem);
  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-ex-bold: 900;
  /* Line Height */
  --lh-ss: 1;
  --lh-s: 1.25;
  --lh-m: 1.4;
  --lh-l: 1.8;
  --lh-xl: 2;
  /* Letter Spacing */
  --tracking-normal: normal;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.1em;
  /* Margin */
  /* 8 */
  --space-xs: .5rem;
  --space-s: 1rem;
  /* 24 */
  --space-m: 1.5rem;
  /* 32 */
  --space-l: 2rem;
  /* 40 */
  --space-xl: 2.5rem;
  /* 56 */
  --space-xxl: 3.5rem;
  /* Container Size & Offset */
  --max-container-size: 1440px;
  --offset-xs: 1.5vw;
  --offset-sm: 2.5vw;
  --offset-md: 5vw;
  --offset-lg: 10vw;
  /* Radius */
  --radius-sm: 4px;
  --radius-m: 8px;
  --radius-md: 16px;
  --radius-lg: 2.5rem;
  --radius-full: 50%;
  /* Transition & Animation */
  --duration-normal: 0.5s;
  --duration-slow: 1.2s;
  --ease-in-sine: cubic-bezier(0.12, 0, 0.39, 0);
  --ease-out-sine: cubic-bezier(0.61, 1, 0.88, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
  --ease-in-quart: cubic-bezier(0.5, 0, 0.75, 0);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
}

em {
  font-style: normal;
}

/*========== 変数設定 ==========*/
/*========== responsive ==========*/
/* 374px以下  SPデザイン以下 */
/* 〜767px SPデザイン */
/* 768px〜 PCデザイン */
/*  PCコンテンツ幅以上 */
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/* stylelint-disable */
/*! Oreset.css v2.0.0 | MIT License | https://github.com/hilosiva/Oreset.css */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  line-height: var(--lh-l);
  font-family: var(--font-ja);
  font-feature-settings: "palt";
  color: var(--c-black);
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style-type: "";
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: none;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden=until-found])) {
  display: none;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled=true]) {
  cursor: not-allowed;
}

:where([aria-busy=true]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden=false][hidden]) {
  display: initial;
}

:where([aria-hidden=false][hidden]):not(:focus) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

:where(:focus:not(:focus-visible), ::before:focus:not(:focus-visible), ::after:focus:not(:focus-visible)) {
  outline: none;
}

/*
  # aタグ
---------------------------------------------- */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  ::-webkit-backdrop {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
  *,
*:before,
*:after,
::backdrop {
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px;
  /* 文字色を親から継承 */
  color: inherit;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  /*-webkit-appearance: none;
    margin: 0;*/
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* input */
input {
  /* inputの枠線を消す */
  border: 1px solid transparent;
  transition: border 0.2s ease-out;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

select {
  /* 右端の▼を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  /*inputのフォーカス時の枠線を消す*/
  outline: 0;
}

/**
  * Remove padding
  */
option {
  padding: 0;
}

/**
  * Reset to invisible
  */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/*
  # other
---------------------------------------------- */
/*-- telスマホのみ --*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

[lang=en] {
  font-family: var(--font-en);
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.l-header-inner {
  padding-block: 1rem 1.5rem;
  padding-inline: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(2.666vw, 2rem);
}
@media screen and (min-width: 768px) {
  .l-header-inner {
    padding-inline: 2.5rem;
  }
}

.l-header-nav-lists {
  display: grid;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .l-header-nav-lists {
    display: flex;
    align-items: center;
    gap: min(3.2vw, 2rem);
  }
}

.l-header-logo img {
  width: min(42.666vw, 10rem);
}
@media screen and (min-width: 768px) {
  .l-header-logo img {
    width: min(17vw, 13.75rem);
  }
}
.l-header-logo a {
  transition: var(--duration-normal);
}
.l-header-logo a:hover, .l-header-logo a:focus {
  filter: brightness(0.9);
}

@media screen and (max-width: 767px) {
  .l-header-nav-list {
    display: flex;
  }
  .l-header-nav-list.--has-child {
    display: block;
  }
}
.l-header-nav-list a,
.l-header-nav-list P {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: clamp(min(4vw, 14px), 1.4vw, 1rem);
  transition: var(--duration-normal);
  font-weight: var(--font-bold);
  cursor: pointer;
}
.l-header-nav-list a:hover, .l-header-nav-list a:focus,
.l-header-nav-list P:hover,
.l-header-nav-list P:focus {
  text-decoration: underline;
}
.l-header-nav-list .has-child-menuTitle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.l-header-nav-list img {
  max-height: 1.25rem;
  height: 100%;
  width: auto;
}

@media screen and (min-width: 768px) {
  .l-header-nav-child-lists {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    left: -1.25rem;
    top: 32px;
    z-index: 4;
    width: 12.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    padding: min(1.4666vw, 1.125rem);
  }
}
.l-header-nav-list .--contact {
  padding: 0.75rem 1.5rem;
  background-color: var(--c-yellow);
  border-radius: 1.5rem;
  position: relative;
  line-height: var(--lh-ss);
  gap: 0.625rem;
}
.l-header-nav-list .--contact::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--c-white);
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .--menu-white {
    color: var(--c-white);
  }
}
/*hoverしたら子階層表示*/
nav li.--has-child:hover .l-header-nav-child-lists,
nav li.--has-child:focus .l-header-nav-child-lists {
  display: block;
  visibility: visible;
  opacity: 1;
}

.l-header-nav-child-list .l-header-nav-link {
  position: relative;
  padding-left: 1.25rem;
  font-size: clamp(min(4vw, 14px), 1.4vw, 0.875rem);
}
.l-header-nav-child-list .l-header-nav-link::before {
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-header-nav-child-list .l-header-nav-link::before {
    content: "ー";
  }
}

.l-header-nav-child-list {
  margin-block: 0.5rem;
}

.l-header-nav {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    gap: 0.5rem;
  }
}

.l-header-nav-list.--has-child {
  position: relative;
}

/* ===============================================
スマホメニュー
=============================================== */
@media screen and (max-width: 767px) {
  .l-header-nav-title {
    color: var(--c-theme);
    padding-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: var(--font-medium);
    line-height: var(--lh-ss);
    border-bottom: 1px dashed #ddd;
  }
  .drawer-menu {
    display: block;
    position: fixed;
    z-index: 22;
    right: 0.625rem;
    top: 0.625rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s;
    background-color: transparent;
  }
  .drawer-menu span {
    display: block;
    position: absolute;
    height: 3px;
    left: 6px;
    background-color: var(--c-accent);
    transition: 0.3s ease-in-out;
  }
  .drawer-menu span:nth-child(1) {
    top: 0.9375rem;
    width: 1.875rem;
  }
  .drawer-menu span:nth-child(2) {
    top: 1.4375rem;
    width: 1.875rem;
  }
  .drawer-menu span:nth-child(3) {
    top: 1.9375rem;
    width: 1.875rem;
  }
  /* ナビ開いてる時 */
  .drawer-menu.active span:nth-child(1) {
    transform: rotate(-30deg);
    top: 1.375rem;
  }
  .drawer-menu.active span:nth-child(2) {
    transform: rotate(30deg);
    top: 1.375rem;
  }
  .drawer-menu.active span:nth-child(3) {
    opacity: 0;
  }
  /* ナビメニュー内 */
  .l-header-nav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: min(94%, 18rem);
    color: var(--c-black);
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(100%);
    transition: all 0.6s;
    height: auto;
    visibility: hidden;
    overflow-y: scroll;
    padding-block: 3rem 2.5rem;
    padding-left: min(6.4vw, 1.5rem);
  }
  .l-header-nav ul {
    margin: 0 auto;
    width: 100%;
  }
  .l-header-nav-lists:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  /* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
  .l-header-nav.active {
    transform: translateX(0%);
    visibility: visible;
  }
  .l-header-cta {
    position: fixed;
    bottom: 0.625rem;
    right: 0.625rem;
    z-index: 10;
  }
  .l-header-nav-child-lists {
    display: block;
  }
}
/*------------------------------
layout > section
------------------------------*/
.l-section {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 5rem 0;
  }
}

.l-section-bg {
  background: url(../../assets/img/bg_page.jpg) right/cover no-repeat;
}

.l-section-l {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .l-section-l {
    padding: 6.25rem 0;
  }
}

.l-section.--ashirai,
.l-section.--ashirai2 {
  position: relative;
}
.l-section.--ashirai:after,
.l-section.--ashirai2:after {
  position: absolute;
  content: "";
  width: 60%;
  height: 40%;
  bottom: 0;
  background: url(../../assets/img/bg_ashirai.png) left bottom/cover no-repeat;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-section.--ashirai:after,
.l-section.--ashirai2:after {
    width: 27.77777vw;
    height: 88%;
  }
}

.l-section.--ashirai::after {
  left: 0;
}

.l-section.--ashirai2::after {
  right: 0;
  transform: scaleX(-1);
}

/*------------------------------
layout > container
------------------------------*/
.l-container {
  width: 100%;
  margin-inline: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.l-container.--l {
  max-width: 67.5rem;
}
.l-container.--m {
  max-width: 62.5rem;
}
.l-container.--s {
  max-width: 47.5rem;
}

.l-footer {
  padding-block: 5rem 2.5rem;
  background-color: var(--c-theme);
  color: var(--c-white);
}

.l-footer-inner {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    display: flex;
    justify-content: space-between;
  }
}

.l-footer-logo {
  transition: var(--duration-normal);
}
.l-footer-logo:hover, .l-footer-logo:focus {
  opacity: 0.7;
}

.l-footer-address address {
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.875rem;
}

.l-footer-nav-lists {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 0.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer-nav-lists {
    gap: 1rem 5.5rem;
  }
}

.l-footer-nav-list a {
  line-height: var(--lh-ss);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  transition: var(--duration-normal);
}
.l-footer-nav-list a:hover, .l-footer-nav-list a:focus {
  opacity: 0.7;
}

.l-footer-copyright {
  margin-top: 5rem;
}
.l-footer-copyright small {
  font-family: var(--font-en);
  display: block;
  text-align: center;
  line-height: var(--l-ss);
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
}

.l-cta {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding-top: 5.75rem;
    padding-bottom: 5rem;
  }
}
.l-cta:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: url(../../assets/img/cta_bg.jpg) center/cover no-repeat;
  z-index: -1;
}

.l-cta-recruit {
  color: var(--c-white);
  text-align: center;
}

.l-cta-title {
  font-size: clamp(3rem, 7.2vw, 4.5rem);
  font-weight: var(--font-medium);
  line-height: var(--lh-ss);
  letter-spacing: var(--tracking-wide);
}

.l-cta-sub-title {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-cta-sub-title {
    margin-top: 3rem;
  }
}

.l-cta-message {
  margin-top: 1.5rem;
  font-weight: var(--font-medium);
}

.cta-links {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cta-links {
    display: flex;
    justify-content: center;
  }
}

.cta-link {
  width: 100%;
}
.cta-link a {
  position: relative;
  width: 100%;
  min-height: 17.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: var(--duration-normal);
}
@media screen and (min-width: 768px) {
  .cta-link a {
    min-height: 20rem;
  }
}
.cta-link a:hover, .cta-link a:focus {
  filter: brightness(1.15);
}
.cta-link:first-of-type a {
  background: url(../../assets/img/cta/recruit_bg01.jpg) top left/cover no-repeat;
}
.cta-link:first-of-type a .cta-link-title {
  letter-spacing: 0.16em;
}
.cta-link:last-of-type a {
  background: url(../../assets/img/cta/recruit_bg02.jpg) top left/cover no-repeat;
}
.cta-link:last-of-type a .cta-link-title {
  letter-spacing: 0.08em;
}

.cta-link a:hover .l-cta-button {
  background-color: var(--c-theme);
  color: var(--c-white);
}
.cta-link a:hover .l-cta-button:before {
  background-color: var(--c-white);
}

.l-cta-button {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5rem;
  background-color: var(--c-white);
  color: var(--c-theme);
  border: solid 1px var(--c-theme);
  padding: 0.875rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 2.5rem;
  line-height: var(--lh-ss);
  letter-spacing: 0.016em;
  font-weight: var(--font-semi-bold);
  transition: var(--duration-normal);
}
.l-cta-button::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--c-theme);
  border-radius: 50%;
  z-index: 1;
}
.l-cta-button:hover, .l-cta-button:focus {
  background-color: var(--c-theme);
  color: var(--c-white);
}
.l-cta-button:hover:before, .l-cta-button:focus:before {
  background-color: var(--c-white);
}
.l-cta-button.--small {
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 1.875rem;
  height: 2.5rem;
}

.l-cta-contact a {
  display: block;
  border-radius: 1rem;
  margin-top: 4.5rem;
  max-width: 50rem;
  margin-inline: auto;
  padding: 3rem 1rem;
  background-color: #E0F5FD;
}
.l-cta-contact a h2 {
  font-size: clamp(2.5rem, 8.8vw, 5.5rem);
  font-weight: var(--font-medium);
  line-height: var(--lh-ss);
  letter-spacing: -0.04em;
  background: linear-gradient(102deg, #00AEEF -8.45%, #036 40.65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.l-cta-contact-inner {
  display: grid;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-cta-contact-inner {
    text-align: center;
  }
  .l-cta-contact-inner img {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-cta-contact-inner {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }
}

.l-cta-contact a {
  transition: var(--duration-normal);
}
.l-cta-contact a:hover, .l-cta-contact a:focus {
  background-color: #c2e3ef;
}

.p-top-mv {
  display: block grid;
}

.p-top-mv-bg {
  grid-area: 1/1;
  order: -1;
  min-height: 37.5rem;
  padding: 0 !important;
}
@media screen and (min-width: 768px) {
  .p-top-mv-bg {
    min-height: 52vw !important;
  }
}

.p-top-mv-copy {
  grid-area: 1/1;
  align-self: center;
  z-index: 1;
  -webkit-margin-start: 1rem;
          margin-inline-start: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv-copy {
    -webkit-margin-start: 12.5vw;
            margin-inline-start: 12.5vw;
  }
}

.p-top-mv-copy h2 span {
  display: inline-block;
  font-size: clamp(32px, 5.6vw, 3.5rem);
  line-height: var(--lh-ss);
  letter-spacing: var(--tracking-wider);
  padding: 0.625rem 1.125rem;
  background-color: var(--c-white);
}
@media screen and (min-width: 768px) {
  .p-top-mv-copy h2 span {
    padding: 0.625rem 1.5rem;
  }
}
.p-top-mv-copy p {
  color: var(--c-white);
  margin-top: 1.5rem;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  font-weight: var(--font-semi-bold);
  line-height: var(--lh-m);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
@media screen and (min-width: 768px) {
  .p-top-mv-copy p {
    letter-spacing: var(--tracking-widest);
  }
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  background-color: white;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
}

.logo-track figure {
  margin: 0 20px;
  flex-shrink: 0;
}

@-webkit-keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* service
------------------------------*/
.p-top-service {
  padding-block: 4rem;
  background: url(../../assets/img/top/service/bg_sp.jpg) top right/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top-service {
    padding-block: 6.25rem;
    background: url(../../assets/img/top/service/bg.jpg) top right/cover no-repeat;
  }
}

.p-top-service-title {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.p-top-service-title p {
  display: block;
  color: var(--c-accent);
  font-weight: var(--font-regular);
  line-height: var(--lh-ss);
}
.p-top-service-title h3 {
  color: var(--c-theme);
  font-size: clamp(18px, 2.4vw, 1.5rem);
  line-height: var(--lh-m);
}

.p-top-service-lists {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-service-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-top-service-list {
  padding: 2rem 1.2rem;
  background-color: var(--c-white);
  box-shadow: 0 4px 1rem rgba(0, 23, 48, 0.08);
  border-radius: 0.5rem;
}
.p-top-service-list .c-button-text a {
  justify-content: flex-end;
}

/* company
------------------------------*/
.p-top-company {
  overflow: hidden;
}

.p-top-company-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .p-top-company-inner {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .p-top-company-inner {
    justify-content: space-between;
  }
}

.p-top-company-image {
  width: 100vw;
  margin-right: calc(50% - 50vw) !important;
}
@media (min-width: 768px) and (max-width: 2100px) {
  .p-top-company-image {
    max-width: 53vw;
  }
}

.p-top-company-body h3 em {
  font-size: clamp(2rem, 5.8vw, 3.625rem);
}

.p-news-lists {
  margin-top: 2.5rem;
}

.p-news-list a {
  display: block;
  padding-block: 1rem;
  border-bottom: dashed 1px #c4c4c4;
  transition: var(--duration-normal);
}
.p-news-list a time {
  color: #939393;
  font-family: var(--font-en);
  font-size: var(--font-size-sp14);
}
@media screen and (min-width: 768px) {
  .p-news-list a time {
    font-size: var(--font-size-pc14);
  }
}
.p-news-list a p {
  font-weight: var(--font-medium);
}
.p-news-list a:hover p, .p-news-list a:focus p {
  color: var(--c-theme);
}

.p-service-text strong {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
}

.p-system-bg {
  position: relative;
  padding-bottom: 4.5rem;
  overflow-y: hidden;
}
.p-system-bg:before {
  content: "";
  position: absolute;
  top: 2.5rem;
  width: 100%;
  height: 30vw;
  height: 100%;
  background: linear-gradient(90deg, #00AEEF 1.75%, #1F6ACE 98.66%);
  -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
  z-index: -2;
}
@media (min-width: 782px) {
  .p-system-bg:before {
    height: 450px;
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  }
}
.p-system-bg:after {
  position: absolute;
  content: "";
  width: 60%;
  height: 40%;
  bottom: 0;
  background: url(../../assets/img/bg_ashirai.png) left bottom/cover no-repeat;
  z-index: -1;
  left: 0;
}
@media (min-width: 782px) {
  .p-system-bg:after {
    width: 27.77777vw;
    height: 88%;
  }
}

@media (min-width: 782px) {
  .p-system-list:nth-child(2) {
    margin-top: 24px;
  }
  .p-system-list:nth-child(3) {
    margin-top: 48px;
  }
}
.p-service-comment::first-letter {
  color: var(--c-theme);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-bold);
}

.p-service-flow {
  padding-bottom: clamp(2.5rem, 7vw, 4.5rem);
}

.p-consulting-image {
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
}
@media screen and (min-width: 768px) {
  .p-consulting-image {
    max-width: 53vw;
  }
}

.p-consulting-list {
  padding-block: 1.25rem;
  border-bottom: 1px solid #E2E2E2;
}

.p-school-number {
	position: absolute;
	top: -20px;
	left: 0;
}

.p-recruit-links {
  gap: .8rem 1.2rem;
}

.p-recruit-links a {
  display: block;
  padding-block: 0.85rem;
  padding-inline: 2rem;
  line-height: 1;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  border-radius: 2rem;
  transition: var(--duration-normal);
}

.p-recruit-links a:hover {
  background-color: var(--c-accent);
  color: var(--c-white);
}


.p-company-value-lists {
  margin-top: 2rem;
  display: flex;
  gap: 1rem 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(1.0625rem, 2.4vw, 1.5rem);
}
.p-company-value-lists li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: var(--font-medium);
}
.p-company-value-lists li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #FFD900;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-company-message-text {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

@media screen and (max-width: 767px) {
  .p-company-profile-lists .wp-block-columns {
    gap: 0.5rem !important;
  }
}
.p-company-map {
  width: 100%;
}
.p-company-map iframe {
  width: 100%;
}

.contact-form {
  width: 80%;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contact-form {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.form-item {
  margin-bottom: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form-item {
    margin-bottom: 1.25rem;
  }
}

.form-item-label {
  width: 100%;
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.form-required {
  margin-left: 0.5rem;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  color: rgb(207, 49, 49);
  font-size: 1rem;
}

.form-item-input {
  border: 1px solid #C9C7C7;
  border-radius: 0.5rem;
  padding-left: 1em;
  padding-right: 1em;
  height: 4rem;
  width: 100%;
  background: #fff;
  font-size: 1rem;
}

.form-item-textarea {
  border: 1px solid #C9C7C7;
  border-radius: 0.5rem;
  padding: 1em;
  height: 18rem;
  width: 100%;
  resize: vertical;
  background: var(--c-white);
}

.submit-button-container {
  margin-top: 2.5rem;
  text-align: center;
}
.submit-button-container .submit-button {
  border: solid 1px var(--c-theme);
  width: 90%;
  max-width: 20rem;
  height: 3.75rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--c-theme);
  background-color: var(--c-white);
  transition: 0.3s;
}
.submit-button-container .submit-button:not(:disabled):hover {
  cursor: pointer;
  color: var(--c-white);
  background-color: var(--c-theme);
}

.submit-button:disabled {
  color: rgb(78, 78, 78);
  border-color: rgb(78, 78, 78);
  cursor: not-allowed;
}

.wpcf7-spinner {
  display: none !important;
}

input::-moz-placeholder {
  color: #838383;
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.1em;
}

input::placeholder {
  color: #838383;
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.1em;
}

input:focus,
textarea:focus {
  outline: 1px var(--c-accent) solid;
  transition: outline 0.2s ease-out;
}

.wpcf7-list-item.first {
  margin: 0;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  margin-top: 1.4rem;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0;
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  position: relative;
  background: #fff;
  border: 1px solid #C9C7C7;
  border-radius: 100%;
  content: "";
  height: 1rem;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s;
  width: 1rem;
}

/* チェック後のボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: var(--c-accent);
  border-radius: 100%;
  box-shadow: inset 0 0 0 3px #fff;
}

.form-privacy-text a {
  text-decoration: underline;
  color: var(--c-theme);
  transition: 0.6s;
}
.form-privacy-text a:hover {
  color: var(--c-theme);
}

.form-acceptance {
  text-align: center;
}

.wpcf7-list-item-label {
  position: relative;
  padding-left: 1rem;
}

.form-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  opacity: 0;
}

.form-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  border-radius: 0;
  top: 52%;
  left: -1.5em;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #000;
  background: #FFF;
  cursor: pointer;
  transition: all 0.3s;
}

.form-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 45%;
  left: -0.8rem;
  transform: translateY(-52%) rotate(45deg);
  width: 8px;
  height: 14px;
  border: solid var(--c-accent);
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1.2);
}

.c-title-center {
  text-align: center;
}

.c-title-ja {
  color: var(--c-theme);
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: var(--tracking-wider);
  line-height: var(--lh-m);
}

.c-title-en {
  display: block;
  color: var(--c-accent);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: var(--font-regular);
  letter-spacing: var(--tracking-wider);
  line-height: var(--lh-s);
}

.c-title-m {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

.c-title-xl {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.c-title-line {
  align-items: center;
  display: flex;
}

.c-title-line::before,
.c-title-line::after {
  background-color: var(--c-accent);
  border-radius: 5px;
  content: "";
  flex-grow: 1;
  height: 1.5px;
}

.c-title-line::before {
  margin-right: 1.5rem;
}

.c-title-line::after {
  margin-left: 1.5rem;
}

.c-title-grade {
  background: linear-gradient(102deg, #00AEEF -8.45%, #036 40.65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}

.font-en {
  font-family: var(--font-en);
}

.c-text-lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
}

.c-text-m {
  font-size: clamp(1.0625rem, 2.4vw, 1.5rem);
}

.c-text-l {
  font-size: clamp(1.375rem, 4vw, 2.5rem);
}

.c-button a {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.5rem;
  background-color: var(--c-white);
  color: var(--c-theme);
  border: solid 1px var(--c-theme);
  padding: 0.875rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 2.5rem;
  line-height: var(--lh-ss);
  letter-spacing: 0.016em;
  font-weight: var(--font-semi-bold);
  transition: var(--duration-normal);
}
.c-button a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--c-theme);
  border-radius: 50%;
  z-index: 1;
}
.c-button a:hover, .c-button a:focus {
  background-color: var(--c-theme);
  color: var(--c-white);
}
.c-button a:hover:before, .c-button a:focus:before {
  background-color: var(--c-white);
}

.c-button-text a {
  font-family: var(--font-en);
  font-weight: var(--font-medium);
  color: var(--c-theme);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
  line-height: var(--lh-ss);
  transition: var(--duration-normal);
}
.c-button-text a::after {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  background: url(../../assets/img/icon_arrow.svg) center/contain no-repeat;
}
.c-button-text a:hover, .c-button-text a:focus {
  text-decoration: underline;
}
.c-button-text a:hover:after, .c-button-text a:focus:after {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.js-slideLeft {
  opacity: 0;
  transform: translateX(-30px);
  /* 右からスライドイン */
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: 0.3s;
}

/* スクロールで表示された後 */
.js-slideLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .delay-05s-sp {
    transition-delay: 0.5s;
  }
}
@media (min-width: 768px) {
  .delay-03s {
    transition-delay: 0.3s;
  }
  .delay-05s {
    transition-delay: 0.5s;
  }
  .delay-07s {
    transition-delay: 1s;
  }
}
/*　マーカー
------------------------------*/
.js-marker {
  background: linear-gradient(transparent 70%, #FFF237 60%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
}

.js-marker.on {
  background-size: 100% 100%;
}

/*------------------------------
component > breadcrumb
------------------------------*/
.c-breadcrumb {
  margin-block: 1.875rem 1.25rem;
  color: var(--c-black);
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    margin-block: 2.5rem;
  }
}
.c-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb li {
  font-size: 0.75rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb li {
    padding-right: 0.75rem;
    font-size: 0.875rem;
  }
}
.c-breadcrumb li a {
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}
.c-breadcrumb li a:hover {
  text-decoration: underline;
  opacity: 0.3;
}
.c-breadcrumb li:nth-child(n+2) {
  position: relative;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb li:nth-child(n+2) {
    padding: 0 0.75rem;
  }
}
.c-breadcrumb li:nth-child(n+2)::before {
  content: ">";
  position: absolute;
  width: 5px;
  height: 8px;
  left: -2.5px;
}

.u-mt32 {
  margin-top: 2rem;
}

.u-mt48 {
  margin-top: 2.5rem;
}