@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;
}

: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;
}

/* ==================================================
   ニュース   
================================================== */
.news {
  background-color: #fff;
}

.news__list {
  margin-top: 40px;
  border-top: 1px solid #eee;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.news__item {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  width: 100%;
}

.news__item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 25px 10px;
  border-bottom: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

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

.news__item a:hover .news__date,
.news__item a:hover .news__title {
  color: #2b61c6 !important;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.news__date {
  font-size: 16px;
  color: #888;
  font-weight: bold;
  letter-spacing: 0.05em;
  width: 110px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.news__category {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 4px;
  min-width: 90px;
  text-align: center;
  margin-left: 0;
}

.news__title {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.news__btn {
  text-align: center;
  margin-top: 50px;
}

/* スマホ表示 お知らせ */
@media screen and (max-width: 768px) {
  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 10px;
  }

  .news__meta {
    gap: 15px;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .news__category {
    margin-left: 0 !important;
  }

  .news__title {
    white-space: normal;
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
  }
}

/* ==================================================
   お知らせ
================================================== */
.news {
  background-color: #fff;
}

.news__list {
  margin-top: 40px;
  border-top: 1px solid #eee;
  width: 100%;
}

.news__item {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  width: 100%;
}

.news__item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 25px 10px;
  border-bottom: 1px solid #eee;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.news__item a:hover .news__date,
.news__item a:hover .news__title {
  color: #2b61c6 !important;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.news__date {
  font-size: 16px;
  color: #888;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.news__category {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 4px;
  min-width: 90px;
  text-align: center;
  margin-left: -30px;
}

.news__title {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.news__btn {
  text-align: center;
  margin-top: 50px;
}

/* ==================================================
   私たちについて
================================================== */
.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;
}

/* project2画像トリミング */
.service__cards .project-card:nth-child(1) .project-card__img img {
  object-position: right center !important;
}

.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 {
  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;
}

/* ==================================================
   採用情報
================================================== */
.recruit-page-main {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f0f6ff 15%,
    #e1edff 50%,
    #f0f6ff 85%,
    #ffffff 100%
  );
  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: 1;
}

.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;
}

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

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

.c-img-3 {
  bottom: -60px;
  left: -15%;
  width: 480px;
  height: 320px;
  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-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: 50px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.5;
  text-shadow: 0px 4px 15px rgba(100, 150, 200, 0.4);
}

.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: 0 5px 20px rgba(0, 0, 0, 0.08);
  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;
}

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

/* --------------------------------------------------
   ヘッダーフッター表示
-------------------------------------------------- */
@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;
  }
}

@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;
  }

  /* ニュース */
  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 10px;
  }

  /* 会社紹介 */
  .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;
    white-space: nowrap !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;
    white-space: nowrap !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: 0 0 0 8px !important;
    padding: 0 !important;
  }

  /* 採用情報 */
  .pc-br {
    display: none !important;
  }
  .sp-br {
    display: inline !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: clamp(22px, 6vw, 26px) !important;
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.05em !important;
  }
  .recruit__btn-area {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 25px !important;
  }
  .btn--white-recruit {
    position: relative !important;
    right: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }
  @supports (-webkit-touch-callout: none) {
    .recruit {
      background-attachment: scroll !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;
  }

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

/* --------------------------------------------------
   PC用の改行設定
-------------------------------------------------- */
@media screen and (min-width: 769px) {
  .sp-br {
    display: none !important;
  }
  .pc-br {
    display: inline !important;
  }
}
