@charset "UTF-8";

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
/* variables */
:root {
  --color-primary: #1E1E1E;
  --white: #fff;
  --black: #000;
  --red: #F24822;
  --gray: #727272;
}

:root {
  --font-primary: "noto sans jp", "serif";
  --font-inter: "inter", "serif";
  --font-zen-antique-soft: "zen antique soft", "serif";
}

html {
  overflow-x: clip;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  overflow-x: clip;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  font-family: var(--font-secondary);
  font-size: clamp(12px, 2.5vw, 16px);
}


/* ========================================
    コンテナ幅
    ======================================== */

.container-sm {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}

.container-md {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1080px + 32px);
}

.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(1200px + 32px);
}

.container-xl {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  max-width: calc(85vw + 32px);
}

@media screen and (max-width: 768px) {
  .container-xl {
    max-width: calc(90vw + 32px);
  }
}

@media screen and (max-width: 600px) {
  .container-xl {
    max-width: 100%;
  }
}


/* ========================================
    共通
    ======================================== */
.u-pc-only {
  display: block;
}

@media screen and (max-width: 1080px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 1080px) {
  .u-sp-only {
    display: block;
  }
}

.u-overflow-hidden {
  overflow: hidden;
}

.m-section-ttl {
  font-size: 40px;
  font-weight: 800;
  /* Extra Bold */
  line-height: 1.5;
  padding-bottom: 32px;
  position: relative;
  text-align: left;
}

.m-section-ttl::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: #9B9B9B;
  margin-bottom: 32px;
}

.m-section-ttl--center::before {
  margin-left: auto;
  margin-right: auto;
}

.m-section-ttl--no-border::before {
  display: none;
}



.m-section-ttl--center {
  text-align: center;
}

@media (max-width: 1080px) {
  .m-section-ttl {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .m-section-ttl {
    font-size: 24px;
    padding-bottom: 24px;
  }

  .m-section-ttl::before {
    height: 40px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 400px) {
  .m-section-ttl {
    font-size: 22px;
    padding-bottom: 24px;
  }

}



.m-section-ttl--black {
  color: var(--color-primary);
}

.m-section-ttl--black::after {
  background: #D9D9D9;
}

.m-section-ttl--center::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  color: var(--white);
  width: 160px;
  height: 44px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  gap: 8px;
}

@media screen and (max-width: 600px) {
  .m-btn {
    font-size: 16px;
  }
}

.m-btn:hover {
  opacity: 0.7;
}

.m-tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--color-primary);
  border-radius: 60px;
  background: var(--white);
  color: var(--color-primary);
  font-family: var(--font-inter);
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 600px) {
  .m-tel-link {
    padding: 10px 32px;
    font-size: 18px;
  }
}

.m-tel-link:hover {
  opacity: 0.7;
}

/* フィルター (m-filter) */
.m-filter {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 100;
}

.m-filter__list {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-primary);
  border-radius: 9999px;
  background: var(--white);
  padding: 10px 48px;
  list-style: none;
  margin: 0;
}

@media (max-width: 600px) {
  .m-filter__list {
    padding: 8px 24px;
  }
}

.m-filter__item a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #B2B2B2;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 600px) {
  .m-filter__item a {
    font-size: 18px;
  }
}

.m-filter__item a.is-active {
  color: var(--color-primary);
}

.m-filter__item a:hover {
  opacity: 0.7;
}

.m-filter__separator {
  margin: 0 20px;
  font-size: 24px;
  color: #B2B2B2;
  font-weight: 300;
}

@media (max-width: 600px) {
  .m-filter__separator {
    margin: 0 10px;
    font-size: 18px;
  }
}

/* ========================================
    下層共通メインビジュアル (m-page-mainV)
    ======================================== */
.m-page-mainV {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 25vh;
  min-height: 160px;
  color: var(--white);
}



.m-page-mainV__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.m-page-mainV__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-page-mainV__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m-page-mainV__breadcrumbs {
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (max-width: 1080px) {
  .m-page-mainV__breadcrumbs {
    top: 24px;
    left: 16px;
  }
}

.m-page-mainV__breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.m-page-mainV__content {
  padding: 0 112px;
}

@media (max-width: 1080px) {
  .m-page-mainV__content {
    padding: 0 16px;
  }
}

.m-page-mainV__title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .m-page-mainV__title {
    font-size: 28px;
  }
}

/* ========================================
    トップ：施工実例 (top-projects)
    ======================================== */
.top-projects {
  padding: 120px 0;
  background: #f5f5f5;
  overflow: hidden;
}

.top-projects__inner {
  width: 100%;
}

.top-projects__btn-wrap .m-btn {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .top-projects__btn-wrap .m-btn {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .top-projects {
    padding: 80px 0;
    padding-bottom: 0;
  }
}

.top-projects__list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .top-projects__list {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .top-projects__list {
    margin-top: 32px;
  }
}

.project-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-areas:
    "info swiper"
    "nav swiper";
  gap: 0 40px;
  padding: 64px 0;
  padding-left: 7%;
  border-bottom: 1px solid #727272;
}

.project-item:first-child {
  border-top: 1px solid #727272;
}

@media (max-width: 1080px) {
  .project-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0 40px 16px;
  }
}

.project-item__info {
  grid-area: info;
  position: relative;
  z-index: 10;
}

@media (max-width: 1080px) {
  .project-item__info {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .project-item__info {
    padding-right: 16px;
  }
}

.project-item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.project-item__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--color-primary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.project-item__meta {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.5;
}

.project-item__nav {
  grid-area: nav;
}

.project-nav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .project-nav {
    display: flex;
    margin-top: 0;
  }
}

.project-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex;
}

.project-nav__btn:hover {
  opacity: 0.7;
}

.project-nav__btn.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.project-nav__btn img {
  width: 67px;
  height: auto;
}

.project-item__swiper-wrap {
  grid-area: swiper;
  min-width: 0;
  overflow: hidden;
  /* flex/grid container内でSwiperが壊れるのを防ぐ */
}

.project-swiper {
  width: 100%;
  overflow: visible;
  /* 次のスライドが見えるように */
}

.project-swiper .swiper-slide {
  width: auto;
}

.project-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
}

.project-swiper__link {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
}

.project-swiper__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.project-swiper__link:hover .project-swiper__overlay {
  opacity: 1;
}

.project-swiper__text {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .project-swiper__text {
    font-size: 14px;
  }
}





/* ========================================
    トップ：施工対応エリア (top-area)
    ======================================== */
