/* ##############################################################################

    KEYFRAMES

############################################################################## */

@keyframes fadein_anime {
  0% {
    opacity: 0;
    transform: translate(0, 64px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.fadein_anime {
  opacity: 0;
  animation: fadein_anime .6s cubic-bezier(.165, .84, .44, 1) forwards;
}


/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}

.font-en {
  /* font-family: 'Samantha', sans-serif; */
  font-family: 'Butler', sans-serif;
}

/* layout
**************************************** */

/* main {
  background-color: #0C275C;
  background-image: url('../images/background.png');
  background-repeat: repeat repeat;
  background-position: top right;
  background-size: 100%;
} */

.home {
  background-color: #0C275C;
  /* background-image: url('../images/background.png');
  background-position: top right;
  background-size: 100%;
  background-repeat: repeat repeat; */
}

/* スマホ用背景画像 */
/* @media screen and (max-width: 767px) {
  .home {
    background-image: url('../images/background-sp.png');
  }
} */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner-sm {
  max-width: 880px;
}

.inner-lg {
  max-width: 1600px;
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* --- float --- */
.flt-rgt {
  float: right;
}

.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}

.mgn-btm16 {
  margin-bottom: 16px;
}

.mgn-btm24 {
  margin-bottom: 24px;
}

.mgn-btm32 {
  margin-bottom: 32px;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-btm48 {
  margin-bottom: 48px;
}

.mgn-btm56 {
  margin-bottom: 56px;
}

.mgn-btm64 {
  margin-bottom: 64px;
}

.mgn-btm72 {
  margin-bottom: 72px;
}

.mgn-btm80 {
  margin-bottom: 80px;
}

.mgn-btm88 {
  margin-bottom: 88px;
}

.mgn-btm96 {
  margin-bottom: 96px;
}

.mgn-btm104 {
  margin-bottom: 104px;
}

.mgn-btm112 {
  margin-bottom: 112px;
}

.mgn-btm120 {
  margin-bottom: 120px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}

.sp-none {
  display: block;
}

.sp-none-inline {
  display: inline;
}

.sp-none-table {
  display: table;
}

.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {

  .inner,
  .inner-sm,
  .inner-lg {
    width: 80%;
    max-width: 80%;
  }

  .mgn-btm16 {
    margin-bottom: 8px;
  }

  .mgn-btm24 {
    margin-bottom: 16px;
  }

  .mgn-btm32 {
    margin-bottom: 16px;
  }

  .mgn-btm40 {
    margin-bottom: 24px;
  }

  .mgn-btm48 {
    margin-bottom: 24px;
  }

  .mgn-btm56 {
    margin-bottom: 32px;
  }

  .mgn-btm64 {
    margin-bottom: 32px;
  }

  .mgn-btm72 {
    margin-bottom: 40px;
  }

  .mgn-btm80 {
    margin-bottom: 40px;
  }

  .mgn-btm88 {
    margin-bottom: 44px;
  }

  .mgn-btm96 {
    margin-bottom: 44px;
  }

  .mgn-btm104 {
    margin-bottom: 52px;
  }

  .mgn-btm112 {
    margin-bottom: 52px;
  }

  .mgn-btm120 {
    margin-bottom: 60px;
  }

  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }

  .pc-none {
    display: block;
  }

  .pc-none-inline {
    display: inline;
  }

  .pc-none-table {
    display: table;
  }

  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}

.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col2>* {
  width: 47%;
  margin-right: 6%;
  margin-bottom: 3%;
}

.flex-col2>*:nth-child(even) {
  margin-right: 0;
}

.flex-col3>* {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col3>*:nth-child(3n+3) {
  margin-right: 0;
}

.flex-col4>* {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.flex-col4>*:nth-child(4n+4) {
  margin-right: 0;
}

@media screen and (max-width: 1140px) {
  .flex-tb-col2>* {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-tb-col2>*:nth-child(even) {
    margin-right: 0;
  }

  .flex-tb-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-tb-block>* {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10%;
  }
}

@media screen and (max-width: 768px) {

  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-sp-col2>*,
  .flex-sp-col2.flex-col3>*:nth-child(3n+3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col2>*:nth-child(even) {
    margin-right: 0;
  }

  .flex-sp-col3>*,
  .flex-sp-col3.flex-col4>*:nth-child(4n+4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col3>*:nth-child(3n+3) {
    margin-right: 0;
  }

  .flex-col2>*,
  .flex-col3>*,
  .flex-col4>* {
    width: 100%;
  }

  .flex-col2.flex-sp-block>*,
  .flex-col3.flex-sp-block>*,
  .flex-col4.flex-sp-block>* {
    margin-right: 0;
  }

  .flex-col2.flex-sp-block>*:not(:last-child),
  .flex-col3.flex-sp-block>*:not(:last-child),
  .flex-col4.flex-sp-block>*:not(:last-child) {
    margin-bottom: 10%;
  }
}

/* bg
**************************************** */
.bg-wh {
  background-color: #fff;
}

.bg-blue {
  background-color: #d8e7f2;
}

.bg-gray {
  background-color: #f8f8f8;
}

.bg-deco {
  background-image: url(../images/common/bg-pt01.png);
}

.bg-top-service {
  background-image: url(../images/common/bg-top-service.jpg);
  background-size: cover;
}

.bg-top-service {
  background-image: url(../images/common/bg-top-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-solution-service {
  background-image: url(../images/common/bg-solution-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-company-service {
  background-image: url(../images/common/bg-company-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-service-service {
  background-image: url(../images/common/bg-service-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-contact-service {
  background-image: url(../images/common/bg-contact-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-recruit-service {
  background-image: url(../images/common/bg-recruit-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-news-service {
  background-image: url(../images/common/bg-news-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  position: relative;
  overflow: hidden;
  margin-left: 80px;
  margin-right: 80px;
  padding: 137px 0;
  text-align: center;
  transform: translateY(120px);
}

.page_ttl-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  width: 100%;
  height: 114%;
  margin: auto;
}

.page_ttl-bg_img {
  width: 100%;
  height: 100%;
  background-color: #d8e7f2;
  background-image: url(../images/common/pagettl-other.jpg);
  background-size: cover;
  background-position: 80% 50%;
}

.page-company .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-company.jpg);
}

.page-service .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-service.jpg);
}

.page-service h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

.page-solution .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-solution.jpg);
}

.page-news .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-news.jpg);
}

.page-recruit .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-recruit.jpg);
}

.page-contact .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-contact.jpg);
}

.archive-case .page_ttl-bg_img,
.single-case .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-case.jpg);
}

.archive-news .page_ttl-bg_img,
.single-news .page_ttl-bg_img {
  background-image: url(../images/common/pagettl-news.jpg);
}

.page_ttl-en,
.page_ttl-jp {
  display: block;
}

.page_ttl-en {
  margin-bottom: 8px;
  font-size: 400%;
  text-transform: uppercase;
  letter-spacing: .175em;
  line-height: 1.3;
}

.page_ttl-jp {
  font-size: 112.5%;
  text-transform: uppercase;
  letter-spacing: .155em;
  animation-delay: .2s;
}

/* --- section_ttl --- */
.section_ttl {
  font-weight: normal;
  line-height: 1.6;
}

.section_ttl .en {
  display: block;
  margin-bottom: 8px;
  font-size: 250%;
  letter-spacing: .15em;
  line-height: 1.3;
}

.section_ttl .jp {
  display: block;
  font-size: 20px;
  letter-spacing: .15em;
}

.section_catch {
  text-align: center;
  font-size: 120%;
  font-weight: 700;
}

/* --- heading --- */
.heading-1 {
  font-size: 250%;
  font-family: A1 Mincho;
  line-height: 1.5;
  letter-spacing: .115em;
}

.heading-2 {
  font-size: 200%;
  font-family: A1 Mincho;
  letter-spacing: .115em;
}

.heading-3 {
  font-size: 150%;
  font-weight: normal;
  font-family: 'Koburina Gothic W3 JIS2004';
  letter-spacing: .155em;
}

.heading-line::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 16px;
  background-color: #07111e;
}

.heading-line.txt-ctr::after,
.heading-line[style="text-align: center;"]::after {
  margin-left: auto;
  margin-right: auto;
}

.heading-line.txt-wh::after {
  background-color: #fff;
}

@media screen and (max-width: 1440px) {

  /* --- page_ttl --- */
  .page_ttl {
    margin-left: 64px;
    margin-right: 64px;
  }
}

@media screen and (max-width: 1280px) {

  /* --- page_ttl --- */
  .page_ttl {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 767px) {

  /* --- page_ttl --- */
  .page_ttl {
    margin-left: 0;
    margin-right: 0;
    padding: 130px 0 90px 0;
    transform: translateY(0);
  }

  .page_ttl-en {
    font-size: 228.57%;
  }

  .page_ttl-jp {
    font-size: 128.57%;
  }

  .page_ttl-bg_img {
    background-image: url(../images/common/pagettl-other_sp.jpg);
  }

  .page-company .page_ttl-bg_img {
    background-image: url(../images/common/pagettl-company_sp.jpg);
  }

  .page-products .page_ttl-bg_img {
    background-image: url(../images/common/pagettl-products_sp.jpg);
  }

  .page-solution .page_ttl-bg_img {
    background-image: url(../images/common/pagettl-solution_sp.jpg);
  }

  .archive-case .page_ttl-bg_img,
  .single-case .page_ttl-bg_img {
    background-image: url(../images/common/pagettl-case_sp.jpg);
  }

  .archive-news .page_ttl-bg_img,
  .single-news .page_ttl-bg_img {
    background-image: url(../images/common/pagettl-news_sp.jpg);
  }

  /* --- section_ttl --- */
  .section_ttl .en {
    font-size: 285.71%;
  }

  .section_ttl-sm .en {
    font-size: 200%;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 200%;
  }

  .heading-2 {
    font-size: 120%;
    line-height: 1.6;
  }

  .heading-3 {
    line-height: 1.5;
  }
}

/* txt
**************************************** */
.deco {
  font-family: A1 Mincho;
}

.deco-din {
  font-family: din-2014, 'Koburina Gothic W6 JIS2004';
}

.deco-koburina {
  font-family: 'Koburina Gothic W3 JIS2004';
}

.deco-ingram {
  font-family: 'ingra-wide';
}

strong,
.strong,
table th {
  font-weight: 600;
  font-family: ingram-wide-2, ingra-wide, 'Koburina Gothic W6 JIS2004';
}

.txt-wh {
  color: #fff;
}

.txt-sm {
  font-size: 87.5%;
  letter-spacing: .075em;
  line-height: 1.714;
}

.txt-ctr {
  text-align: center;
}

.txt-rgt {
  text-align: right;
}

.txt-attention {
  color: #666;
  font-size: 81.25%;
  letter-spacing: .08em;
  line-height: 1.615;
}

.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}

.txt-attention-kome::before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}

.txtarea {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.txtarea p {
  letter-spacing: .075em;
  line-height: 1.75;
}

.txtarea p:not(:last-child):not([class]) {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .txtarea p {
    line-height: 2;
  }
}

/* table & list
**************************************** */
table {
  width: 100%;
}


/* --- list ---- */
.list {
  font-size: 93.75%;
  list-style-type: none;
}

.list li:not(:last-child) {
  margin-bottom: 16px;
}

.list li {
  position: relative;
  padding-left: 1.4em;
}

.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: #285BAA;
}

/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}

.list-num li {
  padding-left: 0;
}

.list-num li::before {
  display: none;
}

/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}

.list li ul li::before {
  width: 6px;
  height: 6px;
  top: .8em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  font-size: 93.75%;
  border-top: 1px solid #BFBFBF;
}

.list-dl dt {
  position: absolute;
  padding-top: 16px;
  color: #fff;
  font-weight: 700;
}

.list-dl dd {
  padding-left: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #BFBFBF;
}

.table_default .list-dl {
  border-top: none;
}

.table_default .list-dl dt,
.table_default .list-dl dd {
  border-bottom: none;
}

.table_default .list-dl dt {
  padding-top: 4px;
}

.table_default .list-dl dd {
  padding-top: 4px;
  padding-bottom: 4px;
}

@media screen and (max-width: 767px) {

  /* --- table_default --- */
  .table_default tr {
    display: block;
  }

  .table_default th,
  .table_default td {
    display: block;
    padding: 8px;
  }

  .table_default th {
    min-width: auto;
  }

  .table_default td {
    padding: 8px;
    border-left: none;
    border-bottom: none;
  }

  /* --- dlリスト --- */
  .list-dl dt {
    position: relative;
  }

  .list-dl dd {
    padding-top: 8px;
    padding-left: 1em;
  }

  .table_default .list-dl dd {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #BFBFBF;
  }
}

/* btn
**************************************** */
.btn {
  position: relative;
  display: inline-block;
  padding: 28px 40px;
  min-width: 280px;
  color: #0D0E12;
  font-size: 87.5%;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  outline: none;
  transition: all .2s;
  border: 1px solid #a3a3a3;
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
  content: '';
  position: absolute;
  z-index: 2;
  display: block;
  background-color: #a3a3a3;
  transition: all .4s;
}

.btn::before,
.btn::after {
  width: 0;
  height: 1px;
}

.btn span::before,
.btn span::after {
  width: 1px;
  height: 0;
}

.btn::before {
  top: -1px;
  left: 0;
}

.btn::after {
  bottom: -1px;
  right: 0;
}

.btn span::before {
  top: 0;
  left: -1px;
}

.btn span::after {
  bottom: 0;
  right: -1px;
}

.btn:hover {
  color: #a3a3a3;
}

.btn:hover::before,
.btn:hover::after {
  width: 100%;
}

.btn:hover span::before,
.btn:hover span::after {
  height: 100%;
}

.btn i {
  position: absolute;
  top: calc(50% - 1px / 2);
  right: 40px;
  display: block;
  height: 1px;
  width: 24px;
  background-color: #fff;
  transition: all .4s;
}

.btn:hover i {
  right: -16px;
  width: 64px;
}

@media screen and (max-width: 767px) {
  .btn {
    width: 90%;
    min-width: 180px;
    padding: 24px 32px;
  }
}

/* マウスカーソル
**************************************** */
#cursor {
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #000;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  pointer-events: none;
  z-index: 9999;
}

