@charset "utf-8";

/* ブラウザによるデフォルトのmarginとpaddingの差異を無くすために、ユニバーサルセレクタを利用して初期化 */
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  box-sizing: border-box;
  font-size: 16px;
  font-family: "YuGothic", "游ゴシック体", "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #000;
  background: #fff;
  line-height: 1.75;
}

.pc-none {
  display: none !important;
}

.sp-none {
  display: block !important;
}

.color-red {
  color: #f0532d;
}

.color_blue {
  color: #00559c;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

/* -------------------------
Layout
------------------------- */
/* 2つ並び */
.half-media {
  display: flex;
  justify-content: space-between;
}

.half-media__body:first-child {
  flex: 0 1 48.33333%;
  margin-right: 3.33333%;
}

.half-media__img {
  width: 100%;
}

.half-media__body:last-child {
  flex: 1;
}

.half-media__body>*:last-child {
  margin-bottom: 0;
}

/* 3つ並び */
.box_col_3 {
  display: flex;
  justify-content: space-between;
}

.box_col_3__item {
  width: calc(100% / 3 - 21.3333px);
}

.top_company__img {
  margin-bottom: 20px;
}

/* 子要素を親要素（インナー幅）からはみ出して画面いっぱいにする */
.full {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.content_wrapper {
  margin-bottom: 100px;
}

.content_wrapper .paragraph {
  margin-bottom: 30px;
}

.content_wrapper .paragraph:last-child {
  margin-bottom: 0px;
}

.ml_30 {
  margin-left: 30px;
}

.green_box {
  border: solid 2px #86ce78;
  border-radius: 12px;
  padding: 30px 0;
}

.blue_box {
  background-color: rgba(0, 85, 156, 0.04);
  padding: 8px;
  align-self: stretch !important;
  display: flex;
  align-items: center;
}

.blue_box p {
  padding-left: 20px;
  position: relative;
}

.blue_box p:before {
  content: "●";
  position: absolute;
  left: 2px;
  top: 6px;
  line-height: 1;
  color: #000;
}

.w-1070 {
  max-width: 1070px;
  width: 100%;
  margin: auto;
}

.w-80 {
  width: 80%;
  margin: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* -------------------------
Title
------------------------- */
.heading_lv1 {
  margin-bottom: 36px;
  text-align: center;
}

.heading_lv1_text {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.375rem;
  line-height: 114.088%;
  letter-spacing: 11px;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  margin-bottom: 36px;
  transform: scaleX(0.85);
}

.heading_lv1 img {
  height: 38px;
  width: auto;
}

.heading_lv1 img.sp-none {
  display: inline-block !important;
}

.heading_lv1 img.pc-none {
  display: none !important;
}

.heading_lv1_1 {
  margin-bottom: 40px;
}

.heading_lv1_1 img {
  height: 40px;
}

.intro_text {
  font-size: 1.375rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.heading_lv2 {
  font-size: 1.375rem;
  position: relative;
  margin-bottom: 18px;
  font-weight: 500;
}

.heading_lv2::before {
  content: "";
  background: url(../images/common/figure_12@2x.png);
  background-size: 100%;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 15px;
}

.heading_lv3 {
  font-size: 1.375rem;
  padding-left: 20px;
  padding-bottom: 5px;
  border-bottom: solid 1px #000;
  position: relative;
  font-weight: 500;
  margin-bottom: 32px;
}

.heading_lv3::before {
  content: "";
  width: 5px;
  height: 30px;
  background-color: #f0532d;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  margin-right: 16px;
}

.heading_lv4 {
  color: #00559c;
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-weight: 700;
}

.heading_lv5 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.heading_lv6 {
  background-color: #00559c;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 3px 8px;
  margin-bottom: 22px;
}

.heading_lv7 {
  font-size: 1.375rem;
  display: inline;
  background: linear-gradient(transparent 70%, #86ce78 70%);
}

.heading_step {
  font-size: 1.125rem;
  font-weight: 700;
  color: #00559c;
}

.heading_lv8 a {
  font-size: 1.375rem;
  color: #00559c;
  margin-bottom: 18px;
}

h5 {
  padding: 10px 0 6px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #00559c;
}

h6 {
  padding: 6px 0;
  font-size: 1rem;
  font-weight: 500;
}

.first_letter_blue::first-letter {
  color: #00559c;
}

.first_letter_org::first-letter {
  color: #f0532d;
}

/* -------------------------
Text
------------------------- */
p {
  font-size: 1rem;
}

.paragraph {
  margin-bottom: 58px;
}

.text_center {
  text-align: center;
}

.sp-left {
  text-align: center;
}

.blue_box_text {
  margin-bottom: 19px;
}

.blue_box_text span.vk_highlighter {
  background-color: #00559c;
  padding: 9px 10px;
  border-radius: 5px;
}

/* -------------------------
Link
------------------------- */
a {
  transition: opacity 0.3s ease;
  /* ← 追加 */
  font-size: 0.9375rem;
  color: #000;
}

a {
  outline: none;
}

.btn:focus,
.btn.focus {
  outline: none;
  box-shadow: none;
}

a:focus,
button:focus {
  outline: none;
}

a:hover {
  opacity: 0.6;
}

.btn {
  color: #000;
  padding-right: 102px;
  position: relative;
}

.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #00559c;
  border-bottom: 1px solid #00559c;
  transform: skew(45deg);
  transition: 0.3s;
}

.btn:hover::after {
  width: 40px;
	right:0;
}

.btn_2 {
  color: #000;
  background-color: #fff;
  position: relative;
  border: solid 1px #00559c;
  text-align: center;
  max-width: 416px;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_2::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 40px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #00559c;
  border-bottom: 1px solid #00559c;
  transform: skew(45deg);
  transition: 0.3s;
}

.btn_2:hover::after {
  width: 40px;
	right:20px;
}

.btn_news {
  color: #000;
  position: relative;
  padding-right: 60px;
}

.btn_news::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #00559c;
  border-bottom: 1px solid #00559c;
  transform: skew(45deg);
  transition: 0.3s;
}

.btn_news:hover::after {
  width: 40px;
	right:0;
}

/* -------------------------
Table
------------------------- */
/* 汎用テーブル */
.wp-block-table.definition_table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px 0;
  /* 横に6pxの隙間を作る */
}

.definition_table td,
.wp-block-table.definition_table td {
  border-top: 1px solid #d3d3d3;
  color: #000;
  word-break: break-word;
}

.definition_table th,
.definition_table td,
.wp-block-table.definition_table td:first-child {
  border-top: 1px solid #00559c;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 1rem 0.8rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
  vertical-align: middle;
}

.definition_table th,
.wp-block-table.definition_table td:first-child {
  width: 24%;
  color: #00559c;
  font-weight: bold;
  text-align: center;
}

.definition_table tr:last-child th,
.wp-block-table.definition_table tr:last-child td:first-child {
  border-bottom: 1px solid #00559c;
}

.definition_table tr:last-child td,
.wp-block-table.definition_table tr:last-child td {
  border-bottom: 1px solid #d3d3d3;
}

/* -------------------------
マウスポインターの動き
------------------------- */
/* カーソルの基本円 */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #00559c;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  z-index: 99999;
}

/* ホバー時に拡大＋背景色青 */
.cursor.is-hover {
  width: 60px;
  height: 60px;
  background: rgba(0, 85, 156, 0.6);
  /* 青色で塗りつぶし */
}

/* -------------------------
Header
------------------------- */
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  max-width: 1760px;
  margin: auto;
  padding: 0 20px;
}

