@charset "UTF-8";
/* =====================
	金子組
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_white: #fff;
  --c_black: #000;
  --c_light_green: #5ecb6e;
  --c_yellow: #ffff00;
  --c_text: #01307e;
  /* フォント定義 */
  --font_Noto_Sans_JP: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  --font_Noto_Serif_JP: "Noto Serif JP", "Hiragino Mincho ProN",
    "Hiragino Mincho", "Yu Mincho", "MS PMincho", serif;
  --font_YuGothic: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  /* transition定義 */
  --anime: all 0.4s ease-out;
}

/** ------------------------ COMMON STYLE ------------------------ **/
html {
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font_Noto_Sans_JP);
  font-optical-sizing: auto;
  font-size: clamp(14px, 1.04vw, 1.04vw);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--c_text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c_text);
  text-decoration: none;
  transition: var(--anime);
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

.sp-only {
  display: none;
}

.wrapper {
  width: 62.5%;
  margin: 0 auto;
}

.wrapper-wide {
  width: 85.1%;
  margin: 0 auto;
}

/** ------------------------ ヘッダー ------------------------ **/
.header {
  background: radial-gradient(#4872b8, #074eb1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.08% 4.01%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header .header-logo {
  width: 10.76%;
  min-width: 100px;
}

.header .nav {
  display: flex;
  align-items: center;
  gap: 3.5em;
}

.header .nav-list {
  display: flex;
  gap: 2.5em;
}

.header .nav-item a {
  color: #fff;
  font-weight: bold;
}

.header .btn-recruitment {
  width: 7.9em;
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_light_green);
  padding: 0.5em 1em 0.55em 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.header .btn-recruitment::after {
  content: "";
  width: 0.7em;
  height: 0.76em;
  background: url(../img/common/icon-link.svg) no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.header .btn-recruitment:hover {
  opacity: 0.84;
}

.header .menu-btn {
  display: none;
  width: 50px;
  height: 25px;
  position: relative;
  cursor: pointer;
}

.header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c_white);
  transition: var(--anime);
}

.header .menu-btn span:first-child {
  top: 0;
}

.header .menu-btn span:nth-child(2),
.header .menu-btn span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .menu-btn span:last-child {
  bottom: 0;
}

.header .menu-btn.is-open span:first-child,
.header .menu-btn.is-open span:last-child {
  opacity: 0;
}

.header .menu-btn.is-open span:nth-child(2) {
  transform: rotate(45deg);
}

.header .menu-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

/** ------------------------ 下層ページフッター ------------------------ **/
.footer-sub {
  padding: 3.46% 0 2.14%;
  background: url(../img/common/footer-sub-bg.png) center bottom / 80.1%
    no-repeat;
}

.footer-sub .company-info {
  margin-bottom: 5.52%;
}

.footer-sub .footer-logo {
  width: 9.9%;
  margin: 0 auto 1.15%;
}

.footer-sub .company-info-txt {
  width: fit-content;
  margin: 0 auto;
  font-size: 80%;
  color: var(--c_white);
}

.footer-sub .footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4.68em;
  margin-bottom: 0.94%;
}

.footer-sub address {
  font-style: normal;
  font-size: 75%;
  font-weight: bold;
  color: var(--c_white);
}

.footer-sub .footer-nav {
  display: flex;
  align-items: flex-end;
  gap: 9.2em;
}

.footer-sub .footer-nav-inner {
  display: flex;
  gap: 4em;
}

.footer-sub .footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding-left: 0.9em;
  border-left: 1px solid var(--c_white);
}

.footer-sub .footer-nav-item a {
  font-weight: bold;
  color: var(--c_white);
}

.footer-sub .btn-wrapper {
  position: relative;
}

.footer-sub .footer-man-img {
  width: 54.24%;
  position: absolute;
  bottom: 70%;
  right: 3%;
}