#cursor.active {
  transform: scale(0);
}

#stalker {
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #5274ec;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-transition: all .05s ease-in-out;
  -moz-transition: all .05s ease-in-out;
  transition: all .05s ease-in-out;
  opacity: .3;
  pointer-events: none;
  z-index: 9999
}

#stalker.active {
  transform: scale(2);
}

/* animation
**************************************** */
.fadein {
  opacity: 0;
  transform: translate(0, 64px);
  -moz-transition: all .6s cubic-bezier(.165, .84, .44, 1);
  -webkit-transition: all .6s cubic-bezier(.165, .84, .44, 1);
  -ms-transition: all .6s cubic-bezier(.165, .84, .44, 1);
  transition: all .6s cubic-bezier(.165, .84, .44, 1);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 767px) {
  .sp-no-fadein {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* contact_btn
**************************************** */
.contact_btn a {
  position: relative;
  z-index: 1;
  width: 160px;
  color: #fff !important;
  text-align: center;
}

.contact_btn a::before,
.contact_btn a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transition: all .4s ease-out;
}

/*
    .contact_btnは、
    グラデがhoverでtransionしないので、疑似要素を2枚重ね、
    hover時に上の方を opacity: 0; にしている
  */
/* デフォルトスタイル */
.contact_btn a::after {
  opacity: 1;
  background: #3266B0;
  background-image: -moz-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  background-image: -webkit-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  background-image: -ms-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
}

/* hover時のスタイル */
.contact_btn a::before {
  background: #5b90c8;
  background-image: -moz-linear-gradient(135deg, rgb(128, 182, 221) 0%, rgb(40, 91, 170) 100%);
  background-image: -webkit-linear-gradient(135deg, rgb(128, 182, 221) 0%, rgb(40, 91, 170) 100%);
  background-image: -ms-linear-gradient(135deg, rgb(128, 182, 221) 0%, rgb(40, 91, 170) 100%);
}

.contact_btn a:hover::after {
  opacity: 0;
}

/* CONTACTページが現在のページの場合 */
.contact_btn a.current::after {
  opacity: 0;
  background: #FFD700 !important;
  background-image: -moz-linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
  background-image: -webkit-linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
  background-image: -ms-linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
}

.contact_btn a.current::before {
  opacity: 1;
  background: #FFD700;
  background-image: -moz-linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  background-image: -webkit-linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  background-image: -ms-linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

@media screen and (max-width: 767px) {
  .contact_btn a {
    display: block;
    width: auto;
  }
}


/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 24px 80px;
  transform: translateY(0);
}

.header::before {
  content: "";
  display: block;
  background: #0C275C;
  position: fixed;
  border-bottom: 1px solid #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(-56px);
  -webkit-transition: all .6s cubic-bezier(.5, 0, 0, 1);
  -moz-transition: all .6s cubic-bezier(.5, 0, 0, 1);
  transition: all .6s cubic-bezier(.5, 0, 0, 1);
  z-index: -1;
}

.header--logo {
  position: relative;
  margin-right: 16px;
}

.header--logo .logo-fixed {
  position: absolute;
  left: 0;
  -webkit-transition: all .6s cubic-bezier(.5, 0, 0, 1);
  -moz-transition: all .6s cubic-bezier(.5, 0, 0, 1);
  transition: all .6s cubic-bezier(.5, 0, 0, 1);
  opacity: 0;
}

.header--logo .logo-white {
  display: none;
}

/* --- .header.fixed --- */
.header.fixed {
  position: fixed;
  transform: translateY(0);
}

.header.fixed::before {
  opacity: 1;
  transform: translateY(0);
}

.header.fixed .header--logo .logo-fixed {
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .header {
    padding: 24px 64px;
  }
}

@media screen and (max-width: 1280px) {
  .header {
    padding: 24px 40px;
  }
}

@media screen and (max-width: 1000px) {
  .header {
    width: 100%;
    height: 100%;
    padding: 32px;
    pointer-events: none;
    transform: translateY(0);
    -webkit-transition: all .6s cubic-bezier(.5, 0, 0, 1);
    -moz-transition: all .6s cubic-bezier(.5, 0, 0, 1);
    transition: all .6s cubic-bezier(.5, 0, 0, 1);
  }
}

@media screen and (max-width: 1000px) {
  .header--logo {
    width: 20%;
    pointer-events: auto;
  }

  .header--logo img {
    position: absolute;
    top: -15px;
    left: 0;
  }

  .header--logo .logo {
    transition: all .6s cubic-bezier(.5, 0, 0, 1);
  }

  .header.active .header--logo .logo {
    opacity: 0;
  }

  .header--logo .logo-white {
    display: inline-block;
    opacity: 0;
    transition: all .6s cubic-bezier(.5, 0, 0, 1);
  }

  .header.active .header--logo .logo-white {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .header::before {
    height: 72px;
  }

  .header.fixed {
    padding: 24px 32px;
  }

  .header--logo {
    width: 131px;
  }
}

/* gnav
**************************************** */
.gnav {
  font-size: 20px;
}

.gnav a {
  display: block;
  padding: 8px 16px;
}

.header .gnav a:hover,
.header .gnav_btn:hover {
  color: #5274ec;
}

.header .gnav_btn:hover .gnav_btn--lines span {
  background-color: #5274ec;
}

.gnav--list a {
  color: #fff !important;
  position: relative;
  transition: all 0.3s ease;
}

/* 現在のページの下線（CONTACTボタン以外） */
.gnav--list li:not(.contact_btn) a.current::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: #FFD700;
  transform: scaleX(1);
}

/* ホバー時の下線アニメーション（CONTACTボタン以外） */
.gnav--list li:not(.contact_btn) a:not(.current)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: #5274ec;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gnav--list li:not(.contact_btn) a:not(.current):hover::after {
  transform: scaleX(1);
}

