@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap");
/* ================================================



ローディング



================================================= */
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 5000;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 60px auto;
  font-size: 10px;
  position: absolute;
  top: calc(50% - 120px);
  left: calc(50% - 50px);
  text-indent: -9999em;
  border-top: 1.1em solid rgba(146, 146, 146, 0.2);
  border-right: 1.1em solid rgba(146, 146, 146, 0.2);
  border-bottom: 1.1em solid rgba(146, 146, 146, 0.2);
  border-left: 1.1em solid #929292;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* =====================

base

===================== */
* {
  min-height: 0.01px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ========= パンくずリスト ========= */
/* ========= メールアドレススパム対策 ========= */
.no-spam {
  display: none;
}

/* スパムメール対応 */
.no-spam {
  display: none;
}

.no_display {
  display: none !important;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: #f3f3f3;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

body {
  font-family: var(--ffg);
  letter-spacing: 0.1em;
  line-height: 1.71429;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(1.4rem, 1.8229166667vw, 1.6rem);
  font-weight: 400;
  color: var(--txt);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt"; /* 文字づめ */
}

button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* font-familyを継承しないので、継承させる */
  font-family: inherit;
  /* iOSの角丸をリセット */
  border-radius: 0;
  /* box-size */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 文字の大きさ iOSでズームさせないために16px以上を指定 */
  font-size: 16px !important;
  /* 文字色を親から継承 */
  color: inherit;
  border: none;
  border-radius: 0;
  outline: none;
}

/* リンク下線を非表示位にする箇所 */
.main-nav li > a,
#footer-nav a {
  text-decoration: none !important;
}

.submit-btn {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  padding: 0.55em 1.5em;
  background: var(--key);
  color: #ffffff;
  line-height: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--key);
}
.submit-btn:hover, .submit-btn:active {
  color: var(--key);
  background: #fff;
}

/* ================================================



ヘッダー



================================================= */
.mobile-logo {
  display: none;
}

header {
  max-width: 146rem;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
header .header_wrapper {
  width: 100%;
  height: clamp(25rem, 32.5520833333vw, 35rem);
}
header h1,
header h2 {
  margin-bottom: 0;
}
header img {
  margin-bottom: 0;
}
header .logo_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.8rem clamp(1.5rem, 1.953125vw, 3rem);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
header .logo_wrapper .header_logo {
  aspect-ratio: 359/60;
  width: clamp(20rem, 26.0416666667vw, 35.9rem);
  height: auto;
}
header .logo_wrapper .header_logo-sub {
  aspect-ratio: 316/37;
  width: clamp(18rem, 23.4375vw, 31.6rem);
  height: auto;
}
header .header-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(25rem, 32.5520833333vw, 35rem);
}
header .header-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  header .logo_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  header .logo_wrapper .header_logo-sub {
    width: clamp(18rem, 18.1451612903vw, 24rem);
    height: auto;
  }
}

.header-logo-bg {
  position: absolute;
  top: -174px;
  left: -3px;
  width: 500px;
  height: auto;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: 3;
}

