@charset "UTF-8";
/* -----------------------------------------------------------------------------------
ブレイクポイント
----------------------------------------------------------------------------------- */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  scroll-padding-top: 64px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 16px;
  color: #222;
  background: #fff;
  -webkit-text-size-adjust: 100%; /*スマホ横画面で文字の拡大・収縮防止用*/
  -webkit-font-smoothing: antialiased; /* 文字の太さを整える。Safari環境用 */
}

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

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
  word-break: break-all;
}
@media (1280px <= width) {
  a[href*=tel] {
    pointer-events: none; /* pcでリンクさせない */
  }
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: clamp(17px, 2.34375vw, 18px);
}

nav {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

header,
footer {
  line-height: 1.25;
}

main {
  font-size: clamp(15px, 2.0833333333vw, 16px);
  line-height: 1.625;
}
@media (1280px <= width) {
  main {
    font-size: 15px;
  }
}

/*-----------------------------------------------------------------------------------
微調整
-----------------------------------------------------------------------------------*/
/*--------------------------------------
改行
----------------------------------------*/
.br {
  display: inline-block;
}

/*--------------------------------------
表示・非表示
----------------------------------------*/
@media (768px <= width < 1280px) {
  .pc-only {
    display: none;
  }
}
@media (width < 768px) {
  .pc-only {
    display: none;
  }
}

@media (1280px <= width) {
  .tab-only {
    display: none;
  }
}
@media (width < 768px) {
  .tab-only {
    display: none;
  }
}

@media (1280px <= width) {
  .sp-only {
    display: none;
  }
}
@media (768px <= width < 1280px) {
  .sp-only {
    display: none;
  }
}

/*-----------------------------------------------------------------------------------
横幅設定
-----------------------------------------------------------------------------------*/
/*--------------------------------------
body直下
----------------------------------------*/
.body-inner[class] {
  display: block;
  width: 100%;
  min-width: 320px;
  overflow: hidden; /* 余白対策 */
}

/*-----------------------------------------------------------------------------------
header
-----------------------------------------------------------------------------------*/
/*--------------------------------------
<header>
----------------------------------------*/
.header {
  display: block;
  width: 100%;
  height: 64px;
  margin: auto;
  background: rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media (width < 768px) {
  .header {
    height: 45px;
  }
}
.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(24px, 3.125vw, 40px);
  width: min(100% - 20px, 1245px);
  height: 100%;
  padding: 8px 0 6px;
  margin: 0 auto;
}
@media (1280px <= width) {
  .header__container {
    padding: 8px 20px;
  }
}
.header__logo {
  width: min(100%, 240px);
}
@media (768px <= width) {
  .header__logo > a {
    display: grid;
    grid-template-columns: 55px 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.6em;
    font-weight: 600;
    font-size: clamp(10px, 0.9375vw, 12px);
    letter-spacing: 0;
    word-spacing: nowrap;
    text-shadow: 2px 3px 3px rgba(255, 255, 255, 0.4);
  }
}
@media (width < 768px) {
  .header__logo > a {
    display: block;
    width: 38px;
    font-size: 0;
  }
}

/*--------------------------------------
メニュー（グローバルナビ）

// PCの場合 = 横並びメニュー
// SPの場合 = ハンバーガーメニュー

// ハンバーガーアイコン押下時の設定は、以下のキーワードで検索
// .header-menu:has(.header-menu-check:checked)
----------------------------------------*/
.header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(16px, 3.125vw, 40px);
  width: 100%;
  height: 100%;
}