@media screen and (max-width: 1140px) {
  .gnav a {
    padding: 8px 12px;
  }
}

@media screen and (max-width: 1000px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 64px;
    overflow: scroll;
    font-size: 114%;
    background-color: #07111e;
    pointer-events: none;
    transition: all .4s cubic-bezier(.5, 0, 0, 1);
    opacity: 0;
    transform: translateX(80px);
  }

  .header.active .gnav {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }

  .gnav small {
    color: #80b6dd;
    font-size: 82%;
  }

  .gnav a {
    color: #FFF;
    padding: 16px 0;
    line-height: 1.6;
  }

  .gnav--list {
    padding-top: 80px;
  }

  .gnav--list li:not(.contact_btn) {
    border-bottom: 1px solid #17263a;
  }

  .gnav--recruit {
    margin-right: 0;
  }

  .gnav_btn {
    position: fixed;
    top: 17px;
    right: 17px;
    width: 48px;
    height: 48px;
    z-index: 9999;
    pointer-events: auto;
    -webkit-transition: all .6s cubic-bezier(.5, 0, 0, 1);
    -moz-transition: all .6s cubic-bezier(.5, 0, 0, 1);
    transition: all .6s cubic-bezier(.5, 0, 0, 1);
  }

  .gnav_btn--lines {
    position: relative;
    width: 24px;
    height: 18px;
  }

  .gnav_btn--lines span {
    transition: all .4s;
    box-sizing: border-box;
  }

  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }

  .gnav_btn--lines.line_black span {
    background-color: #000;
  }

  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }

  .gnav_btn--lines span:nth-of-type(2) {
    top: 8px;
    width: 66.666%;
  }

  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }

  .header.active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-35deg);
    transform: translateY(8px) rotate(-35deg);
  }

  .header.active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }

  .header.active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(35deg);
    transform: translateY(-8px) rotate(35deg);
  }
}