.top-area {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background-color: transparent;
  margin-top: 15vh;
}

@media (max-width: 1000px) {
  .top-area {
    margin-top: 20vh;
  }
}

@media (max-width: 768px) {
  .top-area {
    padding: 80px 0;
    margin-top: 15vh;
  }
}

.top-area__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-area__bg img,
.top-area__bg picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-area__bg img {
  object-fit: cover;
  opacity: 0.3;
}

.top-area__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.95);
  /* #313131 95% */
  z-index: 2;
}

.top-area__inner {
  position: relative;
  z-index: 3;
}

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

@media (max-width: 768px) {
  .top-area__map {
    margin-top: 40px;
  }
}

.top-area__map img {
  max-width: 100%;
  height: auto;
}

.top-area__content {
  margin-top: 64px;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 600px) {
  .top-area__content {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.8;
  }
}

.top-area__list p {
  margin-bottom: 0.5em;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 600px) {
  .top-area__list p {
    font-size: 12px;
  }
}

.top-area__note {
  margin-top: 32px;
}

.top-area__note p {
  font-size: 16px;
}

@media (max-width: 600px) {
  .top-area__note p {
    font-size: 12px;
  }
}


/* ========================================
    バナー (m-banners)
    ======================================== */
.m-banners-wrap {
  position: relative;
}

.m-banners-wrap--top {
  margin: 10vh 0;
}

.m-banners {
  position: relative;
  padding: 60px 0;
  padding-top: 0;
  overflow: hidden;
  color: var(--white);
  background-color: transparent;
}

@media (max-width: 768px) {
  .m-banners {
    padding: 40px 0;
  }
}

.m-banners-wrap--black .m-banners__header {
  color: #000;
}




.m-banners__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.m-banners__bg img,
.m-banners__bg picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-banners__bg img {
  object-fit: cover;
  opacity: 0.3;
}

.m-banners__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.95);
  /* #313131 95% */
  z-index: 2;
}

.m-banners__inner {
  position: relative;
  z-index: 3;
}

.m-banners__inner.container {
  padding: 0 !important;
}

.m-grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .m-grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .m-grid-4-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

@media (max-width: 768px) {
  .m-grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .m-grid-3-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

.m-grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .m-grid-2-col {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  background: var(--white);
  padding: 12px 5%;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 600px) {
  .header {
    position: sticky;
    top: 0;
    transform: translateY(0);
    transition: transform 0.3s;
    width: 100%;
    left: 0;
    padding: 12px 16px;
  }

  .home .header {
    position: fixed;
    transform: translateY(-100%);
  }

  .header.is-show {
    transform: translateY(0);
  }

  .header.is-menu-open {
    position: fixed;
    transform: translateY(0);
  }
}

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

.header__logo {
  width: 135px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__nav {
  margin-left: auto;
  margin-right: 40px;
}

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

.header__nav a {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.header__info {
  display: flex;
  align-items: center;
}

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

.header__sns {
  margin-left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__sns a {
  display: block;
  transition: 0.3s;
}

.header__sns a:hover {
  opacity: 0.7;
}

.header__sns img {
  width: 24px;
  height: auto;
}

.header__btn {
  display: inline-block;
  background: #333;
  color: var(--white);
  padding: 8.5px 12px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.header__btn:hover {
  opacity: 0.7;
}

.header__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  left: 10px;
  transition: 0.3s;
}

.header__hamburger span:nth-child(1) {
  top: 15px;
}

.header__hamburger span:nth-child(2) {
  top: 21px;
}

.header__hamburger span:nth-child(3) {
  top: 27px;
}

.header__hamburger.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1080px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 90;
    margin: 0;
    padding: 100px 24px;
    transition: all 0.3s;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
  }

  .header__nav.is-active {
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: visible;
    opacity: 1;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  @media screen and (max-width: 600px) {
    .header__nav ul {
      gap: 20px;
    }
  }

  @media screen and (max-width: 600px) {
    .header__nav {
      padding-top: 120px;
      padding-bottom: 140px;
    }
  }

  .header__nav a {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 0;
    display: block;
  }

  .header__nav-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .header__nav-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
  }

  .header__nav-sns a {
    display: block;
    text-align: center;
  }

  .header__nav-sns img {
    width: 24px;
    height: auto;
  }

  .header__nav .header__btn {
    color: var(--white);
    width: fit-content;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
  }

  .header__hamburger {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .header__sns {
    margin-left: 16px;
  }

  .header__sns img {
    width: 20px;
  }
}

/* ========================================
    フッター
    ======================================== */
.footer {
  position: relative;
  z-index: 10;
  background-color: #313131;
  color: var(--white);
  font-family: var(--font-primary);
}

.footer__main {
  padding: 80px 0 0;
}

@media (max-width: 768px) {
  .footer__main {
    padding: 40px 0 0;
  }
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 1080px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}

.footer__info {
  flex: 1;
}

.footer__company-name {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .footer__company-name {
    margin-bottom: 32px;
  }
}

.footer__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

@media (max-width: 600px) {
  .footer__detail {
    gap: 16px;
  }
}

.footer__label {
  display: inline-block;
  width: 88px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.footer__value {
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .footer__value {
    font-size: 14px;
  }
}

.footer__map {
  width: 450px;
  aspect-ratio: 1/ .65;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .footer__map {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer__middle {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 0;
}

.footer__middle-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

@media (max-width: 1080px) {
  .footer__middle-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px;
}

@media (max-width: 768px) {
  .footer__nav ul {
    gap: 16px 24px;
  }
}

.footer__nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__sns a {
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer__sns a:hover {
  opacity: 0.7;
}

.footer__sns img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer__bottom {
  background-color: #1E1E1E;
  padding: 16px 0;
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.8;
}

/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main {
  position: relative;
  z-index: 10;
}

.main-fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.main-fixed-bg img,
.main-fixed-bg picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-fixed-bg img {
  object-fit: cover;
  opacity: 0.3;
}

.mainV__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
}

.mainV__bg img,
.mainV__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainV__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.1);
  /* #313131 10% */
  z-index: -1;
}

/* FVをヘッダーより上に持ってくるための設定 */
body.home,
body.page-template-page-our-strengths {
  display: flex;
  flex-direction: column;
}

body.home .mainV,
body.page-template-page-our-strengths .strengths-fv {
  order: -1;
}

.mainV__logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: clamp(150px, 12vw, 187px);
  z-index: 3;
}

@media screen and (max-width: 600px) {
  .mainV__logo {
    top: 20px;
    left: 20px;
  }
}

.mainV__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mainV__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(160px, 16.6vw, 280px);
  z-index: 3;
}

.mainV__copy img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */
/* ========================================
    投稿一覧ページ
    ======================================== */
/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}

@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
  }
}

