@charset "UTF-8";
/* ===== ページ専用スタイル（PC想定） ===== */
:root {
  --brand: #004e96;
  --ink: #18212f;
  --muted: #6b7280;
  --bg: #f7f8fb;
  --card: #fff;
  --accent: #e5f0fb;
  --radius: 14px ; }

html {
  scroll-behavior: smooth;
  font-family: 'NotoSans';
  font-size: clamp(14px, 2vw, 1.5rem); }

body {
  font-family: 'Noto Sans JP', 'NotoSans', sans-serif;
  -webkit-print-color-adjust: exact; }

h1,
h2 {
  font-family: "Lato", sans-serif; }

a:active {
  color: unset; }

a:visited {
  color: unset; }

a:focus {
  outline: none; }

a {
  text-decoration: none; }

.sp {
  display: none; }

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

header {
  /* ハンバーガーメニュー用 */ }
  header.home-header {
    height: 100vh; }
    header.home-header h1 {
      width: 100%;
      position: absolute;
      top: 20vh;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(1em, 3vw, 1.5em);
      color: #333333;
      text-align: center;
      z-index: 50;
      letter-spacing: 20px;
      opacity: 0;
      transition: opacity 1s;
      white-space: nowrap; }
    header.home-header .random-human {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s;
      z-index: 20;
      object-fit: cover; }
    header.home-header .random-human.visible {
      opacity: 1; }
    header.home-header #mainVisualLine {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s;
      z-index: 5;
      object-fit: cover; }
    header.home-header #mainVisualLine.visible {
      opacity: 1; }
    header.home-header #mainVisualTree {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 30;
      opacity: 0;
      transition: opacity 1s;
      object-fit: cover; }
    header.home-header #mainVisualTree.visible {
      opacity: 1; }
    header.home-header #mainVisualWindow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s;
      pointer-events: none;
      z-index: 1;
      object-fit: cover; }
    header.home-header #mainVisualWindow.visible {
      opacity: 1; }
  header.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%; }
    header.page-header .page-header-inner {
      display: flex;
      flex-wrap: wrap;
      width: 90%;
      max-width: 1600px;
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
      margin-top: 80px; }
      header.page-header .page-header-inner h1 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        padding: 1em 0;
        color: var(--brand);
        z-index: 10; }
        header.page-header .page-header-inner h1 small {
          display: flex;
          gap: 8px;
          align-items: center;
          margin-top: 5px;
          font-size: 16px;
          font-weight: 700;
          letter-spacing: 0;
          color: #000; }
          header.page-header .page-header-inner h1 small::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--brand); }
        header.page-header .page-header-inner h1.operations-ttl {
          padding-bottom: 0.5em; }
        header.page-header .page-header-inner h1.recruit {
          letter-spacing: -0.05em; }
          header.page-header .page-header-inner h1.recruit small {
            color: #000; }
      header.page-header .page-header-inner .pan .breadcrumb {
        display: flex;
        align-items: end;
        font-size: clamp(14px, 1vw, 16px); }
        header.page-header .page-header-inner .pan .breadcrumb span.border {
          display: block;
          background-color: #000;
          height: 1px;
          width: 50px;
          margin: 0 10px; }
        header.page-header .page-header-inner .pan .breadcrumb span.current {
          font-weight: bold;
          color: var(--brand); }
    header.page-header .recruit-info-wrap {
      background-image: url("../assets/imgs/recruit/recruit-bg.png");
      background-size: cover;
      background-position: 70% 0%;
      background-repeat: no-repeat;
      padding-bottom: 100px; }
      header.page-header .recruit-info-wrap .recruit-info {
        width: 90%;
        max-width: 1600px;
        margin: 0 auto; }
        header.page-header .recruit-info-wrap .recruit-info h2 {
          margin-bottom: 1em; }
        header.page-header .recruit-info-wrap .recruit-info p {
          font-size: clamp(14px, 2.5vw, 16px); }
    header.page-header .header-bar {
      border-bottom: solid 0.5px #ccc;
      padding-bottom: 65px; }
      header.page-header .header-bar.recruit {
        border: none;
        padding-bottom: 0; }
  header .header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0 10px 1%;
    background-color: #fff;
    display: flex;
    align-items: center;
    z-index: 100; }
    header .header-bar a {
      display: block;
      height: fit-content; }
  header nav {
    transition: right 0.3s, opacity 0.3s;
    display: flex;
    justify-content: end;
    width: 100%; }
    header nav ul {
      background: #fff;
      display: flex;
      flex-wrap: wrap;
      width: 80%;
      justify-content: end;
      align-items: center;
      padding: 0;
      margin: 0;
      gap: 30px;
      row-gap: 0;
      margin-right: 170px; }
      header nav ul li {
        align-items: center;
        justify-content: center;
        list-style: none;
        flex-shrink: 0;
        font-size: clamp(14px, 1vw, 16px); }
        header nav ul li a {
          text-decoration: none;
          color: #000;
          font-weight: 700;
          transition: color 0.3s;
          padding: 5px 0; }
          header nav ul li a:hover {
            color: #004e96; }
          header nav ul li a.active {
            position: relative; }
            header nav ul li a.active::after {
              content: '';
              position: absolute;
              display: block;
              left: 50%;
              transform: translateX(-50%);
              width: 8px;
              height: 8px;
              margin: 0 auto;
              background-color: var(--brand); }
  header .faq-button {
    border: solid 1px var(--brand);
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    width: 140px;
    background-color: var(--brand);
    color: #fff;
    font-size: clamp(10px, 1vw, 12px);
    padding: 10px;
    margin-left: 30px;
    transition: .2s; }
    header .faq-button::before {
      content: "";
      background-image: url("../assets/imgs/common/faq-text-w.svg");
      display: block;
      width: 50%;
      margin: 0 auto;
      min-width: 70px;
      height: 40px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
    header .faq-button:hover {
      background-color: #fff;
      color: var(--brand); }
      header .faq-button:hover::before {
        background-image: url("../assets/imgs/common/faq-text-b.svg"); }
  header .hamburger {
    display: none;
    position: fixed;
    top: 17px;
    right: 5%;
    width: 40px;
    height: 40px;
    z-index: 110;
    background: none;
    border: none;
    cursor: pointer; }
    header .hamburger span {
      display: block;
      width: 30px;
      height: 4px;
      margin: 6px auto;
      background: #333;
      border-radius: 2px;
      transition: all 0.3s; }
  header #mainVisualLogo {
    position: absolute;
    width: 70%;
    bottom: 10vh;
    right: 0;
    z-index: 50;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease; }
    header #mainVisualLogo.visible {
      opacity: 1;
      transform: translateX(0); }

main.top-page section.block-1 {
  position: relative;
  min-height: 1200px;
  background-image: url("../assets/imgs/top/top_sec1_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  main.top-page section.block-1:after {
    content: '';
    z-index: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%); }
  main.top-page section.block-1 .contents {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1600px;
    min-height: 1200px;
    padding: 100px 0 50px 0;
    z-index: 1; }
    main.top-page section.block-1 .contents h2 {
      font-size: clamp(25px, 2vw, 30px);
      line-height: 1.8em;
      margin-bottom: 40px; }
    main.top-page section.block-1 .contents .read {
      font-size: 16px;
      text-align: justify;
      line-height: 2;
      width: 55%;
      max-width: 540px; }
    main.top-page section.block-1 .contents .box {
      position: absolute;
      width: 35%;
      /* ホバー時：右から左へ全体をクリップ解除 */ }
      main.top-page section.block-1 .contents .box h3 {
        font-size: 24px;
        color: var(--brand);
        margin: 20px 0; }
      main.top-page section.block-1 .contents .box .kicker {
        color: var(--brand);
        font-size: 25px;
        line-height: 65px; }
      main.top-page section.block-1 .contents .box .img-wrap {
        position: relative; }
        main.top-page section.block-1 .contents .box .img-wrap img {
          display: block;
          width: 100%;
          height: auto;
          pointer-events: none; }
        main.top-page section.block-1 .contents .box .img-wrap .default {
          position: relative;
          z-index: 1; }
        main.top-page section.block-1 .contents .box .img-wrap .hov {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: 2;
          /* 最初は右側から全てクリップ（非表示） */
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          transition: clip-path 0.6s ease; }
        main.top-page section.block-1 .contents .box .img-wrap::before {
          content: '';
          position: absolute;
          display: inline-block;
          top: -10%;
          right: -5%;
          width: 40%;
          height: 70%;
          background-color: var(--brand);
          z-index: 1; }
      main.top-page section.block-1 .contents .box .description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px; }
      main.top-page section.block-1 .contents .box:hover .img-wrap .hov, main.top-page section.block-1 .contents .box:focus-within .img-wrap .hov {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
      main.top-page section.block-1 .contents .box.box-1 {
        right: 0;
        top: 100px; }
      main.top-page section.block-1 .contents .box.box-2 {
        right: 45%;
        top: 40%; }
main.top-page section.block-2 .contents {
  position: relative;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
  overflow: hidden; }
main.top-page section.block-2 .inner-section-1 {
  position: relative;
  isolation: isolate;
  min-height: 1080px;
  color: #fff;
  /* 背景設定 */
  background-image: url("../assets/imgs/top/top_sec2_bg_1.png?1");
  background-size: cover;
  background-position: center;
  /* 初期状態は中央の線から左右両側をクリップして非表示 */
  --reveal: 0;
  clip-path: inset(0 calc(50% - 50% * var(--reveal)) 0 calc(50% - 50% * var(--reveal)));
  will-change: clip-path;
  transition: clip-path 0.15s linear; }
  main.top-page section.block-2 .inner-section-1 .content {
    width: 90%;
    margin: 0 auto;
    max-width: 1600px;
    padding: 100px 0; }
    main.top-page section.block-2 .inner-section-1 .content #sec2-title {
      font-size: clamp(25px, 2vw, 30px);
      line-height: 1.5;
      font-weight: bold;
      padding: 60px 0;
      margin-bottom: 120px;
      text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); }
    main.top-page section.block-2 .inner-section-1 .content .read {
      text-align: justify;
      max-width: 300px;
      font-size: 16px;
      line-height: 1.8;
      margin: 0; }
  main.top-page section.block-2 .inner-section-1::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url("../assets/imgs/top/top_sec2_line.svg");
    opacity: 0;
    min-height: 1080px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.5s; }