@media screen and (max-width: 1000px) {
  .gnav--list {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .header.fixed .gnav_btn {
    top: 9px;
  }
}


/* ##############################################################################

    FOOTER

############################################################################## */

/* footer
*************************************************** */
.footer {
  padding: 100px 0;
  color: #fff;
  background-color: #0C275C;
}

.footer a {
  color: #fff;
}

.footer .btn {
  border-color: #fff;
}

.footer .btn::before,
.footer .btn::after {
  display: none;
}

.recruit-link .btn {
  min-width: 100%;
  font-size: 20px;
  letter-spacing: .235em;
  padding: 17px 23px;
}

.footer--left {
  width: 260px;
  margin-right: 64px;
}

.footer--right {
  width: 800px;
}

.footer a:hover {
  color: #5274ec;
}

.footer .btn:hover {
  color: #001522;
  background: #fff;
}

/* --- footer--address_lists --- */
.footer--address_list {
  position: relative;
  flex: 1;
  margin-right: 40px;
  padding-right: 40px;
}

.footer--address_list:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.footer--address_list:last-child {
  margin-right: 0;
  padding-right: 0;
}

.footer--address_list .map .btn {
  font-size: 18px;
  padding: 4px 24px;
  min-width: 0;
  position: absolute;
  top: -2px;
  right: 40px;
}

.footer--address_list:last-child .map .btn {
  right: 0;
}

.footer--address_list .footer--address--ttl {
  margin-bottom: 16px;
  line-height: 1;
  font-size: 20px;
}

.footer--address_list .address {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer--address_list .tel {
  font-size: 18px;
}

/* --- footer--nav --- */
.footer--nav {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  line-height: 2.7;
  font-size: 20px;
}

.footer--nav ul {
  display: flex;
  justify-content: space-between;
}

.footer--nav li:not(:last-child) {
  margin-right: 12px;
}

.footer--nav a {
  padding: 16px 0;
  letter-spacing: .155em;
}

/* --- footer--copyright --- */
.footer--copyright {
  opacity: .75;
}

.footer--copyright small {
  display: block;
  font-size: 16px;
  letter-spacing: .05em;
}

@media screen and (max-width: 1140px) {
  .footer--left {
    width: auto;
    margin-right: 40px;
  }

  .footer--address_list {
    margin-right: 24px;
    padding-right: 24px;
  }

  .footer--address_list .map .btn {
    right: 24px;
    padding: 4px 16px;
  }
}

@media screen and (max-width: 1000px) {
  .footer {
    padding: 64px 0;
  }

  .footer--logo,
  .recruit-link {
    text-align: center;
  }

  .recruit-link .btn {
    width: 80%;
    min-width: auto;
    text-align: center;
  }

  .footer--left {
    width: none;
    margin-right: 0;
  }

  .footer--right {
    width: 100%;
  }

  /* --- footer--nav --- */
  .footer--nav ul {
    justify-content: space-between;
  }

  .footer--nav li {
    width: calc(50% - 16px);
  }

  .footer--nav li:not(:last-child) {
    margin-right: 0;
  }

  /* --- footer--address_list --- */
  .footer--address_list {
    flex: auto;
    width: 100%;
    margin-bottom: 24px;
    margin-right: 0;
    padding-bottom: 24px;
    padding-right: 0;
  }

  .footer--address_list:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    border-right: none;
  }

  .footer--address_list .map .btn {
    width: auto;
    right: 0;
  }
}


/* ##############################################################################

    INDEX

############################################################################## */

.home .txtarea p {
  font-size: 18px;
  line-height: 2.125;
  letter-spacing: .075em;
}

/* hero
*************************************************** */
.hero {
  padding-bottom: 150px;
  padding-top: 132px;
  background-color: #0C275C;
  background-image: url('../images/background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  /* .home {
    background-image: url('../images/background-sp.png')
  }; */

  /* .hero {
    background-image: unset;
  } */
}

.hero--img {
  position: relative;
  z-index: 0;
  display: block;
  height: 720px;
  margin-right: 23%;
  margin-left: 80px;
  background-image: url(../images/hego-img.jpg);
  background-position: center;
  background-size: cover;
  animation-delay: .6s;
}

.hero--txt {
  position: absolute;
  z-index: 1;
  top: 4.2%;
  right: 2%;
  font-size: 82.5%;
}

.hero--txt span {
  display: block;
}

.hero--catch_copy {
  color: #285baa;
  font-size: 600%;
  text-transform: uppercase;
  line-height: 1.0833;
  letter-spacing: .015em;
}

.hero--lead {
  margin-left: .2em;
  font-size: 150%;
  line-height: 1.75;
  letter-spacing: .175em;
  animation-delay: .2s;
}

.home_lead {
  font-size: 200%;
  line-height: 2.15625;
  letter-spacing: .195em;
}

.home_lead--text {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .hero--txt {
    top: 3.5%;
  }

  .hero--img {
    height: 700px;
    margin-left: 64px;
  }
}

@media screen and (max-width: 1280px) {
  .hero--img {
    margin-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    margin-bottom: 80px;
    padding-top: 88px;
  }

  .hero--catch_copy {
    margin-top: 60px;
    font-size: 300%;
  }

  .hero--txt {
    top: 2%;
  }

  .hero--img {
    height: 450px;
    margin-left: 24px;
    background-image: url(../images/hego-img_sp.jpg);
  }

  .home_lead {
    font-size: 140%;
    text-align: left;
    letter-spacing: .15em;
  }

  .home_lead--text {
    font-size: 16px;
  }
}

/* home_company, home_service_about
*************************************************** */
.home_company {
  background-color: #243F73;
  background-image: url('../images/background.png');
  /* background-position: bottom right; */
  background-position-y: 150px;
  background-size: 110%;
  background-repeat: no-repeat;
}

.home_company,
.home_service_about {
  margin-bottom: 134px;
}

.home_service p {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .home_service p {
    font-size: 10px;
  }
}

.home_company--txt {
  margin-left: 70%;
  color: #fff;
}

.home_company--txt p {
  font-size: 16px !important;
}

.home_company--btn {
  color: #fff;
  border-color: #fff;
  font-size: 20px;
}

.home_service_about {
  background-image: url('../images/background.png');
  background-position: bottom right;
  background-size: 100%;
  background-repeat: no-repeat;
}

.home_service_about--txt {
  margin-right: 70%;
  color: #fff;
}

.home_service_about--btn {
  color: #fff;
  border-color: #fff;
  font-size: 20px;
}

.home_company--img,
.home_service_about--img {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 60%;
  max-width: 1080px;
  height: 100%;
  background-color: #eee;
  background-position: center;
  background-size: cover;
}

.home_company--img {
  left: 0;
  background-image: url(../images/company-img.jpg);
}

.home_service_about--img {
  right: 0;
  background-image: url(../images/products-img.jpg);
}

.home_service small {
  color: #000;
}

@media screen and (max-width: 1300px) {
  .home_company--txt {
    margin-left: 65%;
  }

  .home_service_about--txt {
    margin-right: 65%;
  }

  .home_company--img,
  .home_service_about--img {
    width: 55%;
  }
}

@media screen and (max-width: 767px) {

  .home_company,
  .home_service_about {
    margin-top: 60%;
    margin-bottom: 67px;
  }

  .home_company--txt,
  .home_service_about--txt {
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
  }

  .home_company--img,
  .home_service_about--img {
    top: -32%;
    width: 88%;
    height: 40%;
  }

  .home_service_about p {
    font-size: 16px !important;
  }
}

/* home_selling_points
*************************************************** */
.home_selling_points::after {
  content: '';
  position: absolute;
  top: 300px;
  bottom: 0;
  right: 0;
  z-index: 0;
  display: block;
  width: calc(100% - 320px);
  background-color: #07111e;
}

.home_selling_points .inner {
  position: relative;
  z-index: 1;
  margin-top: 300px;
  padding-bottom: 80px;
}

.home_selling_points .txtarea {
  max-width: none;
  margin-left: 40%;
}

.selling_points--bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 720px;
  background: #eee url(../images/selling_points-img.jpg) top center;
  background-size: cover;
}

