

.page-content {
margin-top: 220px!important;
}

/* =========================================
   JOB INFORMATION
========================================= */

.exa-jobinfo {
  padding: 0;
  background: transparent;
}

.exa-jobinfo__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.exa-jobinfo__heading {
  text-align: center;
  margin-bottom: 42px;
}

.exa-jobinfo__title {
  margin: 0;
  font-family: 'Teko', 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f2f42;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}

.exa-jobinfo__subtitle {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111;
}

/* タブ */
.exa-jobinfo__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto 44px;
}

.exa-jobinfo__tab {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid #2d2d2d;
  border-radius: 0;
  background: #fff;
  color: #222;
  min-height: 58px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.exa-jobinfo__tab:hover {
  opacity: 0.85;
}

.exa-jobinfo__tab:focus {
  outline: none;
}

.exa-jobinfo__tab:focus-visible {
  outline: 2px solid #2d8cff;
  outline-offset: 2px;
}

.exa-jobinfo__tab.is-active {
  border-color: #2d8cff;
  color: #2d8cff;
}

.exa-jobinfo__tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid #2d8cff;
}

/* パネル */
.exa-jobinfo__panel {
  display: none;
}

.exa-jobinfo__panel.is-active {
  display: block;
}

.exa-jobinfo__panel[hidden] {
  display: none !important;
}

/* 表 */
.exa-jobinfo__table {
  width: 100%;
  border-top: 1px solid #d8d8d8;
}

.exa-jobinfo__row {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  border-bottom: 1px solid #d8d8d8;
}

.exa-jobinfo__label,
.exa-jobinfo__value {
  padding: 18px 16px;
  font-size: 16px;
  line-height: 1.9;
  word-break: break-word;
}

.exa-jobinfo__label {
  color: #222;
  font-weight: 700;
}

.exa-jobinfo__value {
  color: #333;
  font-weight: 400;
}

.exa-jobinfo__value br + br {
  display: none;
}

.exa-jobinfo button {
  box-shadow: none;
}

.exa-jobinfo * {
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .exa-jobinfo__title {
    font-size: clamp(44px, 7vw, 72px);
  }

  .exa-jobinfo__tabs {
    gap: 16px;
    margin-bottom: 36px;
  }

  .exa-jobinfo__tab {
    min-height: 54px;
    font-size: 18px;
    padding: 13px 16px;
  }

  .exa-jobinfo__row {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .exa-jobinfo__label,
  .exa-jobinfo__value {
    padding: 16px 14px;
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .exa-jobinfo__heading {
    margin-bottom: 28px;
  }

  .exa-jobinfo__title {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: 0.04em;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14);
  }

  .exa-jobinfo__subtitle {
    margin-top: 8px;
    font-size: 15px;
  }

  .exa-jobinfo__tabs {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .exa-jobinfo__tab {
    min-height: 52px;
    font-size: 17px;
    padding: 12px 14px;
  }

  .exa-jobinfo__tab.is-active::after {
    bottom: -10px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 10px;
  }

  .exa-jobinfo__row {
    grid-template-columns: 1fr;
  }

  .exa-jobinfo__label,
  .exa-jobinfo__value {
    padding-left: 10px;
    padding-right: 10px;
  }

  .exa-jobinfo__label {
    padding-bottom: 6px;
    border-bottom: none;
  }

  .exa-jobinfo__value {
    padding-top: 0;
    padding-bottom: 14px;
  }
}

/* =========================================
   JOB INFORMATION
   タブなし・2列表版
========================================= */

.exa-jobinfo--two-column {
  padding: 0;
  background: transparent;
}

.exa-jobinfo__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.exa-jobinfo__heading {
  text-align: center;
  margin-bottom: 42px;
}

.exa-jobinfo__title {
  margin: 0;
  font-family: 'Teko', 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f1221;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}

.exa-jobinfo__subtitle {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111;
}

/* 2列 */
.exa-jobinfo__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0px;
  align-items: start;
}

.exa-jobinfo__col {
  width: 100%;
}

.exa-jobinfo__col-title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0f2f42;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  color: #0f2f42;
  text-align: center;
}

/* 表 */
.exa-jobinfo__table {
  width: 100%;
  border-top: 1px solid #d8d8d8;
}