main.top-page section.block-2 .inner-section-2 {
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
  min-height: 520px;
  padding: 100px 0; }
  main.top-page section.block-2 .inner-section-2 .content {
    width: 90%;
    margin: 0 auto;
    max-width: 1600px; }
    main.top-page section.block-2 .inner-section-2 .content #sec2-title {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 80px; }
      main.top-page section.block-2 .inner-section-2 .content #sec2-title small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.top-page section.block-2 .inner-section-2 .content h3 {
      font-size: clamp(25px, 2vw, 30px);
      margin-bottom: 40px; }
  main.top-page section.block-2 .inner-section-2 .hexagons {
    position: absolute;
    transform-origin: center left;
    right: 25%;
    top: -380px;
    transition: .2s; }
    main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap {
      height: 800px;
      position: relative; }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap a {
        display: block; }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1,
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2,
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3,
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 {
        width: 230px;
        height: 400px;
        position: relative;
        background-color: #fff;
        transition: .2s;
        /* スムーズな変形・影・明度変化 */
        transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.28s ease, filter 0.28s ease;
        will-change: transform, box-shadow, filter;
        transform-origin: center;
        backface-visibility: hidden;
        /* マウス／キーボードでのホバー・フォーカス時 */
        /* キーボードフォーカスの可視化 */
        /* アニメーション軽減希望の環境に配慮 */ }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1 .text,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 .text,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 .text,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 .text {
          transform: scale(1.1);
          display: flex;
          flex-direction: column;
          height: 100%;
          font-size: 16px;
          color: var(--brand);
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          z-index: 1; }
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1 .text .kicker,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 .text .kicker,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 .text .kicker,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 .text .kicker {
            margin-top: 0;
            font-size: 18px;
            font-weight: bold; }
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1 .text img,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 .text img,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 .text img,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 .text img {
            height: auto;
            object-fit: contain;
            margin: 30px auto 10px; }
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1 .text strong,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 .text strong,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 .text strong,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 .text strong {
            font-size: 20px;
            font-weight: bold;
            text-align: center; }
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1 .text p,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 .text p,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 .text p,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 .text p {
            text-align: center;
            font-size: 13px;
            line-height: 1.5;
            margin-top: 30px; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1::before, main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1::after,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2::before,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2::after,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3::before,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3::after,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4::before,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4::after {
          content: "";
          width: 100%;
          height: 100%;
          position: absolute;
          background-color: #fff;
          top: 0;
          left: 0;
          z-index: 0; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1::before,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2::before,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3::before,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4::before {
          transform: rotate(60deg); }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1::after,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2::after,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3::after,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4::after {
          transform: rotate(-60deg); }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1:hover,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2:hover,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3:hover,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4:hover {
          z-index: 999;
          filter: brightness(1.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1:hover, main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1:focus-within, main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1:focus,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2:hover,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2:focus-within,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2:focus,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3:hover,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3:focus-within,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3:focus,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4:hover,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4:focus-within,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4:focus {
          z-index: 999;
          transform: translateY(-6px) scale(1.035);
          filter: brightness(1.06);
          box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18), 0 6px 12px rgba(0, 0, 0, 0.08); }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1:focus-visible,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2:focus-visible,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3:focus-visible,
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4:focus-visible {
          outline: 3px solid rgba(0, 78, 150, 0.12);
          outline-offset: 6px; }
        @media (prefers-reduced-motion: reduce) {
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon1,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3,
          main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 {
            transition: none !important;
            transform: none !important;
            box-shadow: none !important;
            filter: none !important; } }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 {
        background-color: var(--brand);
        top: -600px;
        left: -346px; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 .text {
          color: #fff; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2::before, main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2::after {
          background-color: var(--brand); }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 {
        background-color: #e6e6e6; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3 .text {
          color: var(--brand); }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3::before, main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon3::after {
          background-color: #e6e6e6; }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 {
        background-color: #5197d9;
        top: -1000px;
        left: 346px; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 .text {
          color: #fff; }
        main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4::before, main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4::after {
          background-color: #5197d9; }
  @media (min-width: 1400px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(1); } }
  @media (min-width: 1181px) and (max-width: 1399px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(0.8); } }
  @media (min-width: 1000px) and (max-width: 1180px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(0.65); } }
  @media (min-width: 700px) and (max-width: 999px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(0.6);
      right: 20%;
      top: -450px; } }
  @media (max-width: 699px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(0.5);
      right: -15%;
      top: -420px; }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon2 {
        top: -1000px;
        left: -346px; }
      main.top-page section.block-2 .inner-section-2 .hexagons .hexagons-inner-wrap .hexagon4 {
        top: -1000px;
        left: -346px; } }
  @media (max-width: 410px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(0.45);
      right: -20%; } }
  @media (max-width: 320px) {
    main.top-page section.block-2 .inner-section-2 .hexagons {
      transform: scale(0.4);
      right: -35%; } }
main.top-page section.block-2.bg-full .inner-section-1::after {
  opacity: 1; }
main.top-page section.block-2.bg-full .inner-section-2 {
  opacity: 1;
  transform: translateY(0); }
main.top-page section.block-3 {
  position: relative;
  background-color: #333333;
  overflow: hidden; }
  main.top-page section.block-3 .contents {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
    color: #fff; }
    main.top-page section.block-3 .contents h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em; }
      main.top-page section.block-3 .contents h2 small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.top-page section.block-3 .contents .outline-link {
      border-color: #fff;
      color: #fff;
      height: fit-content; }
      main.top-page section.block-3 .contents .outline-link::after {
        background-image: url("../assets/imgs/common/arrow-white.svg"); }
    main.top-page section.block-3 .contents .box {
      display: flex;
      align-items: end;
      gap: 20%; }
      main.top-page section.block-3 .contents .box .news-list {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 1080px; }
        main.top-page section.block-3 .contents .box .news-list article {
          border-bottom: 1px solid #fff;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 20px 0px 20px 10px;
          gap: 1%; }
          main.top-page section.block-3 .contents .box .news-list article .categories {
            display: flex;
            gap: 5px;
            margin-bottom: 10px; }
            main.top-page section.block-3 .contents .box .news-list article .categories .cat {
              background-color: #000;
              font-size: 10px;
              padding: 2px 20px; }
          main.top-page section.block-3 .contents .box .news-list article h3 {
            font-weight: 600;
            font-size: 22px;
            margin: 15px 0; }
          main.top-page section.block-3 .contents .box .news-list article p {
            font-size: 16px;
            margin: 4px 0; }
          main.top-page section.block-3 .contents .box .news-list article .read-more {
            position: relative;
            font-size: 16px;
            color: #fff;
            padding-right: 32px;
            top: 10px;
            flex-shrink: 0; }
            main.top-page section.block-3 .contents .box .news-list article .read-more::after {
              content: '';
              position: absolute;
              top: 50%;
              right: 0;
              height: 16px;
              width: 16px;
              transform: translateY(-50%);
              background-image: url("../assets/imgs/common/arrow-white.svg");
              background-size: contain;
              background-repeat: no-repeat;
              transition: .2s; }
            main.top-page section.block-3 .contents .box .news-list article .read-more:hover::after {
              transform: translateY(-50%) rotate(45deg); }
  main.top-page section.block-3 .tree {
    position: absolute;
    width: 25%;
    bottom: 0; }
    main.top-page section.block-3 .tree.tree-1 {
      left: 15%;
      max-width: 416px; }
    main.top-page section.block-3 .tree.tree-2 {
      right: 25%;
      max-width: 441px; }
main.company section.block-1 .contents {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 5%;
  padding-top: 0px;
  padding-bottom: 150px; }
  main.company section.block-1 .contents .img-wrap {
    flex: 1;
    filter: saturate(1.5); }
  main.company section.block-1 .contents .text {
    flex: 2; }
  main.company section.block-1 .contents .img-wrap h2,
  main.company section.block-1 .contents .text h2 {
    font-size: clamp(25px, 2vw, 30px);
    margin-bottom: 30px; }
  main.company section.block-1 .contents .img-wrap p,
  main.company section.block-1 .contents .text p {
    text-align: justify;
    font-size: 16px; }
    main.company section.block-1 .contents .img-wrap p.name,
    main.company section.block-1 .contents .text p.name {
      text-align: right;
      margin-top: 1em; }
main.company section.block-2 .contents {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 10%;
  padding-top: 0px;
  padding-bottom: 100px; }
  main.company section.block-2 .contents h2 {
    font-size: clamp(40px, 6vw, 70px);
    letter-spacing: -0.08em; }
    main.company section.block-2 .contents h2 small {
      display: block;
      font-size: 16px;
      margin-top: 10px;
      letter-spacing: 0; }
  main.company section.block-2 .contents table {
    border-collapse: collapse;
    font-size: 16px;
    width: 100%; }
    main.company section.block-2 .contents table tr {
      border-bottom: 1px solid #000; }
    main.company section.block-2 .contents table th,
    main.company section.block-2 .contents table td {
      padding: 12px 14px;
      text-align: left;
      vertical-align: top;
      line-height: 1.65; }
      main.company section.block-2 .contents table th ul,
      main.company section.block-2 .contents table td ul {
        margin: 0;
        padding-left: 16px; }
    main.company section.block-2 .contents table th {
      width: 20%;
      font-weight: 500; }
    main.company section.block-2 .contents table td {
      width: 80%; }
main.company section.block-3 {
  background-color: #333333; }
  main.company section.block-3 .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 10%;
    padding: 150px 0; }
    main.company section.block-3 .contents h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      color: #fff; }
      main.company section.block-3 .contents h2 small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.company section.block-3 .contents ul {
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      row-gap: 80px; }
      main.company section.block-3 .contents ul li {
        list-style: none;
        padding-left: 5%;
        border-left: solid 1px #fff; }
        main.company section.block-3 .contents ul li h3 {
          font-weight: 700;
          color: #666666;
          margin-bottom: 30px; }
        main.company section.block-3 .contents ul li table {
          color: #fff;
          margin-bottom: 30px; }
          main.company section.block-3 .contents ul li table th,
          main.company section.block-3 .contents ul li table td {
            vertical-align: top;
            font-size: 16px; }
            main.company section.block-3 .contents ul li table th.title,
            main.company section.block-3 .contents ul li table td.title {
              width: 25%;
              font-weight: 700;
              font-size: 18px; }
        main.company section.block-3 .contents ul li .picmap {
          display: flex;
          gap: 50px; }
          main.company section.block-3 .contents ul li .picmap .img-wrap,
          main.company section.block-3 .contents ul li .picmap .map {
            width: 50%; }
          main.company section.block-3 .contents ul li .picmap .img-wrap img {
            width: 100%;
            height: 100%;
            aspect-ratio: 16/10;
            object-fit: cover; }
          main.company section.block-3 .contents ul li .picmap .map iframe {
            width: 100%;
            height: 100%; }
        main.company section.block-3 .contents ul li .more a {
          margin: 0 auto;
          margin-top: 20px;
          color: #fff;
          border: solid 1px #fff; }
          main.company section.block-3 .contents ul li .more a::after {
            background-image: url("../assets/imgs/common/arrow-white.svg"); }
          main.company section.block-3 .contents ul li .more a:hover {
            background-color: #fff;
            color: #333; }
            main.company section.block-3 .contents ul li .more a:hover::after {
              background-image: url("../assets/imgs/common/arrow.svg"); }
main.company section.block-4 .contents {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 10%;
  justify-content: space-between;
  padding-top: 0px;
  padding: 100px 0; }
  main.company section.block-4 .contents h2 {
    font-size: clamp(40px, 6vw, 70px);
    letter-spacing: -0.08em;
    line-height: 0.9;
    color: #000; }
    main.company section.block-4 .contents h2 small {
      display: block;
      margin-top: 10px;
      font-size: 16px;
      letter-spacing: 0; }
  main.company section.block-4 .contents table th,
  main.company section.block-4 .contents table td {
    vertical-align: top;
    font-size: 16px; }
    main.company section.block-4 .contents table th.year,
    main.company section.block-4 .contents table td.year {
      min-width: 80px;
      text-align-last: justify; }
    main.company section.block-4 .contents table th.month,
    main.company section.block-4 .contents table td.month {
      width: 50px;
      text-align: right;
      padding: 0 1em 0 0; }
main.operations .section-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-bottom: 100px; }
main.operations section.block-1 {
  position: relative;
  overflow: hidden;
  background-image: url("../assets/imgs/operations/b1-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 65%;
  background-position: top left; }
  main.operations section.block-1 .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
    padding: 50px 0 0 0;
    gap: 5%; }
    main.operations section.block-1 .contents .texts h2 {
      font-size: clamp(25px, 2vw, 30px);
      line-height: 1.5;
      color: #000;
      margin-bottom: 5px; }
    main.operations section.block-1 .contents .texts p {
      font-size: 16px; }
    main.operations section.block-1 .contents svg {
      display: block;
      width: 50%;
      margin-left: auto;
      overflow: visible; }
      main.operations section.block-1 .contents svg .svg-link {
        transition: .2s; }
        main.operations section.block-1 .contents svg .svg-link:hover {
          filter: drop-shadow(0 0 10px rgba(49, 131, 255, 0.8)); }
main.operations section.block-2, main.operations section.block-3, main.operations section.block-4, main.operations section.block-5 {
  position: relative;
  padding: 50px 0; }
  main.operations section.block-2 .contents, main.operations section.block-3 .contents, main.operations section.block-4 .contents, main.operations section.block-5 .contents {
    padding: 50px 5% 150px;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 30px;
    display: flex;
    border: solid 1px #000;
    align-items: end;
    background-color: #fff; }
    main.operations section.block-2 .contents .texts, main.operations section.block-3 .contents .texts, main.operations section.block-4 .contents .texts, main.operations section.block-5 .contents .texts {
      width: 50%;
      position: relative;
      margin-left: 50%; }
      main.operations section.block-2 .contents .texts h2, main.operations section.block-3 .contents .texts h2, main.operations section.block-4 .contents .texts h2, main.operations section.block-5 .contents .texts h2 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 0.5em; }
        main.operations section.block-2 .contents .texts h2 small, main.operations section.block-3 .contents .texts h2 small, main.operations section.block-4 .contents .texts h2 small, main.operations section.block-5 .contents .texts h2 small {
          display: block;
          font-size: 16px;
          letter-spacing: 0; }
      main.operations section.block-2 .contents .texts p, main.operations section.block-3 .contents .texts p, main.operations section.block-4 .contents .texts p, main.operations section.block-5 .contents .texts p {
        text-align: justify;
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 500;
        line-height: 1.6;
        width: 70%; }
      main.operations section.block-2 .contents .texts a, main.operations section.block-3 .contents .texts a, main.operations section.block-4 .contents .texts a, main.operations section.block-5 .contents .texts a {
        width: 100%;
        background-color: #ffffff; }
      main.operations section.block-2 .contents .texts::after, main.operations section.block-3 .contents .texts::after, main.operations section.block-4 .contents .texts::after, main.operations section.block-5 .contents .texts::after {
        background-image: url("../assets/imgs/operations/sales-illust.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom;
        content: '';
        display: block;
        position: absolute;
        bottom: -200px;
        left: 0;
        width: 30%;
        max-width: 200px;
        height: 100%; }
    main.operations section.block-2 .contents .img-wrap, main.operations section.block-3 .contents .img-wrap, main.operations section.block-4 .contents .img-wrap, main.operations section.block-5 .contents .img-wrap {
      width: 45%;
      height: calc(100% - 50px);
      position: absolute;
      bottom: 0;
      left: 0; }
      main.operations section.block-2 .contents .img-wrap img, main.operations section.block-3 .contents .img-wrap img, main.operations section.block-4 .contents .img-wrap img, main.operations section.block-5 .contents .img-wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
main.operations section.block-2 {
  padding: 50px 0; }
  main.operations section.block-2 .contents .img-wrap {
    height: calc(100% - 100px); }
  main.operations section.block-2 .contents .texts::after {
    max-height: 200px; }
main.operations section.block-3, main.operations section.block-5 {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1; }
  main.operations section.block-3 .contents, main.operations section.block-5 .contents {
    flex-direction: row-reverse;
    align-items: start;
    margin-bottom: 50px; }
    main.operations section.block-3 .contents .texts, main.operations section.block-5 .contents .texts {
      margin-left: 0;
      margin-right: 50%; }
    main.operations section.block-3 .contents .img-wrap, main.operations section.block-5 .contents .img-wrap {
      width: 45%;
      height: calc(100% - 100px);
      position: absolute;
      bottom: unset;
      left: unset;
      top: 50px;
      right: 0; }
      main.operations section.block-3 .contents .img-wrap img, main.operations section.block-5 .contents .img-wrap img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
main.operations section.block-3 {
  margin-bottom: 0;
  padding-bottom: 0; }
  main.operations section.block-3 .contents .img-wrap {
    height: calc(100% - 50px); }
  main.operations section.block-3 .contents .texts::after {
    background-image: url("../assets/imgs/operations/construction-illust.svg");
    left: unset;
    right: 0; }
main.operations section.block-4 {
  margin-bottom: 0;
  padding-top: 0; }
  main.operations section.block-4 .contents .texts::after {
    background-image: url("../assets/imgs/operations/maintenance-illust.svg");
    left: unset;
    right: 0; }
main.operations section.block-5 {
  margin-bottom: 0; }
  main.operations section.block-5 .contents .texts::after {
    left: unset;
    right: 0;
    background-image: url("../assets/imgs/operations/stainless-illust.svg"); }
main.projects {
  background-image: url("../assets/imgs/common/logo-mk-gray.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed; }
  main.projects .projects-wrap {
    width: min(90%, 1600px);
    margin-inline: auto; }
    main.projects .projects-wrap .projects-section {
      margin-bottom: 80px;
      padding: 60px 0 0 0;
      border-radius: 18px; }
      main.projects .projects-wrap .projects-section h2 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 1em; }
        main.projects .projects-wrap .projects-section h2 small {
          color: #000;
          display: block;
          font-size: 16px;
          letter-spacing: 0; }
      main.projects .projects-wrap .projects-section .project {
        padding: 40px 0;
        border-top: 1px solid #e8e8ee; }
        main.projects .projects-wrap .projects-section .project .project-grid {
          display: grid;
          gap: clamp(12px, 2.4vw, 24px) clamp(16px, 3vw, 32px);
          grid-template-columns: 1fr 2fr;
          grid-template-areas: "year  title" "blank places";
          align-items: start; }
          @media (max-width: 640px) {
            main.projects .projects-wrap .projects-section .project .project-grid {
              grid-template-columns: 1fr;
              grid-template-areas: "year" "title" "places"; } }
        main.projects .projects-wrap .projects-section .project .project-year {
          grid-area: year;
          font-size: clamp(20px, 2.8vw, 25px);
          font-weight: 700;
          line-height: 1; }
        main.projects .projects-wrap .projects-section .project .project-title {
          display: flex;
          align-items: center;
          justify-content: space-between;
          grid-area: title;
          margin: 0;
          font-size: clamp(20px, 2.8vw, 25px);
          line-height: 1.3; }
          main.projects .projects-wrap .projects-section .project .project-title span {
            font-size: 12px;
            font-weight: 500;
            color: #000;
            word-break: keep-all;
            flex-shrink: 0; }
        main.projects .projects-wrap .projects-section .project .project-blank {
          grid-area: blank; }
        main.projects .projects-wrap .projects-section .project .project-places {
          grid-area: places; }
          main.projects .projects-wrap .projects-section .project .project-places .places-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px 12px;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
            @media (min-width: 1024px) {
              main.projects .projects-wrap .projects-section .project .project-places .places-list {
                grid-template-columns: repeat(3, 1fr); } }
        main.projects .projects-wrap .projects-section .project .place {
          padding: 8px 0;
          font-size: 14px;
          line-height: 1.2;
          overflow: hidden;
          text-overflow: ellipsis; }
main.page-faq {
  font-size: 16px;
  line-height: 1.6;
  /* 注意バナー */
  /* 各部名称 */
  /* FAQ（アクセシブルなdetails） */
  /* シンプルなアコーディオン見た目 */
  /* translateY を維持してから回転させる（上書きしない） */ }
  main.page-faq .sp-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 50px 0; }
  main.page-faq aside h3 {
    margin: 0 0 .6rem;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    padding: 5px 1em; }
  main.page-faq .section {
    width: 100%; }
    main.page-faq .section > h2 {
      position: relative;
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: clamp(20px, 2vw, 25px);
      color: #18212f; }
      main.page-faq .section > h2 .badge {
        flex-shrink: 0;
        display: inline-block;
        height: 30px;
        width: 30px;
        background-image: url("../assets/imgs/faq/faq-icon-6.svg");
        background-size: contain;
        background-repeat: no-repeat; }
    main.page-faq .section.menu .outline-link {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
      text-align: left;
      font-weight: 700; }
      main.page-faq .section.menu .outline-link:hover {
        color: #fff;
        background-color: #000; }
        main.page-faq .section.menu .outline-link:hover::after {
          background-image: url("../assets/imgs/common/arrow-white.svg"); }
    main.page-faq .section.card {
      margin-bottom: 25px; }
    main.page-faq .section .box + .box {
      margin-top: 12px; }
    main.page-faq .section .box h3 {
      margin: 0 0 .6rem;
      font-size: 16px;
      color: #fff;
      background-color: #004e96;
      padding: 8px 12px;
      border-radius: 999px; }
    main.page-faq .section .box table {
      width: 100%;
      border: 1px solid #e5e7eb;
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden; }
      main.page-faq .section .box table th,
      main.page-faq .section .box table td {
        padding: 12px 14px;
        text-align: left;
        vertical-align: top;
        line-height: 1.65;
        color: #18212f; }
        main.page-faq .section .box table th ul,
        main.page-faq .section .box table td ul {
          margin: 0;
          padding-left: 16px; }
      main.page-faq .section .box table th {
        width: 38%;
        background: #f7f8fb;
        font-weight: 700;
        align-content: center; }
      main.page-faq .section .box table tr + tr th,
      main.page-faq .section .box table tr + tr td {
        border-top: 1px solid #e5e7eb; }
    main.page-faq .section .muted {
      color: #6b7280;
      font-size: 0.6rem; }
  main.page-faq #faq h2 {
    display: flex;
    align-items: center;
    color: var(--brand);
    gap: 5px; }
    main.page-faq #faq h2::before {
      content: '';
      position: relative;
      top: 5px;
      display: block;
      height: 40px;
      width: 50px;
      background-image: url("../assets/imgs/faq/faq-icon-7.svg");
      background-size: contain;
      background-repeat: no-repeat; }
  main.page-faq .grid {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 20px;
    align-items: start; }
  main.page-faq .sticky {
    /* WebKit 用の互換宣言を追加 */
    position: -webkit-sticky;
    position: sticky;
    top: 16px;
    /* グリッドのトラック内で上詰めにし、高さをコンテンツに合わせることで期待どおり動く */
    align-self: start;
    height: fit-content; }
  main.page-faq .btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: .6em 1em;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    text-decoration: none; }
  main.page-faq .toc {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    margin-bottom: 50px;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000; }
    main.page-faq .toc a {
      padding: 5px 1em;
      font-size: 16px;
      font-weight: 700;
      color: #000; }
    main.page-faq .toc.faq-cat-index {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
      border: none; }
      main.page-faq .toc.faq-cat-index a {
        display: block;
        background-color: #eef3f8;
        color: var(--brand);
        font-weight: 700;
        border-radius: 999px; }
  main.page-faq .toc a:hover {
    background: #e3e8ef; }
  main.page-faq .notice {
    margin-bottom: 50px; }
    main.page-faq .notice h2 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 30px;
      font-size: clamp(16px, 2vw, 25px);
      color: #ff0000; }
      main.page-faq .notice h2::before {
        content: '';
        display: block;
        height: 30px;
        width: 30px;
        background-image: url("../assets/imgs/faq/faq-icon-1.svg");
        background-size: contain;
        background-repeat: no-repeat; }
    main.page-faq .notice ul {
      max-width: 850px;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0; }
      main.page-faq .notice ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700; }
        main.page-faq .notice ul li strong {
          color: #ff0000; }
        main.page-faq .notice ul li::before {
          content: '';
          flex-shrink: 0;
          display: block;
          height: 60px;
          width: 60px;
          background-image: url("../assets/imgs/faq/faq-icon-2.svg");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center; }
        main.page-faq .notice ul li.check-2::before {
          background-image: url("../assets/imgs/faq/faq-icon-3.svg"); }
        main.page-faq .notice ul li.check-3::before {
          background-image: url("../assets/imgs/faq/faq-icon-4.svg"); }
        main.page-faq .notice ul li.check-4::before {
          background-image: url("../assets/imgs/faq/faq-icon-5.svg"); }
  main.page-faq .type-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px; }
    main.page-faq .type-tabs button {
      padding: .5em 1em;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
      cursor: pointer; }
      main.page-faq .type-tabs button.active {
        background: #004e96;
        color: #fff;
        border-color: #004e96; }
  main.page-faq .parts-board {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 16px;
    align-items: start; }
  main.page-faq .parts-image {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden; }
    main.page-faq .parts-image img {
      display: block;
      max-width: 100%;
      height: auto; }
  main.page-faq .legend {
    padding: 0;
    margin: 0;
    list-style: none; }
    main.page-faq .legend li {
      list-style: none;
      margin: .35em 0; }
  main.page-faq .muted {
    font-size: 0.8rem;
    color: #6b7280; }
  main.page-faq #faq-results {
    color: #000;
    font-weight: 700;
    width: 100%; }
  main.page-faq details {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #e6e6e6; }
  main.page-faq summary {
    background-color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 600; }
  main.page-faq summary::-webkit-details-marker {
    display: none; }
  main.page-faq details .faq-body {
    padding: 14px 16px 14px;
    border-radius: 0 0 12px 12px;
    color: var(--ink);
    background-color: #e6e6e6; }
  main.page-faq details + details {
    margin-top: 10px; }
  main.page-faq .faq-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 12px; }
    main.page-faq .faq-tools #faq-search[type="search"] {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      /* 重要 */
      -webkit-text-size-adjust: 100%;
      overflow: hidden; }
  main.page-faq .faq-tools input {
    width: 100%;
    padding: 10px 12px;
    border: 3px solid #004e96;
    border-radius: 10px; }
  main.page-faq .kicker {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    margin-top: -2px; }
  main.page-faq .faq-group {
    margin: 30px 0;
    padding: 20px 10px;
    border-radius: 12px;
    background-color: #f2f2f2; }
    main.page-faq .faq-group .faq-group-title {
      display: flex;
      align-items: center;
      gap: .5em;
      margin: 0 0 20px 0;
      font-size: 18px;
      color: #000;
      padding: 8px 12px; }
      main.page-faq .faq-group .faq-group-title img {
        max-width: 80px;
        height: auto; }
  main.page-faq .faq-count {
    display: inline-block;
    flex-shrink: 0;
    min-width: 1.8em;
    text-align: center;
    border-radius: 999px;
    background-color: #fff;
    color: var(--brand);
    font-size: 14px;
    padding: 0 0.5em; }
  main.page-faq .accordion-toggle {
    position: relative;
    all: unset;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    cursor: pointer;
    padding: 25px;
    background-color: var(--brand);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    z-index: 1; }
    main.page-faq .accordion-toggle::before {
      content: '';
      display: inline-block;
      width: 0;
      height: 30px; }
    main.page-faq .accordion-toggle::after {
      position: absolute;
      content: '';
      height: 20px;
      width: 20px;
      border-top: solid 1px #fff;
      border-right: solid 1px #fff;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(135deg); }
  main.page-faq .accordion-toggle[aria-expanded="true"]::after {
    border-top: none;
    height: 30px;
    width: 30px;
    transform: translateY(-100%) rotate(90deg); }
  main.page-faq .accordion-content {
    position: relative;
    top: -10px;
    overflow: hidden;
    transition: height 280ms ease;
    will-change: height;
    border: solid 1px #888;
    border-radius: 0 0 10px 10px;
    padding: 40px 20px; }
main.maintenance section.block-1 {
  background-image: url("../assets/imgs/maintenance/maintenance-bg.png");
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat; }
  main.maintenance section.block-1 .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 0; }
    main.maintenance section.block-1 .contents h2 {
      color: #000;
      font-size: clamp(25px, 2vw, 30px);
      margin-bottom: 1em; }
    main.maintenance section.block-1 .contents p {
      font-size: 16px;
      width: 45%;
      max-width: 530px; }
main.maintenance section.block-2 .contents {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 5%;
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1600px;
  margin: 50px auto;
  padding: 50px 5%;
  border: solid 1px #000;
  border-radius: 30px;
  /* 左影 */
  /* 右影 */ }
  main.maintenance section.block-2 .contents .texts {
    width: 100%; }
    main.maintenance section.block-2 .contents .texts h2 {
      color: #000;
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 1em; }
      main.maintenance section.block-2 .contents .texts h2 small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.maintenance section.block-2 .contents .texts p {
      text-align: justify;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 50px; }
  main.maintenance section.block-2 .contents .table-container {
    position: relative; }
  main.maintenance section.block-2 .contents .table-container.scroll-left::before,
  main.maintenance section.block-2 .contents .table-container.scroll-right::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 2; }
  main.maintenance section.block-2 .contents .table-container.scroll-left::before {
    left: 0;
    box-shadow: inset 8px 0 8px -5px rgba(0, 0, 0, 0.5); }
  main.maintenance section.block-2 .contents .table-container.scroll-right::after {
    right: 0;
    box-shadow: inset -8px 0 8px -5px rgba(0, 0, 0, 0.5); }
  main.maintenance section.block-2 .contents .scroll-able {
    position: absolute;
    right: 5px;
    top: 0;
    text-align: center;
    font-size: 12px;
    padding: 5px 10px;
    color: var(--brand);
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 5px #ccc;
    z-index: 10;
    opacity: 0;
    transition: .2s; }
  main.maintenance section.block-2 .contents .table-block {
    width: 100%;
    overflow: hidden;
    -ms-overflow-style: none; }
    main.maintenance section.block-2 .contents .table-block h3 {
      color: var(--brand);
      display: flex;
      align-items: center;
      font-size: 20px;
      gap: 20px;
      margin-bottom: 10px; }
      main.maintenance section.block-2 .contents .table-block h3 span {
        display: block;
        width: 100%;
        padding: 10px 20px;
        border-bottom: solid 1px var(--brand); }
      main.maintenance section.block-2 .contents .table-block h3::before {
        content: '';
        display: block;
        width: 60px;
        height: 60px;
        background-image: url("../assets/imgs/maintenance/maintenance-icon-1.svg");
        background-repeat: no-repeat;
        background-size: contain; }
    main.maintenance section.block-2 .contents .table-block .table-wrap {
      display: block;
      overflow-x: scroll;
      scrollbar-width: none;
      width: 100%; }
      main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table {
        width: auto;
        min-width: 500px;
        border-collapse: collapse;
        text-align: center; }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table tbody tr {
          border-bottom: 1px dotted #333; }
          main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table tbody tr td {
            padding: 12px 8px;
            vertical-align: middle;
            font-weight: 700;
            max-width: 250px; }
            main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table tbody tr td span {
              display: inline-block; }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .blue-16 {
          font-size: 16px;
          color: var(--brand); }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .blue-18 {
          font-size: 18px;
          color: var(--brand); }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .black-18 {
          font-size: 18px;
          color: #000; }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .black-16 {
          font-size: 16px;
          color: #000; }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .black-14 {
          font-size: 14px;
          color: #000; }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .balloon {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 16px;
          border-radius: 0;
          background-color: var(--brand);
          color: #fff;
          position: relative;
          max-width: 230px;
          width: 100%;
          height: 130px;
          margin: 0 auto; }
          main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table .balloon::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -7px;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--brand); }
        main.maintenance section.block-2 .contents .table-block .table-wrap .custom-table::-webkit-scrollbar {
          display: none; }
  main.maintenance section.block-2 .contents .note {
    margin-top: 30px;
    margin-bottom: 100px; }
    main.maintenance section.block-2 .contents .note p {
      font-size: 18px;
      font-weight: 700; }
      main.maintenance section.block-2 .contents .note p span {
        color: var(--brand); }
      main.maintenance section.block-2 .contents .note p small {
        display: block;
        font-size: 16px;
        font-weight: 400;
        text-indent: -1em;
        padding-left: 1em; }
  main.maintenance section.block-2 .contents ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 20px; }
    main.maintenance section.block-2 .contents ul li {
      position: relative;
      padding-left: 20px;
      font-size: 16px;
      line-height: 16px; }
      main.maintenance section.block-2 .contents ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 1px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #000; }
      main.maintenance section.block-2 .contents ul li small {
        display: block;
        font-size: 14px;
        margin-top: 5px;
        text-indent: -1em;
        padding-left: 1em; }
@media (max-width: 1200px) {
  main.maintenance section.block-2 .contents {
    grid-template-columns: 1fr;
    gap: 40px; } }
main.maintenance section.block-3 {
  padding-bottom: 50px; }
  main.maintenance section.block-3 .contents {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 5%;
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1600px;
    margin: 50px auto;
    padding: 50px 5%;
    border: solid 1px #000;
    border-radius: 30px; }
    main.maintenance section.block-3 .contents .texts {
      width: 100%; }
      main.maintenance section.block-3 .contents .texts h2 {
        color: #000;
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 1em; }
        main.maintenance section.block-3 .contents .texts h2 small {
          display: block;
          margin-top: 10px;
          color: var(--brand);
          font-size: 16px;
          letter-spacing: 0; }
          main.maintenance section.block-3 .contents .texts h2 small span {
            display: block;
            margin-top: 5px;
            font-size: clamp(12px, 6vw, 16px); }
      main.maintenance section.block-3 .contents .texts p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 50px; }
    main.maintenance section.block-3 .contents .box {
      width: 100%; }
      main.maintenance section.block-3 .contents .box h3 {
        color: var(--brand);
        display: flex;
        align-items: center;
        font-size: 20px;
        gap: 20px;
        margin-bottom: 10px; }
        main.maintenance section.block-3 .contents .box h3 span {
          display: block;
          width: 100%;
          padding: 10px 20px;
          border-bottom: solid 1px var(--brand); }
        main.maintenance section.block-3 .contents .box h3::before {
          content: '';
          display: block;
          width: 60px;
          height: 60px;
          background-image: url("../assets/imgs/maintenance/maintenance-icon-2.svg");
          background-repeat: no-repeat;
          background-size: contain; }
      main.maintenance section.block-3 .contents .box .inner-box {
        max-width: 600px;
        margin-bottom: 50px; }
        main.maintenance section.block-3 .contents .box .inner-box h4 {
          text-align: center;
          font-size: 20px;
          margin-bottom: 20px; }
        main.maintenance section.block-3 .contents .box .inner-box ul {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 10px;
          list-style: none;
          padding: 0;
          margin: 0; }
          main.maintenance section.block-3 .contents .box .inner-box ul li {
            font-size: 30px;
            line-height: 1.6;
            font-weight: 700;
            text-align: center;
            color: var(--brand); }
            main.maintenance section.block-3 .contents .box .inner-box ul li.price {
              border: solid 1px var(--brand);
              color: #000;
              font-size: 18px;
              padding: 1.5em 2%;
              width: 100%;
              max-width: 180px; }
        main.maintenance section.block-3 .contents .box .inner-box p small {
          display: block;
          font-size: 14px;
          margin-top: 20px;
          text-indent: -1em;
          padding-left: 1em; }
      main.maintenance section.block-3 .contents .box > p {
        font-size: 14px; }
        main.maintenance section.block-3 .contents .box > p strong {
          display: inline-block;
          margin-top: 1em;
          font-size: 18px;
          color: #f7931e;
          text-decoration: underline; }
  @media (max-width: 1200px) {
    main.maintenance section.block-3 .contents {
      grid-template-columns: 1fr;
      gap: 40px; } }
main.recruit section.block-1 {
  background-image: url("../assets/imgs/recruit/recruit-voice-img.svg");
  background-size: cover;
  background-position: 100px 0;
  background-repeat: no-repeat; }
  main.recruit section.block-1 .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 0 150px; }
    main.recruit section.block-1 .contents h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 1em; }
      main.recruit section.block-1 .contents h2 small {
        color: #000;
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.recruit section.block-1 .contents h3 {
      font-size: clamp(25px, 2vw, 30px);
      line-height: 1.4;
      margin-bottom: 50px; }
    main.recruit section.block-1 .contents p {
      text-align: justify;
      font-size: 16px;
      line-height: 1.6;
      max-width: 530px; }
main.recruit section.block-2 {
  /* 単色の長方形を1枚の背景画像として作る */
  background-image: linear-gradient(#e5faf9, #e5faf9);
  background-repeat: no-repeat;
  background-size: 70% 90%;
  background-position: left top; }
  main.recruit section.block-2 .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 0 100px;
    /* 明示的にブレークポイントで1カラムにしたい場合（任意） */ }
    main.recruit section.block-2 .contents .texts {
      display: flex;
      justify-content: space-between;
      margin-bottom: 70px; }
      main.recruit section.block-2 .contents .texts h2 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 1em; }
        main.recruit section.block-2 .contents .texts h2 small {
          color: #000;
          display: block;
          font-size: 16px;
          letter-spacing: 0; }
      main.recruit section.block-2 .contents .texts h3 {
        font-size: clamp(25px, 2vw, 30px);
        line-height: 1.4;
        margin-bottom: 20px; }
      main.recruit section.block-2 .contents .texts p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
        max-width: 530px; }
    main.recruit section.block-2 .contents .articles {
      display: grid;
      gap: clamp(30px, 5vw, 50px);
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      align-items: stretch; }
      main.recruit section.block-2 .contents .articles > article {
        position: relative;
        display: grid;
        grid-template-columns: subgrid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        row-gap: 12px;
        padding-right: 20px; }
        main.recruit section.block-2 .contents .articles > article img {
          position: relative;
          z-index: 1;
          grid-row: 1;
          width: 100%;
          aspect-ratio: 19 / 13;
          object-fit: cover;
          display: block; }
        main.recruit section.block-2 .contents .articles > article h4 {
          grid-row: 2;
          margin: 0;
          font-size: clamp(18px, 1.4vw, 20px);
          line-height: 1.4;
          color: var(--brand); }
        main.recruit section.block-2 .contents .articles > article p {
          grid-row: 3;
          margin: 0;
          line-height: 1.6;
          font-size: 16px; }
        main.recruit section.block-2 .contents .articles > article::before {
          z-index: 0;
          content: '';
          display: block;
          position: absolute;
          background-color: var(--brand);
          height: 100px;
          width: 100px;
          top: -20px;
          right: 0; }
    @media (max-width: 640px) {
      main.recruit section.block-2 .contents .articles {
        grid-template-columns: 1fr; } }
main.recruit section.block-3 .contents {
  display: flex;
  gap: 10%;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto 100px auto; }
  main.recruit section.block-3 .contents .texts {
    width: 30%; }
    main.recruit section.block-3 .contents .texts h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 1em; }
      main.recruit section.block-3 .contents .texts h2 small {
        color: #000;
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.recruit section.block-3 .contents .texts > p {
      text-align: justify;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 50px; }
    main.recruit section.block-3 .contents .texts .more p {
      max-width: 280px;
      text-align: center;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 0.5em; }
    main.recruit section.block-3 .contents .texts a {
      border: solid 1px var(--brand);
      width: 100%;
      background-color: var(--brand);
      color: #fff;
      font-size: 20px; }
      main.recruit section.block-3 .contents .texts a::after {
        background-image: url("../assets/imgs/common/arrow-white.svg");
        transform-origin: 24px;
        height: 20px;
        width: 20px; }
      main.recruit section.block-3 .contents .texts a:hover {
        color: var(--brand);
        background-color: #fff; }
        main.recruit section.block-3 .contents .texts a:hover::after {
          background-image: url("../assets/imgs/common/arrow-brand.svg"); }
  main.recruit section.block-3 .contents .box-wrap {
    display: grid;
    gap: clamp(30px, 5vw, 50px);
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch; }
    main.recruit section.block-3 .contents .box-wrap .box {
      position: relative;
      display: grid;
      grid-template-columns: subgrid;
      grid-template-rows: subgrid;
      grid-row: span 3;
      row-gap: 12px;
      border: solid 1px var(--brand);
      border-radius: 20px;
      padding: 30px 10%; }
      main.recruit section.block-3 .contents .box-wrap .box .kicker {
        position: absolute;
        width: fit-content;
        background-color: var(--brand);
        color: #fff;
        padding: 4px 8px;
        font-size: 14px;
        top: -16px;
        left: 50%;
        transform: translateX(-50%); }
      main.recruit section.block-3 .contents .box-wrap .box img,
      main.recruit section.block-3 .contents .box-wrap .box h3,
      main.recruit section.block-3 .contents .box-wrap .box p {
        position: relative;
        z-index: 1; }
      main.recruit section.block-3 .contents .box-wrap .box img {
        background-color: #fff; }
      main.recruit section.block-3 .contents .box-wrap .box h3 {
        font-size: clamp(18px, 1.4vw, 20px);
        width: fit-content;
        margin: 0 auto; }
      main.recruit section.block-3 .contents .box-wrap .box p {
        font-size: 16px;
        line-height: 1.6; }
      main.recruit section.block-3 .contents .box-wrap .box::before {
        content: '';
        position: absolute;
        display: block;
        background: linear-gradient(to bottom, #0000 0 10%, #fff 10% 90%, #0000 90% 100%);
        background-clip: padding-box;
        width: calc(100% + 10px);
        height: 100%;
        right: -5px;
        z-index: 0; }
main.recruit section.block-4 {
  background-image: url("../assets/imgs/recruit/recruit-info-bg.png");
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 100px 0 300px; }
  main.recruit section.block-4 .contents {
    position: relative;
    background-color: #ffffffcc;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%; }
    main.recruit section.block-4 .contents::before {
      content: '';
      display: block;
      position: absolute;
      background-image: url("../assets/imgs/recruit/recruit-clip.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      height: 50px;
      width: 100%;
      top: -25px;
      left: 50%;
      transform: translateX(-50%); }
    main.recruit section.block-4 .contents h2 {
      font-size: 25px;
      text-align: center; }
    main.recruit section.block-4 .contents table {
      font-size: 16px;
      border-collapse: separate;
      border-spacing: 0 18px;
      width: 65%;
      margin: 0 auto; }
      main.recruit section.block-4 .contents table th {
        font-weight: 500;
        width: 27%; }
      main.recruit section.block-4 .contents table th,
      main.recruit section.block-4 .contents table td {
        text-align: left;
        padding: 14px 12px;
        vertical-align: middle;
        border: none; }
    main.recruit section.block-4 .contents a {
      margin: 0 auto;
      background-color: #333;
      color: #fff; }
      main.recruit section.block-4 .contents a::after {
        background-image: url("../assets/imgs/common/arrow-white.svg"); }
      main.recruit section.block-4 .contents a:hover {
        color: #333;
        background-color: #fff; }
        main.recruit section.block-4 .contents a:hover::after {
          background-image: url("../assets/imgs/common/arrow.svg"); }
main.work-environment {
  padding-bottom: 250px;
  background-image: url("../assets/imgs/recruit/recruit-info-bg.png");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat; }
  main.work-environment section.block-1 .contents {
    width: 95%;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 5%; }
    main.work-environment section.block-1 .contents #pano {
      width: 70%; }
    main.work-environment section.block-1 .contents .texts {
      width: 30%; }
      main.work-environment section.block-1 .contents .texts h2 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 0.5em; }
        main.work-environment section.block-1 .contents .texts h2 small {
          display: block;
          font-size: 16px;
          letter-spacing: 0; }
      main.work-environment section.block-1 .contents .texts p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
        max-width: 530px; }
  main.work-environment section.block-2 .contents {
    display: flex;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 0;
    gap: 5%; }
    main.work-environment section.block-2 .contents .texts {
      width: 30%; }
      main.work-environment section.block-2 .contents .texts h2 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 0.5em; }
        main.work-environment section.block-2 .contents .texts h2 small {
          display: block;
          font-size: 16px;
          letter-spacing: 0; }
      main.work-environment section.block-2 .contents .texts p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
        max-width: 530px; }
    main.work-environment section.block-2 .contents .splide {
      width: 70%; }
      main.work-environment section.block-2 .contents .splide__slide {
        display: flex;
        flex-direction: column;
        row-gap: 30px; }
        main.work-environment section.block-2 .contents .splide__slide p {
          font-size: 16px; }
        main.work-environment section.block-2 .contents .splide__slide p.role {
          display: flex;
          gap: 20px;
          align-items: end;
          justify-content: end;
          flex: 5; }
          main.work-environment section.block-2 .contents .splide__slide p.role::before {
            content: '';
            position: relative;
            bottom: 5px;
            height: 1px;
            width: 100%;
            background-color: #000;
            flex: 1; }
      main.work-environment section.block-2 .contents .splide__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 77, 150, 0.36);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: box-shadow 0.2s, background 0.2s; }
        main.work-environment section.block-2 .contents .splide__arrow:hover {
          background: var(--brand);
          box-shadow: 0 4px 16px rgba(0, 78, 150, 0.18); }
          main.work-environment section.block-2 .contents .splide__arrow:hover::after {
            border-color: #fff; }
        main.work-environment section.block-2 .contents .splide__arrow--prev {
          left: -2.5em; }
          main.work-environment section.block-2 .contents .splide__arrow--prev::after {
            content: '';
            display: block;
            width: 18px;
            height: 18px;
            border-top: 3px solid #004e96;
            border-left: 3px solid #004e96;
            transform: rotate(-45deg);
            margin-left: 4px;
            transition: border-color 0.2s; }
        main.work-environment section.block-2 .contents .splide__arrow--next {
          right: -2.5em; }
          main.work-environment section.block-2 .contents .splide__arrow--next::after {
            content: '';
            display: block;
            width: 18px;
            height: 18px;
            border-top: 3px solid #004e96;
            border-right: 3px solid #004e96;
            transform: rotate(45deg);
            margin-right: 4px;
            transition: border-color 0.2s; }
        main.work-environment section.block-2 .contents .splide__arrow svg {
          display: none; }
      main.work-environment section.block-2 .contents .splide__pagination__page {
        background-color: #cccccc; }
        main.work-environment section.block-2 .contents .splide__pagination__page.is-active {
          background-color: #808080;
          transform: scale(1); }
      main.work-environment section.block-2 .contents .splide__pagination {
        position: unset;
        margin-top: 50px; }
  main.work-environment section.block-3 .contents {
    flex-direction: row-reverse; }
  main.work-environment section.block-3 .contents, main.work-environment section.block-4 .contents {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    padding: 50px 0; }
    main.work-environment section.block-3 .contents .texts, main.work-environment section.block-4 .contents .texts {
      width: 30%; }
      main.work-environment section.block-3 .contents .texts h2, main.work-environment section.block-4 .contents .texts h2 {
        font-size: clamp(40px, 6vw, 70px);
        letter-spacing: -0.08em;
        margin-bottom: 0.5em; }
        main.work-environment section.block-3 .contents .texts h2 small, main.work-environment section.block-4 .contents .texts h2 small {
          display: block;
          font-size: 16px;
          letter-spacing: 0; }
      main.work-environment section.block-3 .contents .texts p, main.work-environment section.block-4 .contents .texts p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
        max-width: 530px; }
    main.work-environment section.block-3 .contents .images, main.work-environment section.block-4 .contents .images {
      display: flex;
      width: 65%;
      gap: 30px;
      flex-wrap: wrap; }
      main.work-environment section.block-3 .contents .images img, main.work-environment section.block-4 .contents .images img {
        aspect-ratio: 4 / 3;
        width: calc(50% - 30px);
        object-fit: cover; }
  main.work-environment section.block-3 .contents {
    padding-top: 0px; }
  main.work-environment section.block-5 .contents {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5%;
    padding: 50px 0; }
    main.work-environment section.block-5 .contents h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 0.5em; }
      main.work-environment section.block-5 .contents h2 small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    main.work-environment section.block-5 .contents p {
      text-align: justify;
      font-size: 16px;
      line-height: 1.6; }
  main.work-environment section.block-6 {
    background-image: url("../assets/imgs/work-environment/work-environment-b6-bg.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat; }
    main.work-environment section.block-6 .contents {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90%;
      max-width: 1200px;
      margin: 50px auto 100px auto;
      padding: 50px 0;
      gap: 5%; }
      main.work-environment section.block-6 .contents .texts {
        width: 40%;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        gap: 20px; }
        main.work-environment section.block-6 .contents .texts h3 {
          font-size: clamp(25px, 2vw, 30px);
          text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff; }
        main.work-environment section.block-6 .contents .texts p {
          text-align: justify;
          font-size: 16px;
          line-height: 1.6;
          max-width: 530px;
          text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff; }
        main.work-environment section.block-6 .contents .texts a {
          background-color: #333;
          color: #fff; }
          main.work-environment section.block-6 .contents .texts a::after {
            background-image: url("../assets/imgs/common/arrow-white.svg"); }
          main.work-environment section.block-6 .contents .texts a:hover {
            color: #333;
            background-color: #fff; }
            main.work-environment section.block-6 .contents .texts a:hover::after {
              background-image: url("../assets/imgs/common/arrow.svg"); }
main.entry {
  background-image: url("../assets/imgs/recruit/recruit-info-bg.png");
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 0 0 300px; }
  main.entry .contents {
    width: 90%;
    max-width: 800px;
    margin: 0 auto; }
    main.entry .contents .entry__head {
      margin-bottom: 50px;
      text-align: center; }
      main.entry .contents .entry__head .entry__title {
        margin: 0 0 20px;
        font-size: clamp(20px, 2.6vw, 28px);
        font-weight: 700;
        line-height: 1.3; }
      main.entry .contents .entry__head .entry__lead {
        font-size: 14px;
        line-height: 1.8; }
    main.entry .contents .entry-form {
      /* 同意チェック */ }
      main.entry .contents .entry-form .optional {
        padding: 2px 8px;
        font-size: 12px;
        color: #fff;
        background: #999999;
        border-radius: 5px;
        vertical-align: middle; }
      main.entry .contents .entry-form .required {
        display: inline-block;
        margin-left: 8px;
        padding: 2px 8px;
        font-size: 12px;
        color: #fff;
        background: var(--brand);
        border-radius: 5px;
        vertical-align: middle; }
      main.entry .contents .entry-form .field {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 20px 0;
        /* 2カラム（姓・名 / せい・めい） */ }
        main.entry .contents .entry-form .field__head {
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 8px;
          margin-bottom: 8px;
          width: 30%; }
          main.entry .contents .entry-form .field__head .field__label {
            font-size: 16px; }
        main.entry .contents .entry-form .field.message {
          align-items: start; }
        main.entry .contents .entry-form .field input[type="text"],
        main.entry .contents .entry-form .field input[type="email"],
        main.entry .contents .entry-form .field input[type="tel"],
        main.entry .contents .entry-form .field textarea {
          width: 100%;
          border: 1px solid #000;
          border-radius: 5px;
          padding: 10px 12px;
          font-size: 16px;
          line-height: 1.5;
          background: #fff;
          transition: border-color .2s ease, box-shadow .2s ease; }
          main.entry .contents .entry-form .field input[type="text"]:focus,
          main.entry .contents .entry-form .field input[type="email"]:focus,
          main.entry .contents .entry-form .field input[type="tel"]:focus,
          main.entry .contents .entry-form .field textarea:focus {
            outline: none; }
          main.entry .contents .entry-form .field input[type="text"]::placeholder,
          main.entry .contents .entry-form .field input[type="email"]::placeholder,
          main.entry .contents .entry-form .field input[type="tel"]::placeholder,
          main.entry .contents .entry-form .field textarea::placeholder {
            color: #b3b3b3; }
        main.entry .contents .entry-form .field textarea {
          resize: vertical;
          min-height: 140px; }
        main.entry .contents .entry-form .field .inline {
          display: grid;
          gap: 12px;
          width: 70%; }
          main.entry .contents .entry-form .field .inline--2 {
            width: 100%;
            grid-template-columns: 1fr 1fr; }
            @media (max-width: 560px) {
              main.entry .contents .entry-form .field .inline--2 {
                grid-template-columns: 1fr; } }
          main.entry .contents .entry-form .field .inline__item {
            display: flex;
            flex-direction: column;
            gap: 6px; }
        main.entry .contents .entry-form .field.field--file .file {
          width: 100%;
          position: relative;
          display: inline-flex;
          flex-direction: column;
          align-items: start; }
          main.entry .contents .entry-form .field.field--file .file .file__input {
            position: absolute;
            inset: 0;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            border: 0;
            clip: rect(0 0 0 0);
            clip-path: inset(50%);
            overflow: hidden;
            white-space: nowrap; }
          main.entry .contents .entry-form .field.field--file .file .file__button {
            display: inline-block;
            padding: 10px 16px;
            background-color: #999999;
            color: #fff;
            font-size: 16px;
            border: 1px solid #999999;
            cursor: pointer;
            user-select: none;
            transition: .2s; }
            main.entry .contents .entry-form .field.field--file .file .file__button:hover {
              background-color: var(--brand);
              color: #fff;
              border-color: var(--brand); }
            main.entry .contents .entry-form .field.field--file .file .file__button:active {
              transform: translateY(1px); }
        main.entry .contents .entry-form .field.field--file .file__name {
          margin-top: 8px;
          font-size: 14px;
          color: #333333; }
          main.entry .contents .entry-form .field.field--file .file__name[data-error="1"] {
            color: #b91c1c;
            font-weight: 600; }
        main.entry .contents .entry-form .field.field--captcha {
          justify-content: center; }
          main.entry .contents .entry-form .field.field--captcha .captcha-wrap img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            object-fit: contain; }
          main.entry .contents .entry-form .field.field--captcha .captcha-wrap input {
            margin-top: 10px; }
      main.entry .contents .entry-form .consent {
        margin: 24px 0 8px;
        font-size: 16px;
        text-align: center; }
        main.entry .contents .entry-form .consent__label {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          font-size: 16px; }
          main.entry .contents .entry-form .consent__label input[type="checkbox"] {
            inline-size: 18px;
            block-size: 18px;
            accent-color: var(--brand); }
        main.entry .contents .entry-form .consent__note {
          margin-top: 6px; }
          main.entry .contents .entry-form .consent__note a {
            color: var(--brand);
            text-decoration: underline;
            text-underline-offset: 2px; }
            main.entry .contents .entry-form .consent__note a:hover {
              opacity: .85; }
      main.entry .contents .entry-form .actions {
        margin-top: 24px;
        text-align: center; }
        main.entry .contents .entry-form .actions .btn {
          position: relative;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 12px 40px;
          border-radius: 999px;
          background-color: #333333;
          border: solid 1px #333333;
          color: #fff;
          min-width: 250px;
          font-size: 16px;
          cursor: pointer;
          transition: .2s; }
          main.entry .contents .entry-form .actions .btn::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: block;
            height: 20px;
            width: 20px;
            background-image: url("../assets/imgs/common/send-icon.svg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain; }
          main.entry .contents .entry-form .actions .btn:hover {
            color: #333333;
            background-color: #fff; }
            main.entry .contents .entry-form .actions .btn:hover::after {
              background-image: url("../assets/imgs/common/send-icon-bk.svg"); }
main.privacy-policy .contents {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 80px auto;
  font-size: 16px; }
  main.privacy-policy .contents h2 {
    font-size: 18px;
    margin-top: 50px; }
  main.privacy-policy .contents h3 {
    font-size: 16px;
    margin-top: 30px; }
  main.privacy-policy .contents address {
    font-style: unset; }
main.news .contents {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto; }
  main.news .contents .news-header .cat {
    display: flex;
    gap: 1px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px; }
    main.news .contents .news-header .cat::before {
      content: '';
      margin-top: 5px;
      display: block;
      background-image: url("../assets/imgs/common/tag.svg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      height: 25px;
      width: 22px; }
  main.news .contents .news-header .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: solid 0.4px #000;
    margin-bottom: 50px; }
    main.news .contents .news-header .categories span a {
      display: block;
      text-align: center;
      color: #000;
      border: solid 1px #000;
      border-radius: 999px;
      font-size: 14px;
      min-width: 70px; }
      main.news .contents .news-header .categories span a.active {
        background-color: #000;
        color: #fff; }
  main.news .contents .news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px; }
    main.news .contents .news-list .news-card {
      position: relative;
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      border: solid 1px #000;
      padding: 20px 0;
      border-radius: 10px; }
      main.news .contents .news-list .news-card img,
      main.news .contents .news-list .news-card .news-card-header,
      main.news .contents .news-list .news-card .news-card-content,
      main.news .contents .news-list .news-card .more {
        position: relative;
        z-index: 1; }
      main.news .contents .news-list .news-card img {
        object-fit: cover;
        width: 100%;
        height: 100%; }
      main.news .contents .news-list .news-card .news-card-header {
        display: flex;
        justify-content: space-between;
        font-size: 14px; }
        main.news .contents .news-list .news-card .news-card-header .news-categories {
          display: flex;
          flex-wrap: wrap;
          gap: 5px; }
          main.news .contents .news-list .news-card .news-card-header .news-categories .news-category {
            background-color: #000;
            height: fit-content;
            color: #fff;
            padding: 0px 5px; }
      main.news .contents .news-list .news-card .news-card-content h2 {
        font-size: 16px;
        margin-bottom: 5px; }
      main.news .contents .news-list .news-card .news-card-content p {
        font-size: 16px; }
      main.news .contents .news-list .news-card .more a {
        color: #000;
        display: flex;
        justify-content: end;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        padding: 0 20px 0 0; }
        main.news .contents .news-list .news-card .more a::after {
          content: '';
          display: block;
          height: 14px;
          width: 14px;
          background-image: url("../assets/imgs/common/arrow.svg");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain; }
      main.news .contents .news-list .news-card::before {
        content: '';
        position: absolute;
        display: block;
        background: linear-gradient(to bottom, #0000 0 20px, #fff 20px calc(100% - 20px), #0000 calc(100% - 20px) 100%);
        background-clip: padding-box;
        width: calc(100% + 6px);
        height: 100%;
        right: -3px;
        z-index: 0; }
  main.news .contents .ad-search__pager {
    width: 90%;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; }
    main.news .contents .ad-search__pager .pg {
      font-size: 16px;
      height: 45px;
      width: 45px;
      color: #333;
      border: 1px solid #333;
      background-color: #fff;
      border-radius: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: .2s;
      cursor: pointer; }
      main.news .contents .ad-search__pager .pg.pg-prev, main.news .contents .ad-search__pager .pg.pg-next {
        border-radius: unset;
        background-color: #fff;
        height: 15px;
        width: 15px;
        border-top: solid 1px #000;
        border-right: solid 1px #000;
        border-bottom: unset;
        border-left: unset; }
      main.news .contents .ad-search__pager .pg.pg-next {
        transform: rotate(45deg); }
      main.news .contents .ad-search__pager .pg.pg-prev {
        transform: rotate(-135deg); }
      main.news .contents .ad-search__pager .pg.current {
        background-color: #333;
        color: #fff;
        cursor: unset; }
main.page-archive-product {
  background: #fff; }
  main.page-archive-product .ad-search__wrap {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5%;
    padding-bottom: 50px; }
  main.page-archive-product .ad-search__sidebar {
    background: #fff;
    border: 1px solid #00000033;
    border-radius: 14px;
    padding: 16px;
    padding-left: 12px;
    align-self: start; }
  main.page-archive-product .ad-search__results {
    min-width: 0; }
  main.page-archive-product .ad-search__pager {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; }
    main.page-archive-product .ad-search__pager .pg {
      font-size: 16px;
      height: 45px;
      width: 45px;
      color: #333;
      border: 1px solid #333;
      background-color: #fff;
      border-radius: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: .2s;
      cursor: pointer; }
      main.page-archive-product .ad-search__pager .pg.pg-prev, main.page-archive-product .ad-search__pager .pg.pg-next {
        border-radius: unset;
        background-color: #fff;
        height: 15px;
        width: 15px;
        border-top: solid 1px #000;
        border-right: solid 1px #000;
        border-bottom: unset;
        border-left: unset; }
      main.page-archive-product .ad-search__pager .pg.pg-next {
        transform: rotate(45deg); }
      main.page-archive-product .ad-search__pager .pg.pg-prev {
        transform: rotate(-135deg); }
      main.page-archive-product .ad-search__pager .pg.is-current {
        background-color: #333;
        color: #fff; }
  main.page-archive-product .ad-form {
    display: grid;
    gap: 20px; }
    main.page-archive-product .ad-form__reset {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.3;
      border-radius: 6px;
      border: 1px solid #ccc;
      background-color: #f8f9fa;
      color: #444;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      margin-top: 10px; }
      main.page-archive-product .ad-form__reset:hover, main.page-archive-product .ad-form__reset:focus-visible {
        background-color: #e9ecef;
        border-color: #bbb;
        color: #222;
        outline: none; }
      main.page-archive-product .ad-form__reset:active {
        background-color: #ddd; }
    main.page-archive-product .ad-form .field {
      display: grid;
      gap: 8px; }
      main.page-archive-product .ad-form .field label,
      main.page-archive-product .ad-form .field legend {
        font-size: 14px;
        font-weight: 700;
        color: #000000; }
      main.page-archive-product .ad-form .field input[type="search"],
      main.page-archive-product .ad-form .field select {
        border: 1px solid #00000033;
        border-radius: 5px;
        padding: 10px 12px;
        font-size: 14px; }
    main.page-archive-product .ad-form .checkboxes {
      display: grid;
      gap: 8px;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
      main.page-archive-product .ad-form .checkboxes label {
        position: relative;
        display: inline-flex;
        align-items: center; }
        main.page-archive-product .ad-form .checkboxes label input[type="checkbox"] {
          position: absolute;
          inline-size: 1px;
          block-size: 1px;
          margin: -1px;
          padding: 0;
          border: 0;
          clip: rect(0 0 0 0);
          clip-path: inset(50%);
          overflow: hidden;
          white-space: nowrap; }
        main.page-archive-product .ad-form .checkboxes label span {
          display: inline-flex;
          align-items: center;
          justify-content: start;
          width: 100%;
          padding: 10px 16px;
          border-radius: 5px;
          background: #f2f2f2;
          font-size: 14px;
          cursor: pointer;
          transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
          user-select: none; }
        main.page-archive-product .ad-form .checkboxes label:hover span {
          background: #efeff3; }
        main.page-archive-product .ad-form .checkboxes label:active span {
          transform: translateY(1px); }
        main.page-archive-product .ad-form .checkboxes label input[type="checkbox"]:focus-visible + span {
          outline: 2px solid color-mix(in oklab, #004e96 35%, transparent);
          outline-offset: 2px;
          box-shadow: 0 0 0 2px color-mix(in oklab, #004e96 20%, transparent); }
        main.page-archive-product .ad-form .checkboxes label input[type="checkbox"]:checked + span {
          background: #004e96;
          border-color: #004e96;
          color: #fff; }
        main.page-archive-product .ad-form .checkboxes label input[type="checkbox"]:disabled + span {
          opacity: .5;
          cursor: not-allowed; }
    main.page-archive-product .ad-form .field--collapsible .checkboxes {
      max-height: 170px;
      overflow: hidden;
      transition: max-height 0.3s ease; }
      main.page-archive-product .ad-form .field--collapsible .checkboxes.is-open {
        max-height: 1000px; }
    main.page-archive-product .ad-form .field--collapsible .btn-toggle {
      margin-top: 8px;
      font-size: 13px;
      background: none;
      border: none;
      color: #004e96;
      cursor: pointer;
      text-decoration: underline;
      padding: 0; }
  main.page-archive-product .cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px; }
  main.page-archive-product .card {
    position: relative;
    background: #fff;
    border: 1px solid #00000033;
    border-radius: 14px;
    overflow: hidden;
    padding-bottom: 30px; }
    main.page-archive-product .card__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      padding: 14px;
      padding-bottom: 0;
      aspect-ratio: 4 / 3; }
    main.page-archive-product .card__body {
      padding: 14px; }
    main.page-archive-product .card__title {
      font-size: 16px;
      margin-bottom: 10px;
      font-weight: 700;
      color: #000000; }
    main.page-archive-product .card:hover {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
    main.page-archive-product .card::after {
      content: '';
      position: absolute;
      background-image: url("../assets/imgs/common/arrow.svg");
      background-repeat: no-repeat;
      background-size: contain;
      right: 14px;
      bottom: 14px;
      width: 16px;
      height: 16px; }
  main.page-archive-product .card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 0; }
    main.page-archive-product .card__meta .tag {
      display: inline-block;
      background-color: #eef3f8;
      color: #004e96;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.3;
      padding: 3px 8px;
      border-radius: 999px;
      white-space: nowrap; }
      main.page-archive-product .card__meta .tag--more {
        background-color: #dce4ef;
        color: #666;
        font-weight: 700; }
  @media (max-width: 900px) {
    main.page-archive-product .ad-search__wrap {
      display: block; } }
main.single-news .contents {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0; }
  main.single-news .contents .meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px; }
    main.single-news .contents .meta .categories {
      display: flex;
      gap: 10px; }
      main.single-news .contents .meta .categories .category {
        padding: 0px 8px;
        background-color: #000;
        color: #fff;
        font-size: 14px;
        font-weight: 500; }
  main.single-news .contents h1 {
    font-size: 20px;
    padding-bottom: 1em; }
  main.single-news .contents .main-content {
    padding: 30px 0;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000; }
    main.single-news .contents .main-content h2 {
      font-size: 18px; }
    main.single-news .contents .main-content h3,
    main.single-news .contents .main-content h4,
    main.single-news .contents .main-content h5,
    main.single-news .contents .main-content h6,
    main.single-news .contents .main-content p,
    main.single-news .contents .main-content a,
    main.single-news .contents .main-content ul,
    main.single-news .contents .main-content li {
      font-size: 16px; }
    main.single-news .contents .main-content .eyecatch img {
      object-fit: contain;
      width: 100%; }
  main.single-news .contents .navigation {
    display: flex;
    gap: 5%;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin: 10px; }
  main.single-news .contents a {
    margin: 50px auto 0 auto; }
main.single-office {
  background-image: url("../assets/imgs/common/logo-mk-gray.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: right center;
  background-attachment: fixed; }
  main.single-office .office-header {
    padding: 60px 0 40px; }
    main.single-office .office-header .contents {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto; }
    main.single-office .office-header__main {
      display: flex;
      gap: 5%;
      align-items: flex-start;
      margin-bottom: 40px; }
      @media (max-width: 900px) {
        main.single-office .office-header__main {
          flex-direction: column;
          gap: 24px; } }
    main.single-office .office-header__img {
      flex: 1;
      min-width: 220px;
      max-width: 320px; }
      main.single-office .office-header__img img {
        width: 100%;
        object-fit: contain; }
    main.single-office .office-header__info {
      flex: 2; }
      main.single-office .office-header__info h2 {
        font-size: clamp(28px, 4vw, 40px);
        margin-bottom: 12px; }
        main.single-office .office-header__info h2 small {
          display: block;
          font-size: 16px;
          margin-top: 5px; }
      main.single-office .office-header__info table {
        font-size: 16px; }
        main.single-office .office-header__info table th {
          width: 5em;
          font-weight: 500;
          color: var(--muted);
          text-align: left;
          padding: 4px 8px 4px 0; }
        main.single-office .office-header__info table td {
          padding: 4px 0; }
      main.single-office .office-header__info .desc {
        font-size: 16px;
        color: #222;
        margin-bottom: 16px;
        line-height: 1.7; }
    main.single-office .office-header__map {
      margin-top: 24px; }
      main.single-office .office-header__map iframe {
        width: 100%;
        min-height: 280px;
        border-radius: 12px;
        border: none; }
  main.single-office .office-work {
    padding: 60px 0 40px; }
    main.single-office .office-work .contents {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto; }
    main.single-office .office-work h2 {
      font-size: clamp(28px, 4vw, 40px);
      margin-bottom: 12px;
      letter-spacing: -0.04em; }
      main.single-office .office-work h2 small {
        display: block;
        font-size: 16px;
        margin-top: 8px;
        letter-spacing: 0; }
    main.single-office .office-work .work-desc {
      font-size: 16px;
      margin-bottom: 30px; }
    main.single-office .office-work .work-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(260px, 1fr));
      gap: 40px 5%; }
    main.single-office .office-work .work-item {
      background: #f2f2f2;
      border-radius: 16px;
      display: flex;
      gap: 0.5em;
      align-items: center;
      padding: 24px;
      min-width: 0;
      box-sizing: border-box; }
      main.single-office .office-work .work-item .work-img {
        width: 100%;
        display: flex;
        justify-content: center; }
        main.single-office .office-work .work-item .work-img img {
          width: 100%;
          max-width: 220px;
          aspect-ratio: 4/3;
          border-radius: 12px;
          object-fit: cover;
          background: #fff;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }
      main.single-office .office-work .work-item .work-info {
        width: 100%;
        text-align: left; }
        main.single-office .office-work .work-item .work-info h3 {
          font-size: 20px;
          color: var(--brand);
          margin-bottom: 8px; }
        main.single-office .office-work .work-item .work-info p {
          font-size: 16px;
          color: #222; }
  main.single-office .office-repeat {
    padding: 60px 0 40px; }
    main.single-office .office-repeat .contents {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto; }
    main.single-office .office-repeat .repeat-block {
      margin-bottom: 56px; }
      main.single-office .office-repeat .repeat-block h2 {
        font-size: clamp(28px, 2vw, 40px);
        margin-bottom: 16px; }
      main.single-office .office-repeat .repeat-block .repeat-inner {
        display: flex;
        gap: 40px;
        align-items: stretch;
        min-height: 320px; }
        @media (max-width: 900px) {
          main.single-office .office-repeat .repeat-block .repeat-inner {
            flex-direction: column;
            gap: 16px; } }
        main.single-office .office-repeat .repeat-block .repeat-inner .repeat-img {
          flex: 2;
          display: flex;
          align-items: center;
          justify-content: center;
          min-width: 0; }
          main.single-office .office-repeat .repeat-block .repeat-inner .repeat-img img {
            cursor: pointer;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 16 / 9;
            border-radius: 18px;
            object-fit: contain;
            box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
            background: #fff;
            transition: box-shadow .3s;
            padding: 10px; }
            main.single-office .office-repeat .repeat-block .repeat-inner .repeat-img img:hover {
              box-shadow: 0 8px 48px rgba(0, 0, 0, 0.2); }
        main.single-office .office-repeat .repeat-block .repeat-inner .repeat-desc {
          flex: 1.2;
          font-size: 17px;
          color: #222;
          line-height: 1.8;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0 12px; }
      main.single-office .office-repeat .repeat-block.img-only .repeat-inner .repeat-img {
        flex: 1 1 100%;
        justify-content: center; }
        main.single-office .office-repeat .repeat-block.img-only .repeat-inner .repeat-img img {
          max-width: 700px;
          width: 100%;
          aspect-ratio: 16/9; }
      main.single-office .office-repeat .repeat-block.img-only .repeat-inner .repeat-desc {
        display: none; }
  main.single-office .office-results {
    padding: 60px 0 80px; }
    main.single-office .office-results .contents {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto; }
      main.single-office .office-results .contents .results-link {
        display: flex;
        justify-content: center;
        margin: 40px 0 0 0; }
        main.single-office .office-results .contents .results-link .outline-link {
          font-size: 18px;
          font-weight: 700;
          padding: 18px 40px;
          border-radius: 999px;
          background-color: #fff;
          color: var(--brand);
          border: 2px solid var(--brand);
          box-shadow: 0 2px 8px rgba(0, 78, 150, 0.08);
          transition: background 0.2s, color 0.2s, border-color 0.2s; }
          main.single-office .office-results .contents .results-link .outline-link:hover {
            background-color: var(--brand);
            color: #fff;
            border-color: #004e96; }
            main.single-office .office-results .contents .results-link .outline-link:hover::after {
              background-image: url("../assets/imgs/common/arrow-white.svg"); }

.footer-company {
  background-color: #f2f2f2;
  padding-top: 50px;
  overflow: hidden; }
  .footer-company .link-texts {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 30px; }
    .footer-company .link-texts h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em; }
      .footer-company .link-texts h2 small {
        display: block;
        font-size: 16px;
        margin-top: 5px;
        letter-spacing: 0; }
    .footer-company .link-texts h3 {
      font-size: 25px;
      text-align: right;
      margin-bottom: 30px; }
    .footer-company .link-texts .outline-link {
      width: 70%;
      margin-left: auto; }
  .footer-company ul {
    list-style: none; }
    .footer-company ul li a {
      text-align: center;
      font-size: 16px; }
      .footer-company ul li a .img-wrap {
        position: relative; }
        .footer-company ul li a .img-wrap img {
          background-color: #ffffff;
          border-radius: 1vw; }
        .footer-company ul li a .img-wrap .hov {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          opacity: 0;
          transition: opacity 0.3s ease; }
          .footer-company ul li a .img-wrap .hov:hover {
            opacity: 1; }
      .footer-company ul li a h4 {
        margin: 1em 0; }

.footer-faq {
  background-color: var(--brand);
  color: #fff;
  text-align: center; }
  .footer-faq a {
    position: relative;
    display: block;
    transition: .2s;
    padding: 50px 5%;
    color: #fff; }
    .footer-faq a:hover {
      background-color: #fff;
      color: var(--brand); }
    .footer-faq a .contents {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px; }
      .footer-faq a .contents > p {
        font-size: 25px;
        font-weight: bold; }
      .footer-faq a .contents h2 {
        font-size: clamp(40px, 6vw, 52px); }
        .footer-faq a .contents h2 small {
          display: block;
          font-size: 12px;
          margin-top: 5px; }
    .footer-faq a::after {
      content: '';
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      background-image: url("../assets/imgs/common/arrow-white.svg");
      background-repeat: no-repeat;
      background-size: contain;
      height: 16px;
      width: 16px; }

.site-footer {
  /* .footer-inner */ }
  .site-footer .footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    font-size: 16px;
    /* .footer-top */
    /* .footer-bottom */ }
    .site-footer .footer-inner .footer-top {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      justify-content: space-between;
      padding: 50px 5%; }
      .site-footer .footer-inner .footer-top .footer-left {
        max-width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 350px; }
        .site-footer .footer-inner .footer-top .footer-left .footer-logo {
          display: inline-block;
          margin-bottom: 10px; }
          .site-footer .footer-inner .footer-top .footer-left .footer-logo img {
            max-width: 220px;
            height: auto;
            display: block; }
        .site-footer .footer-inner .footer-top .footer-left .footer-address {
          margin-top: 8px;
          color: var(--muted);
          font-size: 16px;
          font-style: normal; }
          .site-footer .footer-inner .footer-top .footer-left .footer-address p {
            margin: 0 0 0.4rem; }
          .site-footer .footer-inner .footer-top .footer-left .footer-address a {
            color: var(--brand);
            text-decoration: none; }
            .site-footer .footer-inner .footer-top .footer-left .footer-address a:hover {
              text-decoration: underline; }
      .site-footer .footer-inner .footer-top .footer-right {
        max-width: 35%; }
        .site-footer .footer-inner .footer-top .footer-right .footer-sitemap,
        .site-footer .footer-inner .footer-top .footer-right ul {
          list-style: none;
          padding: 0;
          margin: 0; }
          .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li,
          .site-footer .footer-inner .footer-top .footer-right ul li {
            margin: 0.4rem 0; }
            .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a,
            .site-footer .footer-inner .footer-top .footer-right ul li a {
              color: var(--ink);
              text-decoration: none;
              transition: color 0.2s; }
              .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a:hover,
              .site-footer .footer-inner .footer-top .footer-right ul li a:hover {
                color: var(--brand); }
            .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a.faq,
            .site-footer .footer-inner .footer-top .footer-right ul li a.faq {
              display: block;
              border: solid 1px var(--brand);
              text-align: center;
              top: 0;
              right: 0;
              background-color: var(--brand);
              color: #fff;
              font-size: clamp(10px, 1vw, 12px);
              padding: 10px;
              transition: .2s; }
              .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a.faq::before,
              .site-footer .footer-inner .footer-top .footer-right ul li a.faq::before {
                content: "";
                background-image: url("../assets/imgs/common/faq-text-w.svg");
                display: block;
                width: 50%;
                margin: 0 auto;
                min-width: 70px;
                height: 40px;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center; }
              .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a.faq:hover,
              .site-footer .footer-inner .footer-top .footer-right ul li a.faq:hover {
                background-color: #fff;
                color: var(--brand); }
                .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a.faq:hover a,
                .site-footer .footer-inner .footer-top .footer-right ul li a.faq:hover a {
                  color: var(--brand); }
                .site-footer .footer-inner .footer-top .footer-right .footer-sitemap li a.faq:hover::before,
                .site-footer .footer-inner .footer-top .footer-right ul li a.faq:hover::before {
                  background-image: url("../assets/imgs/common/faq-text-b.svg"); }
    .site-footer .footer-inner .footer-bottom {
      font-size: 12px;
      border-top: 1px solid #e5e7eb;
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .site-footer .footer-inner .footer-bottom .copyright {
        color: var(--muted); }
      .site-footer .footer-inner .footer-bottom .privacy a {
        color: var(--muted);
        text-decoration: none; }
        .site-footer .footer-inner .footer-bottom .privacy a:hover {
          color: var(--brand); }
  @media (max-width: 768px) {
    .site-footer .footer-inner {
      padding: 24px 16px; }
      .site-footer .footer-inner .footer-top {
        flex-direction: column; }
        .site-footer .footer-inner .footer-top .footer-left,
        .site-footer .footer-inner .footer-top .footer-right {
          max-width: 100%;
          min-height: unset; }
        .site-footer .footer-inner .footer-top .footer-right {
          margin-top: 16px; }
      .site-footer .footer-inner .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px; } }

/* parts 画像モーダル（FAQ部分） */
.parts-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px; }
  .parts-modal__inner {
    max-width: 1200px;
    width: 100%;
    background: transparent;
    position: relative; }
  .parts-modal__img {
    display: block;
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto; }
  .parts-modal__close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }

/* 共通パーツ */
a.outline-link {
  display: block;
  position: relative;
  text-align: center;
  font-size: 14px;
  border: solid 1px #000;
  color: #000;
  border-radius: 999px;
  padding: 16px 20px;
  transition: .2s;
  width: 60%;
  min-width: 200px;
  max-width: 280px;
  z-index: 10; }
  a.outline-link::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-image: url("../assets/imgs/common/arrow.svg");
    height: 16px;
    width: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: 16px;
    transition: all 0.3s; }
  a.outline-link:hover::after {
    transform: rotate(45deg); }

.half-space {
  display: block;
  height: 0.5em;
  content: ""; }

/* リクルートセクション */
.recruit-section {
  background-image: url("../assets/imgs/recruit-section/recruit-section-bg.png");
  background-size: cover;
  background-position: center; }
  .recruit-section .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 0; }
    .recruit-section .contents h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 60px; }
      .recruit-section .contents h2 small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    .recruit-section .contents p {
      font-weight: bold;
      margin-bottom: 30px; }

/* 健康経営セクション */
.kenko-keiei {
  padding: 100px 0; }
  .kenko-keiei .contents {
    display: flex;
    align-items: center;
    gap: 3%;
    padding: 30px 3%;
    border: solid 1px #000;
    border-radius: 30px;
    max-width: 800px;
    width: 90%;
    margin: 0 auto; }
    .kenko-keiei .contents .img-wrap {
      width: 45%; }
      .kenko-keiei .contents .img-wrap img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain; }
    .kenko-keiei .contents .texts {
      width: 55%; }
      .kenko-keiei .contents .texts h2 {
        font-size: clamp(25px, 2vw, 30px);
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 15px; }
      .kenko-keiei .contents .texts p {
        font-size: 16px; }

/* 見積もり依頼セクション */
.rfq-section .contents {
  display: flex;
  align-items: center;
  gap: 5%;
  background-color: #ccd9e1;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 70px 10%; }
  .rfq-section .contents h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 30px;
    width: 50%; }
    .rfq-section .contents h2::before {
      content: '';
      display: block;
      width: 80px;
      height: 100px;
      background-image: url("../assets/imgs/common/rfq-icon.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
  .rfq-section .contents .texts {
    width: 50%; }
    .rfq-section .contents .texts a.outline-link {
      background-color: #333;
      color: #fff; }
      .rfq-section .contents .texts a.outline-link::after {
        background-image: url("../assets/imgs/common/arrow-white.svg"); }
    .rfq-section .contents .texts p {
      font-size: 16px;
      margin-bottom: 30px; }

/* 製品一覧セクション */
.product-list-section {
  background-image: url("../assets/imgs/operations/b4-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  margin-top: -200px;
  position: relative;
  z-index: 0; }
  .product-list-section .contents {
    margin-left: 50%;
    margin-right: 5%;
    padding: 200px 0 100px; }
    .product-list-section .contents h2 {
      font-size: clamp(25px, 2vw, 30px);
      line-height: 1.4;
      margin-bottom: 1em;
      text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8); }

/* お問い合わせセクション */
.contact-section {
  background-color: #f2f2f2;
  padding: 50px 0; }
  .contact-section .contents {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 5%; }
    .contact-section .contents .texts h2 {
      font-size: clamp(40px, 6vw, 70px);
      letter-spacing: -0.08em;
      margin-bottom: 60px; }
      .contact-section .contents .texts h2 small {
        display: block;
        font-size: 16px;
        letter-spacing: 0; }
    .contact-section .contents .contact-info h3 {
      width: fit-content;
      background-color: var(--brand);
      color: #fff;
      font-weight: 500;
      padding: 5px 4em 5px 2em;
      border-radius: 999px;
      margin-bottom: 1em; }
    .contact-section .contents .contact-info .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px; }
      .contact-section .contents .contact-info .grid .box {
        border-bottom: solid 1px #000;
        padding-bottom: 10px;
        position: relative;
        padding-right: 16px; }
        .contact-section .contents .contact-info .grid .box h4 {
          color: var(--brand);
          font-size: 18px;
          margin-bottom: 5px; }
        .contact-section .contents .contact-info .grid .box p {
          font-size: 16px;
          font-weight: bold; }
          .contact-section .contents .contact-info .grid .box p small {
            font-size: 14px;
            font-weight: normal; }
        .contact-section .contents .contact-info .grid .box::after {
          position: absolute;
          top: 50%;
          right: 16px;
          transform: translateY(-50%);
          height: 16px;
          width: 16px;
          content: '';
          display: block;
          background-image: url("../assets/imgs/common/arrow.svg");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center; }

/* スクロールセクション */
.scroll-hint {
  position: fixed;
  z-index: 9999;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none; }

.back-to-top {
  position: fixed;
  z-index: 9999;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none; }

.scroll-hint.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; }

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto; }

/* 左下：スクロール案内 */
.scroll-hint {
  left: 16px;
  bottom: 16px; }

.scroll-hint img {
  display: block;
  height: auto;
  max-width: 15px;
  max-height: 150px; }

.scroll-hint.visible:not(.reduced) {
  animation: hintNudge 2.2s ease-in-out infinite; }

@keyframes hintNudge {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-2px); } }
/* 右下：トップへ */
.back-to-top {
  right: 50%;
  transform: translateX(50%);
  bottom: 8vh;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border: 0;
  cursor: pointer; }

.back-to-top:active {
  transform: translateY(0) scale(0.96); }

@media (prefers-reduced-motion: reduce) {
  .scroll-hint,
  .back-to-top {
    transition: none; }

  .scroll-hint.visible {
    animation: none; } }
@media screen and (max-width: 767px) {
  .pc {
    display: none !important; }

  .sp {
    display: block; }

  header .header-bar {
    padding-left: 0; }
    header .header-bar .logo {
      z-index: 100;
      max-width: 200px;
      width: 75%;
      height: auto;
      margin: 10px;
      object-fit: contain; }
  header.page-header .header-bar {
    padding-bottom: 10px; }
  header.page-header .recruit-info-wrap .recruit-info h2,
  header.page-header .recruit-info-wrap .recruit-info p {
    text-shadow: 0 0 10px white; }
  header #mainVisualLogo {
    width: 90%;
    bottom: 5vh; }
  header.home-header h1 {
    width: fit-content;
    /* 縦書きにする */
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: start;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1rem, 5vh, 1.5rem);
    line-height: 1.5em;
    letter-spacing: 10px;
    /* ドロップシャドウ */
    text-shadow: 0px 0px 5px white; }
  header .header-bar nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    z-index: 101;
    display: block; }
    header .header-bar nav.open {
      right: 0;
      opacity: 1; }
    header .header-bar nav ul {
      flex-direction: column;
      gap: 30px;
      padding-top: 80px;
      padding-left: 1em;
      width: 100%;
      align-items: flex-start; }
      header .header-bar nav ul li.faq {
        background-color: var(--brand);
        color: #fff;
        border-radius: 999px;
        padding: 5px 5%; }
      header .header-bar nav ul li a.active::after {
        content: '';
        position: absolute;
        display: block;
        right: -16px;
        transform: translate(-50%, -50%);
        top: 50%;
        left: unset;
        width: 8px;
        height: 8px;
        margin: 0 auto;
        background-color: var(--brand); }
  header .page-header-inner .pan {
    width: 100%;
    margin-bottom: 30px; }
    header .page-header-inner .pan .breadcrumb {
      justify-content: flex-start; }
  header .hamburger {
    display: block; }
  header #hamburgerBtn.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 7px); }
  header #hamburgerBtn.open span:nth-child(2) {
    opacity: 0; }
  header #hamburgerBtn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px); }

  main {
    /* 以下は共通部分 */
    /*FAQセクション*/
    /* リクルートセクション */
    /* 健康経営セクション */
    /* 見積もり依頼セクション */ }
    main.top-page section.block-1 {
      background-image: none; }
      main.top-page section.block-1 .contents p.read {
        width: 100%; }
      main.top-page section.block-1 .contents .box {
        position: unset;
        width: 95%;
        margin-bottom: 50px; }
        main.top-page section.block-1 .contents .box a {
          width: 100%;
          margin: 0 auto; }
    main.top-page section.block-2 a {
      width: 100%;
      margin: 0 auto; }
    main.top-page section.block-3 .contents .box {
      flex-direction: column-reverse;
      justify-content: center;
      align-items: center;
      row-gap: 30px; }
      main.top-page section.block-3 .contents .box .news-list article {
        flex-direction: column; }
        main.top-page section.block-3 .contents .box .news-list article .article-inner-wrap {
          width: 100%; }
        main.top-page section.block-3 .contents .box .news-list article .read-more {
          top: 0;
          width: 100%;
          text-align: right; }
      main.top-page section.block-3 .contents .box a {
        width: 100%;
        margin: 0 auto; }
    main.company section.block-1 .contents {
      flex-direction: column;
      row-gap: 30px; }
      main.company section.block-1 .contents .img-wrap,
      main.company section.block-1 .contents .text {
        width: 100%; }
        main.company section.block-1 .contents .img-wrap h2,
        main.company section.block-1 .contents .text h2 {
          margin-bottom: 30px; }
    main.company section.block-2 .contents {
      flex-direction: column; }
    main.company section.block-3 .contents {
      flex-direction: column; }
      main.company section.block-3 .contents h2 {
        margin-bottom: 30px; }
      main.company section.block-3 .contents ul li table td {
        width: 100%;
        display: block; }
        main.company section.block-3 .contents ul li table td.title {
          width: 100%; }
      main.company section.block-3 .contents ul li .picmap {
        flex-direction: column; }
        main.company section.block-3 .contents ul li .picmap .img-wrap,
        main.company section.block-3 .contents ul li .picmap .map {
          width: 100%; }
      main.company section.block-3 .contents ul li .more a {
        width: 100%; }
    main.company section.block-4 .contents {
      flex-direction: column;
      padding: 50px 0; }
      main.company section.block-4 .contents table td {
        display: block; }
        main.company section.block-4 .contents table td.year {
          width: 100%;
          margin-top: 30px;
          font-weight: bold;
          text-align-last: unset; }
          main.company section.block-4 .contents table td.year span {
            display: inline-block; }
        main.company section.block-4 .contents table td.month {
          text-align: left;
          width: 100%;
          margin-top: 10px; }
    main.operations .section-wrap {
      margin-bottom: 0;
      gap: 0; }
    main.operations section.block-1 .contents {
      display: flex;
      flex-direction: column;
      padding: 50px 0 0 0; }
      main.operations section.block-1 .contents .texts {
        width: 100%;
        margin-bottom: 30px; }
      main.operations section.block-1 .contents svg {
        width: 100%; }
    main.operations section.block-1::before {
      width: 100vw; }
    main.operations section.block-2 .contents, main.operations section.block-3 .contents, main.operations section.block-4 .contents, main.operations section.block-5 .contents {
      flex-direction: column;
      padding: 30px 5%; }
      main.operations section.block-2 .contents .img-wrap, main.operations section.block-3 .contents .img-wrap, main.operations section.block-4 .contents .img-wrap, main.operations section.block-5 .contents .img-wrap {
        position: unset;
        width: 100%;
        margin-bottom: 20px; }
      main.operations section.block-2 .contents .texts, main.operations section.block-3 .contents .texts, main.operations section.block-4 .contents .texts, main.operations section.block-5 .contents .texts {
        width: 100%;
        margin: 0; }
        main.operations section.block-2 .contents .texts h2,
        main.operations section.block-2 .contents .texts h3, main.operations section.block-3 .contents .texts h2,
        main.operations section.block-3 .contents .texts h3, main.operations section.block-4 .contents .texts h2,
        main.operations section.block-4 .contents .texts h3, main.operations section.block-5 .contents .texts h2,
        main.operations section.block-5 .contents .texts h3 {
          margin-bottom: 20px; }
        main.operations section.block-2 .contents .texts p, main.operations section.block-3 .contents .texts p, main.operations section.block-4 .contents .texts p, main.operations section.block-5 .contents .texts p {
          width: 100%; }
        main.operations section.block-2 .contents .texts h2,
        main.operations section.block-2 .contents .texts p, main.operations section.block-3 .contents .texts h2,
        main.operations section.block-3 .contents .texts p, main.operations section.block-4 .contents .texts h2,
        main.operations section.block-4 .contents .texts p, main.operations section.block-5 .contents .texts h2,
        main.operations section.block-5 .contents .texts p {
          text-shadow: 0 0 10px white;
          position: relative;
          z-index: 1; }
        main.operations section.block-2 .contents .texts::after, main.operations section.block-3 .contents .texts::after, main.operations section.block-4 .contents .texts::after, main.operations section.block-5 .contents .texts::after {
          bottom: 0;
          left: unset;
          right: 0;
          z-index: 0;
          width: 50%; }
    main.operations section.block-5 {
      margin-bottom: 0;
      padding-bottom: 0; }
    main.maintenance section.block-1 {
      background-image: none; }
      main.maintenance section.block-1 .contents p {
        width: 100%; }
    main.projects {
      background-size: 100%; }
    main.recruit section.block-1 .contents {
      padding: 50px 0; }
      main.recruit section.block-1 .contents h3 {
        margin-bottom: 20px; }
    main.recruit section.block-2 .contents .texts {
      flex-direction: column; }
      main.recruit section.block-2 .contents .texts h3 {
        font-size: 20px; }
    main.recruit section.block-3 .contents {
      flex-direction: column;
      margin: 0 auto 50px auto; }
      main.recruit section.block-3 .contents .texts {
        width: 100%;
        margin-bottom: 50px; }
        main.recruit section.block-3 .contents .texts p {
          margin-bottom: 20px; }
        main.recruit section.block-3 .contents .texts a {
          width: 100%;
          margin: 0 auto; }
      main.recruit section.block-3 .contents .box-wrap {
        grid-template-columns: repeat(1, 1fr); }
    main.recruit section.block-4 {
      padding: 100px 0 200px; }
      main.recruit section.block-4 .contents {
        padding: 50px 0; }
        main.recruit section.block-4 .contents h2 {
          margin-bottom: 30px; }
        main.recruit section.block-4 .contents table {
          width: 100%;
          border-spacing: 0 0; }
          main.recruit section.block-4 .contents table th {
            width: 100%;
            padding-bottom: 0; }
          main.recruit section.block-4 .contents table td {
            padding-top: 0; }
          main.recruit section.block-4 .contents table th,
          main.recruit section.block-4 .contents table td {
            display: block; }
        main.recruit section.block-4 .contents a {
          width: 100%;
          margin: 0 auto;
          margin-top: 30px; }
    main.work-environment {
      padding-bottom: 150px; }
      main.work-environment section.block-1 .contents {
        width: 90%;
        margin: 0 auto;
        flex-direction: column; }
        main.work-environment section.block-1 .contents #pano {
          margin-bottom: 30px; }
        main.work-environment section.block-1 .contents #pano,
        main.work-environment section.block-1 .contents .texts {
          width: 100%; }
      main.work-environment section.block-2 .contents {
        flex-direction: column;
        padding: 50px 0; }
        main.work-environment section.block-2 .contents .texts {
          width: 100%;
          margin-bottom: 30px; }
        main.work-environment section.block-2 .contents .splide {
          width: 100%; }
          main.work-environment section.block-2 .contents .splide__arrow--prev {
            left: -2.5%; }
          main.work-environment section.block-2 .contents .splide__arrow--next {
            right: -2.5%; }
      main.work-environment section.block-3 .contents, main.work-environment section.block-4 .contents, main.work-environment section.block-5 .contents {
        flex-direction: column; }
        main.work-environment section.block-3 .contents .texts, main.work-environment section.block-4 .contents .texts, main.work-environment section.block-5 .contents .texts {
          width: 100%;
          margin-bottom: 30px; }
        main.work-environment section.block-3 .contents .images, main.work-environment section.block-4 .contents .images, main.work-environment section.block-5 .contents .images {
          width: 100%; }
          main.work-environment section.block-3 .contents .images img, main.work-environment section.block-4 .contents .images img, main.work-environment section.block-5 .contents .images img {
            width: calc(50% - 15px); }
      main.work-environment section.block-6 .contents {
        flex-direction: column;
        margin-bottom: 50px; }
        main.work-environment section.block-6 .contents .texts {
          width: 100%; }
          main.work-environment section.block-6 .contents .texts a {
            width: 100%;
            margin: 0 auto; }
    main.entry {
      padding-bottom: 200px; }
      main.entry .contents .entry-form .field {
        flex-direction: column;
        gap: 10px;
        margin: 30px 0; }
        main.entry .contents .entry-form .field .field__head {
          width: 100%; }
    main.page-faq .notice ul {
      grid-template-columns: 1fr; }
    main.page-faq .accordion-toggle {
      padding: 15px 20px 15px 5px;
      gap: 8px; }
      main.page-faq .accordion-toggle::after {
        right: 10px;
        width: 15px;
        height: 15px; }
      main.page-faq .accordion-toggle[aria-expanded="true"]::after {
        width: 20px;
        height: 20px; }
    main.page-faq .accordion-content {
      padding: 30px 2%; }
    main.page-faq .section .box h3 {
      font-size: 14px; }
    main.page-faq .parts-board {
      grid-template-columns: 1fr; }
    main.single-office {
      background-size: 100%; }
      main.single-office .office-work .work-list {
        grid-template-columns: repeat(1, minmax(260px, 1fr)); }
        main.single-office .office-work .work-list .work-item {
          gap: 10px; }
          main.single-office .office-work .work-list .work-item h3 {
            font-size: 18px; }
      main.single-office .office-results .contents .results-list .result-item .result-imgs img {
        width: 100%; }
    main.page-archive-product .ad-search__wrap .ad-search__sidebar {
      margin-bottom: 50px; }
    main.page-faq .grid {
      grid-template-columns: 1fr; }
      main.page-faq .grid .sticky {
        position: static;
        width: 100%;
        margin-bottom: 20px; }
    main .recruit-section {
      background-position: 60% center; }
      main .recruit-section .contents {
        width: 90%;
        max-width: 1600px;
        margin: 0 auto;
        padding: 50px 0; }
        main .recruit-section .contents h2 {
          font-size: clamp(41px, 6vw, 52px);
          margin-bottom: 60px; }
          main .recruit-section .contents h2 small {
            display: block;
            font-size: 12px; }
        main .recruit-section .contents p {
          font-weight: bold;
          margin-bottom: 30px; }
        main .recruit-section .contents a {
          width: 100%;
          margin: 0 auto;
          box-shadow: 0 0 10px white; }
        main .recruit-section .contents h2,
        main .recruit-section .contents p,
        main .recruit-section .contents a {
          text-shadow: 0 0 10px white; }
    main .kenko-keiei {
      padding: 50px 0; }
      main .kenko-keiei .contents {
        display: flex;
        flex-direction: column; }
        main .kenko-keiei .contents .img-wrap {
          width: 100%; }
        main .kenko-keiei .contents .texts {
          width: 100%; }
          main .kenko-keiei .contents .texts h2 {
            text-align: center; }
    main .rfq-section .contents {
      display: flex;
      flex-direction: column; }
      main .rfq-section .contents h2 {
        width: 100%;
        margin-bottom: 30px; }
      main .rfq-section .contents .texts {
        width: 100%; }
    main .product-list-section {
      margin: -50px 0 0 0;
      background-size: cover; }
      main .product-list-section .contents {
        width: 90%;
        margin: 0 auto;
        padding: 32px 0;
        border-radius: 18px; }
        main .product-list-section .contents h2 {
          font-size: 1.1rem;
          line-height: 1.7;
          text-align: center;
          margin-bottom: 24px;
          font-weight: 600;
          color: var(--brand, #1a4b8e);
          letter-spacing: 0.02em; }
        main .product-list-section .contents a {
          width: 100%;
          margin: 0 auto;
          background-color: #ffffffcc; }
    main .contact-section .contents {
      display: block; }
      main .contact-section .contents .texts {
        margin-bottom: 30px; }
        main .contact-section .contents .texts a {
          width: 100%;
          margin: 0 auto; }
      main .contact-section .contents .contact-info .grid {
        grid-template-columns: 1fr; }

  .footer-company .link-texts {
    flex-direction: column; }
    .footer-company .link-texts > div {
      width: 100%; }
    .footer-company .link-texts .outline-link {
      display: block;
      width: 100%;
      margin: 0 auto;
      margin-top: 30px; }
    .footer-company .link-texts h3 {
      text-align: left; }

  .footer-contact-info .box-wrap .box {
    width: 100%; }
    .footer-contact-info .box-wrap .box .map iframe {
      width: 100%;
      height: 200px; }

  .footer-faq {
    background-color: var(--brand);
    color: #fff;
    text-align: center; }
    .footer-faq a {
      position: relative;
      display: block;
      transition: .2s;
      padding: 50px 5%; }
      .footer-faq a:hover {
        background-color: #fff;
        color: var(--brand); }
      .footer-faq a .contents {
        display: flex;
        flex-direction: column;
        gap: 10px; }
        .footer-faq a .contents > p {
          font-size: 25px;
          font-weight: bold; }
      .footer-faq a::after {
        content: '';
        position: absolute;
        right: 5%;
        top: unset;
        bottom: 16px;
        transform: translateY(-50%); }

  .scroll-hint {
    left: 2px;
    bottom: 16px; } }

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