.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}

.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 28px;
  }
}

.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
  }
}

.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
  }
}

/* ========================================
    投稿詳細 (p-single)
    ======================================== */
.p-single {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .p-single {
    padding: 80px 0;
  }
}

.p-single__breadcrumbs {
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (max-width: 1080px) {
  .p-single__breadcrumbs {
    top: 24px;
    left: 16px;
  }
}

.p-single__breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.p-single__breadcrumbs a:hover {
  text-decoration: underline;
}

.p-single__header {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .p-single__header {
    margin-bottom: 20px;
  }
}

.p-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.p-single__date {
  font-size: 14px;
  color: var(--gray);
}

.p-single__cat {
  font-size: 12px;
  background-color: var(--color-primary);
  color: var(--white);
  padding: 4px 12px;
  font-weight: 400;
}

.p-single__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .p-single__title {
    font-size: 24px;
  }
}

.p-single__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 48px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.p-single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-single__placeholder {
  width: 100%;
  height: 100%;
  background-color: #ddd;
}

.p-single__footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

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

.p-single__pagination-prev,
.p-single__pagination-next {
  width: 100px;
}

@media (max-width: 600px) {

  .p-single__pagination-prev,
  .p-single__pagination-next {
    width: auto;
  }
}

.p-single__pagination-back a {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: underline;
}

.p-single__pagination-prev a,
.p-single__pagination-next a {
  font-size: 14px;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.p-single__pagination-prev a:hover,
.p-single__pagination-next a:hover {
  opacity: 0.7;
}

.p-single__pagination-prev a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(-135deg);
  margin-right: 8px;
}

.p-single__pagination-next a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
}

/* ========================================
    トップページ
    ======================================== 
*/
.top-about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--white);
  background-color: transparent;
  /* フォールバック */
}

@media (max-width: 768px) {
  .top-about {
    padding: 80px 0;
  }
}

.top-about__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.95);
  z-index: 1;
}

.top-about__inner {
  position: relative;
  z-index: 3;
  text-align: left;
}

.top-about__content {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .top-about__content {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}

.top-about__content p {
  margin-bottom: 2em;
}

.top-about__content p:last-child {
  margin-bottom: 0;
}

/* ========================================
    トップ：サービス (top-service)
    ======================================== */
.top-service {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background-color: transparent;
  margin-top: 25vh;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .top-service {
    margin-top: 20vh;
  }
}

@media (max-width: 768px) {
  .top-service {
    padding: 80px 0;
    margin-top: 15vh;
  }
}

.top-service__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-service__bg img,
.top-service__bg picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-service__bg img {
  object-fit: cover;
  opacity: 0.3;
}

.top-service__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.95);
  /* #313131 95% */
  z-index: 2;
}

.top-service__inner {
  position: relative;
  z-index: 3;
}

.top-service__desc p {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  margin-top: 40px;
  line-height: 2;
}

.top-service__banners {
  margin-top: 80px;
}

.top-service__banners .m-banners-wrap {
  background: none;
  padding: 0;
}

@media (max-width: 600px) {
  .top-service__desc p {
    font-size: 15px;
    margin-top: 20px;
  }
}

.top-service__highlight {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 4px;
  border: 1px solid var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .top-service__highlight {
    font-size: 18px;
    padding: 2px 4px;
    margin-bottom: 4px;
  }
}

.top-service__process {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .top-service__process {
    flex-wrap: nowrap;
    margin-top: 40px;
  }
}

.top-service__circle {
  flex: 1;
  aspect-ratio: 1 / 1;
  border: 1px solid #ABA7A7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -15px;
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.3s;
}

@media (max-width: 1080px) {
  .top-service__circle {
    margin: 0 -1.5vw;
    font-size: clamp(10px, 1.3vw, 14px);
  }
}

@media (max-width: 768px) {
  .top-service__circle {
    margin: 0 -2vw;
    font-size: clamp(8px, 2.5vw, 11px);
    border-width: 0.5px;
  }
}

/* ========================================
    トップ：フィロソフィー (top-philosophy)
    ======================================== */
.top-philosophy {
  position: relative;
  padding: 200px 0;
  color: var(--white);
  background-color: transparent;
}

@media (max-width: 768px) {
  .top-philosophy {
    padding: 80px 0;
  }
}

.top-philosophy__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-philosophy__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.top-philosophy__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.95);
  /* #313131 95% */
  z-index: 2;
}

.top-philosophy__inner {
  position: relative;
  z-index: 3;
}

.top-philosophy__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 1080px) {
  .top-philosophy__flex {
    flex-direction: column;
  }
}

.top-philosophy__content {
  flex-shrink: 0;
}

.top-philosophy__text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.2;
}

@media (max-width: 600px) {
  .top-philosophy__text {
    font-size: 14px;
    line-height: 2;
  }
}

.top-philosophy__text p {
  margin-bottom: 0.5em;
}

.top-philosophy__btn-wrap {
  margin-top: 56px;
}

.top-philosophy__btn-wrap .m-btn {
  width: auto;
  padding: 0 32px;
  background: var(--color-primary);
  border: 1px solid var(--white);
  border-radius: 50px;
  min-height: 54px;
}

.top-philosophy__images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

@media (max-width: 1080px) {
  .top-philosophy__images {
    margin-top: 40px;
  }
}