h1.header-logo {
  margin-right: 60px;
}

.header-logo img {
  width: 413px;
  max-width: 100%;
}

.header-nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav#mainNav {
  width: 70%;
  max-width: 910px;
}

.header-nav .nav-link {
  color: #000;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 20px 10px;
}

.header-nav .nav-link.nav-contact {
  background: #f0532d;
  border: solid 1px #f0532d;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
  width: 172px;
  display: inline-block;
  text-align: center;
}

.header-nav .nav-link.nav-contact:hover {
  background: #fff;
  color: #f0532d;
}

body:not(.home) .global-header {
  opacity: 1 !important;
}

/* 下層メニュー初期非表示 */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 230px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
}

/* 親に relative を指定 */
.header-nav-item {
  position: relative;
}

/* ホバー時に表示 */
.header-nav-item:hover .sub-menu {
  display: block;
}

/* 下層メニューのリンクスタイル */
.sub-menu li a {
  display: block;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
}

.sub-menu li a:hover {
  background-color: #f2f2f2;
}

/* -------------------------
MainVisual
------------------------- */
.main-frame-container {
  position: relative;
  z-index: 1;
  height: calc(100vh - 150px);
}

.main-slider img {
  height: calc(100vh - 150px);
  object-fit: cover;
  object-position: left center;
  width: 100%;
}

