@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #0e0e17;
  --color-gray: #9f9fb1;
  --color-blue: #5a69a0;
  --color-bg: #e6e6e8;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-family-ubuntu: "Ubuntu", sans-serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 6rem;
    --font-size-xxl: 5rem;
    --font-size-xl: 2.5rem;
    --font-size-gl: 2rem;
    --font-size-base: 1.7rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-xxxl: 1;
    --line-height-xxl: 1;
    --line-height-xl: 1.6;
    --margin-height-xl: -0.3em;
    --line-height-gl: 2;
    --margin-height-gl: -0.5em;
    --line-height-base: 2.3529412;
    --margin-height-base: -0.6764706em;
    --line-height-base-mid: 2.0588236;
    --margin-height-base-mid: -0.5294118em;
    --line-height-base-min: 1.764706;
    --margin-height-base-min: -0.382353em;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-xl: 0.2em;
    --letter-spacing-base: 0.1em;
    --letter-spacing-sm: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 2.5em;
    --font-size-xxl: 2em;
    --font-size-xl: 1.5625em;
    --font-size-gl: 1.25em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-xxxl: 1.5;
    --line-height-xxl: 1.5625;
    --line-height-xl: 1.28;
    --line-height-gl: 1.4;
    --line-height-base: 2;
    --line-height-base-mid: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-spacing */
    --letter-spacing-base: 0.1em;
    --letter-spacing-sm: 0.05em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-base);
  padding-top: 3em;
}
.pagenation li {
  width: 36px;
  line-height: 40px;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated {
  font-size: var(--font-size-base);
}
.paginated__list {
  padding-top: 1.5em;
  margin-top: 3em;
  border-top-width: 2px;
}
.paginated__link {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link--prev::before {
  margin-right: 1em;
}
.paginated__link--next::after {
  margin-left: 1em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
  font-size: var(--font-size-base);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header__logo {
  margin-left: 20px;
}
#header .header__logo img {
  height: clamp(50px, 3.6979166667vw, 71px);
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  padding: clamp(30px, 2.0833333333vw, 40px) 20px clamp(30px, 2.0833333333vw, 40px) 0;
  box-shadow: 0 2px 0 0 var(--color-text);
  gap: 20px;
}
#header .header__links {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#header .header__links-sns {
  display: block;
  width: 40px;
  transition: all 0.3s ease-out;
}
#header .header__links-sns:hover {
  transform: translateY(-4px);
}
#header .header__links-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 50px;
  font-size: var(--font-size-base);
  font-family: var(--font-family-ubuntu);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  box-shadow: 0 0 0 2px var(--color-text) inset;
  transition: all 0.3s ease-out;
}
#header .header__links-mail::before {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 1;
  background: url(../img/common/icon_mail.png) no-repeat center/contain;
  margin-right: 15px;
}
#header .header__links-mail:hover {
  text-decoration: none;
  background: rgba(14, 14, 23, 0.15);
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: clamp(56px, 4.1666666667vw, 80px) 0;
}
#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1080px;
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-top: clamp(30px, 2.0833333333vw, 40px);
  row-gap: clamp(30px, 2.0833333333vw, 40px);
}
#footer .footer__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  letter-spacing: var(--letter-spacing-sm);
  gap: clamp(20px, 1.5625vw, 30px) 20px;
}
#footer .footer__info-address {
  width: 100%;
  line-height: var(--line-height-base-min);
  margin: var(--margin-height-base-min) 0;
}
#footer .footer__info-item {
  line-height: 1.47059;
}
#footer .footer__info-item dt {
  width: 90px;
  margin-right: 10px;
}
#footer .footer__sns {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#footer .footer__sns-item a {
  width: 30px;
}