.footer-sub .btn-recruitment {
  width: 19.67em;
  font-size: 120%;
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_light_green);
  padding: 1.21em 4.67em;
  border-radius: 47px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-sub .btn-recruitment::after {
  content: "";
  width: 0.98em;
  height: 1.07em;
  background: url(../img/common/icon-link.svg) no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.footer-sub .btn-recruitment:hover {
  opacity: 0.84;
}

.footer-sub .copyright {
  width: fit-content;
  margin: 0 14.64% 0 auto;
  font-size: 75%;
  font-weight: bold;
  color: var(--c_white);
}

/** ------------------------ ページタイトル、セクションタイトル ------------------------ **/
.page-ttl {
  font-size: 300%;
  font-weight: bold;
  text-align: center;
  margin-top: 3.39%;
}

.page-ttl-eng {
  display: block;
  font-size: 40%;
  font-weight: 500;
  margin-top: 0.1%;
}

.sec-ttl2 {
  font-size: 200%;
  font-weight: bold;
  margin-bottom: 1em;
}

.sec-ttl2::before {
  content: "○";
}

/** ------------------------ ボタン ------------------------ **/
.btn-wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  position: relative;
}

.btn:hover {
  opacity: 1;
}

.btn-txt {
  transition: var(--anime);
}

.btn-more {
  width: 17.87em;
  font-size: 150%;
  font-weight: bold;
  color: var(--c_white);
  background-color: #003c9f;
  padding: 1em 1em 1.1em 2.6em;
  border-radius: 9999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-more::after {
  content: "";
  width: 1.33em;
  height: 1.33em;
  background: url(../img/common/icon-arrow-blue.svg) no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.btn-more:hover .btn-txt {
  transform: scale(1.1);
}

.btn-more.white {
  color: #003c9f;
  background-color: var(--c_white);
}

.btn-more.white::after {
  background: url(../img/common/icon-arrow-white.svg) no-repeat;
  background-size: contain;
}

.btn-white {
  font-family: var(--font_YuGothic);
  font-size: 125%;
  font-weight: bold;
  color: var(--c_text);
  background-color: var(--c_white);
  padding: 1em 2.4em 0.92em;
  border: 1px solid var(--c_text);
  border-radius: 9999px;
  transition: var(--anime);
  cursor: pointer;
}

.btn-white:hover {
  opacity: 1;
  color: var(--c_white);
  background-color: var(--c_text);
}

/** ------------------------ お知らせカテゴリの色 ------------------------ **/
.cate-news {
  background-color: #c39334;
}

.cate-field {
  background-color: #489a54;
}

/** ------------------------ サイドバー ------------------------ **/
.sidebar {
  width: 18.75%;
  position: absolute;
  top: 0;
  right: 0;
}

.sidebar .sidebar-ttl {
  height: 2.67em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 120%;
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_text);
  margin-bottom: 0.33em;
}

.sidebar .archive-list {
  font-size: 120%;
  display: flex;
  flex-direction: column;
  row-gap: 0.33em;
}

.sidebar .archive-item {
  height: 2.67em;
  background-color: var(--c_white);
}

.sidebar .archive-item a {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20.83%;
}

/** ------------------------ 円形の図形 ------------------------ **/
.round-shape-bg {
  position: relative;
}

.round-shape-bg::before {
  content: "";
  width: 25%;
  aspect-ratio: 1;
  position: absolute;
  top: -3em;
  right: 2%;
  opacity: 0.3;
  background: url(../img/common/round-shape2.png) 0% 0% / contain no-repeat;
  z-index: 10;
}

/** ------------------------ WP-PageNavi ------------------------ **/
.wp-pagenavi {
  font-family: var(--font_YuGothic);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.2em;
}

.wp-pagenavi > a,
.wp-pagenavi > span {
  width: 4em;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--c_text);
  border-radius: 50%;
}

.wp-pagenavi .current {
  color: var(--c_white);
  background-color: var(--c_text);
}

.wp-pagenavi > a:hover {
  opacity: 1;
  color: var(--c_white);
  background-color: var(--c_text);
}

/** ------------------------ single-pagination ------------------------ **/
.single-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-pagination .btn-single-pagination {
  width: 3.33em;
  height: 3.33em;
  background-color: var(--c_white);
  border: 1px solid var(--c_text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font_YuGothic);
  font-size: 120%;
  font-weight: bold;
  color: var(--c_text);
  transition: var(--anime);
}