.header-logo-bg-inner {
  display: grid;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

a.header-logo {
  margin-top: 150px;
  margin-bottom: 35px;
  height: auto;
  aspect-ratio: 340/63;
  font-size: 0;
}
a.header-logo > h1 {
  width: 356px;
  height: auto;
  aspect-ratio: 340/63;
  margin-bottom: 0;
}
a.header-logo > h1 > img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

/* ================================================



下層ヘッダー



================================================= */
.title_wrapper {
  width: min(calc(100% - 3rem), 146rem);
  margin-inline: auto;
  margin-bottom: 3rem;
  background-color: #fff;
}
.title_wrapper .header-title {
  font-size: clamp(2rem, 2.6041666667vw, 2.5rem);
  border: 0.4rem solid var(--key03);
  padding: 1rem 3rem;
  margin-bottom: 0;
  background-image: linear-gradient(45deg, #fff 1rem, var(--key03) 1.1rem calc(100% - 1.1rem));
  color: #fff;
}

.cws_cc-title {
  background-color: var(--key01) !important;
}
.cws_cc-title .header-title {
  border: 0.4rem solid var(--key01) !important;
  background-image: linear-gradient(45deg, #fff 1rem, var(--key01) 1.1rem calc(100% - 1.1rem)) !important;
}

.gdsos-title {
  background-color: var(--key02) !important;
}
.gdsos-title .header-title {
  border: 0.4rem solid var(--key02) !important;
  background-image: linear-gradient(45deg, #fff 1rem, var(--key02) 1.1rem calc(100% - 1.1rem)) !important;
}

#page-header .header_wrapper {
  width: 100%;
  height: 18rem;
}
#page-header .post_thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18rem;
}
#page-header .post_thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ================================================



グローバルナビ



================================================= */
.no-scroll body {
  overflow-y: hidden;
}

#mainnav {
  max-width: 146rem;
  background-color: var(--bg);
  margin: 0 auto;
  padding: 1.5rem;
}

.main-nav {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem clamp(2.5rem, 2.0833333333vw, 5rem);
}
.main-nav li a {
  font-size: clamp(1.6rem, 1.3333333333vw, 1.8rem);
  text-decoration: none;
  font-weight: 500;
}
.main-nav li a:hover {
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  text-decoration: underline;
}
.main-nav li a::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.8rem;
  border-top: 0.2rem solid var(--txt);
  border-right: 0.2rem solid var(--txt);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.2rem) rotate(45deg);
          transform: translateY(-0.2rem) rotate(45deg);
}
.main-nav li a:hover::before {
  border-color: var(--on);
}
.main-nav li.current-menu-item a {
  color: var(--on);
}
.main-nav li.current-menu-item a::before {
  border-color: var(--on);
}

.mobile-logo {
  display: none;
  margin-bottom: 30px;
}

/* =================================================

下層ページ

================================================= */
header#under-page #mainnav {
  margin-top: 0;
}

/* =================================================

グローバルナビのレスポンシブ

================================================= */
/* ==================  max992 ================== */
@media screen and (max-width: 992px) {
  .mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 4rem;
    height: 5rem;
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #fff;
    cursor: pointer;
    z-index: 50;
  }
  .mobile-btn .mobile-btn_burger {
    width: 1.8rem;
    height: 2px;
    background-color: #333;
  }
  .mobile-btn .mobile-btn_burger::before, .mobile-btn .mobile-btn_burger::after {
    content: "";
    position: absolute;
    width: 1.8rem;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .mobile-btn .mobile-btn_burger::before {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .mobile-btn .mobile-btn_burger::after {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  .mobile-btn.on .mobile-btn_burger {
    background-color: transparent;
    -webkit-box-shadow: 0 0 0 2px rgba(0, 90, 64, 0);
            box-shadow: 0 0 0 2px rgba(0, 90, 64, 0);
  }
  .mobile-btn.on .mobile-btn_burger::before {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
  }
  .mobile-btn.on .mobile-btn_burger::after {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
  }
  #mainnav {
    visibility: hidden;
    opacity: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    min-height: 100vh; /* Fallback */
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding: 10rem 1.5rem 0;
  }
  .main-nav {
    display: block;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .main-nav li {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 0.1rem solid #ccc;
    text-align: left;
  }
  .main-nav li a {
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
  }
  #mainnav.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  #mainnav.open .mobile-logo {
    display: block;
    width: 200px;
    height: auto;
    aspect-ratio: 340/63;
  }
}
/* ==================  横向きデバイス  ================== */
@media (orientation: landscape) and (max-width: 800px) {
  .mobile-logo {
    margin-bottom: 30px;
  }
}
/* =================================================

アイコン
投稿

================================================= */
.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0;
  padding: 0.3em 1.5rem;
}

/* =================================================

工事成績評定公表分
投稿

================================================= */
.cst_results_wrapper {
  margin-bottom: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cst_results_wrapper .xls-file {
  font-size: 1.5rem;
  font-weight: bold;
}
.cst_results_wrapper h4 {
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--key01);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7rem 1rem;
}