.top-philosophy__img-item {
  width: 65%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.top-philosophy__img-item:nth-child(even) {
  align-self: flex-start;
}

.top-philosophy__img-item:nth-child(odd) {
  align-self: flex-end;
}

.top-philosophy__img-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 個別の幅調整 */
.top-philosophy__img-item--01 {
  width: 70%;
}

.top-philosophy__img-item--02 {
  width: 60%;
}

.top-philosophy__img-item--03 {
  width: 65%;
}

.top-philosophy__img-item--04 {
  width: 55%;
}

@media (max-width: 600px) {
  .top-philosophy__images {
    gap: 10px;
  }

  .top-philosophy__img-item {
    width: 65%;
  }

  .top-philosophy__img-item--01 {
    width: 65%;
  }

  .top-philosophy__img-item--02 {
    width: 55%;
  }

  .top-philosophy__img-item--03 {
    width: 60%;
  }

  .top-philosophy__img-item--04 {
    width: 50%;
  }

  .top-philosophy__img-item+.top-philosophy__img-item {
    margin-top: -60px;
  }
}

.u-border {
  border: 1px solid var(--white);
  padding: 0 4px;
}

/* ========================================
    トップ：動画 (top-movie)
    ======================================== */
.top-movie {
  padding: 120px 0;
  background: #F7F7F7;
  margin-top: 25vh;
}

@media (max-width: 1000px) {
  .top-movie {
    margin-top: 20vh;
  }
}

@media (max-width: 768px) {
  .top-movie {
    padding: 80px 0;
    margin-top: 15vh;
  }
}

.top-movie__head {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .top-movie__head {
    margin-bottom: 40px;
  }
}

.top-movie__note {
  font-size: 14px;
  font-weight: 500;
  margin-left: 1em;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .top-movie__note {
    display: block;
    margin-left: 0;
    margin-top: 10px;
    font-size: 12px;
  }
}

.movie-item__link {
  text-decoration: none;
  color: var(--color-primary);
  display: block;
}

.movie-item__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.movie-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.movie-item__link:hover .movie-item__thumb img {
  transform: scale(1.05);
}

.movie-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s;
}

.movie-item__link:hover .movie-item__play {
  opacity: 0.8;
}

.movie-item__play svg {
  width: clamp(40px, 8vw, 60px);
  height: auto;
}

.movie-item__title {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .movie-item__title {
    font-size: 13px;
  }
}

.top-movie__btn-wrap {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .top-movie__btn-wrap {
    margin-top: 40px;
  }
}

/* ========================================
    トップ：施工の流れ (top-flow)
    ======================================== */
.top-flow {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background-color: transparent;
  margin-top: 25vh;
}

@media (max-width: 1000px) {
  .top-flow {
    margin-top: 20vh;
  }
}

@media (max-width: 768px) {
  .top-flow {
    padding: 80px 0;
    margin-top: 15vh;
  }
}

.top-flow__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-flow__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.top-flow__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.95);
  /* #313131 95% */
  z-index: 2;
}

.top-flow__inner {
  position: relative;
  z-index: 3;
}

.top-flow__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .top-flow__list {
    margin-top: 40px;
  }
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    gap: 24px;
  }
}

.flow-item__img {
  min-width: 15vw;
  width: 200px;
  flex-shrink: 0;
}



@media (max-width: 768px) {
  .flow-item__img {
    width: 100%;
  }
}

.flow-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.6;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .flow-item__img img {
    aspect-ratio: 1/.65;
  }
}

.flow-item__info {
  flex: 1;
}

@media screen and (max-width: 600px) {
  .flow-item__info {
    width: 100%;
  }
}

.flow-item__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

.flow-item__number {
  font-size: 18px;
}

@media (max-width: 600px) {
  .flow-item__title {
    font-size: 17px;
    margin-bottom: 16px;
  }
}

.flow-item__pipe {
  margin: 0 4px;
  font-weight: 400;

}

.flow-item__desc {
  font-size: 15px;
  line-height: 2;
}

@media (max-width: 600px) {
  .flow-item__desc {
    font-size: 13px;
    line-height: 1.8;
  }
}

.top-flow__arrow {
  margin: 24px 0;
  text-align: center;
}


.top-flow__arrow img {
  width: 64px;
  height: auto;
}

@media (max-width: 768px) {
  .top-flow__arrow img {
    width: 30px;
  }
}

/* ========================================
    トップ：お客様の声 (top-testimonials)
    ======================================== */
.top-testimonials {
  padding: 120px 0;
  background: #F7F7F7;
  overflow: hidden;
  margin-top: 25vh;
}

@media (max-width: 1000px) {
  .top-testimonials {
    margin-top: 20vh;
  }
}

@media (max-width: 768px) {
  .top-testimonials {
    padding: 80px 0;
    margin-top: 15vh;
  }
}

.top-testimonials__slider-container {
  position: relative;
  width: 100%;
}

.top-testimonials__nav-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}

.top-testimonials__slider-wrap {
  margin-top: 80px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .top-testimonials__slider-wrap {
    margin-top: 40px;
  }
}

.testimonial-swiper {
  overflow: visible;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.testimonial-card__body {
  padding: 32px 24px;
  flex: 1;
}

@media (max-width: 600px) {
  .testimonial-card__body {
    padding: 24px 16px;
  }
}

.testimonial-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 95px;
  margin-bottom: 24px;
  gap: 12px;
}

.testimonial-card__cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 4px;
}

.testimonial-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .testimonial-card__title {
    font-size: 16px;
  }
}

.testimonial-card__meta {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
}

.testimonial-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
}

.testimonial-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__content {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-primary);
}

.testimonial-card__content p {
  margin-bottom: 1.5em;
}

.testimonial-card__content p:last-child {
  margin-bottom: 0;
}

.testimonial-nav__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
  pointer-events: auto;
}

.testimonial-nav__btn:hover {
  opacity: 0.7;
}

.testimonial-nav__btn--prev {
  left: 0;
}

.testimonial-nav__btn--next {
  right: 0;
}

@media (max-width: 1080px) {
  .testimonial-nav__btn {
    transition: opacity 0.3s;
  }
}

.testimonial-nav__btn img {
  width: 50px;
  height: auto;
}

@media (max-width: 1080px) {
  .testimonial-nav__btn img {
    width: 40px;
  }
}

@media (max-width: 600px) {
  .top-testimonials__nav-inner {
    padding: 0 16px;
  }
}

@media (max-width: 600px) {
  .testimonial-nav__btn img {
    width: 32px;
  }
}

/* ========================================
    共通：バナー (m-banners)
    ======================================== */
.m-banners-wrap {
  background: rgba(49, 49, 49, 0.9);
}

.m-banners__header {
  padding-top: 46px;
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .m-banners-wrap {
    padding: 60px 16px;
    padding-top: 10px;
  }

  .m-banners__header {
    font-size: 16px;
    margin-bottom: 24px;
    text-align: left;
  }
}

.m-banners {
  display: flex;
  gap: 24px;
}

.m-banners-wrap .m-banners {
  margin-top: 0;
}

@media (max-width: 768px) {
  .m-banners {
    flex-direction: column;
  }
}

.m-banner {
  flex: 1;
  position: relative;
  min-height: 160px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px;
  text-decoration: none;
  color: var(--white);
}

