@charset "UTF-8";
/* =====================
  リセット
 ======================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

i, address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

small {
  font-size: 100%;
}

/* =====================
	株式会社金子組　採用サイト
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_wht: #fff;
  --c_navy: #00327D;
  --c_yellow: #FFFF00;
  --c_green: #5ECB6E;
  /* フォント定義 */
  --font_ja: YakuHanJP, "Noto Sans JP", sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
}

body {
  font-family: var(--font_ja);
  font-optical-sizing: auto;
  font-size: clamp(12px, 1.04166vw, 1.04166vw);
  font-weight: 700;
  line-height: 2.0;
  letter-spacing: 0.1em;
  color: var(--c_navy);
  background: var(--c_navy);
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
}

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

.clearfix {
  clear: both;
}

a {
  color: var(--c_navy);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-decoration: none;
}

/** -------------------- Base Style -------------------- **/
.inner {
  width: 62.5%;
  margin: 0 auto;
}

.cmn-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5em;
     -moz-column-gap: 1.5em;
          column-gap: 1.5em;
  background: var(--c_yellow);
  color: var(--c_navy);
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em 1.5em 1em 2.5em;
}

.cmn-btn:after {
  content: "";
  width: 2em;
  height: 2em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cmn-btn > span {
  min-width: 6.5em;
}

.cmn-btn:hover {
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.cmn-entry {
  width: 13.158em;
  max-width: 100%;
  text-align: center;
  font-size: 285%;
  background: var(--c_yellow);
  border: 5px solid var(--c_navy);
  display: block;
  margin: 0 auto;
  padding: 0.175em;
}

.cmn-entry:hover {
  background: var(--c_navy);
  color: var(--c_yellow);
}

.cmn-ttl01 {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 150%;
  line-height: 1.47;
  margin-bottom: 1em;
}

.cmn-ttl01:before {
  content: "●";
}

.cmn-ttl02 {
  text-align: center;
  font-size: 150%;
  margin-bottom: 1.667em;
}

.cmn-ttl02 > span {
  background: var(--c_yellow);
  padding: 0 1.667em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/** -------------------- Header -------------------- **/
.header {
  height: 5.208vw;
}

.header .header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.208vw;
  background: var(--c_wht);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 2.604%;
}

.header .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}

.header .header-logo a:hover {
  opacity: 0.7;
}

.header .header-logo img {
  width: 6.5em;
}

.header .header-trigger {
  display: none;
}

.header .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5em;
     -moz-column-gap: 2.5em;
          column-gap: 2.5em;
}

.header .header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5em;
     -moz-column-gap: 2.5em;
          column-gap: 2.5em;
}

.header .header-nav-list a {
  position: relative;
}

.header .header-nav-list a:before {
  content: "";
  width: 0;
  height: 2px;
  background: currentColor;
  position: absolute;
  bottom: -0.2em;
  left: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.header .header-nav-list a:hover:before {
  width: 100%;
}

.header .header-nav-cta a {
  display: block;
  text-align: center;
  background: var(--c_yellow);
  border: 3px solid var(--c_navy);
  padding: 0.1em 1.75em;
}

.header .header-nav-cta a:hover {
  background: var(--c_navy);
  color: var(--c_yellow);
}

/** -------------------- Footer -------------------- **/
.footer {
  color: var(--c_wht);
  padding: 5.208% 0;
}

.footer a {
  color: var(--c_wht);
}

.footer .footer-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 21.667% auto;
  grid-template-columns: 21.667% auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .footer-company {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.footer .footer-logo {
  margin-bottom: 2.5em;
}

.footer .footer-address {
  font-size: 75%;
  line-height: 1.33;
}

.footer .footer-link {
  margin-top: 2.5em;
}

.footer .footer-link a {
  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;
  padding: 0.25em;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  background: var(--c_wht);
  color: var(--c_navy);
  position: relative;
}

.footer .footer-link a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_wht);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
  z-index: 2;
}

.footer .footer-link a:after {
  content: "";
  width: 0.7em;
  height: 0.75em;
  background: url(../img/common/icon_blank.png) no-repeat center/contain;
  -webkit-filter: var(--filter_navy);
          filter: var(--filter_navy);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer .footer-link a:hover:before {
  opacity: 0.5;
  visibility: visible;
}

.footer .footer-sitemap {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.footer .footer-sitemap-list {
  padding-left: 2em;
  border-left: 1px solid var(--c_wht);
  line-height: 1.45;
}

.footer .footer-sitemap-list:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer .footer-sitemap-list > li + li {
  margin-top: 1.5em;
}

.footer .footer-sitemap-list a:hover {
  opacity: 0.7;
}

.footer .footer-copyright {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: right;
  font-size: 75%;
}

/** -------------------- 下層ページ -------------------- **/
body.page .page-container {
  padding: 0 4.167%;
}

body.page .page-container .inner {
  width: 68.182%;
}

body.page .page-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 91.667%;
  z-index: -5;
}

body.page .page-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c_navy);
  opacity: 0.8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

