@charset "UTF-8";

/* ==================================================
   リセットcss
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

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

ul {
  list-style: none;
}

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

.sp-only,
.msg-sp-bg-img {
  display: none;
}

:root {
  --primary-color: #2b61c6;
  --text-color: #333;
  --bg-light: #f4f7fc;
}

/* ==================================================
   アニメーション
================================================== */
@keyframes slitIn {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

/* ヘッダーが上から降りてくるアニメーション */
@keyframes headerDrop {
  0% {
    opacity: 0;
    transform: translate(-50%, -15px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes sharpFocusUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__title {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section__title span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #999;
  margin-top: 5px;
}

/* ==================================================
   電話ボタン
================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn--tel {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 8px;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s ease !important;
}

.btn--tel svg {
  width: 20px;
  height: 20px;
}

.header__nav a.btn--tel:hover,
.btn--tel:hover {
  color: #fff !important;
  background-color: var(--primary-color) !important;
  opacity: 0.8 !important;
}

.btn--gradient {
  background: linear-gradient(to right, #4582e6 0%, #1f4bb0 100%);
  color: #fff;
  padding: 10px 10px 10px 60px;
  font-size: 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 4px 10px rgba(31, 75, 176, 0.2);
  transition: opacity 0.3s ease;
}

.btn--gradient:hover {
  opacity: 0.85;
}

.btn--gradient .btn__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  background-color: #fff;
  border-radius: 50%;
  color: #2b61c6;
}

.btn--gradient .btn__icon svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.btn--gradient:hover .btn__icon svg {
  transform: translate(3px, -3px);
}

/* ==================================================
   ヘッダー
================================================== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1500px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: headerDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.header__logo {
  position: relative;
  top: -4px;
}

.header__logo img {
  height: 60px;
}

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

.header__nav .main-menu {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-right: 40px;
}

.header__nav .main-menu > li {
  position: relative;
  padding: 20px 0;
}

.header__nav a {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.header__nav a:hover {
  color: var(--primary-color);
}

.arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: rotate(45deg);
  margin-left: 8px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  padding: 12px 20px;
  display: block;
  font-weight: normal;
  text-align: center;
  transition: background 0.2s;
  font-size: 16px;
}

.dropdown a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

/* ==================================================
  トップ
================================================== */
.hero {
  height: 100vh;
  background: url("img/top.jpeg") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
  width: 100%;
}

.hero__content h2 {
  color: #fff;
  font-size: 100px;
  line-height: 1.4;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: slitIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* ==================================================
   私たちについて
================================================== */
.about {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "ABOUT US";
  position: absolute;
  top: 85%;
  left: -2%;
  transform: translateY(-50%);
  font-size: 14vw;
  font-weight: 900;
  color: var(--bg-light);
  z-index: 0;
  white-space: nowrap;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.about::after,
.bg-shape {
  display: none;
}

.about .section__inner {
  position: relative;
  z-index: 1;
}

.about__content {
  display: flex;
  gap: 70px;
  align-items: center;
  margin-top: 50px;
}

.about__image {
  flex: 1;
  position: relative;
}

.about__image img {
  border-radius: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.about__text {
  flex: 1;
}

.about__text p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 2.4;
  color: #333;
}

/* ==================================================
   事業内容
================================================== */
.service {
  background-color: var(--bg-light);
  padding-bottom: 80px;
}

.service__container {
  background-color: #fbfbfb;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
}

.service__header .section__title {
  font-size: 36px;
  margin-bottom: 20px;
}

.service__header p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.service__bottom {
  background-image:
    url("img/texture5.png"), linear-gradient(135deg, #4582e6, #1f4bb0);
  background-position:
    right top,
    center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
  background-blend-mode: luminosity, normal;
  padding: 60px;
}

.service__cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.project-card {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  flex: 1;
}

.project-card__img {
  position: relative;
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-card__img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.project-card__label-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  background-color: #fff;
  border-bottom-right-radius: 15px;
  padding: 10px 20px 10px 10px;
}

.project-card__label-wrap::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--primary-color);
  margin-right: 10px;
}

.project-card__label {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  border-radius: 0;
  margin: 0;
}

.project-card__title {
  margin-left: -5px;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  padding-bottom: 10px;
}

/* ==================================================
   基本設定とキャッチコピー周辺画像、スライダー
================================================== */
.recruit-page-main {
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 15% 20%, #f4f8ff 0%, transparent 60%),
    radial-gradient(circle at 85% 30%, #fdf9e0 0%, transparent 60%),
    radial-gradient(circle at 40% 85%, #ebf2ff 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, #f4f8ff 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.recruit-page-hero {
  height: 70vh;
  min-height: 400px;
  background: url("../img/recruit1.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 100px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  z-index: 10;
}

.recruit-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.recruit-page-hero__content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: #fff;
  animation: sharpFocusUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-page-hero__content h1 {
  font-size: 48px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.recruit-page-hero__content span {
  font-size: 16px;
  letter-spacing: 0.2em;
}

.recruit-catch-sec {
  padding: 300px 0 120px;
  margin-top: -40px;
  position: relative;
  z-index: auto;
}

.catch-images-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 180px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-img {
  position: absolute;
  border-radius: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.c-img-1 {
  top: 20px;
  left: 1%;
  width: 280px;
  height: 220px;
}

.c-img-2 {
  top: -50px;
  right: -10%;
  width: 420px;
  height: 300px;
  z-index: 1;
}

.c-img-3 {
  bottom: -60px;
  left: -20%;
  width: 500px;
  height: 370px;
  z-index: 2;
}

.c-img-4 {
  bottom: -20px;
  right: 5%;
  width: 320px;
  height: 240px;
}

.c-img-5 {
  top: -130px;
  right: 23%;
  width: 300px;
  height: 230px;
  z-index: 2;
}

.catch-images-wrap {
  flex-direction: column !important;
}

.style-hairline-msg {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin-bottom: 25px !important;
  position: relative !important;
  z-index: 15 !important;
  opacity: 1 !important;
  transform: none !important;
}

.style-hairline-msg::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  margin-bottom: 5px;
}

.style-hairline-msg__text {
  font-size: 17px;
  color: #555;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .style-hairline-msg__text {
    margin-top: -30px;
    color: #222 !important;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 1),
      0 0 20px rgba(255, 255, 255, 1),
      0 0 30px rgba(255, 255, 255, 1),
      0 0 40px rgba(255, 255, 255, 1) !important;
  }

  .style-hairline-msg::before {
    position: relative !important;
    top: -25px !important;
  }
}

.catch-title {
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: 65px;
  font-weight: 900;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.9),
    0 0 30px rgba(255, 255, 255, 1),
    0 0 40px rgba(255, 255, 255, 1),
    0 0 60px rgba(255, 255, 255, 1);
}

.recruit-message-sec {
  text-align: center;
  padding: 80px 0;
}

.recruit-message__title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 50px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(136, 136, 136, 0.8);
  /* 0 0 20px rgba(229, 239, 255, 0.5), 0 4px 15px rgba(229, 239, 255, 0.5); */
}

.recruit-deco-image {
  position: absolute;
  top: -860px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  mix-blend-mode: overlay;
  z-index: 5;
  pointer-events: none;
}

.recruit-deco-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}

.recruit-message__text {
  margin-top: 80px;
  font-size: 17px;
  line-height: 2.2;
  color: #555;
  margin-bottom: 60px;
}

/* 画像 無限ループスライダー形式 */
.recruit-gallery-slider {
  margin-top: 130px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.recruit-gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 40s linear infinite;
}

.recruit-gallery-track:hover {
  animation-play-state: paused;
}

.recruit-gallery-track img {
  width: 320px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none !important;
  flex-shrink: 0;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.recruit-req-sec {
  margin-top: 70px;
  padding: 80px 0 120px;
}

.req-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 80px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(43, 97, 198, 0.08);
}

.req-header {
  text-align: left;
  margin-bottom: 40px;
}

.req-title {
  margin-bottom: 0;
  text-align: left;
}

.req-dl {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid var(--primary-color);
}

.req-dl dt,
.req-dl dd {
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: 1.8;
}

.req-dl dt {
  width: 25%;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.req-dl dd {
  width: 75%;
  color: #333;
}

.transparent-contact {
  top: 30px;
  background-color: transparent !important;
  padding-top: 0;
}

/* ==================================================
   採用情報
================================================== */
.recruit {
  background: url("../img/recruit.png") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 100px 20px;
  position: relative;
  color: #fff;
}

.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.recruit__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.recruit__text-area h2 {
  font-size: 60px;
  margin-bottom: 70px;
  line-height: 1.5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.recruit__text-area p {
  font-size: 16px;
  line-height: 3;
  margin-bottom: 0;
}

.btn--white-recruit {
  background-color: #fff;
  color: var(--primary-color);
  padding: 12px 12px 12px 60px;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative !important;
  right: 180px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.btn--white-recruit:hover {
  opacity: 0.9;
}

.btn--white-recruit .btn__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.btn--white-recruit .btn__icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.btn--white-recruit:hover .btn__icon svg {
  transform: translate(3px, -3px);
}

@media screen and (max-width: 1260px) and (min-width: 769px) {
  .recruit__content {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    gap: 40px !important;
  }

  .recruit__text-area {
    max-width: 78% !important;
  }

  .recruit__text-area h2 {
    font-size: 38px !important;
    margin-bottom: 35px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
  }

  .btn--white-recruit {
    position: relative !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ==================================================
   お問い合わせ
================================================== */
.contact {
  background-color: var(--bg-light);
  padding: 120px 0;
}

.contact__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact__info {
  background: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 600px;
  max-width: 100%;
}

.contact__info-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.contact__info-row:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
}

.contact__info-row .label {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  width: 70px;
}

.contact__info-row .number {
  margin-left: auto;
  font-size: 34px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact__info-row .number:hover {
  opacity: 0.7;
}

/* ==================================================
   フッター
================================================== */
.footer {
  background-color: #fff;
  padding: 60px 0 20px;
  border-top: 1px solid #eee;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 70px;
  margin-bottom: 30px;
}

.footer__address,
.footer__tel {
  font-size: 16px;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.footer__nav {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}

.nav-column li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.nav-column:nth-child(2) li:nth-child(n + 2) a {
  color: #777;
  font-weight: normal;
  font-size: 16px;
}

.nav-column a {
  transition: color 0.3s ease;
}
.nav-column a:hover {
  color: var(--primary-color);
}

.footer__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: 10px;
}

.footer__action .btn--tel {
  font-size: 22px;
  padding: 16px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(43, 97, 198, 0.2);
  transition:
    transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease !important;
}

.footer__action .btn--tel:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 20px rgba(43, 97, 198, 0.3) !important;
  opacity: 0.85 !important;
}

.footer__action .btn--tel svg {
  width: 24px;
  height: 24px;
}

.btn-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-top svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.btn-top:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-top:hover svg {
  transform: translateY(-4px);
}

.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* ==================================================
   スマホ表示
================================================== */
.menu-checkbox,
.menu-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  /* ==================================================
   共通
================================================== */
  .hero__content h2 {
    font-size: clamp(32px, 10vw, 42px);
    margin-left: 20px;
  }

  .section__title {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    font-size: 32px !important;
  }

  /* ==================================================
     会社案内
    =================================================== */
  .about__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .about::before {
    top: 50% !important;
    font-size: 20vw !important;
    margin-left: -20px;
  }
  .about__text .btn--gradient {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 30px auto 0 !important;
  }

  /* ==================================================
       事業内容
    ================================================== */
  .service__top,
  .service__bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .service__header p br {
    display: none !important;
  }
  .service__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .service__header p {
    text-align: left !important;
    display: inline-block !important;
    margin: 0 auto !important;
  }
  .service__bottom {
    padding: 40px 20px;
    display: flex !important;
  }
  .service__top .btn--gradient,
  .service__bottom .btn--gradient {
    display: flex !important;
    margin: 30px auto 0 !important;
    align-self: center !important;
  }
  .service__cards {
    flex-direction: column !important;
    gap: 35px;
    width: 100%;
  }
  .project-card {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch;
    gap: 0;
    background-color: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .project-card__img {
    width: 100% !important;
    flex: none;
    border-radius: 15px !important;
  }
  .project-card__img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px !important;
  }
  .project-card__label-wrap {
    padding: 8px 15px !important;
    border-bottom-right-radius: 15px !important;
  }
  .project-card__label-wrap::before {
    display: block !important;
  }
  .project-card__label {
    font-size: 16px !important;
  }
  .project-card__title {
    writing-mode: horizontal-tb !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    text-shadow: none !important;
    text-align: left !important;
    width: 100% !important;
    margin: 10px 0 0 8px !important;
    padding: 0 !important;
  }

  /* ==================================================
     採用情報（キャッチコピー～周辺の画像設定、画像ループまで）
    ================================================== */
  .recruit__content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: left !important;
  }
  .recruit__text-area {
    text-align: left !important;
    width: 100% !important;
  }
  .recruit__text-area h2 {
    font-size: 30px !important;
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }
  .recruit__text-area p {
    text-align: left !important;
  }
  .recruit__text-area p br {
    display: none !important;
  }
  .recruit .btn--white-recruit {
    display: flex !important;
    width: fit-content !important;
    max-width: 100% !important;
    position: static !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 40px auto 0 !important;
    align-self: center !important;
  }
  .recruit-page-hero {
    padding-top: 100px;
    align-items: center;
  }
  .recruit-page-hero__content {
    text-align: left;
  }
  .recruit-page-hero__content h1 {
    font-size: 36px;
  }
  .recruit-catch-sec {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 10vh !important;
  }
  .recruit-page-hero {
    position: relative !important;
    z-index: 20 !important;
    background-color: #ffffff !important;
  }
  .catch-images-wrap {
    display: block !important;
    position: relative;
    height: 240vw !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
  }
  .c-img {
    position: absolute !important;
    border-radius: 0 !important;
    width: auto !important;
    opacity: 0;
    transform: translateY(30px);
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }
  .c-img-1 {
    top: 0;
    margin-top: 60px;
    margin-left: -20px;
    left: 5%;
    width: 60% !important;
    height: auto !important;
  }
  .c-img-2 {
    margin-right: 140px;
    top: 195vw;
    right: 5%;
    width: 55% !important;
    height: auto !important;
    z-index: 2;
  }
  .catch-title {
    position: absolute !important;
    top: 70vw !important;
    left: 0;
    width: 100%;
    text-align: center !important;
    font-size: clamp(35px, 6vw, 36px) !important;
    line-height: 1.8 !important;
    z-index: 10;
    margin: 0 !important;
    padding: 0 10px !important;
    white-space: normal !important;
    word-break: keep-all;
    opacity: 0;
    transform: translateY(30px);
  }
  .c-img-3 {
    top: 110vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: calc(50% - 50vw) !important;
    height: auto !important;
    z-index: 1;
    aspect-ratio: 16 / 9 !important;
    object-position: center 35% !important;
  }
  .c-img-4 {
    margin-top: -60px;
    margin-right: -30px;
    top: 175vw !important;
    right: 5%;
    width: 60% !important;
    height: auto !important;
  }
  .c-img-5 {
    top: 40vw !important;
    left: 45%;
    width: 55% !important;
    height: auto !important;
    z-index: 2;
  }
  .recruit-message-sec {
    margin-top: 0 !important;
    padding-top: 40px !important;
    position: relative;
    z-index: auto !important;
  }
  .recruit-message__title {
    font-size: clamp(30px, 6vw, 32px) !important;
    line-height: 1.6 !important;
    width: 100% !important;
    margin: 0 auto 50px !important;
    text-align: center !important;
    color: #fff !important;
    text-shadow:
      0 0 10px rgba(136, 136, 136, 0.8),
      0 0 20px rgba(229, 239, 255, 0.5),
      0 4px 15px rgba(229, 239, 255, 0.5) !important;
    position: relative;
    z-index: 10;
    white-space: normal !important;
    padding: 0 !important;
    top: -50px;
  }
  .recruit-deco-image {
    top: -1350px !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }
  .recruit-deco-image img {
    height: 1000px !important;
    vertical-align: bottom !important;
    clip-path: inset(2px) !important;
  }
  .msg-text-wrap {
    position: relative;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    padding: 0 15px;
  }
  .recruit-message__text {
    position: relative;
    z-index: 2;
    text-align: left !important;
    line-height: 3 !important;
    font-size: 15px !important;
    color: #444 !important;
    margin-top: -30px;
  }
  .recruit-message__text br {
    display: none !important;
  }
  .sp-only {
    display: inline !important;
  }
  .msg-sp-bg-img {
    display: block !important;
    position: absolute;
    z-index: 0;
    opacity: 0.3;
    border-radius: 8px;
    object-fit: cover;
  }
  .msg-bg-1 {
    top: -10%;
    right: -15%;
    width: 80%;
    height: auto;
  }
  .msg-bg-2 {
    top: 50%;
    left: -0%;
    width: 50%;
    height: auto;
  }
  .msg-bg-3 {
    bottom: -10%;
    right: -4%;
    width: 65%;
    height: auto;
  }
  .recruit-gallery-track img {
    width: 260px;
    height: 200px;
  }
  .recruit-req-sec {
    margin-top: 0 !important;
    padding-top: 40px !important;
  }
  .req-box {
    padding: 40px 20px;
  }
  .req-header {
    text-align: center;
  }
  .req-title {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }
  .req-dl dt,
  .req-dl dd {
    width: 100%;
    padding: 15px 10px;
  }
  .req-dl dt {
    border-bottom: none;
    padding-bottom: 5px;
  }
  .req-dl dd {
    padding-top: 0;
  }

  /* ==================================================
      お問い合わせ
     ================================================== */
  .contact {
    padding-top: 10px !important;
  }
  .contact__inner {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  .contact__text {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  .contact .section__title {
    text-align: center !important;
    white-space: nowrap !important;
  }
  .contact .section__inner > p {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact__info {
    width: 100% !important;
    padding: 30px 20px !important;
    margin-top: 10px !important;
  }
  .contact__info-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    padding-bottom: 15px;
  }
  .contact-icon {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0;
  }
  .contact__info-row .label {
    width: auto !important;
    font-size: clamp(14px, 4vw, 18px) !important;
    margin-right: auto !important;
    flex-shrink: 0;
  }
  .contact__info-row .number {
    margin: 0 !important;
    font-size: clamp(16px, 5.5vw, 24px) !important;
    white-space: nowrap !important;
  }
}

/* ==================================================
   レスポンシブ画像5枚位置調整
================================================== */
@media screen and (max-width: 1350px) and (min-width: 769px) {
  .c-img-2 {
    right: 10px !important;
    width: 360px !important;
    height: 260px !important;
  }
  .c-img-3 {
    left: 10px !important;
    width: 420px !important;
    height: 310px !important;
  }
  .c-img-1 {
    width: 240px !important;
    height: 190px !important;
  }
  .c-img-4 {
    right: 10px !important;
    width: 260px !important;
    height: 190px !important;
  }
  .c-img-5 {
    width: 250px !important;
    height: 190px !important;
  }
}

/* ==================================================
   ヘッダーフッター表示
================================================== */
@media screen and (max-width: 1260px) {
  /*  ヘッダー */
  .header {
    backdrop-filter: none;
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    animation: none;
    background-color: transparent !important;
    box-shadow: none !important;
    transition:
      background-color 0.4s ease,
      box-shadow 0.4s ease !important;
  }
  .header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }
  .header.is-scrolled .header__logo a {
    background-image: url("../img/logo.svg") !important;
  }
  .header.is-scrolled .menu-btn span,
  .header.is-scrolled .menu-btn span::before,
  .header.is-scrolled .menu-btn span::after {
    background-color: #333 !important;
  }
  .header__inner {
    padding: 8px 20px;
  }
  .header__logo img {
    display: none !important;
  }
  .header__logo a {
    display: block !important;
    width: 200px;
    height: 60px;
    background: url("../img/logo.svg") no-repeat left center / contain !important;
    filter: brightness(0) invert(1) !important;
    transition: filter 0.3s ease !important;
  }
  .header.scrolled .header__logo a,
  .header.is-scrolled .header__logo a,
  .header.fixed .header__logo a,
  .header--scrolled .header__logo a {
    filter: none !important;
  }

  /* ハンバーガーメニュー内の電話ボタン位置調整 */
  .header__contact {
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin-top: -60px;
  }

  .header__contact .btn--tel {
    display: flex !important;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    padding: 16px !important;
    font-size: 20px !important;
    border-radius: 8px !important;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
  }
  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
    display: block;
    height: 3px;
    width: 32px;
    background-color: #ffffff;
    position: absolute;
    transition: all 0.3s ease;
  }
  .menu-btn span::before {
    content: "";
    bottom: 10px;
  }
  .menu-btn span::after {
    content: "";
    top: 10px;
  }
  .menu-checkbox:checked ~ .menu-btn span {
    background-color: transparent !important;
  }
  .menu-checkbox:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #333 !important;
  }
  .menu-checkbox:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #333 !important;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 0;
    padding: 120px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .menu-checkbox:checked ~ .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
    transform: translateY(0);
  }
  .header__nav .main-menu {
    flex-direction: column;
    gap: 0;
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
  }
  .header__nav .main-menu > li {
    width: 100%;
    border-bottom: 1px solid #d1d1d1;
    padding: 20px 0;
  }
  .header__nav .main-menu > li:last-child {
    border-bottom: none;
  }
  .header__nav .main-menu > li > a {
    font-size: 20px;
    letter-spacing: 2px;
    width: 100%;
    display: block;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: inherit !important;
    pointer-events: inherit !important;
    box-shadow: none;
    background-color: transparent;
    padding: 15px 0 0 15px;
    transform: none;
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
  }
  .dropdown::before,
  .has-dropdown .arrow {
    display: none;
  }
  .dropdown a {
    display: flex !important;
    align-items: center;
    width: 100%;
    text-align: left !important;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    color: #555;
    letter-spacing: 1px;
    position: relative;
  }
  .dropdown a::before {
    content: "-";
    color: #bbb;
    margin-right: 12px;
    font-size: 18px;
  }

  /*  フッター  */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer__logo img {
    margin-bottom: 10px;
  }
  .footer__nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
    width: 100%;
    margin: 15px auto 0;
    padding: 0 10px;
  }
  .footer__nav .nav-column {
    display: flex;
    align-items: center;
  }
  .nav-column li {
    margin-bottom: 0 !important;
    font-weight: bold !important;
    font-size: 14px !important;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 16px;
  }
  .nav-column li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #d1d1d1;
    display: block !important;
  }
  .nav-column:last-child li:last-child::after,
  .nav-column:nth-child(2) li:nth-child(n + 2) {
    display: none !important;
  }
  .footer__action {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-top: 15px !important;
  }
  .footer__action .btn--tel {
    margin: 0 auto !important;
  }
  .btn-top {
    margin: 20px auto 0 !important;
  }
}