.cst_results {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.cst_results li {
  font-size: 1.6rem;
  font-weight: bold;
}
.cst_results li + li::before {
  content: "/";
  margin-left: 0.35em;
  margin-right: 0.35em;
}

/* =================================================

工事発注見通し
投稿

================================================= */
.order_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 1rem;
}
.order_wrapper .order__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 68rem;
          flex: 1 1 68rem;
  margin-bottom: 3rem;
}
.order_wrapper .order__wrapper h3 {
  margin-bottom: 1.5rem;
}
.order_wrapper .order__wrapper h3::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 2rem;
  height: auto;
  background-color: #333;
  border-radius: 50%;
  -webkit-transform: translateY(0.4rem);
          transform: translateY(0.4rem);
  margin-right: 0.5rem;
}
.order_wrapper .order__wrapper .order___wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 1.5rem;
}
.order_wrapper .order__wrapper .order___wrapper h4 {
  margin-bottom: 1rem;
}
.order_wrapper .order__wrapper .order___wrapper .order____wrapper {
  padding: 1.5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.4rem;
          flex: 0 0 16.4rem;
  border: 0.1rem solid var(--bcr);
}
.order_wrapper .order__wrapper .order___wrapper .order____wrapper div {
  margin-bottom: 1rem;
}
.order_wrapper .order__wrapper .order___wrapper .order____wrapper div span {
  font-size: 1.5rem;
}
.order_wrapper .order__wrapper .order___wrapper .order____wrapper div img {
  aspect-ratio: 1/1;
  width: 3rem;
  height: auto;
  margin-bottom: 0;
}

/* =================================================

特定随意契約の発注見通し及び契約締結状況
投稿

================================================= */
.optagt-list_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 3rem;
}
.optagt-list_wrapper div h4 {
  font-size: 1.6rem;
  padding-bottom: 0.5em;
  border-bottom: 0.2rem solid #ccc;
  text-align: center;
}
.optagt-list_wrapper div ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.optagt-list_wrapper div ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
}
.optagt-list_wrapper div ul li a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem solid var(--txt);
  border-right: 0.1rem solid var(--txt);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.2rem) rotate(45deg);
          transform: translateY(-0.2rem) rotate(45deg);
  margin-right: 0.5em;
}

/* =================================================

一般競争入札公告
アーカイブ

================================================= */
#gnpn .gnpn_wrapper {
  width: min(calc(100% - 3rem), 100rem);
  margin-inline: auto;
}
#gnpn .h1-gnpn {
  font-size: clamp(1.8rem, 2.34375vw, 2.4rem);
  color: #fff;
  background-color: var(--key02);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
#gnpn .gnpn__wrapper {
  list-style: none;
  margin: 0;
}
#gnpn .gnpn__wrapper li {
  border: 0.1rem solid var(--key02_l);
  padding: 1.5rem clamp(1.5rem, 1.953125vw, 2rem);
  background-color: #fff;
}
#gnpn .gnpn__wrapper li div .koukokubi {
  padding-left: 0;
  padding-right: 0;
}
#gnpn .gnpn__wrapper li:not(:last-child) {
  margin-bottom: 1rem;
}
#gnpn .gnpn__wrapper li div {
  padding: 0 1em;
}
#gnpn .gnpn__wrapper li div:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #ccc;
}
#gnpn .koukokubi {
  font-size: clamp(1.8rem, 2.34375vw, 2.2rem);
  font-weight: 500;
}
#gnpn .txonm_name {
  font-size: clamp(1.8rem, 2.34375vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02;
  color: var(--key02);
}
#gnpn .dl_pdf p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.4rem, 1.8229166667vw, 1.8rem);
}
#gnpn .dl_pdf p img {
  margin-bottom: 0;
  aspect-ratio: 1/1;
  width: 5rem;
  height: auto;
}