.selling_points_list .heading-3 {
  font-size: 100%;
}

.selling_points_list .heading-3::after {
  width: 24px;
  margin-top: 8px;
  background-color: rgba(249, 247, 248, .5);
}

.selling_points_list p {
  font-size: 200%;
  line-height: 1.4;
}

.selling_points_list strong {
  font-size: 125%;
}

@media screen and (max-width: 1800px) {
  .home_selling_points::after {
    width: calc(100% - 240px);
  }
}

@media screen and (max-width: 1600px) {
  .home_selling_points::after {
    width: calc(100% - 160px);
  }
}

@media screen and (max-width: 1400px) {
  .home_selling_points::after {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 1200px) {
  .home_selling_points::after {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 1080px) {
  .home_selling_points::after {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .home_selling_points::after {
    top: 200px;
  }

  .home_selling_points .inner {
    margin-top: 200px;
    padding-bottom: 40px;
  }

  .home_selling_points .txtarea {
    margin-left: 0;
  }

  .selling_points_list li:not(:last-child) {
    margin-bottom: 40px;
  }
}

/* home_solution
*************************************************** */
.solution_list .heading-3 {
  line-height: 1.416;
}

.home_solution {
  color: #fff;
  background-color: #243F73;
  background-image: url('../images/background.png');
  background-position-y: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.home_solution p {
  font-size: 18px;
}

.home_solution .btn {
  color: #fff;
  border-color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .solution_list li {
    text-align: center;
  }

  .solution_list li:not(:last-child) {
    margin-bottom: 40px;
  }

  .home_solution p {
    font-size: 16px !important;
  }
}

/* home_recruit
*************************************************** */
.home_recruit {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
}

.home_recruit .btn {
  border-color: #000;
  font-size: 20px;
}

.home_recruit i {
  background-color: #000;
}

.home_recruit .txtarea {
  margin-right: 70%;
}

.home_recruit--bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #eee url(../images/recruit-img.jpg) top right;
  background-size: cover;
}

.home_recruit .btn {
  color: #000;
}

.home_recruit .btn:hover {
  color: #fff;
  border-color: #fff;
  background-color: #000;
  background: #000;
}

@media screen and (max-width: 1140px) {
  .home_recruit--bg {
    background-position: 68%;
  }
}

@media screen and (max-width: 767px) {
  .home_recruit {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home_recruit .txtarea {
    margin-right: 25%;
  }

  .home_recruit {
    color: #fff;
  }

  .home_recruit .btn {
    border-color: #fff;
    color: #fff;
  }

  .home_recruit i {
    background-color: #fff;
  }

  .home_recruit p {
    font-size: 16px !important;
  }
}

/* home_news
*************************************************** */
.home_news {
  color: #fff;
}

.home_news .section_ttl {
  padding-bottom: 40px;
  border-bottom: 1px solid #93add4;
}

.home_news .inner {
  max-width: 1080px;
}

.home_news .news_list {
  padding-left: 42px;
  padding-right: 42px;
}

.home_news .post--txt {
  flex: 1;
}

/* home_service
*************************************************** */
.products_list li {
  width: calc(25% - 24px);
  padding: 56px 15px;
  overflow: hidden;
  border-radius: 2px;
}

.products_list li::after {
  content: '';
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #285baa;
  transform: rotate(45deg);
}

.products_list h3 {
  height: 105px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}

@media screen and (max-width: 1600px) {
  .products_list li br {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .products_list li {
    width: calc(50% - 24px);
    margin-bottom: 48px;
    padding: 56px;
  }
}

@media screen and (max-width: 767px) {
  .products_list li {
    width: 100%;
    margin-bottom: 32px;
    padding: 32px;
    text-align: left;
  }

  .products_list h3 {
    height: auto;
  }

  .products_list .ijcad img {
    height: 80px;
  }

  .products_list .b-rite img,
  .products_list .dare img {
    height: 40px;
  }
}

.products_ses {
  background-image: url('../images/background.png');
  background-position-y: 150px;
  background-size: 110%;
  background-repeat: no-repeat;
}

.products_offshore {
  background-color: #243F73;
  background-image: url('../images/background.png');
  background-position-y: 150px;
  background-size: 110%;
  background-repeat: no-repeat;
}


/* ##############################################################################

    PAGE

############################################################################## */
.container {
  margin-top: 120px;
}

.whitebox {
  background-color: #fff;
}

.whitebox,
.line_box {
  padding: 40px;
}

/* --- line_box --- */
.line_box {
  position: relative;
  z-index: 0;
}

.line_box::before,
.line_box::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
}

.line_box::after {
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  background-color: #fff;
}

.line_box::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3266B0;
  background-image: -moz-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  background-image: -webkit-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  background-image: -ms-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .container {
    margin-top: 0;
  }

  .whitebox,
  .line_box {
    padding: 20px;
  }
}

/* company
*************************************************** */
.company_mission {
  background-image: url('../images/background.png');
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.company_mission .editor_txt p,
.company_vision .editor_txt p,
.company_value .editor_txt p,
.company_overview .editor_txt p,
.company_mission .editor_txt h4,
.company_vision .editor_txt h4,
.company_value .editor_txt h4,
.company_overview .editor_txt h4 {
  color: #fff;
}

.company_vision {
  background-image: url('../images/background.png');
  background-color: #243F73;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
} 

.company_value {
  background-image: url('../images/background.png');
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
} 

.company_overview {
  background-image: url('../images/background.png');
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
} 

.company_overview {
  background-color: #243F73;
}

.company_overview h2 {
  color: #fff;
}

.company--contents .heading-3 small {
  margin-left: 16px;
  font-size: 70%;
}

.editor_txt p {
  color: #000;
}

.editor_txt h4 {
  color: #000;
}

.editor_txt:not(:last-child) {
  margin-bottom: 40px;
}

.editor_txt h3 {
  margin-bottom: 40px;
}

.editor_txt h4 {
  margin-bottom: 24px;
}

.editor_txt p {
  margin-bottom: 16px;
}

/* --- mission, vision --- */
.mission_content>*,
.vision_content>* {
  flex: 1;
}

.mission_content--txt {
  margin-right: 80px;
}

.mission_content--txt {
  color: #fff;
}

.vision_content--txt {
  margin-left: 80px;
  color: #fff;
}

.mission_content--img,
.vision_content--img {
  width: 500px;
  height: 500px;
  background-size: cover;
}

.mission_content--img {
  background-image: url(../images/company/mission-img01.jpg);
}

.vision_content--img {
  background-image: url(../images/company/vision-img01.jpg);
}

/* --- value --- */
.value_list li {
  width: calc(35.33% - 40px);
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.company_value .editor_txt p,
.company_value .editor_txt h4 {
  color: #000;
}

.value_list--img {
  height: 200px;
}

/* --- overview --- */
.company_overview .table_default th {
  min-width: 250px;
}

/* --- access --- */
.company_access {
  background-image: url(../images/company/access-bg.jpg);
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}

.company_access span {
  color: #000;
}

.company_access .btn i {
  background-color: #000;
}

.company_access .btn:hover {
  color: #fff !important;
}

.company_value {
  color: #fff;
}

.company_history {
  color: #fff;
}

.access_content {
  margin-bottom: 180px;
}

.access_content--txt {
  width: 50%;
  position: relative;
  z-index: 1;
}

.access_content--img {
  transform: translateY(50px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  right: 0;
  z-index: 0;
  height: 100%;
  margin-top: 50px;
  background: url(../images/company/access-img01.jpg) center;
  background-size: cover;
}

@media screen and (max-width: 1140px) {

  /* --- access --- */
  .company_access {
    background: #e5ecf5 url(../images/company/access-bg_sp.jpg) top center no-repeat;
    background-attachment: unset;
    background-size: 100%;
  }
}

@media screen and (max-width: 767px) {
  .company--contents {
    overflow: hidden;
  }

  /* --- mission, vision --- */
  .mission_content>*,
  .vision_content>* {
    flex: auto;
  }

  .mission_content--img,
  .vision_content--img {
    width: 116%;
    height: 90vw;
  }

  .mission_content--txt,
  .vision_content--txt {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .mission_content--img {
    margin-left: 10%;
  }

  /* --- vision --- */
  .vision_content--img {
    margin-right: 10%;
  }

  /* --- value --- */
  .value_content .section_ttl,
  .value_content .heading-2 {
    text-align: left;
  }

  .value_list li {
    width: 100%;
  }

  .value_list li:not(:last-child) {
    margin-bottom: 64px;
  }

  .value_list--img {
    height: 150px;
  }

  /* --- access --- */
  .access_content {
    margin-bottom: 90%;
  }

  .access_content--txt {
    width: 500%;
  }

  .access_content--img {
    top: 80%;
    height: 50%;
    left: 15%;
    right: -15%;
  }

  .company_value .editor_txt {
    text-align: center;
  }
}

.ses_point li {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.ses_point li p,
.ses_point li h3 {
  color: #000;
  text-align: center;
}

.offshore_point li {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
}

.offshore_point li p,
.offshore_point li h3 {
  color: #000;
  text-align: center;
}

/* products
*************************************************** */
.b-rite_point .heading-3 small {
  display: block;
  font-size: 70%;
}

.btn_area a {
  display: inline-block;
}

.btn_area>*+* {
  margin-left: 16px;
}

.products_txtarea {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .products_txtarea .heading-2 {
    font-size: 130%;
    text-align: center;
  }

  .products_ijcad .heading-2,
  .products_ijcad_mobile .heading-2,
  .products_dare .heading-2 {
    width: 120%;
    margin-left: -10%;
  }

  .products_ijcad_mobile .heading-2,
  .products_dare .heading-2 {
    letter-spacing: .05em;
  }

  .products_ijcad .products_logo img,
  .products_dare .products_logo img,
  .products_b-rite .products_logo img {
    width: 80%;
  }

  .products_txtarea p {
    text-align: left;
  }

  .products_icon img {
    height: 50px;
  }

  .ses_content--txt p {
    text-align: center;
  }
}

/* solution
*************************************************** */

.solution {
  background-image: url('../images/background-long.png');
  background-position: top right;
  background-size: 100%;
  background-repeat: repeat;
}

.solution .editor_txt p {
  color: #fff;
}

.solution_txtarea {
  margin-left: 10%;
  margin-right: 55%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.solution_imgarea {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.solution--img_left .txtarea {
  margin-left: 55%;
  margin-right: 10%;
}

.solution .editor_txt {
  color: #fff;
}

.solution--img_left .imgarea {
  left: 0;
  right: auto;
}

.news--info .heading-line::after {
  background-color: #fff !important;
}

.news--info .btn {
  color: #fff !important;
}

.matching_content--img {
  background-image: url(../images/solution/solution-img01.jpg);
}

.quality_content--img {
  background-image: url(../images/solution/solution-img02.jpg);
}

.support_content--img {
  background-image: url(../images/solution/solution-img03.jpg);
}

.solution_case--img {
  left: 0;
  z-index: -1;
  width: 100%;
  background-image: url(../images/solution/solution_case-bg.jpg);
}

.customize-support .editor_txt {
  color: #fff;
}

@media screen and (max-width: 767px) {

  .solution_txtarea,
  .solution--img_left .txtarea {
    margin-left: 10%;
    margin-right: 10%;
  }

  .solution_imgarea {
    position: relative;
    width: 90%;
    height: 70vw;
  }

  .solution--img_left .solution_imgarea {
    margin-left: 10%;
  }

  .solution_contents--img,
  .solution_contents .heading-1 {
    text-align: center;
  }

  .solution_case {
    padding-left: 24px;
    padding-right: 24px;
  }

  .solution_case--img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/solution/solution_case-bg_sp.jpg);
  }
}

/* contact
**************************************** */
.contact--link a {
  font-size: 125%;
}


/* ##############################################################################

    SEARCH

############################################################################## */

/* search_box
**************************************** */
.search_box {
  padding: 16px;
}

.search--toggle_btn {
  cursor: pointer;
  transition: all .6s cubic-bezier(.165, .84, .44, 1);
}

.open .search--toggle_btn {
  margin-bottom: 16px;
}

.search--toggle_btn span {
  display: inline-flex;
  align-items: center;
}

.search--toggle_btn span::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background-image: url(../images/case/icon-search.svg);
}

.search--toggle_btn i {
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: #285baa;
}

.search--toggle_btn i::before,
.search--toggle_btn i::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #fff;
  transition: all .2s ease-out;
}

.search--toggle_btn i::before {
  top: calc(50% - 2px / 2);
  left: calc(50% - 10px / 2);
  width: 10px;
  height: 2px;
}

.search--toggle_btn i::after {
  left: calc(50% - 2px / 2);
  top: calc(50% - 10px / 2);
  width: 2px;
  height: 10px;
}

.open .search--toggle_btn i::after {
  transform: rotate(90deg);
}

.search_box--form {
  height: 0;
  overflow: hidden;
  transition: all .6s cubic-bezier(.165, .84, .44, 1);
}

.search-form {
  padding: 24px 40px;
}

.search_item--check li {
  width: calc(25% - 8px);
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .search_box {
    padding: 16px 8px;
  }

  .search--toggle_btn i {
    top: calc(50% - 32px / 2);
    right: 8px;
    width: 32px;
    height: 32px;
  }

  .search--toggle_btn span {
    padding-right: 32px;
  }

  .search-form {
    padding: 16px;
  }

  .search_item--check li {
    width: calc(50% - 4px);
    margin-right: 4px;
    font-size: 88%;
  }
}

/* search.php
**************************************** */
.search--conditions {
  padding: 16px 32px;
}

.conditions--item:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.conditions li {
  margin-bottom: 8px;
  padding: 6px;
  border-bottom: 1px solid rgba(40, 91, 171, .2);
}

.conditions_ttl {
  margin-right: 4px;
  width: 130px;
  line-height: 1;
  border-radius: 50px;
}

.conditions span:not(:last-child)::after {
  content: ',';
  margin-right: 8px;
}


/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
}

/* --- post --- */
.post {
  position: relative;
}

.post--link {
  color: #fff;
}

.post--link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: .4s ease-out;
}

.post--link[href="javascript:void(0);"]::before {
  display: none;
}

.post--link:hover::before {
  background-color: rgba(200, 221, 128, .2);
}

.post--date {
  color: #aaa;
  font-size: 81.25%;
}

.cat_list-case {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.post .post--img img {
  overflow: hidden;
  border-radius: 3px;
}

.cat_list-case span {
  display: inline-block;
  margin-bottom: 12px;
  margin-right: 16px;
  padding: 6px 16px;
  float: left;
  color: #fff;
  line-height: 1;
  background-color: #75abd7;
  border-radius: 2px;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }

  .cat_list-case span {
    margin-bottom: 8px;
    margin-right: 8px;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}

.side_section:not(:last-child) {
  margin-bottom: 64px;
}

.side--ttl {
  font-size: 120%;
  letter-spacing: .2em;
  line-height: 1;
  margin-bottom: 16px;
}

.side--ttl small {
  font-size: 62%;
  opacity: .5;
  letter-spacing: .15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}

.posts-side .post--img {
  margin-right: 16px;
  border-radius: 3px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.posts-side .txtarea {
  flex: 1;
}

.posts-side .post--date {
  margin-bottom: 0;
}

.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- archive --- */
.side_column .archive_list--ttl::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  transition: .4s ease-out;
}

.side_column .archive_list--ttl.active::after {
  transform: rotate(315deg);
}

.side_column .archive_month {
  display: none;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}

.archive-pulldown .archive_list {
  position: relative;
  font-size: 92%;
}

.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}

.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}

.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.archive-pulldown .archive_list--label {
  margin-right: 8px;
}

.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.archive-pulldown .archive_list--btn::after {
  content: '';
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: .2s ease-out;
  transform-origin: 50% 50%;
}

.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}

.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-out;
}

.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* case
**************************************** */
.posts-case .post {
  width: calc(50% - 24px);
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .posts-case .post {
    width: 100%;
    margin-bottom: 24px;
  }
}

/* news
**************************************** */

/* --- news_list --- */
.news_list a {
  display: inline-flex;
  align-items: center;
}

.news_list a[href="javascript:void(0);"],
.news_list a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}