body.page .page-title {
  position: relative;
}

body.page .page-title-container {
  padding-top: 37.5%;
  position: relative;
}

body.page .page-title-main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  color: var(--c_wht);
  font-size: 400%;
  line-height: 1.45;
}

body.page .page-title-main:before {
  content: attr(data-eng);
  font-size: 250%;
  letter-spacing: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  color: var(--c_wht);
  opacity: 0.2;
}

body.page .page-main {
  position: relative;
  padding: 3.409% 0 8.523%;
  margin-top: 7.955%;
  background: var(--c_green);
  border-radius: 0 0 2.5em 2.5em;
}

body.page .page-main:before {
  content: "";
  width: 100%;
  padding-top: 7.955%;
  background: url(../img/common/mask.png) no-repeat center top/cover;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
}

/* PCのみ
  ------------------------ */
@media (min-width: 700px) {
  .sm-only {
    display: none !important;
  }
}

/* タブレット
  ------------------------ */
@media (max-width: 1099px) {
  .inner {
    width: 90%;
  }
  /** -------------------- Header -------------------- **/
  .header {
    height: 50px;
  }
  .header .header-container {
    height: 50px;
    padding: 0 3%;
  }
  .header .header-logo a {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
  .header .header-logo img {
    width: 80px;
  }
  .header .header-trigger {
    display: block;
    width: 40px;
    height: 40px;
    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;
  }
  .header .header-trigger-inner {
    width: 32px;
    height: 16px;
    position: relative;
  }
  .header .header-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--c_navy);
    -webkit-transition: var(--anim);
    transition: var(--anim);
  }
  .header .header-trigger span:first-child {
    top: 0;
  }
  .header .header-trigger span:nth-child(2), .header .header-trigger span:nth-child(3) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header .header-trigger span:last-child {
    bottom: 0;
  }
  .header .header-trigger.is-open span:first-child, .header .header-trigger.is-open span:last-child {
    opacity: 0;
  }
  .header .header-trigger.is-open span:nth-child(2) {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .header .header-trigger.is-open span:nth-child(3) {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .header .header-nav {
    position: fixed;
    top: 50px;
    right: 0;
    width: 100%;
    max-height: calc(100% - 50px);
    background: var(--c_wht);
    display: none;
    padding: 32px 20px;
  }
  .header .header-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px 0;
  }
  .header .header-nav-cta {
    margin-top: 20px;
  }
  /** -------------------- 下層ページ -------------------- **/
  body.page .page-container {
    padding: 0 5%;
  }
  body.page .page-container .inner {
    width: 90%;
  }
  body.page .page-bg {
    width: 90%;
  }
  body.page .page-title-container {
    padding-top: 30%;
  }
}

/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body {
    font-size: 16px;
  }
  .pc-only {
    display: none !important;
  }
  /** -------------------- Base Style -------------------- **/
  .inner {
    width: 92%;
  }
  .cmn-entry {
    font-size: 48px;
    border-width: 3px;
  }
  .cmn-ttl01 {
    font-size: 20px;
  }
  .cmn-ttl02 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .cmn-ttl02 > span {
    padding: 0 20px;
  }
  /** -------------------- Footer -------------------- **/
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-container {
    display: block;
  }
  .footer .footer-logo {
    width: 160px;
    margin: 0 auto 20px;
  }
  .footer .footer-address {
    font-size: 14px;
  }
  .footer .footer-link {
    margin-top: 20px;
  }
  .footer .footer-sitemap {
    margin-top: 30px;
    gap: 8px 0;
    font-size: 14px;
  }
  .footer .footer-sitemap-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    padding: 0;
    border: 0;
  }
  .footer .footer-sitemap-list > li + li {
    margin-top: 8px;
  }
  .footer .footer-copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
  }
  /** -------------------- 下層ページ -------------------- **/
  body.page .page-container {
    padding: 0;
  }
  body.page .page-container .inner {
    width: 92%;
  }
  body.page .page-bg {
    width: 100%;
    height: 240px;
  }
  body.page .page-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.page .page-title-container {
    padding-top: 200px;
  }
  body.page .page-title-main {
    font-size: 36px;
    top: calc(50% - 40px);
  }
  body.page .page-title-main:before {
    font-size: 64px;
  }
  body.page .page-main {
    padding: 30px 0 75px;
    margin-top: -40px;
    border-radius: 0;
  }
  body.page .page-main:before {
    padding-top: 40px;
  }
}