.m-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1E1E1E 27.88%, rgba(30, 30, 30, 0.25) 66.01%);
  z-index: 1;
  transition: opacity 0.3s;
}

.m-banner:hover::before {
  opacity: 0.7;
}

.m-banner:hover .m-banner__bg img {
  transform: scale(1.1);
}

.m-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.m-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: 0.3s;
}

.m-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.m-banner__body {
  flex: 1;
}

.m-banner__title {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 8px;
  width: 100%;
}

.m-banner__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  margin-top: 4px;
}

.m-banner__icon img {
  width: 16px;
  height: auto;
}

.m-banner__text {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .m-banners {
    gap: 32px;
  }

  .m-banner {
    padding: 32px 24px;
  }

  .m-banner__inner {
    gap: 12px;
  }

  .m-banner__title {
    font-size: 18px;
  }

  .m-banner__text {
    font-size: 13px;
  }
}

/* ========================================
    トップ：コラム (top-column)
    ======================================== */
.top-column {
  padding: 120px 0;
  background: #fff;
  margin-top: 25vh;
}

@media (max-width: 1000px) {
  .top-column {
    margin-top: 20vh;
  }
}

@media (max-width: 768px) {
  .top-column {
    padding: 80px 0;
    margin-top: 15vh;
  }
}

.top-column__head {
  margin-bottom: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .top-column__head {
    margin-bottom: 40px;
  }
}

.column-item__link {
  text-decoration: none;
  color: var(--color-primary);
  display: block;
}

.column-item__thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
  .column-item__thumb {
    aspect-ratio: 16 / 9;
  }
}

.column-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.column-item__link:hover .column-item__thumb img {
  transform: scale(1.05);
}

.column-item__body {
  display: flex;
  flex-direction: column;
}

.column-item__cat {
  font-family: var(--font-inter);
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.column-item__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-item__date {
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--gray);
}

.top-column__btn-wrap {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .top-column__btn-wrap {
    margin-top: 40px;
  }
}

/* ========================================
    下層ページ
    ======================================== */
/* ========================================
    わたしたちの強み (strengths-fv)
    ======================================== */
.strengths-fv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  color: var(--white);
}

.strengths-fv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

.strengths-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-fv__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.strengths-fv__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.strengths-fv__breadcrumbs {
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: 11px;
  letter-spacing: 0.1em;
}

@media (max-width: 1080px) {
  .strengths-fv__breadcrumbs {
    top: 24px;
    left: 16px;
  }
}

.strengths-fv__breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.strengths-fv__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 56px;
}

@media (max-width: 1080px) {
  .strengths-fv__content {
    padding: 0px;
    gap: 32px;
  }
}

.strengths-fv__title {
  font-size: clamp(32px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--font-zen-antique-soft);
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.strengths-fv__desc {
  font-size: 20px;
  line-height: 2.2;
  font-weight: 500;
  text-align: left;
  align-self: flex-end;
  margin-top: 40px;
}

@media (max-width: 1080px) {
  .strengths-fv__desc {
    align-self: flex-start;
    margin-top: 0;
  }
}

.strengths-fv__desc p {
  margin-bottom: 2em;
}

@media screen and (max-width: 600px) {
  .strengths-fv__desc p {
    font-size: 14px;
  }
}

.strengths-fv__desc p:last-child {
  margin-bottom: 0;
}

/* ========================================
    わたしたちの強み (strengths-axis)
    ======================================== */
.strengths-axis {
  position: relative;
  padding: 120px 0;
  padding-bottom: 150px;
  background: url("../img/strengths/strong-main-bg.webp") center top / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.strengths-axis__head {
  width: fit-content;
  margin: 0 auto;
}

.strengths-axis::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 160px;
  background: var(--white);
  z-index: 5;
}

@media (max-width: 768px) {
  .strengths-axis {
    padding: 80px 0;
  }
}

.strengths-axis__title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
  text-align: left;
}

@media (max-width: 768px) {
  .strengths-axis__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .strengths-axis__title {
    font-size: 22px;
  }
}

.strengths-axis__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 80px;
  text-align: left;
  display: inline-block;
}

@media (max-width: 768px) {
  .strengths-axis__desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .strengths-axis__desc {
    font-size: 15px;
  }
}

.strengths-axis__desc p {
  margin-bottom: 1.5em;
}

.strengths-axis__desc p:last-child {
  margin-bottom: 0;
}

.strengths-axis__image {
  max-width: 1000px;
  margin: 0 auto;
}

.strengths-axis__image img {
  width: 100%;
  height: auto;
}

.strengths-axis__slider-wrap {
  margin-top: 80px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.strengths-splide {
  width: 100%;
  overflow: hidden;
  /* splide の推奨設定に合わせて調整（track以外がはみ出ないよう） */
}

.strengths-splide .splide__track {
  overflow: visible;
  /* 前後のスライドを見せる場合 */
}

.strengths-splide .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .strengths-axis__slider-wrap {
    margin-top: 40px;
  }
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: 24px;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}

.policy__content .wp-block-heading {
  font-size: 20px;
  margin-top: 30px;
}

.policy__content .wp-block-spacer {
  height: 40px !important;
}

.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}

.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact {
  padding: 120px 0;
  background-color: #F5F5F5;
}

@media (max-width: 600px) {
  .contact {
    padding: 80px 0;
  }
}

.contact__info {
  font-size: 16px;
  text-align: center;
  line-height: 2;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .contact__info {
    font-size: 16px;
    margin-bottom: 16px;
    text-align: left;
  }
}

.contact__tel {
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .contact__tel {
    text-align: left;
    margin-bottom: 32px;
  }
}

.contact__form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.m-contact__form p {
  color: var(--gray);
}

.m-contact__form-note {
  margin-top: 32px;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.m-contact__form-note p {
  color: var(--gray);
}

/* 完了ページ */
.thanks__content {
  text-align: center;
}

.thanks__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
}

.thanks__info {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 64px;
}

.thanks__btn-wrap {
  text-align: center;
}