/* =================================================

news記事タイトル

================================================= */
#single .h2-news_const_w_news,
#single .h2-news_gdsos_news,
#archive .h2-news_const_w_news,
#archive .h2-news_gdsos_news {
  font-size: clamp(1.8rem, 2.34375vw, 2.2rem);
  padding-bottom: 1.4rem;
  border-bottom: 0.4rem solid;
  margin-bottom: 2rem;
  font-weight: 700;
}
#single .h2-news_const_w_news::before,
#single .h2-news_gdsos_news::before,
#archive .h2-news_const_w_news::before,
#archive .h2-news_gdsos_news::before {
  content: "News";
  display: inline-block;
  font-size: clamp(4rem, 5.2083333333vw, 6.2rem);
  font-weight: 500;
  letter-spacing: 0.002em;
  -webkit-transform: translateY(0.125em);
          transform: translateY(0.125em);
  margin-right: 1.8rem;
}
@media screen and (max-width: 420px) {
  #single .h2-news_const_w_news,
  #single .h2-news_gdsos_news,
  #archive .h2-news_const_w_news,
  #archive .h2-news_gdsos_news {
    position: relative;
    z-index: 1;
    text-align: right;
    font-size: 1.8rem;
  }
  #single .h2-news_const_w_news::before,
  #single .h2-news_gdsos_news::before,
  #archive .h2-news_const_w_news::before,
  #archive .h2-news_gdsos_news::before {
    font-size: 6rem;
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    z-index: -1;
  }
}
#single .h2-news_const_w_news,
#archive .h2-news_const_w_news {
  color: var(--key01);
  border-bottom-color: var(--key01);
}
#single .h2-news_const_w_news::before,
#archive .h2-news_const_w_news::before {
  color: var(--key01_l);
}
#single .h2-news_gdsos_news,
#archive .h2-news_gdsos_news {
  color: var(--key02);
  border-bottom-color: var(--key02);
}
#single .h2-news_gdsos_news::before,
#archive .h2-news_gdsos_news::before {
  color: var(--key02_l);
}

/* ================================================



アーカイブ



================================================= */
.archive_wrapper {
  max-width: 100rem;
  margin-inline: auto;
}
.archive_wrapper #archive {
  padding: 0;
}

#news .h2-news,
#archive .h2-news {
  font-size: 2.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.4rem solid;
  margin-bottom: 0;
  font-weight: 700;
}
#news .h2-news::before,
#archive .h2-news::before {
  content: "News";
  display: inline-block;
  font-size: clamp(3rem, 3.90625vw, 6.2rem);
  font-weight: 500;
  letter-spacing: 0.002em;
  -webkit-transform: translateY(0.125em);
          transform: translateY(0.125em);
  margin-right: 1.8rem;
}
#news .news-list,
#archive .news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 1.8rem;
  list-style: none;
  padding: 0;
  background-color: #fff;
}
#news .news-list li,
#archive .news-list li {
  border-bottom: 1px solid var(--bcr);
  margin: 0;
  padding: 1.8rem 0;
}
#news .news-list li article a,
#archive .news-list li article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 1em;
}
#news .news-list li article a .inner_wrapper,
#archive .news-list li article a .inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 1rem;
}
#news .news-list li article a .date,
#archive .news-list li article a .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--txt);
}
#news .news-list li article a .news-title,
#archive .news-list li article a .news-title {
  font-size: 1.6rem;
  margin-bottom: 0;
}
#news .news-list li article a:hover,
#archive .news-list li article a:hover {
  background-color: rgba(192, 216, 234, 0.3);
  text-decoration: none;
}