.exa-jobinfo__row {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  border-bottom: 1px solid #d8d8d8;
}

.exa-jobinfo__label,
.exa-jobinfo__value {
  padding: 16px 14px;
  font-size: 16px;
  line-height: 1.85;
  word-break: break-word;
  box-sizing: border-box;
}

.exa-jobinfo__label {
  color: #111;
  /*color: #0f1221;*/
  font-weight: 700;
}

.exa-jobinfo__value {
  color: #0f1221;
  font-weight: 400;
}

.exa-jobinfo__value br + br {
  display: none;
}

@media (max-width: 991px) {
  .exa-jobinfo__columns {
    gap: 24px;
  }

  .exa-jobinfo__col-title {
    font-size: 24px;
  }

  .exa-jobinfo__row {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .exa-jobinfo__label,
  .exa-jobinfo__value {
    padding: 14px 12px;
    font-size: 13px;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .exa-jobinfo__heading {
    margin-bottom: 28px;
  }

  .exa-jobinfo__title {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: 0.04em;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.14);
  }

  .exa-jobinfo__subtitle {
    margin-top: 8px;
    font-size: 15px;
  }

  .exa-jobinfo__columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .exa-jobinfo__col-title {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .exa-jobinfo__row {
    grid-template-columns: 1fr;
  }

  .exa-jobinfo__label,
  .exa-jobinfo__value {
    padding-left: 10px;
    padding-right: 10px;
  }

  .exa-jobinfo__label {
    padding-bottom: 6px;
  }

  .exa-jobinfo__value {
    padding-top: 0;
    padding-bottom: 14px;
  }
}


.exa-jobinfo__label {
  color: #111;
  font-weight: 600;
  background-color:#f0f0f0;
  /*text-align: right;*/
}

/* =========================================
   top-bar
========================================= */

:root{
  --topbar-bg: #ffffff;
  --topbar-line: #111111;
  --topbar-left-bg: #ffffff;
  --topbar-left-text: #111111;
  --topbar-right-text: #111111;
}

.header-style-2 .top-bar.site-bg-secondry{
  background-color: var(--topbar-bg) !important;
  border-bottom: 1px solid var(--topbar-line) !important;
}

.header-style-2 .wt-topbar-left .wt-topbar-info{
  background-color: var(--topbar-left-bg) !important;
  color: var(--topbar-left-text) !important;
  margin-bottom: 0 !important;
  border-left: 1px solid var(--topbar-line) !important;
  border-right: 1px solid var(--topbar-line) !important;
  border-top: none !important;
  border-bottom: none !important;
}

.header-style-2 .top-bar .wt-topbar-info li{
  border-right: none !important;
}

.header-style-2 .top-bar .wt-topbar-info li:first-child::before{
  background-color: var(--topbar-left-bg) !important;
  border-top: 1px solid var(--topbar-line) !important;
  border-bottom: 1px solid var(--topbar-line) !important;
}

.header-style-2 .wt-topbar-left .wt-topbar-info li,
.header-style-2 .wt-topbar-left .wt-topbar-info li span{
  color: var(--topbar-left-text) !important;
}

.header-style-2 .wt-topbar-right .wt-topbar-info-2{
  margin-bottom: 0 !important;
  padding-right: 15px !important;
  border-right: 1px solid var(--topbar-line) !important;
}

.header-style-2 .top-bar .wt-topbar-right .wt-topbar-info-2 li{
  color: var(--topbar-right-text) !important;
}

.header-style-2 .top-bar .wt-topbar-right .wt-topbar-info-2 li:last-child{
  border-right: none !important;
}

.header-style-2 .top-bar .wt-topbar-right,
.header-style-2 .top-bar .wt-topbar-right a,
.header-style-2 .top-bar .wt-topbar-right i,
.header-style-2 .social-icons li a{
  color: var(--topbar-right-text) !important;
}

.header-style-2 .wt-topbar-left{
  border-top: none !important;
  border-bottom: none !important;
}

.header-style-2 .wt-topbar-left .wt-topbar-info{
  border-top: none !important;
  border-bottom: none !important;
}

.header-style-2 .top-bar .wt-topbar-info li:first-child::before{
  border-top: none !important;
  border-bottom: none !important;
}

.wt-bnr-inr .overlay-main {
  display: none !important;
}

.space-title{
margin-top: 100px !important;
margin-bottom:  100px !important;
}
.award-page .service-border-box:before{
  left: -8px !important;
  top: -8px !important;
  right: -8px !important;
  bottom: -8px !important;
  /*background-color: #bcbea9 !important;*/
    background-color:rgb(238, 238, 238);
}

.award-page .service-border-box:hover:before{
	background-color: #bcbea9 !important;
}

.award-page .service-box-title{
	border-left-color: #bcbea9 !important;
}

.exa-breadcrumb{
  width: 100%;
  margin-bottom: 20px;
  padding: 14px 0 0;
}

.exa-breadcrumb__list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exa-breadcrumb__item{
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #6f6f6f;
  white-space: nowrap;
}

.exa-breadcrumb__item + .exa-breadcrumb__item::before{
  content: "｜";
  display: inline-block;
  margin: 0 8px;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1;
}

.exa-breadcrumb__item a{
  color: #6f6f6f;
  text-decoration: none;
  border-bottom: 1px solid #bdbdbd;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.exa-breadcrumb__item a:hover{
  color: #00173c;
  border-bottom-color: #00173c;
  opacity: 1;
}

.exa-breadcrumb__item[aria-current="page"]{
  color: #444444;
  font-weight: 500;
}

@media (max-width: 767px){
  .exa-breadcrumb{
    padding-top: 10px;
  }

  .exa-breadcrumb__list{
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .exa-breadcrumb__list::-webkit-scrollbar{
    display: none;
  }

  .exa-breadcrumb__item{
    font-size: 14px;
  }

  .exa-breadcrumb__item + .exa-breadcrumb__item::before{
    margin: 0 6px;
    font-size: 11px;
  }
    .wt-team-1-single{
    margin: 0!important;
  }
}

.company-greeting-title--sp{
  display: none;
}

@media (max-width: 767px){

  .company-greeting-section .company-greeting-title--sp{
    display: block;
    width: 100%;
    margin: 0 0 22px;
    padding: 0;
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.18em;
    text-align: center !important;
    color: #00173c;
  }

  .company-greeting-section .company-greeting-title--pc{
    display: none;
  }

  .company-greeting-section .wt-team-1-single{
    margin-left: 0 !important;
  }
}

.page-content--with-subpage-hero{
  margin-top: 0 !important;
}

.exa-subpage-hero{
  background: #ffffff;
  padding-top: 220px;
  padding-bottom: 28px;
}

.exa-subpage-hero .space-title{
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.exa-subpage-hero .exa-breadcrumb{
  margin-bottom: 0;
  padding-bottom: 14px;
}

.exa-subpage-hero__en{
  display: inline-block;
}

.exa-subpage-hero--motto{
  background: linear-gradient(180deg, #f7f5ef 0%, #fbfaf7 100%);
}

.exa-page-heading--award{
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.exa-page-heading--award::before{
  content: "";
  position: absolute;
  left: 50%;
  top: -46px;
  bottom: -46px;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #fbf8f0 0%, #f7f1e4 100%);
  z-index: -1;
  pointer-events: none;
}

.exa-page-heading--award .wt-small-separator,
.exa-page-heading--award .wt-small-separator > div:not(.sep-leaf-left):not(.sep-leaf-right){
  color: #b89b6a !important;
}

.exa-page-heading--award .sep-leaf-left,
.exa-page-heading--award .sep-leaf-right,
.exa-page-heading--award .sep-leaf-left::before,
.exa-page-heading--award .sep-leaf-left::after,
.exa-page-heading--award .sep-leaf-right::before,
.exa-page-heading--award .sep-leaf-right::after{
  background-color: #b89b6a !important;
  border-color: #b89b6a !important;
}

@media (max-width: 767px){
  .exa-page-heading--award::before{
    top: -32px;
    bottom: -32px;
  }

  .exa-subpage-hero{
    padding-top: 92px;
    padding-bottom: 8px;
  }

  .exa-subpage-hero .space-title{
    margin-top: 24px !important;
    margin-bottom: 38px !important;
  }

  .exa-subpage-hero .exa-breadcrumb{
    padding-top: 6px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }

  .exa-jobinfo__label,
  .exa-jobinfo__value{
    font-size: 16px;
    line-height: 1.85;
  }
}