.main-copy {
  position: absolute;
  z-index: 2;
  bottom: 12%;
  max-width: 565px;
  left: 100px;
}

.main-copy-1 {
  margin-bottom: 44px;
}

.main-copy img.main-copy-1_img {
  max-width: 565px;
}

.main-copy img.main-copy-2_img {
  max-width: 323px;
}

/* -------------------------
動き
------------------------- */
/* グローバルヘッダー */
.home .global-header {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 9999;
  position: relative;
}

.home .global-header.show {
  opacity: 1;
  transform: translateY(0);
}

/* メインビジュアル（フェードインなど） */
.main-slider-container {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.main-slider-container.show {
  opacity: 1;
  transform: scale(1);
}

/* -------------------------
コピー表示アニメーション用CSS一式
------------------------- */
/* 背景バーアニメーション用 */
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* コピー本体：マスクで左→右に流れる演出 */
.bgappear {
  position: relative;
  overflow: hidden;
}

/* 共通：初期状態は非表示 */
.bgappear img {
  opacity: 0;
  position: relative;
  z-index: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* コピー1：フェード表示 */
.main-copy-1_img {
  animation-name: copyFadeIn;
  animation-duration: 0.4s;
  animation-delay: 0.1s;
}

/* コピー2：フェード表示（少し遅れて） */
.main-copy-2_img {
  opacity: 0;
  animation-name: copyFadeIn;
  animation-duration: 1s;
}

/* フェードイン共通アニメーション */
@keyframes copyFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* バーが左から右へスライド */
/* 背景バー共通アニメーション */
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #00559c;
  transform: scaleX(0) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  animation-timing-function: ease-in-out;
  transform-origin: left;
  z-index: 2;
}

/* 1つ目のバー */
.main-copy-1 .bgLRextend::before {
  animation-delay: 0s;
}

/* 2つ目のバー */
.main-copy-2 .bgLRextend::before {
  animation-delay: 0.6s;
  width: 323px;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0) translateZ(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1) translateZ(0);
  }

  50.001% {
    transform-origin: right;
    transform: scaleX(1) translateZ(0);
  }

  100% {
    transform-origin: right;
    transform: scaleX(0) translateZ(0);
  }
}

/* スクロール表示系：今回はロード後に即表示なので制御されてもOK */
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/* -------------------------
ローディングアニメーション
------------------------- */

/* ローディング背景 */
#loading {
  position: fixed;
  z-index: 1999999;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

/* ロゴサイズ＆アニメーション */
.loading-logo img {
  width: 280px;
  animation: fadeIn 1s ease-in-out forwards;
}

/* フェードイン */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 非表示時 */
#loading.loaded {
  opacity: 0;
  pointer-events: none;
}

/* -------------------------
TOP
------------------------- */
.home .page_wrapper {
  padding: 0;
  width: auto;
}

.section_top_construction_inner {
  padding: 100px 20px 96px 20px;
  max-width: 1256px;
  margin: auto;
}

.section_top_construction {
  align-items: flex-start;
}

.section_top_construction .half-media__body {
  width: 41.28%;
}

.section_top_construction .half-media__img-wrapper {
  margin-right: 0;
  margin-left: 9.87%;
  width: 48.68%;
}

.section_top_construction .btn_wrapper {
  display: flex;
  justify-content: flex-end;
}

.section_top_construction-method {
  background: url(../images/common/bg@2x.png);
  background-size: cover;
}

.section_top_construction-method_inner {
  max-width: 1256px;
  margin: auto;
  padding: 60px 20px 60px 20px;
}

.section_top_construction-method .paragraph {
  font-size: 1rem;
  margin-bottom: 44px;
  text-align: center;
}

