@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;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

.com-table table,
.com-table table tbody,
.com-table table th,
.com-table table tr,
.com-table table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-sm);
  padding-top: 2.5em;
}
.pagenation li {
  width: 2em;
  line-height: 2.15;
  margin: 0.5em 0.5em 0;
}

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

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
  font-size: clamp(1.3rem, 3.5555555556vw, 1.6rem);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  min-height: 72px;
  padding: 15px 0;
}
#header .header__logo img {
  height: clamp(40px, 11.1111111111vw, 50px);
}

/*===============================================
  footer
===============================================*/
#footer .footer__other {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2em;
  width: 90%;
  padding: min(56px, 12.4444444444vw) 0 min(45px, 10vw);
  margin: 0 auto;
}
#footer .footer__logo {
  text-align: center;
}
#footer .footer__logo img {
  height: clamp(40px, 12.4444444444vw, 56px);
}
#footer .footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: var(--line-height-base-mid);
  gap: 0.5em 1em;
}
#footer .footer__info-address {
  width: 100%;
  text-align: center;
}
#footer .footer__info-item dt {
  padding: 0 0.5em;
  margin-right: 0.5em;
}
#footer .footer__sns {
  gap: clamp(24px, 6.6666666667vw, 30px);
}
#footer .footer__sns li {
  width: clamp(40px, 11.1111111111vw, 50px);
}

/*フッターナビ
-----------------------------*/
.fnav__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  background: rgba(255, 254, 254, 0.3);
  gap: 1px;
  padding: 1px 0;
}
.fnav__item {
  width: calc(50% - 0.5px);
  background: var(--color-text);
}
.fnav__item:nth-last-of-type(2n + 1):first-of-type {
  width: 100%;
}
.fnav__link {
  color: #fff;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  padding: 1em;
}
.fnav__link span {
  display: block;
}
.fnav__link .en {
  font-size: var(--font-size-gl);
  font-family: var(--font-family-ubuntu);
}
.fnav__link .ja {
  font-size: var(--font-size-xs);
  font-family: var(--font-family-kaku);
  letter-spacing: var(--letter-spacing-base);
}
.fnav__link:hover, .fnav__link[aria-current=page] {
  color: var(--color-gray);
}