.news_list .post {
  padding: 16px 32px;
}

.archive .news_list .post {
  border-bottom: 1px solid #eee;
}

.news_list .post--date {
  color: #93add4;
}

.news_list .post--ttl {
  font-size: 112.5%;
  line-height: 1.555;
  font-weight: normal;
}

.news_list .post--txt {
  flex: 1;
}

.news_list a[target="_blank"]::after {
  content: '';
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url(../images/common/icon-new_tab.png);
}

/*-- posts-home_news --*/
.posts-home_news .post {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .news_list .post {
    padding: 16px 8px;
  }

  .news_list .post--ttl {
    font-size: 100%;
  }

  .home_news .news_list {
    padding-left: 0;
    padding-right: 0;
  }

  /*-- posts-home_news --*/
  .posts-home_news .post {
    width: 100%;
  }
}


/* ##############################################################################

    SINGLE

############################################################################## */

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi .current {
  position: relative;
  display: inline-block;
  max-width: 42%;
  padding: 8px 16px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all .4s;
}

.wp-pagenavi .current,
.wp-pagenavi .page {
  border-bottom: 1px solid transparent;
  margin-right: 8px;
}

.wp-pagenavi .current,
.wp-pagenavi .page:hover {
  color: #285baa;
  border-bottom: 1px solid #285baa;
}