/*フッターナビ
-----------------------------*/
.fnav__list {
  display: grid;
  grid-template: repeat(5, 1fr)/1fr 1fr;
  grid-auto-flow: column;
  row-gap: clamp(30px, 2.0833333333vw, 40px);
}
.fnav__link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.fnav__link span {
  display: block;
  letter-spacing: var(--letter-spacing-sm);
  margin-right: calc(var(--letter-spacing-sm) * -1);
}
.fnav__link .en {
  font-size: var(--font-size-gl);
  font-family: var(--font-family-ubuntu);
  font-weight: var(--font-weight-bold);
  margin: -0.2em 0 0.45em;
}
.fnav__link .ja {
  font-size: 1.5rem;
  margin-bottom: -0.26666667em;
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-xs);
  padding: 14px 0 15px;
}
.copy p {
  letter-spacing: var(--letter-spacing-sm);
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  bottom: 10px;
  right: 10px;
}

/*サイドボタン
-----------------------------*/
#side {
  bottom: 10px;
  right: 10px;
}

/*===============================================
  visual
===============================================*/
.visual:has(.visual__main) {
  padding-top: clamp(50px, 3.6458333333vw, 70px);
}
.visual:has(.visual__sub) {
  padding-top: clamp(36px, 2.6041666667vw, 50px);
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  height: clamp(560px, 43.75vw, 840px);
}
.visual__main-catch {
  width: min(620px, 32.292%);
  margin-left: max(50% - 880px, 4.167%);
}
.visual__main-movie {
  width: 70.3125%;
  height: 90.4762%;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  justify-content: flex-start;
  height: clamp(280px, 20.8333333333vw, 400px);
}
.visual__sub::before {
  width: min(50% + 340px, 67.709%);
}
.visual__sub-catch {
  padding: clamp(40px, 3.125vw, 60px);
  margin-left: max(50% - 900px, 3.125%);
  box-shadow: 0 0 0 clamp(3px, 0.2604166667vw, 5px) var(--color-text) inset;
}
.visual__sub-catch > span {
  font-size: clamp(3.6rem, 2.6041666667vw, 5rem);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.visual__sub-catch::after {
  font-size: clamp(1.4rem, 1.0416666667vw, 2rem);
  line-height: 1.9;
  padding: 0 1em;
  margin-top: 1em;
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.gnav__link {
  display: block;
  position: relative;
}
.gnav__link > span {
  display: block;
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
  transition: all 0.24s ease-out;
}
.gnav__link > span.en {
  font-family: var(--font-family-ubuntu);
  font-weight: var(--font-weight-bold);
}
.gnav__link > span.ja {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  touch-action: none;
}
.gnav__link[aria-current=page] .en, .gnav__link:hover .en {
  opacity: 0;
}
.gnav__link[aria-current=page] .ja, .gnav__link:hover .ja {
  opacity: 1;
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 40px;
}
.breadcrumb__list {
  width: 1080px;
  font-size: 1.3rem;
}
.breadcrumb__item {
  line-height: calc(1em + 10px);
  letter-spacing: var(--letter-spacing-sm);
  margin: -5px 0;
}
.breadcrumb__item::after {
  width: 8px;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: clamp(100px, 6.25vw, 120px) 0;
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
.com-tel {
  gap: 10px 20px;
}
.com-tel-num {
  font-size: 3.5rem;
  letter-spacing: var(--letter-spacing-sm);
}
.com-tel-num::before {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.com-tel-num span {
  margin: -8px calc(var(--letter-spacing-sm) * -1) -2px 0;
}
.com-tel .com-replace {
  height: 13px;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 350px;
  max-width: 100%;
  height: 60px;
}
.com-btn::after {
  width: 25px;
  right: 30px;
}
.com-btn--line::before {
  width: 30px;
  margin-right: 20px;
}
.com-btn--mail::before {
  width: 20px;
  margin-right: 20px;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  width: 350px;
  vertical-align: middle;
  padding: 18px 50px;
  border-bottom: solid 1px #fff;
}
.com-table tr td {
  vertical-align: middle;
  padding: 18px 50px;
  border-bottom: solid 1px var(--color-text);
}
.com-table tr:last-child th,
.com-table tr:last-child td {
  border-bottom: none;
}

/*テキストボックス
-----------------------------*/
.com-text {
  margin: var(--margin-height-base) 0;
}
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding: 2.5em 0;
  box-shadow: 0 0 0 4px var(--color-text) inset;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-gl);
  margin-bottom: 60px;
}
.com-title01 .en {
  font-size: var(--font-size-xxxl);
  letter-spacing: var(--letter-spacing-base);
  margin: -0.1333334em calc(var(--letter-spacing-base) * -1) -0.1333334em 0;
}
.com-title01 .en + .ja {
  margin-top: calc(1em + var(--margin-height-gl));
}
.com-title01 .en:has(img) {
  font-size: 1rem;
}
.com-title01 .ja {
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-xl);
  margin-right: calc(var(--letter-spacing-xl) * -1);
}
.com-title01 .ja:first-of-type {
  margin-top: var(--margin-height-gl);
}
.com-title01 .ja:last-of-type {
  margin-bottom: var(--margin-height-gl);
}
.com-title01 .ja:has(+ .en) {
  margin-bottom: calc(1em + var(--margin-height-gl));
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-xl);
}
.com-title02 > span {
  line-height: var(--line-height-xl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title02 > span:first-of-type {
  margin-top: var(--margin-height-xl);
}
.com-title02 > span:last-of-type {
  margin-bottom: var(--margin-height-xl);
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding-top: 100px;
}
.com-contact__box {
  padding: 0 120px 85px;
}
.com-contact__box::before {
  height: calc(100% - var(--font-size-xxxl) / 2 + var(--font-size-xxxl) * 0.1333334);
  border-width: 5px;
}
.com-contact__title .en {
  min-width: 6em;
  padding: 0 0.25em;
  margin-right: 0;
}
.com-contact__title .en::before, .com-contact__title .en::after {
  height: 5px;
  width: calc(540px - 50%);
}
.com-contact__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.com-contact__btn {
  width: calc(50% - 20px);
  height: 70px;
}
.com-contact__btn a {
  width: 100%;
  height: 100%;
}
.com-contact__tel {
  flex-direction: row;
  padding-top: 40px;
  margin-top: 40px;
  border-top: solid 2px #fff;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
.top-news__box {
  display: grid;
  grid-template-columns: auto 1fr 110px;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.top-news__box::before {
  content: "";
  width: calc(50vw + 540px);
  min-width: 1180px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
.top-news__title {
  align-items: flex-start;
  font-size: var(--font-size-base);
  margin-bottom: 0;
}
.top-news__title .en img {
  height: 30px;
}
.top-news__title .en + .ja {
  margin-top: calc(11px + var(--margin-height-gl));
}
.top-news__item {
  line-height: var(--line-height-base-min);
  letter-spacing: var(--letter-spacing-sm);
}
.top-news__item-link {
  grid-template: "date title" auto "tag tag" auto/110px 1fr;
}
.top-news__item-tags {
  font-size: var(--font-size-sm);
  line-height: calc(1em + 10px);
  margin: -5px 0;
}
.top-news__btn {
  align-items: flex-start;
  flex-direction: column;
  row-gap: 20px;
  height: 137px;
  padding: 0 calc(50% - 1.7em);
}
.top-news__btn > span {
  display: block;
  width: 3.4em;
}
.top-news__btn::after {
  display: block;
  width: 25px;
  height: 6px;
  position: relative;
  top: inherit;
  right: inherit;
}

/*確かな技術、圧倒的スピード。
多彩な工事に対応。
-----------------------------*/
.top-about {
  padding-top: 100px;
}
.top-about .inbox {
  min-height: 540px;
  padding-left: 550px;
}
.top-about__image {
  width: calc(50vw - 60px);
  max-width: 900px;
  min-width: 540px;
  position: absolute;
  top: -100px;
  right: calc(50% + 60px);
  z-index: 1;
}
.top-about__image img {
  width: 100%;
  height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about__title {
  text-align: left;
  margin: 0 5px 60px;
}
.top-about__title::before {
  content: "";
  aspect-ratio: 1;
  width: 240px;
  background: var(--color-text);
  position: absolute;
  top: -80px;
  left: calc(100% - 135px);
  z-index: -1;
}
.top-about__title > span {
  width: 100%;
}
.top-about__title .en {
  text-align: right;
  -webkit-mask: url(../img/index/en_about.svg) no-repeat right center/contain;
          mask: url(../img/index/en_about.svg) no-repeat right center/contain;
  background: linear-gradient(to left, #fff 135px, var(--color-text) 135px);
}
.top-about__title .en img {
  opacity: 0;
}
.top-about__title .en + .ja {
  padding-top: calc(30px + var(--margin-height-gl));
  margin-top: 33px;
  margin-right: 0;
}
.top-about__title .en + .ja::before {
  content: "";
  width: calc(100% + 20vw - 139px);
  max-width: 765px;
  min-width: 645px;
  height: 3px;
  background: linear-gradient(to left, #fff 135px, var(--color-text) 135px);
  position: absolute;
  right: 0;
  bottom: 100%;
  z-index: -1;
}
.top-about__text {
  padding: calc(100px + var(--margin-height-base)) 0;
  margin: 0;
  position: relative;
  z-index: 0;
}
.top-about__text::before {
  content: "";
  width: calc(50vw + 110px);
  min-width: 750px;
  height: 100%;
  border: solid 1px var(--color-text);
  border-right: none;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: -1;
}

/*私たちの強み
-----------------------------*/
.top-feature {
  padding: 60px 0;
}
.top-feature::before {
  max-width: 1680px;
}
.top-feature__box {
  padding: 80px 0 60px;
}
.top-feature__box::before {
  width: calc(100vw - 120px);
  max-width: 1280px;
  min-width: 1080px;
}
.top-feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.top-feature__item {
  width: 300px;
}
.top-feature__item-icon {
  margin-bottom: 30px;
}
.top-feature__item-icon img {
  width: 126px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.top-feature__item-txt {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  margin: var(--margin-height-xl) 0;
}
.top-feature__btn {
  margin: 80px auto 0;
}

/*事業内容
-----------------------------*/
.top-business__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
  padding: 70px 0;
}
.top-business__inner::before {
  width: calc(100vw - 40px);
  max-width: calc(50vw + 640px);
  min-width: 1160px;
  right: inherit;
  left: min(-60px, 50% - 50vw);
}
.top-business__title {
  align-items: flex-start;
  margin-bottom: 0;
}
.top-business__text {
  letter-spacing: var(--letter-spacing-sm);
  line-height: var(--line-height-base-mid);
  margin: 0;
  padding-left: 80px;
  border-left: solid 3px #fff;
}
.top-business__images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 120px;
  margin-top: 80px;
  position: relative;
  z-index: 0;
}
.top-business__images::before {
  content: "";
  width: calc(100vw - 60px);
  max-width: 1280px;
  min-width: 1140px;
  height: calc(100% + 20px);
  box-shadow: 0 0 0 6px #fff inset;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -110px;
  z-index: -2;
}
.top-business__image figcaption {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-xl);
  padding: 5px 20px;
  margin-top: -20px;
}
.top-business__btn {
  margin: 80px auto 0;
}
.top-business:has(+ .top-works) {
  padding-bottom: 0;
}

/*施工実績
-----------------------------*/
.top-works {
  padding: clamp(120px, 7.8125vw, 150px) 0;
}
.top-works .inbox {
  width: 920px;
  display: grid;
  grid-template: "title btn" auto "list list" auto/auto auto;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: 40px;
}
.top-works__title {
  margin-bottom: 20px;
  grid-area: title;
}
.top-works__title .en {
  padding-bottom: 1px;
}
.top-works__title .en img {
  height: 48px;
}
.top-works__title .en::before {
  width: calc(50vw - 460px + 100%);
  min-width: calc(100% + 140px);
  height: 5px;
}
.top-works__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  grid-area: list;
}
.top-works__item {
  width: 280px;
}
.top-works__btn {
  grid-area: btn;
  margin-left: auto;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr {
  padding-top: 100px;
}
.top-bnr::before {
  width: calc(50% - 560px);
  min-width: 160px;
  height: 320px;
}
.top-bnr__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 120px;
       column-gap: 120px;
  align-items: flex-start;
  width: calc(100% - 120px);
  max-width: 1280px;
  padding-top: 20px;
}
.top-bnr__item {
  padding-bottom: 20px;
  border-bottom-width: 3px;
}
.top-bnr__item-link::before {
  font-size: var(--font-size-xxxl);
  top: -23px;
  left: -36px;
}
.top-bnr__item-image {
  margin-bottom: 30px;
}
.top-bnr__item-image img {
  width: 100%;
  min-height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-bnr__item-title {
  font-size: 3rem;
  line-height: 1;
}
.top-bnr__item-view {
  line-height: var(--line-height-base-min);
}
.top-bnr__item-view::after {
  width: 25px;
  margin-left: 20px;
}

/*===============================================
  事業内容
===============================================*/
/*事業内容　一覧
-----------------------------*/
.business-list__items {
  padding-top: 20px;
}
.business-list__item {
  min-height: 450px;
  margin-bottom: 100px;
  position: relative;
  z-index: 0;
}
.business-list__item-title {
  padding: 20px 0 23px;
  margin-bottom: 60px;
}
.business-list__item-title::after {
  content: "";
  width: 630px;
  height: 3px;
  background: var(--color-text);
  position: absolute;
  bottom: 0;
  z-index: -2;
}
.business-list__item-image {
  width: calc(50vw - 40px);
  max-width: 640px;
  min-width: 560px;
  position: absolute;
  top: 0;
}
.business-list__item-image::before {
  width: 240px;
  bottom: -20px;
}
.business-list__item-image img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-list__item:nth-of-type(2n + 1) {
  padding-left: 620px;
}
.business-list__item:nth-of-type(2n + 1) .business-list__item-title {
  align-items: flex-end;
  text-align: right;
}
.business-list__item:nth-of-type(2n + 1) .business-list__item-image {
  right: 50%;
}
.business-list__item:nth-of-type(2n + 1) .business-list__item-image::before {
  left: -20px;
}
.business-list__item:nth-of-type(2n) {
  padding-right: 620px;
}
.business-list__item:nth-of-type(2n) .business-list__item-image {
  left: 50%;
}
.business-list__item:nth-of-type(2n) .business-list__item-image::before {
  right: -20px;
}
.business-list__box {
  padding-top: 120px;
}
.business-list__box-title {
  padding: 27px 50px 28px;
}
.business-list__box-text {
  text-align: center;
  padding: calc(62px + var(--margin-height-base)) 60px calc(60px + var(--margin-height-base));
  box-shadow: 0 0 0 3px var(--color-text) inset;
  margin-top: -3px;
}

/*私たちの強み
-----------------------------*/
.business-feature {
  padding: 60px 0;
}
.business-feature::before {
  max-width: 1280px;
}
.business-feature__box {
  padding: 80px 150px;
}
.business-feature__item {
  display: grid;
  grid-template: "icon title" auto "icon text" auto/200px 1fr;
  gap: 40px 60px;
  padding: 20px 0;
  margin-bottom: 40px;
}
.business-feature__item::before {
  font-size: var(--font-size-gl);
  top: 0;
  left: 0;
}
.business-feature__item-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-area: icon;
  padding-left: 20px;
  position: relative;
}
.business-feature__item-icon::after {
  content: "";
  width: 3px;
  height: calc(100% + 40px);
  background: var(--color-text);
  position: absolute;
  top: -20px;
  right: 0;
  z-index: -1;
}
.business-feature__item-title {
  grid-area: title;
}
.business-feature__item-text {
  letter-spacing: var(--letter-spacing-sm);
  grid-area: text;
}

/*施工実績
-----------------------------*/
.business-works::before {
  content: "";
  width: calc(50% - 240px);
  height: 220px;
  background: var(--color-text);
  position: absolute;
  top: clamp(100px, 6.25vw, 120px);
  left: 0;
  z-index: 0;
}
.business-works .inbox {
  display: grid;
  grid-template: "title btn" auto "list list" auto/auto auto;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: 40px;
}
.business-works__title {
  align-items: flex-start;
  text-align: left;
  padding-top: 60px;
  margin-bottom: 20px;
  grid-area: title;
}
.business-works__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  grid-area: list;
}
.business-works__item {
  width: 340px;
}
.business-works__btn {
  grid-area: btn;
  margin-left: auto;
}

/*===============================================
  施工実績
===============================================*/
/* 施工実績　一覧
-----------------------------*/
.works-list__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: 80px;
  padding-top: 20px;
}
.works-list__item {
  width: 500px;
}
.works-list__item-image {
  margin-bottom: 30px;
}
.works-list__item-title {
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.works-list__item-view {
  line-height: var(--line-height-base-min);
  margin: var(--margin-height-base-min) 0;
}
.works-list__item-view::after {
  width: 25px;
  margin-left: 20px;
}

/* 施工実績　詳細
-----------------------------*/
.works-detail__title {
  border-left-width: 5px;
  padding-left: 15px;
  margin-bottom: 60px;
}
.works-detail__images {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.works-detail__images:has(+ .works-detail__text) {
  margin-bottom: 60px;
}
.works-detail__text {
  padding: calc(60px + var(--margin-height-base)) 60px;
  box-shadow: 0 0 0 1px var(--color-text) inset;
}
.works-detail .paginated__list {
  border-top: none;
  padding-top: 0;
}

/*===============================================
  採用情報
===============================================*/
/*求める人物像
-----------------------------*/
.recruit-profile {
  padding: 60px 0;
  margin-top: clamp(100px, 6.25vw, 120px);
}
.recruit-profile::before {
  max-width: 1280px;
}
.recruit-profile__box {
  padding: 80px;
}
.recruit-profile__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  gap: 40px 60px;
}
.recruit-profile__item {
  font-size: var(--font-size-xl);
  padding: 2px 0 3px 50px;
}
.recruit-profile__item::before {
  width: 30px;
  aspect-ratio: 1;
}
.recruit-profile__item > span {
  line-height: var(--line-height-xl);
  margin: var(--margin-height-xl) 0;
}

/*働く魅力
-----------------------------*/
.recruit-benefits__title {
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: row;
  text-align: left;
  padding: 60px 0;
}
.recruit-benefits__title::before {
  width: calc(50vw + 216px);
  min-width: 816px;
  right: calc(50% - 216px);
}
.recruit-benefits__title .ja {
  margin-left: 30px;
}
.recruit-benefits__list {
  padding-top: 80px;
}
.recruit-benefits__item {
  min-height: 400px;
  padding-top: 40px;
  margin-bottom: 80px;
  position: relative;
}
.recruit-benefits__item-title {
  padding: 10px 20px;
  margin-bottom: 40px;
}
.recruit-benefits__item-title::before {
  width: 50px;
  font-size: var(--font-size-gl);
  letter-spacing: var(--letter-spacing-base);
}
.recruit-benefits__item-title > span {
  width: calc(100% - 70px);
  margin: 0 !important;
}
.recruit-benefits__item-text {
  letter-spacing: var(--letter-spacing-sm);
}
.recruit-benefits__item-image {
  width: calc(50vw - 60px);
  max-width: 620px;
  min-height: 540px;
  position: absolute;
  top: 0;
}
.recruit-benefits__item-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-benefits__item:nth-of-type(2n + 1) {
  padding-left: 580px;
}
.recruit-benefits__item:nth-of-type(2n + 1) .recruit-benefits__item-image {
  right: calc(50% + 20px);
}
.recruit-benefits__item:nth-of-type(2n) {
  padding-right: 580px;
}
.recruit-benefits__item:nth-of-type(2n) .recruit-benefits__item-image {
  left: calc(50% + 20px);
}

/*先輩社員に聞いた職場の雰囲気
-----------------------------*/
.recruit-culture {
  padding-bottom: 80px;
}
.recruit-culture::before {
  width: 1080px;
  border-width: 6px;
}
.recruit-culture__list {
  padding: 0 80px;
}
.recruit-culture__item {
  grid-template-columns: 1fr 1.36fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-top: 4px;
  margin-bottom: 40px;
}
.recruit-culture__label {
  font-size: var(--font-size-gl);
  line-height: 1;
}
.recruit-culture__label--left {
  text-align: right;
}
.recruit-culture__scale::before {
  height: 5px;
}
.recruit-culture__point {
  width: 20px;
  margin: 2px 0;
}
.recruit-culture__point--active::before {
  width: 30px;
  bottom: -2px;
}

/*募集要項
-----------------------------*/
.recruit-positions__box {
  margin-bottom: 80px;
}
.recruit-positions__box-title {
  margin-bottom: 40px;
}

/*===============================================
  会社情報
===============================================*/
/*代表挨拶
-----------------------------*/
.company-message:has(+ .company-info) {
  padding-bottom: 80px;
}
.company-message__title .en {
  min-width: 8em;
  padding: 0 0.5em;
}
.company-message__title .en::before, .company-message__title .en::after {
  width: calc(540px - 50%);
  height: 3px;
}
.company-message__text {
  padding: 0 60px calc(80px + var(--margin-height-base));
  border-bottom-width: 3px;
}
.company-message__owner {
  font-size: var(--font-size-gl);
  gap: 20px;
  padding-top: 20px;
}
.company-message__owner-label {
  width: 9em;
  line-height: 2;
}
.company-message__owner-name {
  font-size: var(--font-size-xl);
}
.company-message__owner-name span {
  font-size: var(--font-size-gl);
  margin-right: 1em;
}

/*会社情報
-----------------------------*/
.company-info {
  padding: 0;
}
.company-info .inbox {
  padding: clamp(100px, 6.25vw, 120px) 0;
}
.company-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.company-info__inner .company-info__table {
  width: 570px;
}
.company-info__inner .company-info__table th {
  width: 160px;
  padding: 18px 30px;
}
.company-info__inner .company-info__table td {
  padding: 18px 30px;
}
.company-info__inner .company-info__image {
  width: 470px;
}
.company-info__inner .company-info__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-info__table td span:nth-of-type(2) {
  display: block;
}
.company-info__table td .com-replace {
  padding: 5px 0;
}
.company-info__table td .com-replace img {
  height: 13px;
}
.company-info__map {
  height: clamp(300px, 23.4375vw, 450px);
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__list {
  padding: 60px;
}
.news-archive__item {
  line-height: var(--line-height-base-min);
  letter-spacing: var(--letter-spacing-sm);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.news-archive__item-link {
  grid-template: "date title" auto "tag tag" auto/110px 1fr;
}
.news-archive__item-tags {
  font-size: var(--font-size-sm);
  line-height: calc(1em + 10px);
  margin: -5px 0;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 50px;
}
.tag-select__box {
  min-width: 240px;
}
.tag-select__box::after {
  right: 18px;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 12px 48px 12px 12px;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__title {
  border-left-width: 5px;
  padding-left: 15px;
  margin-bottom: 30px;
}
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 20px;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form {
  padding: 100px 0;
}
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 380px;
  text-align: left;
  vertical-align: top;
  line-height: 2.2353;
  padding: 18px 30px;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-xs);
  line-height: 1;
  margin-left: 1em;
}
.contact-form__table tr th .remarks {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.2353;
  padding: 18px 30px;
}
.contact-form .contact-submits-wrap {
  padding-top: 32px;
}
.contact-form .contact-submits-wrap > * {
  width: 350px;
  height: 60px;
  margin: 20px 15px 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete {
  padding: 100px 0;
}
.contact-complete__text {
  text-align: center;
}

/*==================================================
プライバシーポリシー
================================================== */
.privacy-policy {
  padding: 100px 0;
}
.privacy-policy__box {
  padding: 54px;
  border-width: 6px;
  margin-bottom: 40px;
}
.privacy-policy__box-title {
  padding-bottom: 20px;
  margin-bottom: 30px;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list {
  padding: 100px 0;
}
.sitemap-list__items {
  display: grid;
  grid-template: repeat(5, 1fr)/repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
}
.sitemap-list__link {
  padding: 0.5em 1em;
}
.sitemap-list__link .en {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: var(--letter-spacing-sm);
  margin-right: 0.5em;
}
.sitemap-list__link .ja {
  font-size: var(--font-size-sm);
}

/*===============================================
  404エラー
===============================================*/
.error-message {
  padding: 100px 0;
}