/*コピーライト
-----------------------------*/
.copy {
  font-size: var(--font-size-xs);
  padding: 1.5em 0;
}
.copy p {
  line-height: var(--line-height-xs);
}

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

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

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: calc(80dvh - 80px);
  min-height: min(550px, 140vw - 80px);
}
.visual__main-catch {
  width: 67.8125%;
  max-width: 310px;
  margin-left: 2.5vw;
}
.visual__main-movie {
  width: 80%;
  height: 80%;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: min(300px, 66.6666666667vw);
}
.visual__sub-catch {
  min-width: 64%;
  align-items: center;
  box-shadow: 0 0 0 min(3px, 0.6666666667vw) var(--color-text) inset;
  background: rgba(255, 255, 255, 0.6);
  padding: min(30px, 6.6666666667vw);
}
.visual__sub-catch > span {
  font-size: min(3.2rem, 7.1111111111vw);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.visual__sub-catch::after {
  font-size: min(1.6rem, 3.5555555556vw);
  line-height: 2;
  padding: 0 1em;
  margin-top: 0.5em;
}

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

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  font-size: var(--font-size-sm);
  padding-top: 1em;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  line-height: var(--line-height-sm);
}
.breadcrumb__item::after {
  width: 0.5em;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: min(80px, 17.7777777778vw) 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel {
  gap: 10px 20px;
}
.com-tel-num {
  font-size: var(--font-size-xxxl);
  letter-spacing: var(--letter-spacing-sm);
}
.com-tel-num::before {
  width: 0.6em;
  margin-right: 10px;
}
.com-tel-num span {
  margin: -0.2em calc(var(--letter-spacing-sm) * -1) -0.05em 0;
}
.com-tel .com-replace {
  font-size: 1em;
  height: var(--font-size-sm);
  margin-top: 0.25em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: min(360px, 75vw);
  max-width: 100%;
  height: 60px;
}
.com-btn::after {
  width: 20px;
  right: 8%;
}
.com-btn--line, .com-btn--mail {
  height: 80px;
}
.com-btn--line::after, .com-btn--mail::after {
  display: none;
}
.com-btn--line::before {
  width: 40px;
  margin-right: 20px;
}
.com-btn--mail::before {
  width: 30px;
  margin-right: 15px;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  padding: 1em;
}
.com-table tr td {
  padding: 1em;
}

/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: 1em;
}
.com-text br {
  display: none;
}

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

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  margin-bottom: min(45px, 10vw);
}
.com-title01 .en {
  font-size: var(--font-size-xxxl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title01 .en + .ja {
  margin-top: 0.5em;
}
.com-title01 .en img {
  height: 1em;
}
.com-title01 .ja {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title01 .ja:has(+ .en) {
  margin-bottom: 0.5em;
}

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

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact__box {
  padding: 0 1.5em 2em;
}
.com-contact__box::before {
  height: calc(100% - var(--font-size-xxxl) / 2);
  border-width: 3px;
}
.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: 3px;
  width: calc(45vw - 50%);
}
.com-contact__btns {
  width: min(360px, 100%);
  margin: 0 auto;
}
.com-contact__btns:not(:has(.com-btn--line)) .com-btn {
  height: clamp(60px, 17.7777777778vw, 80px);
}
.com-contact__btn {
  margin-bottom: 15px;
}
.com-contact__btn:last-child {
  margin-bottom: 0;
}
.com-contact__btn a {
  width: 100%;
}
.com-contact__tel {
  padding-top: min(36px, 8vw);
  margin-top: min(36px, 8vw);
  border-top: solid 2px #fff;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
.top-news {
  padding-top: min(120px, 26.6666666667vw);
  padding-bottom: 0;
}
.top-news__box {
  display: grid;
  grid-template: "title title" auto "list btn" auto/1fr clamp(56px, 15.5555555556vw, 70px);
}
.top-news__title {
  align-items: flex-start;
  margin-bottom: -2px;
  grid-area: title;
}
.top-news__title .en img {
  height: min(45px, 10vw);
}
.top-news__title .ja {
  display: none;
}
.top-news__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1.5em;
  grid-area: list;
  position: relative;
  z-index: 0;
}
.top-news__list::before {
  content: "";
  width: calc(100% + 5vw);
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}
.top-news__item {
  line-height: var(--line-height-base-mid);
  letter-spacing: var(--letter-spacing-sm);
}
.top-news__item-link {
  grid-template: "date title" auto "tag tag" auto/6em 1fr;
}
.top-news__item-tags {
  font-size: var(--font-size-sm);
  line-height: calc(1em + 10px);
  margin: -5px 0;
}
.top-news__btn {
  flex-direction: column;
  row-gap: 10px;
  height: 80px;
  font-size: var(--font-size-sm);
  padding: 0 0.75em;
  grid-area: btn;
}
.top-news__btn > span {
  display: block;
  letter-spacing: 0;
}
.top-news__btn::after {
  display: block;
  width: 100%;
  height: 5px;
  -webkit-mask-position: left bottom;
          mask-position: left bottom;
  position: relative;
  top: inherit;
  right: inherit;
}

/*確かな技術、圧倒的スピード。
多彩な工事に対応。
-----------------------------*/
.top-about__image {
  margin-left: -5vw;
}
.top-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-about__title {
  align-items: flex-end;
  padding-bottom: min(45px, 10vw);
  border-bottom: solid 2px var(--color-text);
  margin-top: -1em;
}
.top-about__title .en {
  filter: drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.6)) drop-shadow(1px 0 0 rgba(255, 255, 255, 0.6)) drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6)) drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.6));
}
.top-about__title .en + .ja {
  margin-top: 1em;
}
/*私たちの強み
-----------------------------*/
.top-feature {
  padding: min(45px, 10vw) 0;
}
.top-feature__box {
  width: 100%;
  padding: min(56px, 12.4444444444vw) 5%;
}
.top-feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5em 1.5em;
}
.top-feature__item {
  width: minmax(160px, 1fr);
}
.top-feature__item-icon {
  margin-bottom: 1em;
}
.top-feature__item-icon img {
  height: min(80px, 17.7777777778vw);
  aspect-ratio: 126/110;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-feature__btn {
  margin: 2.5em auto 0;
}

/*事業内容
-----------------------------*/
.top-business {
  padding-top: 0;
}
.top-business__inner {
  padding: min(56px, 12.4444444444vw) 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;
}
.top-business__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-flow: row;
  gap: 20px;
  padding-top: min(56px, 12.4444444444vw);
}
.top-business__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-business__image figcaption {
  font-size: var(--font-size-gl);
  line-height: var(--line-height-gl);
  padding: 5px 1em;
  margin-top: -1em;
}
.top-business__btn {
  margin: 2.5em auto 0;
}
.top-business:has(+ .top-works) {
  padding-bottom: min(45px, 10vw);
}