/* =====================

投稿記事個別ページ

===================== */
#single {
  padding: 3rem 0;
}
#single .single-container {
  width: min(calc(100% - 3rem), 146rem);
  margin-inline: auto;
  background-color: #fff;
  padding: 3rem clamp(1.5rem, 1.953125vw, 3rem);
}
#single .single-wrapper {
  max-width: 100rem;
  margin-inline: auto;
  padding: 0;
  margin-bottom: 50px;
}
#single .single-wrapper .single-header {
  width: 100%;
  padding: 13px 0;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #ccc;
}
#single .single-wrapper .single-header .infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #ccc;
}
#single .single-wrapper .single-header .infos .date {
  display: block;
  font-size: clamp(1.4rem, 1.8229166667vw, 1.6rem);
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#single .single-wrapper .single-header .infos .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#single .single-wrapper .single-header .single-title {
  display: inline-block;
  font-size: clamp(2rem, 2.6041666667vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0;
}
#single .single-wrapper .single-body {
  margin-bottom: 20px;
  clear: both;
}
#single .single-wrapper .single-body p {
  font-size: clamp(1.4rem, 1.8229166667vw, 1.6rem);
}
#single .single-wrapper .single-body p:empty {
  font-size: 0;
  height: 0;
}

/* =================================================

アーカイブ、個別ページのレスポンシブ

================================================= */
/* ==================  max640 ================== */
@media screen and (max-width: 640px) {
  #news .news-list li article a,
  #archive .news-list li article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  #news .news-list li article a > *,
  #archive .news-list li article a > * {
    width: 100%;
  }
  #single .single-wrapper .single-header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #single .single-wrapper .single-header .post_icon {
    margin-top: 0.3em;
  }
  #single .single-wrapper .single-header .news-inner-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #single .single-wrapper .single-header .news-inner-line .date {
    margin-bottom: 0.3em;
  }
  #single .single-wrapper .single-header .news-inner-line .single-title {
    width: 100%;
  }
}
/* ================================================



トップページ



================================================= */
/* ========= トップページチャンプタータイトル ========= */
.h2_index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 10rem;
  gap: 1.2rem;
}
.h2_index span {
  text-align: center;
}

/* =================================================

新着情報

================================================= */
#news .news_wrapper {
  width: min(calc(100% - 3rem), 146rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 4rem clamp(2rem, 2.6041666667vw, 4rem);
  margin-bottom: clamp(3rem, 3.90625vw, 6rem);
  margin-top: 3rem;
}
@media screen and (max-width: 992px) {
  #news .news_wrapper {
    margin-top: 3.5rem;
  }
}
#news .news {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 47.7rem;
          flex: 1 1 47.7rem;
}
#news .news-list_wrapper {
  background-color: #fff;
  padding: 1.2rem 2rem 3rem;
}
#news .h2-news {
  font-size: 2.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.4rem solid;
  margin-bottom: 0;
  font-weight: 700;
}
#news .h2-news::before {
  content: "News";
  display: inline-block;
  font-size: clamp(3rem, 3.90625vw, 6.2rem);
  font-weight: 500;
  letter-spacing: 0.002em;
  -webkit-transform: translateY(0.125em);
          transform: translateY(0.125em);
  margin-right: 1.8rem;
}
@media screen and (max-width: 420px) {
  #news .h2-news {
    position: relative;
    z-index: 1;
    text-align: right;
    font-size: 1.8rem;
  }
  #news .h2-news::before {
    font-size: 6rem;
    position: absolute;
    left: 0;
    bottom: 0.5rem;
    z-index: -1;
  }
}
#news #const-w-news .h2-news {
  color: var(--key01);
  border-bottom-color: var(--key01);
}
#news #const-w-news .h2-news::before {
  color: var(--key01_l);
}
#news #const-w-news .btn {
  background-color: var(--key01);
  border-color: var(--key01);
}
#news #const-w-news .btn:hover {
  color: var(--key01);
  background-color: #fff;
}
#news #const-w-news .btn:hover::after {
  border-top-color: var(--key01);
  border-right-color: var(--key01);
}
#news #gds-news .h2-news {
  color: var(--key02);
  border-bottom-color: var(--key02);
}
#news #gds-news .h2-news::before {
  color: var(--key02_l);
}
#news #gds-news .btn {
  background-color: var(--key02);
  border-color: var(--key02);
}
#news #gds-news .btn:hover {
  color: var(--key02);
  background-color: #fff;
}
#news #gds-news .btn:hover::after {
  border-top-color: var(--key02);
  border-right-color: var(--key02);
}
#news .archive {
  max-width: 100rem;
  margin-inline: auto;
}
#news .news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 1.8rem;
  list-style: none;
  padding: 0;
  background-color: #fff;
}
#news .news-list li {
  border-bottom: 1px solid var(--bcr);
  margin: 0;
  padding: 1.8rem 0;
}
#news .news-list li article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 1em;
}
#news .news-list li article a .inner_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 1.4rem;
}
#news .news-list li article a .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--txt);
}
#news .news-list li article a .news-title {
  font-size: 1.6rem;
  margin-bottom: 0;
}
#news .news-list li article a:hover {
  background-color: rgba(192, 216, 234, 0.3);
  text-decoration: none;
}