.single-pagination .btn-single-pagination:hover {
  opacity: 1;
  color: var(--c_white);
  background-color: var(--c_text);
}

.single-pagination .btn-single-pagination.is-disabled {
  opacity: 0.2;
  pointer-events: none;
}

/** -------------------- タブレット -------------------- **/
@media (max-width: 1280px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  .wrapper {
    width: 90%;
    max-width: 800px;
  }

  .wrapper-wide {
    width: 90%;
    max-width: 1000px;
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header .nav {
    position: fixed;
    right: 0;
    z-index: 100;
    width: 400px;
    max-width: 100%;
    background-color: #1858b3;
    border-top: 1px solid var(--c_white);
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 0 50px 2em;
    transform: translateX(100%);
    transition: var(--anime);
    overflow-y: auto;
  }

  .header .nav.is-open {
    transform: translateX(0);
  }

  .header .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .header .nav-item {
    width: 100%;
    text-align: center;
  }

  .header .nav-item a {
    display: block;
    width: 100%;
    padding: 2em 0;
    border-bottom: 1px solid var(--c_white);
  }

  .header .menu-btn {
    display: block;
  }

  /** ------------------------ 下層ページフッター ------------------------ **/
  .footer-sub {
    background-size: contain;
  }

  .footer-sub .footer-container {
    gap: 1em;
  }

  .footer-sub .footer-nav {
    gap: 1em;
  }

  .footer-sub .footer-nav-inner {
    gap: 1em;
  }

  .footer-sub .footer-nav-list {
    gap: 1em;
  }

  .footer-sub .footer-man-img {
    width: 45%;
  }

  .footer-sub .btn-recruitment {
    width: 15em;
    padding: 1em 2em;
    font-size: 100%;
  }

  /** ------------------------ 円形の図形 ------------------------ **/
  .round-shape-bg::before {
    top: 0;
  }
}

/** -------------------- スマホ -------------------- **/
@media (max-width: 699px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  body {
    font-size: 16px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .wrapper {
    width: 90%;
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header {
    padding: 10px 5%;
  }

  .header .menu-btn {
    width: 30px;
    height: 15px;
  }

  /** ------------------------ 下層ページフッター ------------------------ **/
  .footer-sub {
    padding: 50px 5% 10px 5%;
    background-size: cover;
  }

  .footer-sub .company-info {
    margin-bottom: 25px;
  }

  .footer-sub .footer-logo {
    width: 100px;
    margin-bottom: 25px;
  }

  .footer-sub .footer-container {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 50px;
    margin-bottom: 50px;
  }

  .footer-sub address {
    align-self: flex-start;
  }

  .footer-sub .footer-nav {
    flex-direction: column;
    row-gap: 10em;
  }

  .footer-sub .footer-nav-inner {
    column-gap: 2em;
  }

  .footer-sub .footer-nav-list {
    border: none;
  }

  .footer-sub .copyright {
    margin: 0 auto;
  }

  /** ------------------------ ページタイトル、セクションタイトル ------------------------ **/
  .page-ttl {
    font-size: 30px;
    margin-top: 50px;
  }

  .sec-ttl2 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  /** ------------------------ ボタン ------------------------ **/
  .btn-more {
    font-size: 16px;
  }

  .btn-white {
    font-size: 16px;
  }

  /** ------------------------ サイドバー ------------------------ **/
  .sidebar {
    width: 90%;
    max-width: 300px;
    margin: 50px auto 0;
    position: static;
  }

  /** ------------------------ 円形の図形 ------------------------ **/
  .round-shape-bg::before {
    width: 40%;
  }

  /** ------------------------ WP-PageNavi ------------------------ **/
  .wp-pagenavi {
    column-gap: 0.5em;
  }

  .wp-pagenavi > a,
  .wp-pagenavi > span {
    width: 2em;
    height: 2em;
  }

  /** ------------------------ single-pagination ------------------------ **/
  .single-pagination .btn-single-pagination {
    font-size: 16px;
  }
}
