@charset "utf-8";

/* リセット */
@import url(css/foundation/reset.css);
/* 基本設定 */
@import url(css/foundation/base.css);
/* 各レイアウト */
@import url(css/layout/layout.css);
/* ヘッダー */
@import url(css/layout/header.css);
/*  オフ゛シ゛ェクトファイル
(.c-共通パーツ・.p-各セクションの細かいパーツ・.u-わずかな調整、特定の要素だけの色や余白） */
@import url(css/layout/object.css);

@media print {

    html,
    body {
        overflow-y: visible;
        overflow-x: visible;
        zoom: 90%;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .print {
        page-break-before: always;
    }

    .l-topImage__inner{
        width: 100%;
    }

    .scroll-indicator{
        top: 220px;
        .scroll-text{
            color: #fff;
        }

        .scroll-line{
            background: #fff;
        }
    }

    .l-topCopy{
        h3{
            font-size: 50px;
        }
    }

    .l-other {
        flex-direction: column;
    }

    .l-other__wrapper {
        padding: 50px;
        width: 100%;
        height: auto;
        background-image: url(../../images/setooohashi.jpg);
    }

    .l-otherBox {
        width: 80%;
        text-align: center;

        &:nth-last-child(2) {
            border-right: none;
            border-bottom: 3px solid #fff;
            padding-bottom: var(--miniMargin);
        }

        &:nth-last-child(1) {
            padding-top: var(--miniMargin);
        }
    }

        .l-foot__contact {
        width: calc(100% - 40px);
        margin: auto;
        text-align: center;
        flex-direction: column;
        gap: 0;

        div {
            border-left: none;
            padding-top: 10px;
        }

        p {
            border-left: none;
            border-top: 1px solid #fff;
            line-height: 1.2;
            padding-top: 10px;
            margin: 0 auto;
        }
    }

    .l-topImage__inner{
        height: 500px;
    }


}
/* 採用情報：募集要項（2列の表風）2026.02.26追記 */
.recruit-table{
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.recruit-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid #ddd;
}

.recruit-row:first-child{
  border-top: none;
}

.recruit-th,
.recruit-td{
  padding: 14px 16px;
  line-height: 1.7;
}

.recruit-th{
  background: #f6f6f6;
  font-weight: 700;
  border-right: 1px solid #ddd;
}

.recruit-td{
  background: #fff;
}

/* 文字が長い行の見やすさ */
.recruit-td br{
  line-height: 2;
}

/* SP：縦積み */
@media (max-width: 600px){
  .recruit-row{
    grid-template-columns: 1fr;
  }
  .recruit-th{
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}