@media (width < 768px) {
  .header-menu:has(.header-menu-check:checked) {
    display: block;
    width: max(100%, 320px);
    height: 100vh;
    min-height: 100vh;
    padding: clamp(64px, 20vh, 116px) 10px clamp(40px, 20vh, 80px);
    background: -webkit-gradient(linear, left top, right top, from(#00268d), to(rgba(28, 201, 208, 0.8)));
    background: -webkit-linear-gradient(left, #00268d 0%, rgba(28, 201, 208, 0.8) 100%);
    background: linear-gradient(90deg, #00268d 0%, rgba(28, 201, 208, 0.8) 100%);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    -webkit-animation: anima-h-menu 0.3s ease-out forwards;
            animation: anima-h-menu 0.3s ease-out forwards;
  }
}

@-webkit-keyframes anima-h-menu {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes anima-h-menu {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* ----------------
// ハンバーガーメニュー

// トリガー（非表示）
---------------- */
.header-menu-check {
  display: none;
}

/* ----------------
// ハンバーガーメニュー

// アイコン（SPのみ表示）
---------------- */
.header-menu-label {
  display: none;
}
@media (width < 768px) {
  .header-menu-label {
    display: block;
    width: 60px;
    height: 45px; /* ヘッダーの高さ */
    position: relative;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label {
    width: 45px;
    height: 45px;
    background: transparent;
    position: fixed;
    top: 16px;
    left: 10px;
    z-index: 1000;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label:not(:has(> span)) {
    /* .header-menu-list 子として設置 */
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .header-menu-label > span {
    display: block;
    width: 35px;
    height: 35px;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .header-menu-label > span::before, .header-menu-label > span::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, from(#00268d), to(rgba(28, 201, 208, 0.9)));
    background: -webkit-linear-gradient(left, #00268d 0%, rgba(28, 201, 208, 0.9) 100%);
    background: linear-gradient(90deg, #00268d 0%, rgba(28, 201, 208, 0.9) 100%);
    position: absolute;
    top: 12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .header-menu-label > span::after {
    top: auto;
    bottom: 12px;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label > span {
    background: transparent;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label > span::before, .header-menu:has(.header-menu-check:checked) .header-menu-label > span::after {
    width: 45px;
    top: 50%;
    left: 50%;
    background: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transition: -webkit-transform 0.2s 0.3s ease-in-out;
    transition: -webkit-transform 0.2s 0.3s ease-in-out;
    transition: transform 0.2s 0.3s ease-in-out;
    transition: transform 0.2s 0.3s ease-in-out, -webkit-transform 0.2s 0.3s ease-in-out;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-label > span::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* ----------------
// メニューリスト

// PCの場合 = 横並び
// SPの場合 = 縦並び
---------------- */
.header-menu-list a {
  font-family: unset;
  font-weight: unset;
  font-size: unset;
  color: unset;
}
@media (768px <= width) {
  .header-menu-list {
    width: 100%;
    height: 100%;
  }
  .header-menu-list > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    height: 100%;
  }
  .header-menu-list > ul > li {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    color: #073d97;
    text-shadow: 2px 3px 3px rgba(255, 255, 255, 0.4);
  }
  .header-menu-list > ul > li > a {
    display: inline-block;
    width: 130px;
    padding: 13px 0 0;
    position: relative;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header-menu-list > ul > li > a::before {
    content: "";
    display: block;
    width: 1px;
    height: 13px;
    background: -webkit-gradient(linear, left top, left bottom, from(#85d0f5), color-stop(0%, #00ceff), to(#0060ff));
    background: -webkit-linear-gradient(#85d0f5 0%, #00ceff 0%, #0060ff 100%);
    background: linear-gradient(#85d0f5 0%, #00ceff 0%, #0060ff 100%);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0) rotate(25deg);
            transform: translate(-50%, 0) rotate(25deg);
  }
  .header-menu-list > ul > li > a::after {
    display: block;
    margin: 0.2em 0 0;
    font-size: 9px;
    text-align: center;
    color: unset;
  }
  .header-menu-list > ul > li > a:hover {
    color: #00ceff;
  }
  .header-menu-list > ul > li:has([href="/"]) {
    display: none;
  }
  .header-menu-list > ul > li:has([href*="services.html"]) > a::after {
    content: "Services";
  }
  .header-menu-list > ul > li:has([href*="company.html"]) > a::after {
    content: "Company";
  }
  .header-menu-list > ul > li:has([href*="recruit.html"]) > a::after {
    content: "Recruit";
  }
  .header-menu-list > ul > li:has([href*="contact.html"]) > a::after {
    content: "Contact";
  }
}
@media (width < 768px) {
  .header-menu-list {
    display: none;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list {
    display: block;
    width: 100%;
    max-height: min(80vh, 600px);
  }
}
@media (width < 768px) and (height < 500px) {
  .header-menu:has(.header-menu-check:checked) .header-menu-list {
    overflow-y: scroll;
  }
}
@media (width < 768px) {
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    line-height: 1;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li {
    padding: 0.6em 0;
    border-bottom: 1px solid #85d0f5;
    font-weight: 500;
    font-size: clamp(18px, 2.8645833333vw, 22px);
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: left;
    color: #fff;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li:first-of-type {
    border-top: 1px solid #85d0f5;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li a {
    display: block;
    padding: 0 clamp(16px, 3.90625vw, 30px);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li a::after {
    display: none;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li a:hover {
    color: #00ceff;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li:has(> ul) > span {
    display: none;
  }
  .header-menu:has(.header-menu-check:checked) .header-menu-list > ul > li:has(> ul) > ul > li {
    margin: 1.5em 0 0;
    font-weight: 400;
    font-size: 0.6em;
    letter-spacing: 0;
  }
}

@-webkit-keyframes anima-popup {
  0% {
    -webkit-transform: translateX(-50%) translateY(5px);
            transform: translateX(-50%) translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes anima-popup {
  0% {
    -webkit-transform: translateX(-50%) translateY(5px);
            transform: translateX(-50%) translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
/*-----------------------------------------------------------------------------------
footer
-----------------------------------------------------------------------------------*/
/*--------------------------------------
<footer>
----------------------------------------*/
.footer {
  display: block;
  width: 100%;
  background: #042967;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media (1280px <= width) {
  .footer {
    padding: 60px 0 56px;
  }
}
@media (width < 1280px) {
  .footer {
    padding: 72px 0 32px;
  }
}
.footer__container {
  display: grid;
  margin: 0 auto;
}
@media (1280px <= width) {
  .footer__container {
    grid-template: "footer-item-1 footer-item-2" minmax(288px, 1fr) "footer-item-3 footer-item-3" auto/360px 1fr;
  }
}
@media (768px <= width < 1280px) {
  .footer__container {
    grid-template: "footer-item-1" minmax(480px, auto) "footer-item-2" minmax(450px, auto) "footer-item-3" auto/1fr;
    gap: 80px 0;
  }
}
@media (width < 768px) {
  .footer__container {
    grid-template: "footer-item-1" auto "footer-item-2" auto "footer-item-3" auto/1fr;
    gap: 96px 0;
  }
}
@media (768px <= width) {
  .footer__container {
    width: min(100% - 40px, 1240px);
    padding: 0 0 0 30px;
  }
}
@media (width < 768px) {
  .footer__container {
    width: min(100% - clamp(60px, 13.0208333333vw, 100px));
  }
}
.footer__item-1 {
  grid-area: footer-item-1;
}
.footer__item-2 {
  grid-area: footer-item-2;
}
.footer__item-3 {
  grid-area: footer-item-3;
}
.footer a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #00ceff;
}

/*--------------------------------------
.footer__head
----------------------------------------*/
/* ----------------
// 会社情報

// .footer__item-1
---------------- */
.footer-info > dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}
@media (width < 1280px) {
  .footer-info > dl {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-info > dl > dt {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin: 8px 0 0;
}
.footer-info > dl > dt:first-of-type {
  width: 82px;
}
@media (width < 1280px) {
  .footer-info > dl > dt:first-of-type {
    width: 132px;
    margin: 0 0 24px;
  }
}
@media (width < 1280px) {
  .footer-info > dl > dt {
    margin: 16px 0 0;
    font-size: clamp(16px, 2.34375vw, 18px);
  }
}
.footer-info > dl > dd {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
}
@media (width < 1280px) {
  .footer-info > dl > dd {
    font-size: clamp(16px, 2.34375vw, 18px);
    text-align: center;
  }
}
@media (1280px <= width) {
  .footer-info > dl > dd > a,
  .footer-info > dl > dd > span {
    display: block;
    padding: 0 0 0 calc(1.25em + 1em);
    line-height: 1.5;
    position: relative;
  }
}
@media (width < 1280px) {
  .footer-info > dl > dd > a,
  .footer-info > dl > dd > span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.25em;
  }
}
.footer-info > dl > dd > a::before,
.footer-info > dl > dd > span::before {
  content: "";
  display: block;
  width: 1.5625em;
  height: 1.625em;
  background: url(../img/icon_footer_fax.svg) center no-repeat;
  background-size: contain;
}
@media (1280px <= width) {
  .footer-info > dl > dd > a::before,
  .footer-info > dl > dd > span::before {
    position: absolute;
    top: 0.75em;
    left: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.footer-info > dl > dd > a[href*=maps]::before,
.footer-info > dl > dd > span[href*=maps]::before {
  background-image: url(../img/icon_footer_map.svg);
}
.footer-info > dl > dd > a[href*="tel:"]::before,
.footer-info > dl > dd > span[href*="tel:"]::before {
  background-image: url(../img/icon_footer_tel.svg);
}

/* ----------------
// メニュー（グローバルナビ）

// .footer__item-2
---------------- */
.footer-menu {
  display: block;
  width: 100%;
}
.footer-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}
@media (width < 1280px) {
  .footer-menu > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
    text-align: center;
  }
}
.footer-menu > ul > li > a {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: left;
}
@media (width < 1280px) {
  .footer-menu > ul > li > a {
    font-size: clamp(17px, 2.4739583333vw, 19px);
    text-align: center;
  }
}

/* ----------------
// コピーライト
---------------- */
.copy-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em 2em;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-family: Helvetica;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.25;
}
@media (768px <= width < 1280px) {
  .copy-right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (width < 768px) {
  .copy-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/*-----------------------------------------------------------------------------------
main
-----------------------------------------------------------------------------------*/
/*--------------------------------------
<main>
----------------------------------------*/
.main {
  display: block;
  width: 100%;
  min-height: 100vh;
  background: #f4f4f4;
  position: relative;
  z-index: 1;
}

/*--------------------------------------
タイトルエリア
----------------------------------------*/
.head {
  display: block;
  width: 100%;
  padding: 104px 0 36px;
  background: #b6ddee;
  color: #073d97;
}
.head:has(.head-heading) {
  height: 540px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}
body:has(.recruit) .head:has(.head-heading) {
  background-image: url(../img/bg_recruit_1.jpg);
}

.head-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.head-ttl__en {
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 5.2083333333vw, 40px);
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: unset;
}
.head-ttl__ja {
  font-family: "Tsukushi A Round Gothic";
  font-weight: bold;
  font-size: clamp(10px, 2.0833333333vw, 16px);
  line-height: 2;
  text-align: center;
  color: unset;
}

.head-heading {
  display: block;
  width: min(100% - 100px, 726px);
  padding: 72px 0 96px;
  margin: 0 auto;
}

/*--------------------------------------
コンテンツエリア
----------------------------------------*/
.contents {
  display: block;
  width: 100%;
  padding: 72px 0 275px;
}
body:has(.recruit) .contents {
  padding: 0 0 275px;
}

/* ----------------
// コンテンツ幅
---------------- */
.container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}
@media (width < 768px) {
  .container {
    width: calc(100% - clamp(20px, 5.2083333333vw, 40px));
  }
}

/* ----------------
// セクション
---------------- */
.section {
  display: block;
  margin: 0 0 80px;
}

/* ----------------
// 見出し
---------------- */
.common-heading {
  display: block;
  padding: 0 0 0 30px;
  margin: 0 0 1.6em;
  font-weight: 600;
  font-size: clamp(22px, 2.9947916667vw, 23px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: left;
  color: #073d97;
  position: relative;
}
.common-heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00ceff), to(#0060ff));
  background: -webkit-linear-gradient(#00ceff 0%, #0060ff 100%);
  background: linear-gradient(#00ceff 0%, #0060ff 100%);
  position: absolute;
  top: 0.625em;
  left: 0;
  -webkit-transform: translate(0, -50%) rotate(25deg);
          transform: translate(0, -50%) rotate(25deg);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}
body:has(.services) .common-heading {
  margin: 0 0 1em;
}

/* 見出しの兄弟コンテンツ */
@media (768px <= width) {
  .common-heading-indent {
    padding: 0 0 0 30px;
  }
}
@media (width < 768px) {
  .common-heading-indent {
    padding: 0 0 0 10px;
  }
}

/* ----------------
// ボタン
---------------- */
.common-btn {
  display: block;
  width: 226px;
  height: 40px;
  border-radius: 10px;
  background: -webkit-gradient(linear, right top, left top, from(rgb(28, 201, 208)), to(#00268d));
  background: -webkit-linear-gradient(right, rgb(28, 201, 208) 0%, #00268d 100%);
  background: linear-gradient(-90deg, rgb(28, 201, 208) 0%, #00268d 100%);
  -webkit-box-shadow: 0px 7px 10px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 7px 10px -6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media (width < 768px) {
  .common-btn {
    width: 226px;
    height: 60px;
  }
}
.common-btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2.2123893805%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
.common-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #1CC9D0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transition-property: width opacity;
  transition-property: width opacity;
}
.common-btn:hover::after {
  width: 100%;
  opacity: 1;
}
.common-btn > input,
.common-btn > button {
  padding: 0;
  margin: auto;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: unset;
  font-weight: unset;
  font-size: unset;
  letter-spacing: unset;
  line-height: 1;
  color: unset;
}
.common-btn > a,
.common-btn > input,
.common-btn > button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.4em calc(2.2123893805% + 20px) 0.5em 1.25em;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
  color: unset;
}

/* ----------------
// テーブル
---------------- */
.common-table > table {
  display: block;
  border-top: 1px solid #bbd5e0;
  line-height: 1.5;
}
.common-table > table > tbody {
  display: block;
  width: 100%;
}
.common-table > table > div,
.common-table > table > tbody > tr {
  display: grid;
  grid-template: minmax(3em, 1fr)/min(100%, 280px) 1fr;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: 1px solid #bbd5e0;
  background: #fff;
  font-weight: 500;
  font-size: 17px;
  text-align: left;
  color: #2b3033;
}
@media (width < 768px) {
  .common-table > table > div,
  .common-table > table > tbody > tr {
    grid-template: 3em minmax(3em, 1fr)/1fr;
  }
}
.common-table > table > div > dt,
.common-table > table > tbody > tr > th {
  padding: 0.9em 20px 1.05em;
  background: #e4f4fc;
}
.common-table > table > div > dd,
.common-table > table > tbody > tr > td {
  padding: 0.9em 35px 1.05em;
}
.common-table > table--white > div > dt,
.common-table > table--white > tbody > tr > th {
  background: transparent;
}

/*--------------------------------------
事業内容
----------------------------------------*/
.services-sect-1 {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 32px 48px;
  width: 100%;
}
@media (width < 1280px) {
  .services-sect-1 {
    grid-template-columns: 1fr;
  }
}
.services-sect-1__txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 72px 0;
}
@media (width < 768px) {
  .services-sect-1__txt-wrap {
    gap: 48px 0;
  }
}
.services-sect-1__txt-wrap--small {
  gap: 24px 0;
}
@media (width < 768px) {
  .services-sect-1__txt-wrap--small {
    gap: 16px 0;
  }
}
.services-sect-1__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em 0;
  font-weight: 400;
  font-size: 16px;
  line-height: line-height(30, 16);
}
.services-sect-1__txt--large {
  display: block;
  margin: 0 0 0.6em;
  font-weight: 600;
  font-size: clamp(17px, 2.34375vw, 18px);
}
.services-sect-1__txt--small {
  display: block;
  font-weight: 500;
  font-size: 14px;
}
.services-sect-1__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
}
.services-sect-1__list > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 16px 40px;
}
@media (width < 768px) {
  .services-sect-1__list > ul {
    grid-template-columns: repeat(auto-fit, 220px);
  }
}
.services-sect-1__list > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}
.services-sect-1__list > ul > li > a {
  width: 100%;
  padding: 33.3333333333% 0 0;
  border: 1px solid #707070;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.services-sect-1__list > ul > li.yoku > a {
  background-image: url(../img/logo_services_1.jpg);
}
.services-sect-1__list > ul > li.alsok > a {
  background-image: url(../img/logo_services_2.jpg);
}
.services-sect-1__list > ul > li.seren > a {
  background-image: url(../img/logo_services_4.jpg);
}
.services-sect-1__list > ul > li.one > a {
  background-image: url(../img/logo_services_3.jpg);
}
.services-sect-1__img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: min(100%, 480px);
}
@media (768px <= width < 1280px) {
  .services-sect-1__img-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
.services-sect-1__img {
  width: 100%;
  padding: 56.25% 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.services-sect-1__img--1 {
  background-image: url(../img/img_services_1.jpg);
}
.services-sect-1__img--1-2 {
  background-image: url(../img/img_services_2.jpg);
}
.services-sect-1__img--2 {
  background-image: url(../img/img_services_3.jpg);
}
.services-sect-1__img--3 {
  background-image: url(../img/img_services_4.jpg);
}
.services-sect-1__img--4 {
  background-image: url(../img/img_services_5.jpg);
}
.services-sect-1-child {
  display: block;
  width: 100%;
  padding: 32px 30px 40px;
  margin: 60px 0 0;
  background: #e4f4fc;
}
.services-sect-1-child__heading {
  display: block;
  padding: 0 0 0 calc(0.5em + 40px);
  margin: 0 0 1.6em;
  font-weight: 600;
  font-size: clamp(20px, 2.8645833333vw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: left;
  color: #073d97;
  position: relative;
}
.services-sect-1-child__heading::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_services_1.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.625em;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.services-sect-1-child__heading-inner {
  padding: 0.25em 0;
  border-bottom: 1.5px solid #073d97;
}

/*--------------------------------------
会社概要
----------------------------------------*/
.company-sect-1 {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px 80px;
}
@media (width < 768px) {
  .company-sect-1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto -webkit-min-content;
    grid-template-rows: auto min-content;
  }
}
.company-sect-1__img {
  width: 200px;
  height: 180px;
  background: url(../img/logo_company_1.png) center no-repeat;
  background-size: contain;
}
.company-sect-1__txt {
  font-weight: 400;
  font-size: 16px;
  line-height: line-height(30, 16);
}
.company-sect-2 {
  display: block;
  width: min(100%, 590px);
  min-height: 360px;
  border-radius: 20px;
  background: #fff;
}
.company-sect-2__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  padding: 32px 30px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}
.company-sect-2 dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.5em 0;
  width: 100%;
}
.company-sect-2 dl > dt:last-of-type,
.company-sect-2 dl > dd:last-of-type {
  margin: 1.5em 0 0;
}
.company-sect-2 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em 0;
}
.company-sect-2 ul > li {
  margin: 0 0 0 -0.5em;
}
.company-sect-3 ul {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.25em 1.6em;
}
.company-sect-3 ul.disc > li::before {
  content: "・";
  margin: 0 0.25em 0 0;
}
.company-sect-3 ul.kudoku {
  gap: 0.25em;
}
.company-sect-3 ul.kudoku > li:not(:last-of-type)::after {
  content: "、";
}

/*--------------------------------------
採用情報
----------------------------------------*/
.recruit-sect-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
  padding: 48px 0 128px;
  background: #b6ddee;
}
.recruit-sect-1__top-heading {
  display: block;
  width: min(100%, 810px);
}
@media (768px <= width) {
  .recruit-sect-1__top-heading {
    padding: 0 0 0 30px;
    margin: 0 0 8px;
  }
}
.recruit-sect-1__container {
  position: relative;
}
@media (1280px <= width) {
  .recruit-sect-1__container {
    width: min(100%, 1280px);
    height: 480px;
  }
  .recruit-sect-1__container:has(.recruit-sect-1__img-two) {
    height: 650px;
  }
}
@media (width < 1280px) {
  .recruit-sect-1__container {
    width: 100%;
  }
}
.recruit-sect-1__img-wrap {
  display: block;
}
.recruit-sect-1__img-wrap:has(.recruit-sect-1__img-two) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (1280px <= width) {
  .recruit-sect-1__img-wrap {
    width: 760px;
    position: absolute;
    top: 0;
    left: -40%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
    z-index: 1;
  }
}
@media (width < 1280px) {
  .recruit-sect-1__img-wrap {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}
@media (1280px <= width) {
  .recruit-sect-1__img-wrap--even {
    left: auto;
    right: -40%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.recruit-sect-1__txt-wrap {
  display: block;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px 0px rgba(150, 181, 195, 0.25);
          box-shadow: 2px 2px 15px 0px rgba(150, 181, 195, 0.25);
}
@media (768px <= width) {
  .recruit-sect-1__txt-wrap {
    width: min(100%, 690px);
    padding: 56px 50px;
    border-radius: 20px;
    z-index: 2;
  }
}
@media (1280px <= width) {
  .recruit-sect-1__txt-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media (768px <= width < 1280px) {
  .recruit-sect-1__txt-wrap {
    margin: 0 auto;
    position: relative;
    top: -25px;
  }
}
@media (width < 768px) {
  .recruit-sect-1__txt-wrap {
    width: 100%;
    padding: 56px clamp(16px, 4.1666666667vw, 32px);
  }
}
@media (1280px <= width) {
  .recruit-sect-1__txt-wrap--even {
    right: auto;
    left: 0;
  }
}
.recruit-sect-1__img {
  display: block;
  width: 100%;
  padding: 63.1578947368% 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}
.recruit-sect-1__img--1 {
  background-image: url(../img/img_recruit_1.jpg);
}
.recruit-sect-1__img--2 {
  background-image: url(../img/img_recruit_2.jpg);
}
.recruit-sect-1__img-two {
  display: block;
  width: 100%;
  padding: 42.1052631579% 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
}
.recruit-sect-1__img-two--3 {
  background-image: url(../img/img_recruit_3.jpg);
}
.recruit-sect-1__img-two--4 {
  background-image: url(../img/img_recruit_4.jpg);
}
.recruit-sect-1__heading {
  display: block;
  margin: 0 0 1em;
  font-weight: 500;
  font-size: clamp(20px, 2.8645833333vw, 22px);
  line-height: 1.5;
  text-align: left;
  color: #073d97;
}
.recruit-sect-1__txt {
  display: block;
  font-weight: 400;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 2;
  text-align: left;
  color: #073d97;
}
.recruit-sect-1__btn-wrap {
  margin: 32px 0 0;
}
.recruit-sect-2 {
  display: block;
  padding: 100px 0 128px;
}
.recruit-sect-2-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em 0;
  width: 100%;
  margin: 96px 0 0;
  font-size: clamp(16px, 2.34375vw, 18px);
  text-align: center;
  color: #073d97;
}

/*--------------------------------------
お問い合わせ

入力画面 = contact.html
確認画面・送信完了画面 = mail.php
----------------------------------------*/
.contact {
  display: block;
}

.form-lead {
  display: block;
  width: 100%;
  margin: 0 0 90px;
  font-weight: 500;
  font-size: clamp(16px, 2.34375vw, 18px);
  line-height: 2;
  text-align: left;
}

.form-wrap {
  padding: 50px 30px 64px;
  background: rgba(182, 221, 238, 0.2);
  color: #46505a;
}
@media (width < 768px) {
  .form-wrap {
    padding: 16px 10px 40px;
  }
}

/* 入力欄 */
.form {
  display: block;
  width: 100%;
}
.form table {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: clamp(16px, 2.34375vw, 18px);
  text-align: left;
  line-height: 1.5;
}
.form tbody {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  width: 100%;
}
.form tr {
  display: grid;
  grid-template: 1fr/clamp(200px, 20.3125vw, 260px) 1fr;
  gap: 0.5em 20px;
}
@media (width < 768px) {
  .form tr {
    grid-template: 1fr/1fr;
  }
}
.form th {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.form th:has(.form-require) {
  gap: 0 0.5em;
}
.form td {
  width: 100%;
}
.form td input:not([type*=checkbox]),
.form td textarea,
.form td select {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 4px 8px;
  font-size: unset;
  background: #ffffff;
  border: 0;
}
.form td textarea {
  min-height: 110px;
  padding: 8px;
}
.form td select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form td select:invalid {
  font-size: 1.1111111111em;
  color: #818b95;
}

/* 必須事項アイコン */
.form-require {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 18px;
  background: #f00;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #fff;
}

/* テキスト　wrapper */
.form-text-cont {
  margin: 30px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: center;
}
@media (width < 520px) {
  .form-text-cont {
    text-align: justify;
  }
}

/* ボタン　wrapper */
.form-btn-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 60px 0 0;
}

/* プライバシーポリシーに同意（チェックボックス） */
.form-policy-check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-template: auto/24px 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 1em;
  margin: 36px 0 0;
  font-weight: 500;
  font-size: clamp(16px, 2.34375vw, 18px);
  letter-spacing: 0.06em;
}
.form-policy-check label {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #00264b;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.form-policy-check label:has(:checked)::after {
  content: "";
  display: block;
  width: 10px;
  height: 15px;
  border: solid #0060ff;
  border-width: 0 3px 3px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%) rotate(45deg);
          transform: translate(-50%, -70%) rotate(45deg);
}
.form-policy-check label > input {
  opacity: 0;
}
.form-policy-check a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ----------------
// 確認画面　テーブル
---------------- */
.form-confirmation .common-table input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  font-family: unset;
  font-weight: unset;
  font-size: 1em;
  letter-spacing: unset;
  line-height: unset;
  color: unset;
}

/* mail.php　エラーメッセージ */
.contact .error_messe {
  color: #ff0000;
}

/*--------------------------------------
プライバシーポリシー
----------------------------------------*/
.policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 72px 0;
}
.policy-lead {
  display: block;
  font-weight: 500;
  font-size: clamp(15px, 2.34375vw, 18px);
  letter-spacing: 0.01em;
  line-height: 1.7777777778;
  text-align: left;
}
.policy-list > p {
  margin: 0 0 64px;
}
.policy-list > ul {
  counter-reset: number 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px 0;
}
.policy-list > ul > li {
  counter-increment: number 1;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
  line-height: 1.5;
}
.policy-list > ul > li > h3 {
  display: block;
  padding: 0 0 0 calc(34px + 0.5em);
  margin: 0 0 8px;
  font-weight: 600;
  font-size: clamp(17px, 2.8645833333vw, 22px);
  line-height: 1.25;
  position: relative;
}
.policy-list > ul > li > h3::before {
  content: counter(number);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.6363636364em;
  height: 1.6363636364em;
  padding: 2px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#01288e), to(rgba(28, 201, 208, 0.8)));
  background: -webkit-linear-gradient(left, #01288e 0%, rgba(28, 201, 208, 0.8) 100%);
  background: linear-gradient(90deg, #01288e 0%, rgba(28, 201, 208, 0.8) 100%);
  border-radius: 50%;
  font-family: "Hind", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 0.625em;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.policy-list > ul > li > p {
  font-weight: 500;
  font-size: clamp(16px, 2.34375vw, 18px);
}
@media (768px <= width) {
  .policy-list > ul > li > p {
    margin: 0 0 0 30px;
  }
}
@media (768px <= width) {
  .policy-list > ul > li > p.last {
    margin: 64px 0 0 30px;
  }
}
.policy-list > ul > li > p a {
  margin: 0 0.25em;
  color: #68c2e7;
  text-decoration: underline;
}
.policy-list > ul > li > ol {
  counter-reset: number2 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 0;
}
@media (768px <= width) {
  .policy-list > ul > li > ol {
    margin: 0 0 0 30px;
  }
}
.policy-list > ul > li > ol li {
  counter-increment: number2 1;
  padding: 0 0 0 1.5em;
  line-height: 1.5;
  position: relative;
}
.policy-list > ul > li > ol li::before {
  content: counter(number2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.1em;
  height: 1.1em;
  padding: 0.1em 0.1em calc(0.1em + 2px);
  border: 1px solid;
  border-radius: 50%;
  font-size: 0.8888888889em;
  position: absolute;
  top: 0.75em;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.policy-last {
  margin: 64px 0 0;
}

/* -----------------------------------------------------------------------------------
HOME 画面
----------------------------------------------------------------------------------- */
.main:has(.mv) {
  background: #b6ddee;
}

/*--------------------------------------
HOME メインビジュアル
----------------------------------------*/
.mv {
  display: block;
  width: 100%;
  background: #b6ddee;
}
.mv__container {
  display: block;
  width: min(100%, 1520px);
  height: min(100vh, 960px);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
@media (height < 960px) {
  .mv__container {
    height: 960px;
  }
}
@media (768px <= width < 1280px) {
  .mv__container {
    height: auto;
    padding: 63.1111111111% 0 0;
  }
}
@media (width < 768px) {
  .mv__container {
    height: auto;
    padding: 105.421686747% 0 0;
  }
}
.mv__item {
  display: block;
  width: 100%;
  padding: 63.1578947368% 0 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (width < 1280px) {
  .mv__item {
    padding: 0;
    height: 100%;
  }
}
.mv-base-1 {
  background-image: url(../img/mv/img_home_mv_base_1.jpg);
  z-index: 1;
}
.mv-base-2 {
  background-image: url(../img/mv/img_home_mv_base_2.png);
  z-index: 2;
}
.mv-base-3 {
  background-image: url(../img/mv/img_home_mv_base_3.png);
  z-index: 6;
}
.mv-item-1 {
  background-image: url(../img/mv/img_home_mv_item_1.png);
  z-index: 5;
}
.mv-item-2 {
  background-image: url(../img/mv/img_home_mv_item_2.png);
  z-index: 4;
}
.mv-item-3 {
  background-image: url(../img/mv/img_home_mv_item_3.png);
  z-index: 3;
}
.mv__txt {
  display: block;
  width: min(55.1315789474%, 838px);
  position: absolute;
  top: 17.3958333333%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 8;
}
@media (768px <= width < 1280px) {
  .mv__txt {
    top: 24.6478873239%;
  }
}
@media (width < 768px) {
  .mv__txt {
    width: calc(100% - 40px);
    top: 27.4285714286%;
  }
}
.mv__txt img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mv-anime-base {
  opacity: 0.85;
  -webkit-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
  -webkit-animation: mvAnime-base 1s 0.1s forwards ease-in-out;
          animation: mvAnime-base 1s 0.1s forwards ease-in-out;
}
.mv-anime-base--2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.mv-anime-item {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(10px);
          transform: translateX(-50%) translateY(10px);
  -webkit-animation: mvAnime-item 1s 0.5s forwards ease-in;
          animation: mvAnime-item 1s 0.5s forwards ease-in;
}
.mv-anime-item2 {
  opacity: 0;
  -webkit-animation: mvAnime-item2 1s 1s forwards ease-in;
          animation: mvAnime-item2 1s 1s forwards ease-in;
}
.mv-anime-item3 {
  opacity: 0;
  -webkit-animation: mvAnime-item3 1s 1.5s forwards ease-in;
          animation: mvAnime-item3 1s 1.5s forwards ease-in;
}
.mv-anime-txt {
  opacity: 0;
  -webkit-animation: mvAnime-txt 1.5s 0.5s forwards ease-in;
          animation: mvAnime-txt 1.5s 0.5s forwards ease-in;
}
.mv-anime-txt--2 {
  -webkit-animation-delay: 1ss;
          animation-delay: 1ss;
}
.mv-anime-txt--3 {
  -webkit-animation-delay: 1.5ss;
          animation-delay: 1.5ss;
}

@-webkit-keyframes mvAnime-base {
  0% {
    opacity: 0.85;
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes mvAnime-base {
  0% {
    opacity: 0.85;
    -webkit-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
@-webkit-keyframes mvAnime-item {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@keyframes mvAnime-item {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(10px);
            transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@-webkit-keyframes mvAnime-item2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mvAnime-item2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mvAnime-item3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mvAnime-item3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mvAnime-txt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mvAnime-txt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------
HOME セクション wrapper
----------------------------------------*/
.home-section-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px 0;
  padding: 64px 0 150px;
}

/*--------------------------------------
HOME セクションの見出し
----------------------------------------*/
.home-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 64px 0 0;
  color: #073d97;
  position: relative;
}
.home-ttl__en {
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 5.2083333333vw, 40px);
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: unset;
}
.home-ttl__ja {
  font-family: "Tsukushi A Round Gothic";
  font-weight: bold;
  font-size: clamp(10px, 2.0833333333vw, 16px);
  line-height: 2;
  text-align: center;
  color: unset;
}
.home-ttl::before {
  content: "";
  display: block;
  width: 4px;
  height: 52px;
  background: -webkit-gradient(linear, left top, left bottom, from(#00ceff), to(#0060ff));
  background: -webkit-linear-gradient(#00ceff 0%, #0060ff 100%);
  background: linear-gradient(#00ceff 0%, #0060ff 100%);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(25deg);
          transform: translate(-50%, 0) rotate(25deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

/*--------------------------------------
HOME 事業内容
----------------------------------------*/
.home-services {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px 0;
}
.home-services__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px 0;
}
.home-services__cards {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}
@media (width < 1280px) {
  .home-services__cards {
    grid-template-columns: 1fr;
  }
}
@media (1280px <= width) {
  .home-services__cards--even {
    direction: rtl;
  }
}
.home-services__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px 0;
  width: 100%;
  max-height: 620px;
  padding: 60px clamp(8px, 6.25vw, 48px) 64px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px 0px rgba(150, 181, 195, 0.25);
          box-shadow: 2px 2px 15px 0px rgba(150, 181, 195, 0.25);
  direction: ltr;
}
.home-services__c-txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px 0;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  line-height: 1.8;
  color: #073d97;
}
@media (width < 768px) {
  .home-services__c-txt-wrap {
    gap: 40px 0;
    font-size: clamp(16px, 2.34375vw, 18px);
  }
}
@media (768px <= width < 1280px) {
  .home-services__c-txt-wrap ul {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-auto-flow: column;
  }
}
.home-services__c-heading {
  font-weight: 600;
  font-size: 30px;
}
@media (width < 768px) {
  .home-services__c-heading {
    font-size: clamp(22px, 3.125vw, 24px);
  }
}
.home-services__c-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -webkit-justify-content: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.home-services__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (768px <= width < 1280px) {
  .home-services__images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 768px) {
  .home-services__images {
    grid-template-columns: repeat(1, 1fr);
    width: calc(100% - 24px);
    margin: 0 auto;
  }
}
@media (1280px <= width) {
  .home-services__images--even {
    direction: rtl;
  }
}
.home-services__img {
  display: block;
  width: 100%;
  padding: 75% 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-services__img--1:nth-of-type(1) {
  background-image: url(../img/img_home_services_1.jpg);
}
.home-services__img--1:nth-of-type(2) {
  background-image: url(../img/img_home_services_2.jpg);
}
.home-services__img--1:nth-of-type(3) {
  background-image: url(../img/img_home_services_3.jpg);
}
.home-services__img--1:nth-of-type(4) {
  background-image: url(../img/img_home_services_4.jpg);
}
.home-services__img--1:nth-of-type(5) {
  background-image: url(../img/img_home_services_5.jpg);
}
.home-services__img--1:nth-of-type(6) {
  background-image: url(../img/img_home_services_6.jpg);
}
.home-services__img--2:nth-of-type(1) {
  background-image: url(../img/img_home_services_7.jpg);
}
.home-services__img--2:nth-of-type(2) {
  background-image: url(../img/img_home_services_8.jpg);
}
.home-services__img--2:nth-of-type(3) {
  background-image: url(../img/img_home_services_9.jpg);
}
.home-services__img--3:nth-of-type(1) {
  background-image: url(../img/img_home_services_10.jpg);
}
.home-services__img--3:nth-of-type(2) {
  background-image: url(../img/img_home_services_11.jpg);
}
.home-services__img--3:nth-of-type(3) {
  background-image: url(../img/img_home_services_12.jpg);
}

/*--------------------------------------
HOME 理念
----------------------------------------*/
@media (1280px <= width) {
  .home-mission .recruit-sect-1__container {
    height: 570px;
  }
}
.home-mission .recruit-sect-1__img {
  padding: 75% 0 0;
}
.home-mission .recruit-sect-1__txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px 0;
}
@media (768px <= width) {
  .home-mission .recruit-sect-1__txt-wrap {
    min-height: 427px;
  }
}