.thanks__btn {
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .thanks__text {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .thanks__info {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.form-unit {
  width: 100%;
  margin-bottom: 40px;
}

.form-unit__head {
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
}

.m-required::after,
.m-any::after {
  display: inline-block;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  margin-left: 12px;
  border-radius: 12px;
  padding: 2px 10px;
  line-height: 1.4;
}

.m-required::after {
  content: "必須";
  background-color: var(--red);
}

.m-any::after {
  content: "任意";
  background-color: var(--gray);
}

.wpcf7-not-valid-tip {
  text-align: left;
}

.form-unit__input,
.form-unit__input-wrap input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #727272;
  background: var(--white);
  border-radius: 4px;
  font-size: 16px;
  color: var(--color-primary);
  text-align: left;
}

.form-unit__textarea,
.form-unit__textarea-wrap textarea {
  width: 100%;
  padding: 16px;
  height: 240px;
  border: 1px solid #727272;
  background: var(--white);
  border-radius: 4px;
  font-size: 16px;
  color: var(--color-primary);
  display: block;
  text-align: left;
}

.form-unit__input::placeholder,
.form-unit__textarea::placeholder {
  color: #D9D9D9;
}

/* Radio Buttons */
.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 600px) {
  .wpcf7-radio {
    gap: 16px;
  }
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
}

.wpcf7-radio input[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--red);
}

.form-consent {
  margin-top: 48px;
  margin-bottom: 48px;
  text-align: center;
}

.form-consent label {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.form-unit__policy-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  height: 80px;
  margin: 0 auto;
  background-color: var(--red);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.wpcf7-submit:hover {
  opacity: 0.8;
}

@media screen and (max-width: 600px) {
  .wpcf7-submit {
    height: 64px;
    font-size: 16px;
    max-width: 100%;
  }
}

.wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 16px !important;
  border: 1px solid #D9D9D9 !important;
  border-radius: 4px !important;
  text-align: center !important;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.form__submit {
  text-align: center;
}


.concent {
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.75;
}

@media screen and (max-width: 600px) {
  .concent {
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}

@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.u-red {
  color: #F24822;
}

.u-fz-40 {
  font-size: 40px;
}

.u-fz-48 {
  font-size: 48px;
}

.u-fz-33 {
  font-size: 33px;
}

@media screen and (max-width: 1080px) {
  .u-fz-33 {
    font-size: 28px;
  }
}

@media screen and (max-width: 600px) {
  .u-fz-33 {
    font-size: 24px;
  }
}

@media screen and (max-width: 1080px) {
  .u-fz-48 {
    font-size: 40px;
  }
}

@media screen and (max-width: 600px) {
  .u-fz-40 {
    font-size: 24px;
  }

  .u-fz-48 {
    font-size: 32px;
  }
}

/* ========================================
    わたしたちの強み (page-our-strengths)
    ======================================== */


.strengths-features__header {
  padding: 40px 0;
  /* background: rgba(49, 49, 49, 0.95); */
  text-align: center;
  height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strengths-features__main-title {
  font-size: 39px;
  font-weight: 700;
  color: var(--white);
}

@media (max-width: 1080px) {
  .strengths-features__main-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .strengths-features__main-title {
    font-size: 22px;
  }
}

.strengths-features__item {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 768px) {
  .strengths-features__item {
    padding: 80px 0;
  }
}

.strengths-features__item.is-dark {
  background: rgba(49, 49, 49, 0.7);
  /* #313131 70% */
}

.strengths-features__item.is-light {
  background: rgba(114, 114, 114, 0.6);
  /* #727272 60% */
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.strengths-features__inner {
  position: relative;
  z-index: 3;
}

.strengths-features__body {
  display: flex;
  align-items: center;
  gap: 64px;
}

@media (max-width: 1080px) {
  .strengths-features__body {
    flex-direction: column;
    gap: 40px;
  }
}

.strengths-features__item:nth-child(even) .strengths-features__body {
  flex-direction: row-reverse;
}

@media (max-width: 1080px) {
  .strengths-features__item:nth-child(even) .strengths-features__body {
    flex-direction: column;
  }
}

.strengths-features__content {
  color: var(--white);
}

.strengths-features__heading {
  border-left: 19px solid #D9D9D9;
  padding-left: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1080px) {
  .strengths-features__heading {
    padding-left: 16px;
    margin-bottom: 24px;
    border-left: 10px solid #D9D9D9;
  }
}

.strengths-features__meta {
  margin-bottom: 4px;
}

.strengths-features__label {
  display: inline-block;
  font-family: var(--font-inter);
  font-size: 23px;
  font-weight: 400;
  color: #D9D9D9;
}

.strengths-features__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .strengths-features__title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .strengths-features__title {
    font-size: 22px;
  }
}

.strengths-features__text {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .strengths-features__text {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .strengths-features__text {
    font-size: 15px;
  }
}

.strengths-features__image {
  width: 300px;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .strengths-features__image {
    width: 100%;
    max-width: 500px;
  }
}

.strengths-features__image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* strengths-concept */
.strengths-concept {
  position: relative;
  padding: 120px 0;
  color: var(--white);
  background: #4E4E4E;
  /* #313131 95% */
}

@media (max-width: 768px) {
  .strengths-concept {
    padding: 80px 0;
  }
}

.strengths-concept__inner {
  position: relative;
}

.strengths-concept__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.85;
  margin-bottom: 80px;
  text-align: left;
}

.strengths-concept__title span {
  display: inline-block;
  padding: 0 8px;
  border: 1px solid var(--white);
  margin: 0 4px;
}

@media (max-width: 1080px) {
  .strengths-concept__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .strengths-concept__title {
    font-size: 22px;
  }
}

.strengths-concept__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}

@media (max-width: 1080px) {
  .strengths-concept__content {
    flex-direction: column;
    gap: 48px;
  }
}

.strengths-concept__text {
  flex: 1;
}

.strengths-concept__unit {
  margin-bottom: 40px;
}

.strengths-concept__unit h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.strengths-concept__unit p {
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .strengths-concept__unit p {
    font-size: 15px;
  }
}

.strengths-concept__summary {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 64px;
}

@media (max-width: 600px) {
  .strengths-concept__summary {
    font-size: 15px;
  }
}

@media (max-width: 1080px) {
  .strengths-concept__summary {
    margin-top: 32px;
  }
}

.strengths-concept__figure {
  width: 440px;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .strengths-concept__figure {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.strengths-concept__figure img {
  width: 100%;
  height: auto;
}

/* ========================================
    施工事例詳細 (p-works-detail)
    ======================================== */
.p-works-detail {
  width: 100%;
}

.p-works-detail__mv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.p-works-detail__mv-img {
  width: 100%;
  height: 100%;
}

.p-works-detail__mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-works-detail__inner {
  padding-top: 80px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .p-works-detail__inner {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

.p-works-detail__header {
  margin-bottom: 40px;
}

.p-works-detail__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .p-works-detail__title {
    font-size: 24px;
  }
}

.p-works-detail__desc {
  font-size: 16px;
  line-height: 2;
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .p-works-detail__desc {
    font-size: 14px;
  }
}

.p-works-detail__info {
  margin-top: 50px;
}

@media (max-width: 600px) {
  .p-works-detail__info {
    margin-top: 24px;
  }
}

.p-works-detail__info-item {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-primary);
}

@media (max-width: 600px) {
  .p-works-detail__info-item {
    font-size: 14px;
  }
}

.p-works-detail__content {
  margin-top: 80px;
}

.p-works-detail__content img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .p-works-detail__content img {
    margin-bottom: 16px;
  }
}


.p-works-detail__content .wp-block-image {
  height: 100% !important;
}


.p-works-detail__content img {
  height: 100%;
}

@media screen and (max-width: 600px) {
  .p-works-detail__content .is-layout-flex:nth-child(1) {
    gap: 0;
    margin-bottom: 0;
  }

}

/*# sourceMappingURL=main.css.map */
/* ========================================
    実例紹介セクション
    ======================================== */
.strengths-works {
  position: relative;
  z-index: 1;
}

.strengths-works__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.strengths-works__item:not(:last-child) {
  border-bottom: 40px solid #4E4E4E;
}

@media screen and (max-width: 600px) {
  .strengths-works__item:not(:last-child) {
    border-bottom: 18px solid #4E4E4E;
  }
}

.strengths-works__item:first-child {
  padding-top: 0;
  padding-bottom: 200px;
}

.strengths-works__item:not(:first-child) {
  padding: 200px 0;
}

.strengths-works__item.is-bg-01 {
  background-image: url('../img/strengths/works-bg.webp');
}

.strengths-works__item.is-bg-02 {
  background-image: url('../img/strengths/works-bg-02.webp');
}

.strengths-works__item.is-bg-03 {
  background-image: url('../img/strengths/works-bg-03.webp');
}

@media screen and (max-width: 1080px) {
  .strengths-works__item:not(:first-child) {
    padding: 120px 0;
  }

  .strengths-works__item:first-child {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 600px) {
  .strengths-works__item:not(:first-child) {
    padding: 80px 0;
  }

  .strengths-works__item:first-child {
    padding-bottom: 80px;
  }
}

.strengths-works__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 43px;
  background: transparent;
  color: #fff;
  text-align: center;
}

.strengths-works__title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #313131;
  padding: 16px 64px;
  border-radius: 100px;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .strengths-works__title {
    font-size: 24px;
    padding: 12px 32px;
  }
}

.strengths-works__scroll-icon {
  width: 40px;
  margin-bottom: 32px;
}



.strengths-works__box {
  margin: 0 auto;
  padding: 80px 64px;
  max-width: 1080px;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url('../img/strengths/white-bg.webp');
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
}

@media screen and (max-width: 1080px) {
  .strengths-works__box {
    padding: 64px 40px;
    max-width: calc(100% - 32px);
  }
}

@media screen and (max-width: 600px) {
  .strengths-works__box {
    padding: 40px 16px;
    max-width: 100%;
  }
}

.strengths-works__comparison {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 64px;
}

.strengths-works__comparison-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1.5;
}

@media screen and (max-width: 768px) {
  .strengths-works__comparison {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .strengths-works__comparison-group {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.strengths-works__comparison-item--before {
  flex: 1;
}

.strengths-works__comparison-item--after {
  flex: 4;
}

@media screen and (max-width: 768px) {
  .strengths-works__comparison-item--after {
    margin-top: 0;
  }
}

.strengths-works__comparison-arrow {
  flex-shrink: 0;
  width: 15px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .strengths-works__comparison-arrow {
    width: 24px;
    margin: 0 auto;
    padding-top: 0;
    transform: rotate(90deg);
  }
}

.strengths-works__comparison-label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-inter);
}

.strengths-works__comparison-label--before {
  font-size: 14px;
  font-weight: 500;
}

.strengths-works__comparison-label--after {
  font-size: 16px;
  font-weight: 500;
}

.strengths-works__comparison-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #eee;
  width: 100%;
}

.strengths-works__comparison-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strengths-works__comparison-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ccc;
}