.construction-method_wrapper {
  max-width: 1074px;
  padding-left: 28px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.construction-method_item {
  width: calc(100% / 2 - 28px);
  margin-bottom: 60px;
}

.construction-method_item a {
  color: #000;
}

.construction-method_text {
  background: #fff;
  width: 280px;
  height: 70px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  margin-top: -40px;
  margin-left: -28px;
  position: relative;
}

/* .construction-method_text p {
  font-weight: 600;
} */

.construction-method_text::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 40px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #00559c;
  border-bottom: 1px solid #00559c;
  transform: skew(45deg);
  transition: 0.3s;
}
.construction-method_item:hover .construction-method_text::after {
  width: 40px;
 right:20px;
}

.section_top_construction-method .btn_wrapper {
  display: flex;
  justify-content: center;
}

.section_top_company .heading_lv2 {
  font-size: 1.125rem;
}

.section_top_company__inner {
  padding: 100px 20px 140px 20px;
  max-width: 1256px;
  margin: auto;
}

.section_top_recruit {
  position: relative;
  width: 100%;
  background: url(../images/top/figure_10@2x.jpg);
  background-size: cover;
  background-position: right 30% center;
}

.section_top_recruit::before {
  content: "";
  background: url(../images/top/figure_11@2x.png);
  background-size: 100%;
  width: 773px;
  height: 230px;
  display: block;
  position: absolute;
  top: 40px;
  left: 0px;
}

.section_top_recruit__inner {
  padding: 127px 20px 147px 20px;
  max-width: 1256px;
  margin: auto;
}

.section_top_recruit .heading_lv1 {
  text-align: left;
  margin-bottom: 80px;
  position: relative;
}

.top_recruit_text {
  color: #fff;
  margin-bottom: 40px;
}

.section_top_news__inner {
  padding: 100px 20px 160px 20px;
  max-width: 1256px;
  margin: auto;
}

.top_news__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.top_news__wrapper.top_carrer__wrapper {
  margin-bottom: 0;
}

.section_top_news .heading_lv1 {
  margin-right: 116px;
}

.section_top_news .heading_lv1 img {
  width: auto !important;
  max-width: none !important;
  min-width: 100% !important;
}

.post_wrapper {
  width: 77%;
}

.post_list {
  list-style: none;
  margin-bottom: 46px;
}

.post_list__item a {
  display: flex;
  border-bottom: solid 0.5px #434343;
  padding: 32px 20px 28px 0;
  color: #000;
}

.post_list__item:first-child a {
  padding-top: 0;
}

.section_top_news .btn_wrapper {
  display: flex;
  justify-content: flex-end;
}

.post_date {
  margin-right: 40px;
}

.top_carrer__wrapper .post_date {
  margin-right: 18px;
}

/* -------------------------
Footer
------------------------- */
.footer {
  border-top: solid #00559c 5px;
  background-color: #efefef;
}