.wp-pagenavi .pages {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  font-size: 92%;
  text-align: center;
}

.previouspostslink,
.nextpostslink {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.previouspostslink {
  margin-right: 8px;
}

.nextpostslink {
  margin-right: 0 !important;
}

.previouspostslink::before,
.nextpostslink::before {
  content: '';
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: #285baa;
  transition: all .4s;
}

.previouspostslink::before {
  right: 0;
  transform: rotate(-135deg) translate(-3px, 3px);
}

.nextpostslink::before {
  left: 0;
  transform: rotate(45deg) translate(-3px, 3px);
}

.wp-pagenavi .previouspostslink:hover::before {
  right: 8px;
}

.wp-pagenavi .nextpostslink:hover::before {
  left: 8px;
}

@media only screen and (max-width: 767px) {
  .wp-pagenavi a {
    max-width: 100%;
    margin-bottom: 8px;
  }

  .wp-pagenavi a,
  .wp-pagenavi .current {
    padding: 4px 8px;
  }
}


/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}

#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}

#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}

#formy_form textarea {
  height: 100px;
}

#formy_form select {
  height: 40px;
}

#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#formy_form input:hover {
  opacity: .7;
}

#formy_form textarea:hover {
  opacity: .7;
}

#formy_form input:focus {
  outline: none;
}