/* =================================================

建設工事、測量・建設コンサルタント等・物品・業務委託

================================================= */
.main-contents_wrapper {
  width: min(calc(100% - 3rem), 146rem);
  margin-inline: auto;
  margin-bottom: clamp(3rem, 3.90625vw, 6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 2rem clamp(2rem, 2.6041666667vw, 4rem);
}
.main-contents_wrapper .mcon {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 47.7rem;
          flex: 1 1 47.7rem;
}

#const_etc .h2-index,
#gds_osg .h2-index {
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0 0 1.4rem clamp(3.5rem, 4.5572916667vw, 4.2rem);
  border-bottom: 0.4rem solid;
  margin-bottom: 2rem;
  position: relative;
}
#const_etc .h2-index::before,
#gds_osg .h2-index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  display: block;
  height: auto;
  width: 2.4rem;
  aspect-ratio: 24/25;
  -webkit-mask: url("../img/icon_bid.svg");
          mask: url("../img/icon_bid.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  vertical-align: middle;
  margin-right: 1.8rem;
}

#const_etc .h2-index {
  color: var(--key01);
}
#const_etc .h2-index::before {
  background-color: var(--key01);
}

#gds_osg .h2-index {
  color: var(--key02);
}
#gds_osg .h2-index::before {
  background-color: var(--key02);
}

.mcon ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: number 0;
}
.mcon ul li {
  position: relative;
}
.mcon ul li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 1.2rem;
  color: #fff;
  width: 2.3rem;
  aspect-ratio: 1/1;
  height: auto;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  letter-spacing: 0;
  left: 1rem;
  top: calc(50% - 0.1rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.mcon ul li::after {
  content: "";
  border-radius: 50%;
  width: 2.3rem;
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mcon ul li a {
  display: block;
  background-color: #fff;
  text-decoration: none;
  padding: 1rem 1rem 1rem 4rem;
  font-size: 1.6rem;
}
.mcon ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

#const_etc ul li::after {
  background-color: var(--key01);
}

#gds_osg ul li::after {
  background-color: var(--key02);
}

/* =================================================

関連リンク

================================================= */
#related-links .h2-related-links {
  font-size: 2.2rem;
  color: var(--txt);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 0.4rem solid var(--txt);
}
#related-links .h2-related-links::before {
  content: "";
  display: inline-block;
  height: 2rem;
  width: 1.9rem;
  margin-right: 1.2rem;
  aspect-ratio: 20/19;
  -webkit-mask: url("../img/icon_link.svg");
          mask: url("../img/icon_link.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--txt);
  vertical-align: middle;
}
#related-links .related-links_wrapper {
  width: min(calc(100% - 3rem), 146rem);
  margin-inline: auto;
  margin-bottom: clamp(3rem, 3.90625vw, 6rem);
}
#related-links .related-links_wrapper .links-lists {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 2rem 2.4rem;
}
#related-links .related-links_wrapper .links-lists li {
  width: calc((100% - 2.4rem) / 2);
  background-color: #fff;
  position: relative;
}
#related-links .related-links_wrapper .links-lists li a {
  display: block;
  padding: 2rem 3rem;
  text-decoration: none;
}
#related-links .related-links_wrapper .links-lists li::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-left: 0.5em;
  border-top: 0.2rem solid var(--txt);
  border-right: 0.2rem solid var(--txt);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