.strengths-works__comparison-img--placeholder span {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.strengths-works__comparison-images {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 600px) {
  .strengths-works__comparison-images {
    flex-direction: column;
  }
}

.strengths-works__comparison-images .strengths-works__comparison-img {
  flex: 1;
}

.strengths-works__sub-title {
  color: var(--color-primary);
  margin-bottom: 40px;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.strengths-works__sub-title-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(transparent 55%, var(--white) 55%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.strengths-works__sub-title-inner span {
  font-size: 57px;
}

@media screen and (max-width: 600px) {
  .strengths-works__sub-title {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .strengths-works__sub-title-inner {
    background: linear-gradient(transparent 60%, var(--white) 60%);
  }

  .strengths-works__sub-title-inner span {
    font-size: 28px;
  }
}

.strengths-works__text {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
}

@media screen and (max-width: 600px) {
  .strengths-works__text {
    font-size: 15px;
    line-height: 1.7;
    padding: 16px;
  }
}

.strengths-works__text p {
  margin-bottom: 24px;
}

.strengths-works__text p:last-child {
  margin-bottom: 0;
}

/* ========================================
    採用情報 (page-recruit)
    ======================================== */
/* recruit-intro */
.recruit-intro {
  padding: 120px 0;
  background-color: #F5F5F5;
  text-align: center;
}

@media (max-width: 768px) {
  .recruit-intro {
    padding: 80px 0;
  }
}

.recruit-intro__title {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 64px;
}

@media (max-width: 600px) {
  .recruit-intro__title {
    font-size: 23px;
    margin-bottom: 40px;
  }
}

.recruit-intro__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 64px;
}

.recruit-intro__text p {
  margin-bottom: 2em;
}

.recruit-intro__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .recruit-intro__text {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
  }
}

.recruit-intro__image {
  max-width: 600px;
  margin: 0 auto;
}

.recruit-intro__image img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
    採用情報 募集要項
    ======================================== */
.recruit-requirements {
  padding: 80px 0;
}

.recruit-requirements__title {
  font-size: 23px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.recruit-requirements__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 48px;
}

@media screen and (max-width: 600px) {
  .recruit-requirements__lead {
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .recruit-requirements__lead br {
    display: none;
  }
}

.recruit-requirements__list {
  margin-bottom: 80px;
}

.recruit-requirements__item {
  display: flex;
  padding: 32px 0;
  border-top: 1px solid var(--gray);
  font-size: 16px;
}

.recruit-requirements__item:last-child {
  border-bottom: 1px solid var(--gray);
}

.recruit-requirements__item dt {
  width: 25%;
  font-weight: 500;
}

.recruit-requirements__item dd {
  width: 75%;
  line-height: 1.8;
}

.recruit-requirements__item dd p {
  margin-bottom: 32px;
}

.recruit-requirements__item dd p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .recruit-requirements__item {
    flex-direction: column;
    padding: 24px 0;
  }

  .recruit-requirements__item dt {
    width: 100%;
    margin-bottom: 12px;
  }

  .recruit-requirements__item dd {
    width: 100%;
  }

  .recruit-requirements__item dd p {
    margin-bottom: 24px;
  }
}

.recruit-requirements__images {
  display: flex;
  gap: 2px;
}

.recruit-requirements__image {
  width: calc(100% / 3 - 11px);
}

.recruit-requirements__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .recruit-requirements__images {
    gap: 12px;
    flex-direction: column;
  }

  .recruit-requirements__image {
    width: 100%;
  }
}

.recruit-form {
  background: #E7E7E7;
  padding: 120px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .recruit-form {
    padding: 80px 0;
  }
}

.recruit-form__title {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 64px;
}

@media (max-width: 600px) {
  .recruit-form__title {
    font-size: 23px;
    margin-bottom: 40px;
  }
}

.recruit-form__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .recruit-form__lead {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }
}