.footer_inner {
  padding: 61px 20px 40px 20px;
  max-width: 1256px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.footer_left {
  width: 35%;
}

.footer_right {
  width: 49%;
}

.footer_logo {
  margin-bottom: 22px;
}

.footer_logo img {
  width: 420px;
  max-width: 100%;
}

.footer_adress p{
  font-size: 1.125rem;
}

.footer_adress a {
  color: #000;
  font-size: 1.125rem;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer_nav_link {
  color: #000;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.footer_nav_link__child {
  margin-bottom: 0px;
  padding-left: 17px;
  position: relative;
}

.footer_nav_link__child::before {
  content: "";
  height: 2px;
  width: 9px;
  background-color: #000000;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}

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

.footer_contact {
  margin-left: auto;
  margin-right: 0;
  display: block;
  width: fit-content;
}

.footer_contact__btn {
  background-color: #f0532d;
  border: solid 1px #f0532d;
  color: #fff;
  width: 280px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer_contact__btn:hover {
  background-color: #fff;
  color: #f0532d;
}

.footer_copyright {
  background-color: #00559c;
  color: #fff;
  padding: 8px;
  text-align: center;
}

/* -------------------------
Page
------------------------- */
.page_header_inner {
  width: 1256px;
  max-width: 100%;
  padding: 36px 20px 23px 20px;
  margin: auto;
}

img.page-title-en {
  /* height: 86px; */
  height: 55px;
  margin-bottom: 1em;
}

.history img.page-title-en,
.company img.page-title-en,
.group img.page-title-en {
  height: 72px;
  margin-bottom: 0;
}

.page_title_ja {
  font-size: 1rem;
  font-weight: 400;
}

.breadcrumb {
  width: 1256px;
  max-width: 100%;
  padding: 30px 20px 60px 20px;
  color: #000;
  margin: auto;
}

.breadcrumb a {
  color: #afafaf;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #afafaf;
  margin: 0 4px;
}

.page_wrapper {
  width: 1256px;
  max-width: 100%;
  padding: 0 20px 100px 20px;
  margin: auto;
}

.page .heading_lv1 {
  margin-bottom: 60px;
}

/* -------------------------
Page 工法紹介
------------------------- */
.page_construction .paragraph {
  width: 1070px;
  max-width: 100%;
  margin: auto;
  margin-bottom: 62px;
}

/* グリッドレイアウト */
.methods_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 1070px;
  max-width: 100%;
  margin: auto;
}

/* 各工法カード */
.method_item {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: transform 0.3s ease;
}

.method_item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.method_item:hover img {
  transform: scale(1.15);
}

/* タイトル */
.method_title {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.375rem;
  white-space: nowrap;
}

/* 番号（右上） */
.method_number {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.375rem;
  /* font-weight: bold; */
  color: #fff;
  transform: rotateZ(90deg);
}

/* 矢印（右下） */
.method_arrow {
  width: 34px;
  position: absolute;
  bottom: 28px;
  right: 28px;
  color: #fff;
  transition: transform 0.3s ease;
}

.method_item:hover .method_arrow {
  transform: translateX(5px);
}

/* -------------------------
Page 工法紹介 NSDシステム
------------------------- */
.nsd_img {
  max-width: 664px;
  width: 100%;
  margin: auto;
  margin-bottom: 100px;
}

.pdf_link {
  color: #000;
  position: relative;
}

.pdf_link a {
  color: #000;
}

.pdf_link::after {
  content: "";
  background: url(../images/page-construction-1/ico_pdf@2x.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 13px;
  height: 16px;
  margin-left: 16px;
}

.pdf_link_wrapper {
  margin-bottom: 30px;
}

.pdf_link_wrapper:last-child {
  margin-bottom: 0;
}

.page_construction .content_wrapper .paragraph {
  margin-bottom: 30px;
  width: 100%;
}

.page_construction .content_wrapper .paragraph:last-child {
  margin-bottom: 0;
}

.half-media.contents {
  margin-bottom: 60px;
}

.page_construction-2.page_wrapper {
  width: 1058px;
  margin: auto;
}

.intro_img {
  margin-bottom: 30px;
}

/* -------------------------
Page 工法紹介
------------------------- */
.page-id-39 .page_wrapper {
  width: 1040px;
}

.page-id-41 .page_wrapper,
.page-id-43 .page_wrapper,
.page-id-45 .page_wrapper,
.page-id-48 .page_wrapper,
.page-id-51 .page_wrapper,
.page-id-53 .page_wrapper,
.page-id-55 .page_wrapper {
  width: 1080px;
}

.annotation-list {
  list-style: none;
  counter-reset: annotation;
  padding-left: 1.5em;
}

.annotation-list li {
  padding-left: 20px;
  position: relative;
}

.annotation-list>li::before {
  counter-increment: annotation;
  content: "※" counter(annotation) ". ";
  display: inline-block;
  margin-right: 0.3em;
  vertical-align: top;
  position: absolute;
  left: -14px;
}

.is-style-vk-group-solid {
  border: solid 1px !important;
}

.page-id-41 .is-style-vk-group-solid {
  padding: 4px;
}

.process_img_wrapper {
  padding: 0 40px;
}

.step_wrapper {
  margin-bottom: 38px;
}

.step_num {
  position: relative;
  z-index: 2;
}

.step_num img {
  position: relative;
  z-index: 2;
}

.step_num::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  min-height: 84px;
  background-color: #abb5d3;
}

.step_wrapper:last-child .step_num::after {
  display: none;
}

.tokucho_wrapper {
  gap: 0;
}

.page-id-39 .heading_lv5 {
  margin-bottom: 8px;
}

.function_text {
  line-height: 1;
}

/* -------------------------
Page 会社案内
------------------------- */
.timeline {
  max-width: 934px;
  width: 100%;
  margin: auto;
}

.timeline-year {
  max-width: 120px;
  white-space: nowrap;
}

.timeline-year p {
  font-size: 1.875rem;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  align-self: auto !important;
}

.timeline-dot img {
  position: relative;
  z-index: 2;
}

.timeline-dot::after {
  content: "";
  background: #d3d3d3;
  height: 130%;
  width: 1px;
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 7px;
}

.timeline-text {
  padding-left: 60px;
}

.timeline-month p {
  font-size: 1.375rem;
}

.group_hr {
  border-top: 1px solid #d3d3d3;
  margin-bottom: 30px;
  margin-top: 30px;
}

.page-id-21 .definition_table td:last-child {
  padding-left: 30px;
  padding-right: 30px;
}

.pdf_link::after {
  margin-left: 5px;
}

/* -------------------------
Page 採用情報
------------------------- */
.recruit_intro {
  font-size: 1.875rem;
  margin-bottom: 56px;
  text-align: center;
}

.recruit_intro_text {
  text-align: center;
}

.page-id-19 .definition_table td,
.page-id-19 .wp-block-table.definition_table td:first-child {
  padding-top: 24px;
  padding-bottom: 24px;
}

.page.page-id-19 .page_wrapper {
  padding-bottom: 0;
}

/* .recruit_contact_wrapper {
} */

.gradient-bg {
  position: relative;
  background: linear-gradient(103deg, #00005b 0%, #003b96 37.4218%, #035097 64.1115%, #298bd2 99.8629%);
}

.recruit_contact_img {
  position: absolute;
  top: -0;
  left: 3%;
  max-width: 60%;
}

.recruit_contact_title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.recruit_contact_btn_wrapper {
  width: 1070px;
  max-width: 100%;
  margin: auto;
  gap: 68px;
}

.recruit_contact_btn_wrapper a.vk_button_link {
  padding: 24px !important;
  width: 100%;
}

.recruit_contact_btn_wrapper .btn::after {
  display: none;
}

.recruit_contact_wrapper .wp-block-cover .wp-block-cover__inner-container,
.recruit_contact_wrapper .wp-block-cover-image .wp-block-cover__inner-container {
  position: static;
}

.recruit_contact_btn_org a,
.recruit_contact_btn_white a {
  height: 107px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5625rem !important;
}

/* -------------------------
Page お問い合わせ
------------------------- */
.contact-form_wrapper {
  background-color: #f2f2f2;
  padding: 14px 30px 40px 30px;
}

.contact-form-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-form-table tr {
  border-bottom: solid 1px #e0e0e0;
}

.contact-form-table th {
  text-align: left;
  vertical-align: top;
  padding: 22px 0;
  width: 280px;
  font-weight: normal;
}

.contact-form-table td {
  padding: 22px 0;
}

/* 必須マーク */
.required {
  color: #fff;
  background: #f0532d;
  padding: 5px 14px;
  font-size: 0.625rem;
}

/* プライバシーボックス */
.privacy-box {
  padding: 1em;
  max-height: 110px;
  overflow-y: auto;
  font-size: 14px;
  background: #fff;
  margin-bottom: 15px;
}

/* 説明テキスト */
.contact_intro_box {
  padding: 28px 20px;
  text-align: center;
}

.page-id-240 .intro_text {
  margin-bottom: 0;
  text-align: center;
  font-weight: 500;
}

/* 電話番号 */
.contact_tel a {
  font-size: 1.875rem;
  color: #00559c;
}

/* テキスト・テキストエリア入力 */
.contact-form-table input.wpcf7-form-control.wpcf7-text,
.contact-form-table textarea.wpcf7-form-control.wpcf7-textarea {
  border: none;
  width: 100%;
  padding: 2px 10px;
}

.contact-form-table input.wpcf7-form-control.wpcf7-text {
  height: 44px;
}

/* チェックボックスカスタム */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background-color: #f2f2f2;
  border: 2px solid #000;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  margin-top: -5px;
}

input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check_doui span label span {
  display: inline-block;
}

/* プライバシー同意文など */
.privacy-note {
  margin-bottom: 6px;
}

/* 送信ボタン全体 */
.submit_wrapper {
  text-align: center;
  margin-top: 38px;
}

/* 個別の確認ボタン（大きめ） */
.btn-confirm {
  background-color: #00559c;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 30px 40px;
  border: 2px solid #00559c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.btn-confirm::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg);
  transition: 0.3s;
}

.btn-confirm:hover::after {
  width: 40px;
  border-right: 2px solid #00559c;
  border-bottom: 1px solid #00559c;
}

.btn-confirm:hover {
  background-color: #fff;
  color: #00559c;
}

.btn-confirm:hover

/* 通常ボタン群 */
.submit_wrapper .btn-area {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.submit_wrapper .btn-area .btn-item {
  width: 46%;
}

.submit_wrapper .btn-area .btn-item:first-child p {
  display: flex;
  justify-content: flex-end;
  /* 右寄せ */
}

.submit_wrapper .btn-area .btn-item:last-child p {
  display: flex;
}

.submit_wrapper .btn-area button,
.submit_wrapper .btn-area input[type="submit"],
.submit_wrapper .btn-area input[type="button"] {
  background: #193f92;
  color: #fff;
  padding: 12px 32px;
  border: solid 1px #193f92;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 50%;
  max-width: 300px;
}

.submit_wrapper .btn-area button:hover,
.submit_wrapper .btn-area input[type="submit"]:hover,
.submit_wrapper .btn-area input[type="button"]:hover {
  background: #0f2e68;
}

/* -------------------------
CONTACT お問い合わせ（確認）
------------------------- */
.page-id-394 .btn-area {
  display: flex;
}

/* -------------------------
News お知らせ
------------------------- */
.news-archive .inner {
  max-width: 960px;
  margin: 0 auto;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.news-item a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  color: #000;
}

.news-item-arrow {
  position: relative;
}

.news-item-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #00559c;
  border-bottom: 1px solid #00559c;
  transform: skew(45deg);
  transition: 0.3s;
}

.news-item a:hover .news-item-arrow::after {
  width: 40px;
	right:0;
}

.news-item-date {
  font-size: 14px;
  color: #000;
  margin-right: 20px;
  min-width: 100px;
}

.news-item-title {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}

.news-item-arrow {
  width: 30px;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin: 40px 0 0;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 2px 11px;
  height: 31px;
  width: 31px;
  border: 1px solid #ccc;
  color: #00559c;
  text-decoration: none;
  font-size: 14px;
}

.pagination .current {
  background-color: #00559c;
  color: #fff;
  border-color: #00559c;
}

.pagination .arrow-prev,
.pagination .arrow-next {
  min-width: 12px;
  height: auto;
  vertical-align: middle;
}

.single .news-date {
  font-size: 1rem;
  color: #000;
}

/* -------------------------
News お知らせ（詳細）
------------------------- */
.news-single .inner {
  max-width: 960px;
  margin: 0 auto;
}

.news-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.news-title {
  font-size: 1.375rem;
  color: #00559c;
  margin-bottom: 24px;
}

.news-content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  padding-bottom: 70px;
  margin-bottom: 60px;
  border-bottom: 1px solid #d3d3d3;
}

.news-back {
  text-align: center;
}

.news-back a {
  border: solid 1px #00559c;
  color: #00559c;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
  width: 176px;
  padding: 10px;
  display: inline-block;
}

.news-back a:hover {
  opacity: 0.7;
}

.news-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 53px;
}

.news-head .news-date {
  font-size: 1.375rem;
  color: #00559c;
}

.news-head .news-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #00559c;
  margin: 0;
}

/* -------------------------
404
------------------------- */
.error-404 .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.error-title {
  font-size: 24px;
  font-weight: bold;
  color: #00559c;
  margin-bottom: 24px;
}

.error-message {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.error-button .btn {
  display: inline-block;
  border: solid 1px #00559c;
  color: #00559c;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.error-button .btn:hover {
  opacity: 0.8;
}

.error-button .btn::after {
  display: none;
}

/* -------------------------
2025/07/31追加css
------------------------- */
.loop-slider-center .slick-slide {
  width: 801px !important;
}

@media screen and (max-width: 480px) {
  .loop-slider-center .slick-slide {
    width: 300px !important;
  }
}

/* -------------------------
2025/08/05追加css
------------------------- */
/* アンカーリンクのとび先の位置調整 */
.heading_lv1{
	padding-top: 80px;
    margin-top: -80px;
}