#related-links .related-links_wrapper .links-lists li:hover::after {
  border-top-color: var(--on);
  border-right-color: var(--on);
}
@media screen and (max-width: 500px) {
  #related-links .related-links_wrapper .links-lists {
    gap: 1.5rem;
  }
  #related-links .related-links_wrapper .links-lists li {
    width: 100%;
  }
}

/* ================================================



下層ページ



================================================= */
#page,
#archive {
  padding: 3rem 0;
}
#page .container,
#archive .container {
  max-width: 146rem;
  background-color: #fff;
  padding: clamp(1.5rem, 1.953125vw, 3rem);
  margin-bottom: 3rem;
}
#page .container:last-of-type,
#archive .container:last-of-type {
  margin-bottom: 0;
}

/* =================================================

サムネールメニュー

================================================= */
.thumbs-menu {
  list-style: none;
  padding: 0;
  margin: clamp(3rem, 3.90625vw, 6rem) auto;
  width: min(calc(100% - 3rem), 146rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(24rem, 23.4375vw, 32rem), 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: clamp(1rem, 0.9765625vw, 3rem);
  margin: 0 auto 3rem;
  counter-reset: number 0;
}
.thumbs-menu li {
  aspect-ratio: 1/1;
  height: auto;
  border: 0.1rem solid #ccc;
  position: relative;
  overflow: hidden;
}
.thumbs-menu li a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: clamp(2rem, 2.6041666667vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  padding: 1.5rem;
  border: 1rem solid #fff;
  z-index: 3;
}
.thumbs-menu li a span {
  display: block;
  font-size: clamp(1.6rem, 2.0833333333vw, 2.4rem);
}
.thumbs-menu li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.thumbs-menu li::after {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 20rem;
  font-family: var(--ffr);
  font-weight: 700;
  font-weight: 700;
  opacity: 0.7;
  z-index: 2;
}
.thumbs-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.thumbs-menu li:hover img {
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 534px) {
  .thumbs-menu li a {
    font-size: clamp(2.2rem, 6.875vw, 4rem);
  }
  .thumbs-menu li a span {
    font-size: clamp(1.4rem, 4.375vw, 4rem);
  }
}
/* =================================================

サムネールメニュー
建設工事、測量・建設コンサルタント等

================================================= */
#const-ws-cc .thumbs-menu li::after {
  color: var(--key01_l);
}
#const-ws-cc .thumbs-menu li::before {
  background-color: rgba(38, 0, 230, 0.6);
  mix-blend-mode: multiply;
}

/* =================================================

サムネールメニュー
物品・業務委託

================================================= */
.kako {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

#gdos .thumbs-menu li::after {
  color: var(--key02_l);
}
#gdos .thumbs-menu li::before {
  background-color: rgba(230, 153, 0, 0.8);
  mix-blend-mode: multiply;
}

.tiling {
  list-style: none;
  padding: 0;
  margin: clamp(3rem, 3.90625vw, 6rem) auto;
  width: min(calc(100% - 3rem), 146rem);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(26rem, 33.8541666667vw, 35rem), 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: clamp(1rem, 1.3020833333vw, 3rem);
  margin: 3rem auto;
}
.tiling > li {
  padding: 3rem clamp(1.5rem, 1.953125vw, 3rem);
  background-color: #fff;
}
.tiling > li:nth-last-child(-n+2) {
  display: grid;
  place-items: center;
}
.tiling > li:nth-last-child(-n+2) .tiling_wrapper {
  -webkit-transform: translateY(0.75em);
          transform: translateY(0.75em);
}
.tiling .tiling_wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.tiling .tiling_wrapper .tiling-h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(2rem, 2.6041666667vw, 2.4rem);
  gap: 1rem;
}
.tiling .tiling_wrapper .tiling-h3 .num {
  font-size: clamp(3.2rem, 4.1666666667vw, 4.2rem);
  font-family: var(--ffr);
  font-weight: 700;
  -webkit-transform: translateY(-0.25em);
          transform: translateY(-0.25em);
  color: var(--key02);
  white-space: nowrap;
}
.tiling .tiling_wrapper a {
  text-decoration: none;
}
.tiling .tiling_wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 1rem;
}
.tiling .tiling_wrapper ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.6rem, 2.0833333333vw, 1.8rem);
}
.tiling .tiling_wrapper ul li a::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem solid var(--txt);
  border-right: 0.1rem solid var(--txt);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.4rem) rotate(45deg);
          transform: translateY(-0.4rem) rotate(45deg);
  margin-right: 0.5em;
}