#formy_form .parsley-validated {
  background-color: #eee;
}

#formy_form .parsley-error {
  background-color: #fee;
}

#formy_form .parsley-success {
  background-color: #fff;
}

.help_text {
  font-size: 85%;
  color: #999;
}

.hidden_help {
  display: none;
}

.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}

.requiredIcon {
  background: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  border-radius: 2px;
  float: right;
}

#formy_btn {
  padding-top: 32px;
  text-align: center;
}

#formy_btn input {
  min-width: 220px;
  padding: 16px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.checkbox input[type="radio"],
.checkbox input[type="checkbox"],
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}

.checkbox label,
#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 24px;
  cursor: pointer;
}

.checkbox label:hover,
#formy_form ul li label:hover {
  opacity: .7;
}

.checkbox label::before,
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #bbb;
  left: 0;
  top: 12px;
}

.checkbox input[type="radio"]+label::before,
#formy_form ul li input[type="radio"]+label::before {
  border-radius: 10px;
}

.checkbox input[type="radio"]:checked+label,
.checkbox input[type="checkbox"]:checked+label,
#formy_form ul li input[type="radio"]:checked+label,
#formy_form ul li input[type="checkbox"]:checked+label {
  color: #5274ec;
  font-weight: bold;
}

.checkbox input[type="radio"]:checked+label::before,
.checkbox input[type="checkbox"]:checked+label::before,
#formy_form ul li input[type="radio"]:checked+label::before,
#formy_form ul li input[type="checkbox"]:checked+label::before {
  border-color: #5274ec;
}

.checkbox input[type="radio"]:checked+label::after,
.checkbox input[type="checkbox"]:checked+label::after,
#formy_form ul li input[type="radio"]:checked+label::after,
#formy_form ul li input[type="checkbox"]:checked+label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 6px;
  border-right: 2px solid #5274ec;
  border-bottom: 2px solid #5274ec;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.formy_confirm {
  background: #3266B0;
  background-image: -moz-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  background-image: -webkit-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
  background-image: -ms-linear-gradient(135deg, rgb(40, 91, 170) 0%, rgb(128, 182, 221) 100%);
}

.formy_submit_disabled {
  background: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack {
  background: #aaa;
}

.formy_send {
  background: #ff6600;
}

#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}

.confirm-message {
  text-align: center;
}

.pbf {
  margin-top: 8px;
}

@media only screen and (max-width: 767px) {
  #formy_form {
    padding: 0 16px;
  }

  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }

  #formy_form td {
    padding-top: 0;
  }

  #formy_btn {
    padding-top: 8px;
  }

  #formy_btn input {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
}

.recruit-container {
  background-image: url('../images/background-long.png');
  background-position: top right;
  background-size: 100%;
  background-repeat: repeat;
}

.recruit-container .job-title-sub {
  font-size: 16px;
}

.recruit-list-page {
    color: #fff;
}

.recruit-intro {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    margin-bottom: 60px;
}

.recruit-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.recruit-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.job-cards {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    color: #333;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-new {
    background: #ff4444;
    color: #fff;
}

.badge-type {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-urgent {
    background: #fff3e0;
    color: #ff6f00;
}

.job-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.job-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.detail-value {
    color: #333;
    font-size: 14px;
}

.job-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007cba;
    font-weight: 600;
    transition: gap 0.3s;
}

.job-card:hover .job-link {
    gap: 15px;
}

@media (max-width: 768px) {
    .recruit-intro h3 {
        font-size: 20px;
    }
    
    .job-details {
        grid-template-columns: 1fr;
    }
}

.contact-container {
  background-image: url('../images/background-long.png');
  background-position: top right;
  background-size: 100%;
  background-repeat: repeat;
}