/*施工実績
-----------------------------*/
.top-works__title .en::before {
  width: calc(100% + 5vw);
  height: 3px;
}
.top-works__list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3%;
       column-gap: 3%;
}
.top-works__btn {
  margin: 2.5em auto 0;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr::before {
  width: 64%;
  height: min(200px, 44.4444444444vw);
}
.top-bnr__item {
  padding-bottom: 20px;
  border-bottom-width: 2px;
  margin-bottom: min(56px, 12.4444444444vw);
}
.top-bnr__item:last-of-type {
  margin-bottom: 0;
}
.top-bnr__item-link {
  align-items: flex-end;
}
.top-bnr__item-link::before {
  font-size: var(--font-size-xxxl);
  top: -0.25em;
  left: -0.3em;
}
.top-bnr__item-image {
  margin-bottom: 2em;
}
.top-bnr__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-bnr__item-title {
  font-size: var(--font-size-xxl);
  line-height: 1;
}
.top-bnr__item-view {
  line-height: var(--line-height-base-mid);
}
.top-bnr__item-view::after {
  width: 20px;
  margin-left: 1em;
}

/*===============================================
  事業内容
===============================================*/
/*事業内容　一覧
-----------------------------*/
.business-list__item {
  margin-bottom: min(80px, 17.7777777778vw);
}
.business-list__item-title {
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: solid 2px var(--color-text);
}
.business-list__item-image {
  margin-top: 1.5em;
}
.business-list__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-list__item-image::before {
  width: 25%;
  bottom: -0.75em;
}
.business-list__item:nth-of-type(2n + 1) .business-list__item-image::before {
  left: -0.75em;
}
.business-list__item:nth-of-type(2n) .business-list__item-image::before {
  right: -0.75em;
}
.business-list__box {
  padding-top: min(80px, 17.7777777778vw);
}
.business-list__box-title {
  padding: 0.75em 1em;
  margin-bottom: 0;
}
.business-list__box-title > span {
  word-break: keep-all;
}
.business-list__box-text {
  padding: 1.25em 1.5em;
  box-shadow: 0 0 0 2px var(--color-text) inset;
  margin-top: -2px;
}

/*私たちの強み
-----------------------------*/
.business-feature {
  padding: min(45px, 10vw) 0;
}
.business-feature__box {
  width: 100%;
  padding: min(56px, 12.4444444444vw) 5%;
}
.business-feature__item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 2px var(--color-text);
}
.business-feature__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.business-feature__item::before {
  width: 90%;
  font-size: var(--font-size-xxl);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.business-feature__item-icon {
  text-align: center;
  margin-bottom: 1em;
}
.business-feature__item-icon img {
  aspect-ratio: 126/110;
  height: min(80px, 17.7777777778vw);
  -o-object-fit: contain;
     object-fit: contain;
}
.business-feature__item-title {
  align-items: center;
}
.business-feature__item-text {
  letter-spacing: var(--letter-spacing-sm);
}

/*施工実績
-----------------------------*/
.business-works::before {
  width: calc(50% - 240px);
  height: 220px;
  top: min(80px, 17.7777777778vw);
}
.business-works__title {
  align-items: flex-start;
  text-align: left;
  padding: 2em 0;
}
.business-works__title::before {
  content: "";
  width: 80vw;
  max-width: calc(50vw + 150px);
  height: 100%;
  background: var(--color-text);
  position: absolute;
  top: 0;
  left: -5vw;
  z-index: -1;
}
.business-works__list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3%;
       column-gap: 3%;
}
.business-works__btn {
  margin: 2.5em auto 0;
}