/* ================================================



gotop ボタン



================================================= */
a.page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  width: 4rem;
  height: 6rem;
  position: fixed;
  bottom: 3rem;
  right: 1.5rem;
  background-color: var(--key03);
  border: 1px solid #fff;
}
a.page-top .go-arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.5rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a.page-top:hover, a.page-top:active {
  background-color: #fff;
  border-color: var(--key03);
}
a.page-top:hover .go-arrow, a.page-top:active .go-arrow {
  border-top: 1px solid var(--key03);
  border-right: 1px solid var(--key03);
}

/* ================================================



フッター



================================================= */
footer {
  padding-bottom: 5rem;
  color: #fff;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  margin-bottom: 0;
}
footer .footer {
  width: min(calc(100% - 3rem),146rem);
  margin-inline: auto;
  padding-bottom: clamp(1.5rem, 1.953125vw, 5rem);
}
footer .footer_inner {
  background-color: var(--txt);
  padding: clamp(3rem, 3.90625vw, 5rem) clamp(3rem, 3.90625vw, 5rem) 0;
}
footer .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 0 3rem;
}
@media screen and (max-width: 991px) {
  footer .footer__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .h1_footer {
  font-size: clamp(2.4rem, 3.125vw, 3rem);
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}
footer .footer-info__wrapper {
  margin-bottom: 3.6rem;
}
footer .footer-info__wrapper address {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
footer .footer-info__wrapper address span {
  display: inline-block;
}
footer .footer-info__wrapper .h2_footer {
  font-size: 2.2rem;
  font-weight: 500;
}
footer .footer-info__wrapper .h2_footer span {
  display: inline-block;
}
footer .footer-info__wrapper .h3_footer {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
footer .footer-info__wrapper .h3_footer span {
  display: inline-block;
}
footer .footer-info__wrapper p {
  font-size: 1.6rem;
}
footer .footer-info__wrapper p span {
  display: inline-block;
}
footer .footer-nav {
  margin-bottom: 5rem;
}
footer .footer-nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 0 clamp(4rem, 3.3333333333vw, 6rem);
}
footer .footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-nav nav ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
footer .footer-nav nav ul li a {
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: 0.05em;
}
footer .footer-nav nav ul li::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.2rem) rotate(45deg);
          transform: translateY(-0.2rem) rotate(45deg);
}
footer .copyright {
  font-size: 1rem;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  background-color: var(--txt);
  padding: 2rem 1.5rem;
}

/* =================================================

フッターレスポンシブ

================================================= */
/* =====================

ページナビ

===================== */
.wp-pagenavi {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 50px;
  color: var(--txt);
  font-size: 14px;
}
.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-family: var(--ffr);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--bcr);
  border-radius: 3px;
}

.wp-pagenavi a {
  color: var(--txt);
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-color: var(--txt) !important;
  background-color: var(--txt);
  color: #fff;
}

/* ================================================



Not Found



================================================= */
#notfound .notfound {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3em;
  margin-bottom: 3em;
}
#notfound .notfound h2 {
  margin: 0 auto 0.5em;
  color: #ccc;
  text-align: center;
}
#notfound .notfound p {
  text-align: center;
}