@charset "UTF-8";


/* =========================
   ヘッダー
========================= */
.header {
  position: fixed; 
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
}

.header__inner {
  width: min(100%, var(--header-max));
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 160px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__list a {
  font-size: var(--fz-14);
  font-weight: 700;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s ease;
}

.nav__list a:hover,
.nav__list a:focus-visible {
  color: var(--color-main);
}

.nav__recruit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--color-main);
  border-radius: 999px;
  background: transparent;
  font-size: var(--fz-14);
  font-weight: 700;
  color: var(--color-main);
  transition:none;
}

.nav__list .nav__recruit {
  color: var(--color-main);
}

.nav__list .nav__recruit:hover,
.nav__list .nav__recruit:focus-visible {
  background: var(--color-main);
  color: #fff;
}

   /* ドロップダウン */
.nav__item {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.nav__dropdown ul {
  display: flex;
  flex-direction: column;
}

.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: var(--fz-14);
  color: var(--color-text);
  transition: background 0.2s ease;
}

.nav__dropdown li a:hover {
  background: #f5f5f5;
}

.nav__item--has-child:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =========================
   ハンバーガーメニュー
========================= */
.hamburger {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: #111;
  display: block;
}

@media screen and (max-width: 1024px) {
  .nav__list {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .header__inner {
    height: 64px;
  }

  .logo img {
    width: 130px;
  }
}

.sp-menu {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 0 20px;

  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sp-menu__inner {
  width: min(100%, var(--header-max));
  margin: 0 auto;
  background: var(--color-main);
  border-radius: 5px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
  padding: 0 0 40px;
}

.sp-menu__head {
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sp-menu__logo img {
  width: 130px;
}

.sp-menu__close {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  padding: 0;
}

.sp-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.sp-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sp-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-menu__nav,
.sp-menu__cta {
  padding: 0 24px;
}

.sp-menu__list {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.sp-menu__list {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.sp-menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.sp-menu__link,
.sp-menu__toggle {
  width: 100%;
  min-height: 72px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  text-align: left;
}

.sp-menu__link span:first-child,
.sp-menu__toggle span:first-child {
  font-size: var(--fz-20);
  font-weight: 700;
  line-height: 1.2;
}

.sp-menu__circle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sp-menu__circle svg {
  width: 16px;
  height: auto;
}

/* plus / minus */
.sp-menu__circle--toggle {
  position: relative;
}

.sp-menu__circle--toggle::before,
.sp-menu__circle--toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  background: var(--color-main);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.sp-menu__circle--toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.25s ease;
}

.sp-menu__item--has-child.is-open .sp-menu__circle--toggle::after {
  opacity: 0;
}

.sp-menu__submenu-wrap {
  display: none;
  background: rgba(255, 255, 255, 0.25);

  margin-left: -24px;
  margin-right: -24px;

  padding-left: 24px;
  padding-right: 24px;
}

.sp-menu__item--has-child.is-open .sp-menu__submenu-wrap {
  display: block;
}

.sp-menu__submenu {
  padding: 8px 0;
}

.sp-menu__submenu li + li {
  margin-top: 6px;
}

.sp-menu__submenu a {
  min-height: 54px;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.sp-menu__submenu a::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.5 16.08'%3E%3Cpath d='M1.05 8.04H17.25M10.95 1.54L17.44 8.04L10.95 14.53' fill='none' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.sp-menu__cta {
  margin-top: 28px;
}

.sp-menu__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 22px 19px;
  border-radius: 18px;
  background: #fff;
  color: var(--color-text);
}

.sp-menu__contact-en {
  margin: 0;
  color: var(--color-main);
  font-size: var(--fz-20);
  font-weight: 700;
  line-height: 1.1;
}

.sp-menu__contact-ja {
  margin: 4px 0 0;
  font-size: var(--fz-18);
  font-weight: 700;
  line-height: 1.4;
}

.sp-menu__contact-note {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.sp-menu__contact-arrow {
  color: var(--color-main);
  flex-shrink: 0;
}

.sp-menu__contact-arrow svg {
  width: 24px;
  height: auto;
}


@media screen and (min-width: 1025px) {
  .sp-menu {
    display: none;
  }
}


/* =========================
   hero
========================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #ccc;
}

.hero__slider,
.hero__slide,
.hero__slide img {
  width: 100%;
  height: 100%;
}

.hero__slide img {
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero__bottom {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(100% - 40px, var(--header-max));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.hero-news {
  pointer-events: auto;
  width: min(100%, 620px);
  min-height: 52px;
  padding: 0 20px 0 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 5px;
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  column-gap: 20px;
  color: var(--color-text);
  text-decoration: none;
}

.hero-news__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  padding-left: 20px;
  color: var(--color-main);
  font-size: var(--fz-news-label, 1.125rem);
  line-height: 1;
}

.hero-news__divider {
  width: 1px;
  height: 24px;
  background: #cfcfcf;
}

.hero-news__date {
  font-size: var(--fz-news-date, 0.875rem);
  white-space: nowrap;
}

.hero-news__title {
  font-size: var(--fz-news-title, 0.875rem);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-news__arrow {
  color: var(--color-main);
}

.hero-progress {
  display: flex;
  gap: 4px;
}

.hero-progress__item {
  position: relative;
  width: 48px;
  height: 2px;
  background: #cfcfcf;
  overflow: hidden;
}

.hero-progress__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-progress__item.is-active::after {
  animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}


/* =========================
   トップ：私たちにできること
========================= */
.home-service {
  padding: 120px 0 110px;
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: none;
}

.service-card__image {
  aspect-ratio: 280 / 86;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 30px;
  flex: 1;
}

.service-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-card__title {
  margin: 0;
  font-size: var(--fz-20);
  font-weight: 700;
  line-height: 1.5;
}

.service-card__text {
  margin: 0;
  font-size: var(--fz-16);
  line-height: 1.8;
}

.service-card__arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover .service-card__arrow {
  background: #fff;
  color: var(--color-main);
}

.service-card__arrow svg {
  width: 16px;
  transition: transform 0.3s ease;
}


@media screen and (max-width: 1024px) {
  .section-heading__ja {
    font-size: var(--fz-36);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card__body {
    padding: 25px 30px;
  }
}

@media screen and (max-width: 767px) {
  .home-service {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading__en {
    font-size: var(--fz-16);
  }

  .section-heading__ja {
    margin-top: 12px;
    font-size: var(--fz-26);
  }

  .section-heading__text {
    margin-top: 16px;
    font-size: var(--fz-14);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card__title {
    font-size: var(--fz-20);
  }

  .service-card__text {
    font-size: var(--fz-14);
  }
}

/* =========================
   トップ：映像表現の可能性は無限大
========================= */
.home-visual .container {
  width: 100%;
  max-width: none;
  padding: 0 0 0 0;
}

.visual-block {
  width: min(100% - 160px, 1000px);
  margin: 0 auto;
}

.visual-block__en {
  position: relative;
  z-index: 2;
  margin: 0 0 -16px 0;
  color: #97c3d8;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.visual-block__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 90px 40px 76px;
  overflow: visible;
  z-index: 1;
}

.visual-block__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: -160px;
  background: #f7f7f7;
  border-radius: 0 999px 999px 0;
  z-index: -1;
}

.visual-block__image,
.visual-block__content {
  position: relative;
  z-index: 1;
}

.visual-block__image {
  margin-left: -36px;
}

.visual-block__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.visual-block__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.visual-block__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
}

.visual-block__text {
  margin: 15px 0 20px;
  font-size: var(--fz-16);
  line-height: 1.9;
}

.visual-block__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 1024px) {
  .visual-block__en {
    margin: 0 0 -12px 20px;
  }

  .visual-block__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 40px 56px;
    border-radius: 0 80px 80px 0;
  }

  .visual-block__title {
    font-size: var(--fz-36);
  }
}

@media screen and (max-width: 767px) {
  .home-visual {
    padding: 20px 0 80px;
    overflow: hidden;
  }

  .home-visual .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .visual-block {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .visual-block__en {
    margin: 0 0 12px;
    font-size: 2rem;
    line-height: 1.15;
  }

  .visual-block__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px 32px;
  }

  .visual-block__inner::before {
    left: calc(50% - 50vw);
    right: -24px;
    border-radius: 0 999px 999px 0;
  }

  .visual-block__image {
    margin-left: 0;
  }

  .visual-block__content {
    max-width: none;
  }

  .visual-block__title {
    font-size: var(--fz-26);
  }

  .visual-block__text {
    margin: 16px 0 0;
    font-size: var(--fz-14);
    line-height: 1.8;
  }

  .visual-block__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   トップ：実績
========================= */
.home-works {
  padding: 120px 0 110px;
  background: #fff;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.works-card {
  display: block;
  color: var(--color-text);
}

.works-card__image {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 320 / 175;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.4s ease; */
  transition: none;
}

.works-card:hover .works-card__image img,
.works-card:focus-visible .works-card__image img {
  /* transform: scale(1.04); */
  transform: none;
}

.works-card__body {
  padding-top: 14px;
}

.works-card__meta {
  margin: 0;
  font-size: var(--fz-16);
  line-height: 1.5;
}

.works-card__title {
  margin: 10px 0 0;
  font-size: var(--fz-16);
  font-weight: 700;
  line-height: 1.6;
}

.works-card__text {
  margin: 10px 0 0;
  font-size: var(--fz-16);
  line-height: 1.8;
}

.works-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.works-card__tags li {
  padding: 6px 12px;
  border-radius: 4px;
  background: #e8edf1;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}

.works-more {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

@media screen and (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}

@media screen and (max-width: 767px) {
  .home-works {
    padding: 80px 0;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .works-card__meta,
  .works-card__text {
    font-size: var(--fz-14);
  }

  .works-card__title {
    font-size: var(--fz-20);
  }

  .works-more {
    margin-top: 32px;
  }
}

/* =========================
   トップ：お知らせ
========================= */
.home-news {
  padding: 120px 0 110px;
  background: #fff;
}

.news-list {
  border-top: 1px solid transparent;
}

.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px 18px 0;
  border-bottom: 1px solid #cfcfcf;
  color: var(--color-text);
}

.news-item__body {
  min-width: 0;
}

.news-item__date {
  display: block;
  margin: 0;
  color: #b7b7b7;
  font-size: var(--fz-13);
  line-height: 1.5;
}

.news-item__title {
  margin: 4px 0 0;
  font-size: var(--fz-16);
  font-weight: 700;
  line-height: 1.6;
}

.news-item__arrow {
  flex-shrink: 0;
  color: var(--color-main);
}

.news-item__arrow svg {
  width: 18px;
  height: auto;
}

.news-more {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* =========================
   トップ：Instagram
========================= */
.home-instagram {
  padding: 120px 0 110px;
  background: #fff;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.instagram-feed > * {
  width: 100%;
  min-width: 0;
}

.instagram-feed a {
  display: block;
  width: 100%;
}

.instagram-feed img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.instagram-feed ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.instagram-feed li {
  list-style: none;
}

.instagram-banner {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.instagram-banner__link {
  display: inline-block;
}

.instagram-banner__link img {
  width: min(100%, 550px);
  height: auto;
  display: block;
}

@media screen and (max-width: 1024px) {
  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .home-instagram {
    padding: 80px 0;
  }

  .instagram-feed {
    gap: 10px;
  }

  .instagram-banner {
    margin-top: 40px;
  }

  .instagram-banner__link img {
    width: 100%;
  }
}

/* =========================
   footer
========================= */
/*    問い合わせ・採用：青　　 */

.footer-cta {
  background: var(--color-main);
  padding: 100px 0;
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.footer-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px 48px;
  background: #fff;
  border-radius: 20px;
  color: var(--color-text);
}

.footer-cta__content {
  max-width: 360px;
}

.footer-cta__en {
  margin: 0;
  color: var(--color-main);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.footer-cta__ja {
  margin: 8px 0 0;
  font-size: var(--fz-20);
  font-weight: 700;
}

.footer-cta__text {
  margin: 14px 0 0;
  font-size: var(--fz-14);
  line-height: 1.8;
}

.footer-cta__arrow {
  flex-shrink: 0;
  color: var(--color-main);
}

/*   メイン：footer */
.footer-main {
  padding: 50px 0 60px;
  background: #fff;
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 70px;
  align-items: start;
}

.footer-company__logo img {
  width: 240px;
}

.footer-company__name {
  margin: 28px 0 0;
  font-size: var(--fz-20);
  font-weight: 500;
  line-height: 1.5;
}

.footer-company__text {
  margin: 14px 0 0;
  font-size: var(--fz-16);
  font-weight: 500;
  line-height: 1.7;
}

.footer-company__sns {
  margin-top: 28px;
}

.footer-company__sns img {
  width: 32px;
  height: 32px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid #cfcfcf;
  font-size: var(--fz-18);
  font-weight: 700;
  color: var(--color-text);
}

.footer-nav__link .arrow-motion__icon,
.footer-cta__arrow {
  color: var(--color-main);
}

.footer-nav__link:hover .arrow-motion__icon,
.footer-cta__card:hover .footer-cta__arrow {
  color: var(--color-main);
}

.footer-nav__col > .footer-nav__link + .footer-nav__link {
  margin-top: 34px;
}

.footer-nav__sublist {
  margin-top: 12px;
}

.footer-nav__sublist li + li {
  margin-top: 10px;
}

.footer-nav__sublist a {
  position: relative;
  display: inline-block;
  padding-left: 22px;
  font-size: var(--fz-16);
  line-height: 1.7;
}

.footer-nav__sublist a::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main);
}

.footer-related {
  padding: 48px 0 50px;
  background: #e8f0f5;
  text-align: center;
}

.footer-related__title {
  margin: 0 0 22px;
  font-size: var(--fz-16);
  font-weight: 500;
}

.footer-related__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-related__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 62px;
  background: #fff;
  border: 1px solid #9c9c9c;
}

.footer-related__logo img {
  width: 200px;
  height: 100%;
  object-fit: contain;
}

.footer-copy {
  padding: 20px 0;
  background: var(--color-main);
}

.footer-copy__text {
  margin: 0;
  text-align: center;
  font-size: var(--fz-14);
  color: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media screen and (max-width: 767px) {
  .footer-cta {
    padding: 60px 0;
  }

  .footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-cta__card {
    padding: 30px;
    border-radius: 16px;
  }

  .footer-cta__en {
    font-size: 1.5rem;
  }

  .footer-main {
    padding: 36px 0 44px;
  }

  .footer-company__logo img {
    width: 180px;
  }

  .footer-company__name {
    margin-top: 20px;
    font-size: var(--fz-20);
  }

  .footer-company__text {
    font-size: var(--fz-14);
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav__link {
    font-size: var(--fz-20);
  }

  .footer-nav__sublist a {
    font-size: var(--fz-16);
  }

  .footer-related {
    padding: 36px 0 40px;
  }

  .footer-related__title {
    font-size: var(--fz-20);
  }

  .footer-related__logos {
    gap: 12px;
  }

  .footer-related__logo {
    min-width: calc(50% - 6px);
    min-height: 56px;
  }

  .footer-copy__text {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    width: 28px;
    height: 2px;
    background: #111;
    display: block;
  }

  .hero {
    min-height: 600px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-progress {
    width: 120px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .site-header__inner {
    height: 60px;
    padding: 0 16px;
  }

  .site-logo img {
    width: 120px;
  }

  .hero {
    height: 80vh;
    min-height: 520px;
  }

  .section {
    padding: 70px 0;
  }
}


/* =========================
   実績
========================= */
.works-section {
  padding: 140px 0 0;
  background: #fff;
}

.works-section--sub {
  padding: 160px 0 140px;
}

.works-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.works-section__title-wrap {
  flex: 1;
  min-width: 0;
}

.accentbar__title {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.accentbar__title::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 4px;
  height: 1.1em;
  background: var(--color-main);
}

.works-section__lead {
  margin: 14px 0 0;
  font-size: var(--fz-14);
  font-weight: 500;
  line-height: 1.8;
}

.works-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 18px;
}

.works-card {
  display: block;
  color: var(--color-text);
}

.works-card__image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 320 / 175;
  background: #f1f1f1;
}

.works-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* transition: transform 0.35s ease; */
}

/* .works-card:hover .works-card__image img,
.works-card:focus-visible .works-card__image img {
  transform: scale(1.04);
} */

.works-card__body {
  padding-top: 10px;
}

.works-card__meta {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.works-card__title {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.works-card__text {
  margin: 6px 0 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

.works-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.works-card__tags li {
  padding: 4px 8px;
  border-radius: 4px;
  background: #e8edf1;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .works-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-archive {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

@media screen and (max-width: 767px) {
  .page-works {
    padding-top: 72px;
  }

  .page-kv {
    height: 220px;
  }

  .page-kv__en {
    margin-bottom: 6px;
    font-size: var(--fz-16);
  }

  .page-kv__ja {
    font-size: var(--fz-36);
  }

  .breadcrumb-wrap {
    padding-top: 12px;
  }

  .breadcrumb {
    justify-content: flex-start;
  }

  .page-tab-wrap {
    padding-top: 24px;
  }

  .page-tab {
    gap: 12px;
  }

  .page-tab__item {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    font-size: 0.8125rem;
  }

  .works-section {
    padding-top: 56px;
  }

  .works-section--sub {
    padding: 70px 0 100px;
  }

  .works-section__title {
    padding-left: 12px;
    font-size: var(--fz-36);
  }

  .works-section__lead {
    margin-top: 10px;
    font-size: 0.8125rem;
  }

  .works-section__note {
    font-size: 0.875rem;
  }

  .works-archive {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .works-card__title {
    font-size: 0.9375rem;
  }

  .works-card__text {
    font-size: 0.8125rem;
  }

  .works-placeholder {
    padding-top: 36px;
  }

  .works-placeholder__text {
    font-size: var(--fz-36);
  }
}

/* =========================
   会社情報
========================= */
.company-section {
  padding: 90px 0 0;
  background: #fff;
}

.company-section--overview {
  padding: 120px 0 140px;
}

.company-section__head {
  margin-bottom: 36px;
}

.company-section__title {
  position: relative;
  margin: 0;
  padding-left: 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.company-section__title::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 4px;
  height: 1.1em;
  background: var(--color-main);
}

   /* 社長挨拶 */
.company-greeting {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 46px;
  align-items: start;
}

.company-greeting__image {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  background: #cfcfcf;
}

.company-greeting__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-greeting__content p {
  margin: 0 0 22px;
  font-size: var(--fz-16);
  line-height: 1.95;
}

.company-greeting__sign {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}

.company-greeting__sign span {
  font-size: var(--fz-16);
  font-weight: 500;
}

.company-greeting__name img {
  display: block;
  height: 28px;
  width: auto;
}

   /* 会社概要 */
.company-table {
  border-top: 1px solid #d7d7d7;
}

.company-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin: 0;
  border-bottom: 1px solid #d7d7d7;
}

.company-table__row dt,
.company-table__row dd {
  margin: 0;
  padding: 18px 40px;
  font-size: var(--fz-16);
  line-height: 1.9;
}

.company-table__row dt {
  font-weight: 700;
  color: #444;
}

.company-table__row dd {
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .page-company {
    padding-top: 72px;
  }

  .company-section {
    padding-top: 56px;
  }

  .company-section--overview {
    padding: 80px 0 100px;
  }

  .company-section__title {
    padding-left: 12px;
    font-size: var(--fz-36);
  }

  .company-greeting {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-greeting__image {
    max-width: 280px;
    aspect-ratio: 1 / 1.15;
    margin: 0 auto;
  }

  .company-greeting__content p {
    margin-bottom: 18px;
    font-size: var(--fz-14);
    line-height: 1.85;
  }

  .company-greeting__sign {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .company-greeting__sign span {
    font-size: var(--fz-14);
  }

  .company-greeting__sign strong {
    font-size: var(--fz-18);
  }

  .company-table__row {
    grid-template-columns: 1fr;
  }

  .company-table__row dt,
  .company-table__row dd {
    padding: 14px 0;
    font-size: var(--fz-14);
    line-height: 1.8;
  }

  .company-table__row dt {
    padding-bottom: 0;
  }

  .company-table__row dd {
    padding-top: 8px;
  }

  .company-greeting__name img {
    height: 24px;
  }
}

/* =========================
   お知らせ詳細
========================= */
.page-news-detail {
  padding-top: 92px;
}

.news-detail {
  background: #fff;
}

.news-article {
  max-width: 800px;
  margin: 0 auto;
}

.news-article__head {
  padding-bottom: 24px;
  border-bottom: 1px solid #d7d7d7;
}

.news-article__date {
  display: block;
  color: #9b9b9b;
  font-size: var(--fz-14);
  line-height: 1.6;
}

.news-article__title {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.news-article__body {
  padding-top: 32px;
}

.news-article__body p {
  margin: 0 0 24px;
  font-size: var(--fz-16);
  line-height: 2;
}

.news-detail__footer {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .page-news-detail {
    padding-top: 72px;
  }

  .news-article__title {
    font-size: var(--fz-26);
  }

  .news-article__body {
    padding-top: 24px;
  }

  .news-article__body p {
    margin-bottom: 18px;
    font-size: var(--fz-14);
    line-height: 1.9;
  }

  .news-detail__footer {
    margin-top: 40px;
  }
}

/* =========================
   フォーム
========================= */
.contact-form-section {
  padding: 12px 0 140px;
  background: #fff;
}

.contact-form-section__lead {
  margin: 0 0 48px;
  font-size: var(--fz-16);
  line-height: 1.8;
  color: var(--color-text);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form__group + .contact-form__group {
  margin-top: 18px;
}

.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--fz-16);
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
}

.required {
  color: #ce2121;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  background: #fff;
  font: inherit;
  color: var(--color-text);
  appearance: none;
}

.contact-form input,
.contact-form select {
  height: 44px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3b3;
}

.contact-form select {
  color: #9f9f9f;
  cursor: pointer;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #4a4a4a;
  transform: translateY(-40%);
  pointer-events: none;
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.contact-form__submit .btn {
  min-width: 230px;
  justify-content: center;
  padding: 0 28px;
  gap: 0;
}

.contact-form-note {
  margin-top: 72px;
}

.contact-form-note p {
  margin: 0;
  font-size: var(--fz-16);
  line-height: 1.9;
  color: var(--color-text);
}

@media screen and (max-width: 767px) {
  .contact-form-section {
    padding: 12px 0 100px;
  }

  .contact-form-section__lead {
    margin-bottom: 32px;
    font-size: var(--fz-14);
    line-height: 1.8;
  }

  .contact-form {
    max-width: none;
  }

  .contact-form__label {
    font-size: var(--fz-14);
  }

  .contact-form input,
  .contact-form select {
    height: 42px;
    padding: 0 12px;
  }

  .contact-form textarea {
    min-height: 120px;
    padding: 10px 12px;
  }

.contact-form__submit {
    margin-top: 44px;
  }

  .contact-form__submit .btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0 20px;
    gap: 0;
  }

  .contact-form-note {
    margin-top: 48px;
  }

  .contact-form-note p {
    font-size: var(--fz-14);
    line-height: 1.8;
  }
}

/* =========================
   404・送信完了　共通
========================= */
/* =========================
   Error / Thanks
========================= */
.page-error,
.page-thanks {
  padding: 140px 0 160px;
  background: #fff;
  text-align: center;
}

.page-error__code {
  margin: 0;
  color: var(--color-main);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.page-error__title,
.page-thanks__title {
  margin: 20px 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}

.page-error__text,
.page-thanks__text {
  margin: 24px 0 0;
  font-size: var(--fz-16);
  line-height: 1.9;
  color: var(--color-text);
}

.page-error__button,
.page-thanks__button {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.page-error__button .btn,
.page-thanks__button .btn {
  min-width: 240px;
  justify-content: center;
  padding: 0 28px;
  gap: 0;
}

@media screen and (max-width: 767px) {
  .page-error,
  .page-thanks {
    padding: 90px 0 100px;
  }

  .page-error__title,
  .page-thanks__title {
    margin-top: 16px;
    font-size: var(--fz-26);
  }

  .page-error__text,
  .page-thanks__text {
    margin-top: 18px;
    font-size: var(--fz-14);
    line-height: 1.8;
  }

  .page-error__button,
  .page-thanks__button {
    margin-top: 36px;
  }

  .page-error__button .btn,
  .page-thanks__button .btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 0 20px;
  }
}