/*===============================================
  施工実績
===============================================*/
/* 施工実績　一覧
-----------------------------*/
.works-list__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: min(45px, 10vw);
}
.works-list__item {
  width: 48%;
}
.works-list__item-image {
  margin-bottom: 1em;
}
.works-list__item-image img {
  aspect-ratio: 1.3333333333;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-list__item-title {
  font-size: var(--font-size-gl);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.works-list__item-title > span {
  line-height: var(--line-height-gl);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.works-list__item-view {
  line-height: var(--line-height-base-mid);
}
.works-list__item-view::after {
  width: 20px;
  margin-left: 0.75em;
}

/* 施工実績　詳細
-----------------------------*/
.works-detail__title {
  font-size: var(--font-size-gl);
  border-left-width: 3px;
  padding-left: 13px;
  margin-bottom: 1.5em;
}
.works-detail__title > span {
  line-height: var(--line-height-gl);
}
.works-detail__images {
  grid-template-columns: repeat(auto-fit, minmax(139px, 1fr));
  gap: 10px;
}
.works-detail__images:has(+ .works-detail__text) {
  margin-bottom: 2em;
}

/*===============================================
  採用情報
===============================================*/
/*求める人物像
-----------------------------*/
.recruit-profile {
  padding: min(45px, 10vw) 0;
  margin-top: min(80px, 17.7777777778vw);
}
.recruit-profile__box {
  width: 100%;
  padding: min(56px, 12.4444444444vw) 5%;
}
.recruit-profile__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.recruit-profile__item {
  font-size: var(--font-size-gl);
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}
.recruit-profile__item:last-of-type {
  margin-bottom: 0;
}
.recruit-profile__item::before {
  width: 1em;
  height: calc(var(--line-height-gl) * 1em);
}
.recruit-profile__item > span {
  line-height: var(--line-height-gl);
}

/*働く魅力
-----------------------------*/
.recruit-benefits__title {
  align-items: flex-start;
  text-align: left;
  padding: 2em 0;
}
.recruit-benefits__title::before {
  width: 88vw;
  max-width: calc(50vw + 190px);
  left: -5vw;
}
.recruit-benefits__title .en {
  line-height: 1.1;
  margin: -0.05em 0;
}
.recruit-benefits__list {
  padding-top: min(45px, 10vw);
}
.recruit-benefits__item {
  margin-bottom: min(64px, 14.2222222222vw);
}
.recruit-benefits__item-title {
  padding: 0.5em 0.5em;
}
.recruit-benefits__item-title::before {
  width: 2em;
  font-size: 0.8em;
  letter-spacing: var(--letter-spacing-sm);
}
.recruit-benefits__item-title > span {
  width: calc(100% - 2em);
  word-break: keep-all;
}
.recruit-benefits__item-text {
  letter-spacing: var(--letter-spacing-sm);
}
.recruit-benefits__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*先輩社員に聞いた職場の雰囲気
-----------------------------*/
.recruit-culture::before {
  border-width: 4px;
  border-left: none;
  border-right: none;
}
.recruit-culture__item {
  grid-template: "scale  scale" auto "left  right" auto/1fr 1fr;
  row-gap: 15px;
  margin-bottom: min(30px, 6.6666666667vw);
}
.recruit-culture__label {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.recruit-culture__label--left {
  grid-area: left;
}
.recruit-culture__label--right {
  grid-area: right;
  text-align: right;
}
.recruit-culture__scale {
  grid-area: scale;
  margin: 0 8%;
}
.recruit-culture__scale::before {
  height: 3px;
}
.recruit-culture__point {
  width: 1em;
}
.recruit-culture__point--active::before {
  width: 1.75em;
  bottom: -0.3em;
}

/*募集要項
-----------------------------*/
.recruit-positions__box {
  margin-bottom: min(64px, 14.2222222222vw);
}

/*===============================================
  会社情報
===============================================*/
/*代表挨拶
-----------------------------*/
.company-message:has(+ .company-info) {
  padding-bottom: min(56px, 12.4444444444vw);
}
.company-message__title .en {
  min-width: 6em;
  padding: 0 0.5em;
}
.company-message__title .en::before, .company-message__title .en::after {
  width: calc(45vw - 50%);
  height: 2px;
}
.company-message__text {
  padding-bottom: 2.5em;
  border-bottom-width: 2px;
}
.company-message__owner {
  padding-top: 1.5em;
  gap: 0.5em 1em;
}
.company-message__owner-label {
  width: 8em;
  line-height: 2;
}
.company-message__owner-name {
  font-size: var(--font-size-gl);
}
.company-message__owner-name span {
  font-size: 0.8em;
  margin-right: 0.5em;
}

/*会社情報
-----------------------------*/
.company-info {
  padding: 0;
}
.company-info .inbox {
  padding: min(80px, 17.7777777778vw) 0;
}
.company-info__table td span {
  margin-right: 1em;
}
.company-info__table td .com-replace {
  padding: 5px 0;
  font-size: 1em;
}
.company-info__table td .com-replace img {
  height: var(--font-size-xs);
}
.company-info__image {
  margin-top: 2em;
}
.company-info__image img {
  aspect-ratio: 1.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-info__map {
  height: min(450px, 100vw);
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__list {
  padding: 1.5em;
}
.news-archive__item {
  line-height: var(--line-height-base-mid);
  letter-spacing: var(--letter-spacing-sm);
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom-width: clamp(1px, 0.4444444444vw, 2px);
}
.news-archive__item-link {
  grid-template: "date title" auto "tag tag" auto/6em 1fr;
}
.news-archive__item-tags {
  font-size: var(--font-size-sm);
  line-height: calc(1em + 10px);
  margin: -5px 0;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 160px;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1em 2.5em 1em 1em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__title {
  font-size: var(--font-size-gl);
  border-left-width: 3px;
  padding-left: 13px;
  margin-bottom: 1em;
}
.news-detail__title > span {
  line-height: var(--line-height-gl);
}
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1.5em;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 40px;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-left: 0.5em;
}
.contact-form__table tr th .remarks {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.75em 1em;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 360px;
  height: 60px;
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 1.5em;
  margin-bottom: 2em;
}
.privacy-policy__box-title {
  font-size: var(--font-size-gl);
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
}
.privacy-policy__box-title > span {
  line-height: var(--line-height-gl);
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__item {
  margin-bottom: 10px;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em clamp(0px, 25vw - 80px, 1em);
  line-height: 1.5;
}
.sitemap-list__link > span {
  display: inline-block;
}
.sitemap-list__link .en {
  font-size: var(--font-size-xl);
  letter-spacing: 0;
  margin-right: 0.5em;
}
.sitemap-list__link .ja {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-sm);
}

/*===============================================
  404エラー
===============================================*/