.recruit-form__tel {
  margin-bottom: 64px;
}

@media (max-width: 600px) {
  .recruit-form__tel {
    text-align: left;
    margin-bottom: 40px;
  }
}

/* ========================================
    会社概要
    ======================================== */
/* ========================================
    会社概要：ご挨拶 (company-message)
    ======================================== */
.company-message {
  padding: 120px 0 80px;
}

.company-message__title {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 64px;
  text-align: center;
}

.company-message__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.company-message__content p+p {
  margin-top: 40px;
}

.company-message__signature {
  font-size: 16px;
  font-weight: 600;
  margin-top: 80px;
  text-align: right;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .company-message {
    padding: 80px 0 60px;
  }

  .company-message__title {
    margin-bottom: 40px;
  }

  .company-message__content p {
    font-size: 16px;
    text-align: left;
  }

  .company-message__content p br {
    display: none;
  }

  .company-message__signature {
    margin-top: 48px;
    padding-right: 0;
  }
}

.company-profile {
  padding: 80px 0 0;
}

.company-profile__title {
  font-size: 23px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.company-profile__list {
  margin-bottom: 80px;
}

.company-profile__item {
  display: flex;
  padding: 32px 0;
  border-top: 1px solid var(--gray);
  font-size: 16px;
  padding-left: 2em;
}

.company-profile__item:first-child {
  border-top: none;
}

.company-profile__item:last-child {
  border-bottom: 1px solid var(--gray);
}

.company-profile__item dt {
  width: 25%;
  font-weight: 400;
}

.company-profile__item dd {
  width: 75%;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .company-profile {
    padding: 60px 0 0;
  }

  .company-profile__item {
    flex-direction: column;
    padding: 24px 0;
    font-size: 16px;
  }

  .company-profile__item dt {
    width: 100%;
    margin-bottom: 12px;
  }

  .company-profile__item dd {
    width: 100%;
  }
}

.company-profile__images {
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .company-profile__images {
    padding-bottom: 60px;
  }
}

.company-staff {
  padding-top: 80px;
  padding-bottom: 120px;
}

@media screen and (max-width: 600px) {
  .company-staff__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px !important;
  }
}

.company-staff__title {
  font-size: 23px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 64px;
}

.company-staff__img {
  aspect-ratio: 1 / 1.5;
  overflow: hidden;
  margin-bottom: 16px;
}

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

.company-staff__role {
  font-size: 11px;
  font-weight: 500;
}

.company-staff__name {
  font-size: 17px;
  font-weight: 500;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .company-staff {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .company-staff__title {
    margin-bottom: 40px;
  }
}

.company-staff__name-en {
  font-size: 8px;
  font-weight: 500;
}

.company-map {
  padding-bottom: 80px;
}

.company-map__iframe {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* 16:9 */
  position: relative;
}

.company-map__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ========================================
    コラム一覧 (archive-column)
    ======================================== */
.archive-column {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .archive-column {
    padding: 80px 0;
  }
}

@media screen and (max-width: 600px) {
  .archive-column {
    padding: 60px 0;
  }
}

.archive-column__inner {
  display: flex;
  gap: 64px;
}

@media (max-width: 1080px) {
  .archive-column__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.archive-column__sidebar {
  width: 160px;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .archive-column__sidebar {
    width: 100%;
  }
}

.archive-column__sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}

@media (max-width: 1080px) {
  .archive-column__sidebar-title {
    margin-bottom: 16px;
  }
}

.archive-column__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1080px) {
  .archive-column__sidebar-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

.archive-column__sidebar-list a {
  text-decoration: none;
  font-family: var(--font-inter);
  font-size: 13px;
  color: var(--black);
  position: relative;
}

.archive-column__sidebar-list a.is-active {
  font-weight: 700;
  padding-left: 12px;
}

.archive-column__sidebar-list a.is-active::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}

.archive-column__main {
  flex-grow: 1;
}

.archive-column__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}

@media (max-width: 1080px) {
  .archive-column__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .archive-column__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .archive-column__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* プレースホルダー */
.column-item__placeholder {
  width: 100%;
  height: 100%;
  background: #E0E0E0;
}

/* ページネーション (m-pagination) */
.m-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 768px) {
  .m-pagination {
    margin-top: 40px;
    gap: 12px;
  }
}

.m-pagination__arrow,
.m-pagination__number,
.m-pagination__dots {
  font-family: var(--font-inter);
  font-size: 16px;
  color: #888;
  cursor: pointer;
}

.m-pagination__arrow {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
}

.m-pagination__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.m-pagination__arrow--prev::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.m-pagination__arrow--next::before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.m-pagination__number.is-active {
  color: var(--black);
  font-weight: 700;
  border-bottom: 1px solid var(--black);
}

.m-pagination__arrow:hover,
.m-pagination__number:hover {
  color: var(--black);
}