@charset "utf-8";

/*===============================
 全体共通
===============================*/
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  position: relative;
}

img {
  width: 100%;
}

ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*---------- PC・スマホ切り替え ----------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*---------- 背景 ----------*/
.bg_bl { /* ブルー背景 */
  background: #003f98;
}

.bg_rgy { /* ライトグレー */
  background: #eeefef;
}

.bg_wt { /* ホワイト */
  background: #fff;
  border-radius: 30px;
}

/*---------- 枠 ----------*/
.wrapper { /* メイン横幅 */
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.box_1000 { /* 横幅1000px枠 */
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
}

.box_1200 { /* 横幅1200px枠 */
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width:640px) {
  .wrapper {
    padding: 0 15px;
  }
}

/*---------- リンク ----------*/
a {
  color: #003f98;
  transition: all .5s;
}

a * {
  transition: all .5s;
}

a:hover {
  text-decoration: none;
}

/*---------- ボタン ----------*/
/* ブルーボタン */
.btn_bl {
  background: #fff;
  border: 2px solid #003f98;
  border-radius: 100vw;
  color: #003f98;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 25px;
  margin: 15px 0 0;
}

.btn_bl::after {
  color: #003f98;
  font-size: 40px;
  transition: color 0.4s;
}

.btn_bl:hover {
  background: #003f98;
  color: #fff;
  cursor: pointer;
}

.btn_bl:hover::after {
  color: #fff;
}

/* ホワイトボタン */
.btn_wt {
  background: #fff;
  border: 2px solid #fff;
  border-radius: 100vw;
  color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 25px;
  margin: 15px 0 0;
}

.btn_wt::after {
  color: #003f98;
  font-size: 40px;
  transition: color 0.3s;
}

.btn_wt:hover {
  background: #003f98;
  color: #fff;
  cursor: pointer;
}

.btn_wt:hover::after {
  color: #fff;
}

/* イエローボタン */
.btn_yl {
  background: #f4bd22;
  border: 2px solid #f4bd22;
  border-radius: 100vw;
  color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 25px;
  margin: 15px 0 0;
}

.btn_yl::after {
  color: #003f98;
  transition: color 0.3s;
}

.btn_yl:hover {
  background: #fff;
  color: #000;
  cursor: pointer;
}

.btn_yl:hover::after {
  color: #000;
}

/* 矢印＞を右側に付ける */
.btn_ra {
  padding: 15px 75px 15px 25px;
  position: relative;
}
.btn_ra::after {
  content: "\f138";
  font-family: 'Fontawesome';
  font-size: 40px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

/*---------- 見出し ----------*/
h1,h2,h3,h4,h5,h6 {
  color: #000;
  font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 900;
  line-height: 1.5;
}

h2 {
  font-size: 30px;
}

h2 span {
  font-family: "Albert Sans", sans-serif;
  font-size: 80px;
  display: block;
  line-height: 1.2;
}

@media screen and (max-width:640px) {
  h2 {
    font-size: 24px;
  }
  h2 span {
    font-size: 12vw;
  }
}

/*---------- テーブル ----------*/
.uk-table caption {
  background: #041d30;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
}

.uk-table th {
  color: #000;
  font-weight: bold;
  font-size: 16px;
  vertical-align: top;
}

.uk-table th,
.uk-table td {
  box-sizing: border-box;
  border-bottom: 1px dotted #ccc;
}

.uk-table tr:last-child th,
.uk-table tr:last-child td {
  border: none;
}

@media screen and (max-width:640px) {
  .uk-table th,
  .uk-table td {
    display: block;
  }
  .uk-table th {
    border-bottom: none;
  }
  .uk-table td {
    padding: 0 12px 16px;
  }
}


/*===============================
 header
===============================*/
header {
  background: #fff;
  box-shadow: 0px 5px 10px -7px rgba(0, 0, 0, 0.2);
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.header_wrapper {
  padding: 10px 0;
}

header .wrapper {
  position: relative;
}

/*---------- logo ----------*/
header h1,
header .logo {
  width: 300px;
  margin: 0;
}

header h1 img,
header .logo img,
header h1 a,
header .logo a {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
}

header h1 a:hover,
header .logo a:hover {
  opacity: 0.6;
}

@media screen and (max-width:640px) {
  header h1,
  header .logo {
    width: 80%;
  }
  header h1 img,
  header .logo img {
    width: 270px;
  }
}

/*---------- pc nav ----------*/
.uk-navbar-container {
  background: transparent !important;
}

.uk-navbar-nav li a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  min-height: 30px;
  transition: all .5s;
}

.uk-navbar-nav li a:hover {
  color: #003f98;
}

.uk-navbar-nav li:last-child a {
  font-family: "Albert Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
}

@media screen and (max-width:960px) {
  .uk-navbar-container {
    display: none;
    box-sizing: border-box;
    background: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    padding: 5vw;
  }
  .uk-navbar-nav {
    margin: 40px 0 0;
    display: block;
  }
  .uk-navbar-nav li {
    display: block;
  }
  .uk-navbar-nav li a {
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    display: block;
    min-height: auto;
    padding: 7px;
    width: 100%;
  }
  .uk-navbar-nav li a span {
    display: none;
  }
  .uk-navbar-dropdown {
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-left: 1em;
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
}

.header_contact_buttons {
  box-shadow: 0px 5px 10px -7px rgba(0, 0, 0, 0.2);
  background: #fff;
  position: absolute;
  bottom: -80px;
  right: 0;
}

.header_contact_buttons ul {
  display: flex;
  justify-content: flex-end;
}

.header_contact_buttons li a {
  box-sizing: border-box;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 30px;
}

.header_contact_buttons li a:hover {
  opacity: 0.6;
}

.header_contact_buttons li:first-child a {
  border: 2px solid #f4bd22;
  background: #f4bd22;
}

.header_contact_buttons li:last-child a {
  border: 2px solid #003f98;
  background: #003f98;
}

@media screen and (max-width:960px) {
  .header_contact_buttons {
    display: none;
  }
}

/*---------- ハンバーガーメニュー ----------*/
.nav_btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #fff;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  padding: 0;
}

.nav_btn span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #041d30;
  width: 45%;
}

.nav_btn span:nth-of-type(1) {
  top:15px; 
}

.nav_btn span:nth-of-type(2) {
  top:23px;
}

.nav_btn span:nth-of-type(3) {
  top:31px;
}

.nav_btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

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

.nav_btn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width:960px) {
  .nav_btn {
    display: block;
  }
}

/*---------- sp nav ----------*/
.sp_nav {
  display: none;
  box-sizing: border-box;
  background: #fff;
  padding: 30px 15px 15px;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sp_nav.active {
  display: block;
}

.sp_nav nav {
  box-sizing: border-box;
  width: 100%;
  overflow: scroll;
  scrollbar-width: none;
}

.sp_nav img {
  width: 60%;
}

.sp_nav ul {
  margin-top: 5vw;
}

.sp_nav li {
  border-bottom: 1px dotted #000;
}

.sp_nav li a {
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 15px 10px 5px;
  position: relative;
}

.sp_nav li a::after {
  content: "\f138";
  color: #003f98;
  font-family: 'Fontawesome';
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

.sp_nav li a:hover {
  background: #f4bd22;
}

.sp_nav p {
  text-align: center;
}

.sp_nav p a {
  font-family: "Albert Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
}


/*===============================
 main
===============================*/
main {
  margin-top: 80px;
}


/*===============================
 topページ
===============================*/
/*---------- メインビジュアル ----------*/
.mainvisual {
  position: relative;
}

.mainvisual::before {
  content: "";
  background: url(../images/common/triangle_y_top_t.svg) no-repeat top left / 100% auto;
  display: block;
  height: 10vw;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.mainvisual::after {
  content: "";
  background: url(../images/common/triangle_b_bottom_t.svg) no-repeat bottom right / 100% auto;
  display: block;
  height: 10vw;
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
}

.mainvisual_logo {
  box-sizing: border-box;
  padding: 0 15px;
  width: 1440px;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index: 100;
}

.mainvisual_logo p {
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.mainvisual_logo span {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.mainvisual_logo p:nth-child(1) span:nth-child(1) { /* 心 */
  animation-delay: .2s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(2) { /* を */
  animation-delay: .35s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(3) { /* こ */
  animation-delay: .5s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(4) { /* め */
  animation-delay: .65s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(5) { /* た */
  animation-delay: .8s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(6) { /* 工 */
  animation-delay: .95s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(7) { /* 事 */
  animation-delay: 1.1s;
}
.mainvisual_logo p:nth-child(1) span:nth-child(8) { /* で */
  animation-delay: 1.25s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(1) { /* 地 */
  animation-delay: 1.6s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(2) { /* 域 */
  animation-delay: 1.75s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(3) { /* の */
  animation-delay: 1.9s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(4) { /* イ */
  animation-delay: 2.05s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(5) { /* ン */
  animation-delay: 2.2s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(6) { /* フ */
  animation-delay: 2.35s;
}
.mainvisual_logo p:nth-child(2) em span:nth-of-type(7) { /* ラ */
  animation-delay: 2.5s;
}
.mainvisual_logo p:nth-child(2) span:nth-of-type(1) { /* を */
  animation-delay: 2.65s;
}
.mainvisual_logo p:nth-child(2) span:nth-of-type(2) { /* 支 */
  animation-delay: 2.8s;
}
.mainvisual_logo p:nth-child(2) span:nth-of-type(3) { /* え */
  animation-delay: 2.95s;
}
.mainvisual_logo p:nth-child(2) span:nth-of-type(4) { /* る */
  animation-delay: 3.1s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}

.mainvisual_logo strong {
  font-size: 100px;
}

.mainvisual_logo em {
  background: #fff;
  color: #003f98;
  font-style: normal;
  display: flex;
  align-items: flex-end;
  padding: 0 5px;
  animation: bg .6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.2s;
  transform: translateX(-100%);
  opacity: 0;
}

@keyframes bg {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media screen and (max-width:640px) {
  .mainvisual::before,
  .mainvisual::after {
    height: 17vw;
    width: 90%;
  }
  .mainvisual_logo p {
    font-size: 8vw;
  }
  .mainvisual_logo strong {
    font-size: 12vw;
  }
}

/*---------- お知らせ ----------*/
.news_list li {
  border-bottom: 1px dashed #ccc;
  padding: 15px 0;
}

.news_list .category_news {
  background: #f4bd22;
  border-radius: 100vw;
  color: #fff;
  font-size: 12px;
  padding: 3px 15px;
}

.news_list .date {
  font-size: 12px;
  display: inline-block;
  padding: 3px;
  margin-left: 1em;
}

.news_list .news_title {
  font-size: 20px;
  font-weight: 700;
}

.news_list p {
  margin: 0.5em 0 0;
}

/*---------- 事業内容 ----------*/
.top_service h2,
.top_service p {
  color: #fff;
}

.top_service h2 {
  line-height: 1.7;
}

.top_service h2 strong {
  background: #fff;
  color: #003f98;
  display: inline-block;
  padding: 0 5px;
  margin-right: 5px;
}

.top_slider_wrapper {
  background: #003f98;
}

.top_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.top_slider .swiper-wrapper img {
  border-radius: 15px;
}

/*---------- 採用情報 ----------*/
.top_recruit {
  padding: 160px 0;
  position: relative;
  z-index: 100;
}

.top_recruit::before {
  content: "";
  background: url(../images/common/triangle_y_top.svg) no-repeat top left / 100% auto;
  display: block;
  height: 10vw;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.top_recruit::after {
  content: "";
  background: url(../images/common/triangle_y_bottom.svg) no-repeat bottom right / 100% auto;
  display: block;
  height: 10vw;
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top_recruit_inner {
  padding: 100px 0;
  position: relative;
  z-index: 100;
}

.top_recruit_inner::before {
  content: "";
  display: block;
  background: #003f98;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 100%;
  width: 65%;
  position: absolute;
  top: 0;
  left: 0;
}

.top_recruit_inner::after {
  content: "";
  display: block;
  background: url(../images/top/recruit.jpg) no-repeat center center / cover;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 75%;
  width: 45%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.top_recruit .wrapper {
  padding-bottom: 150px;
  position: relative;
  z-index: 200;
}

.top_recruit h2,
.top_recruit p {
  color: #fff;
}

.top_recruit h2 {
  margin-bottom: 1.5em;
}

.top_recruit figure {
  display: none;
}

.top_recruit_buttons {
  background: #fff;
  display: flex;
  width: 999px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top_recruit_buttons div {
  box-sizing: border-box;
  width: calc(100% / 3);
}

.top_recruit_buttons a {
  box-sizing: border-box;
  border: 2px solid #fff;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.top_recruit_buttons a:hover {
  color: #fff;
  background: #003f98;
}

.top_recruit_buttons a i {
  color: #003f98;
  font-size: 40px;
  display: inline-block;
  margin-right: 10px;
}

.top_recruit_buttons a:hover i {
  color: #fff;
}

.top_recruit_buttons div:last-child a {
  border: 2px solid #f4bd22;
  background: #f4bd22;
}

.top_recruit_buttons div:last-child a:hover {
  background: #fff;
  color: #000;
}

.top_recruit_buttons div:last-child a:hover i {
  color: #003f98;
}


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

@media screen and (max-width:640px) {
  .top_recruit {
    padding: 25vw 0;
  }
  .top_recruit::before,
  .top_recruit::after {
    height: 17vw;
    width: 90%;
  }
  .top_recruit_inner::before {
    width: 100%;
  }
  .top_recruit_inner::after {
    display: none;
  }
  .top_recruit .wrapper {
    padding-bottom: 480px;
  }
  .top_recruit figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
  }
  .top_recruit figure img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .top_recruit_buttons {
    display: block;
  }
  .top_recruit_buttons div {
    border-bottom: 1px solid #003f98;
    width: 100%;
  }
}

/*---------- 企業情報 ----------*/
.top_company {
  background: url(../images/top/bg_company.jpg) no-repeat center center / cover;
  padding: 150px 0;
  position: relative;
  z-index: 100;
}

.top_company::after {
  content: "";
  display: block;
  background: rgba(2,49,104,0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 150;
}

.top_company .wrapper {
  position: relative;
  z-index: 200;
}

.top_company h2,
.top_company p {
  color: #fff;
}



/*===============================
 下層ページ共通
===============================*/
/*---------- 見出し ----------*/
.title {
  height: 500px;
  position: relative;
}

.title::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.title .wrapper {
  box-sizing: border-box;
  padding: 170px 30px 30px;
  height: 100%;
  width: 1440px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  transform: translate(-50%, -50%);
}

.title h1,
.title p {
  color: #fff;
}

.title h1 {
  font-size: 60px;
  font-weight: 900;
}

.title p {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width:1440px) {
  .title .wrapper {
    width: 100%;
  }
}

@media screen and (max-width:640px) {
  .title .wrapper {
    padding: 170px 15px 15px;
  }
  .title h1 {
    font-size: 8.5vw;
  }
  .title p {
    font-size: 18px;
  }
}

/*---------- パンくずリスト ----------*/
.uk-breadcrumb {
  margin: 15px 0 30px;
}

/*---------- ページ内リンク ----------*/
.page_link {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background: #fff;
  margin: 40px 0;
}

.page_link ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.page_link li {
  box-sizing: border-box;
  border-left: 1px solid #ccc;
  display: flex;
}

.page_link li:first-child {
  border-left: none;
}

.page_link a {
  box-sizing: border-box;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  display: block;
  flex: 1;
  text-align: center;
  padding: 10px 20px;
}

.page_link a:hover {
  color: #003f98;
}

.page_link a::after {
  content: "\f13a";
  font-family: 'Fontawesome';
  color: #003f98;
  display: inline-block;
  margin-left: 5px;
}

.page_link_3 li {
  width: calc(100% / 3);
}

.page_link_4 li {
  width: calc(100% / 4);
}

.page_link_5 li {
  width: calc(100% / 5);
}

@media screen and (max-width:640px) {
  .page_link li {
    border-left: none;
    border-top: 1px solid #ccc;
  }
  .page_link li:first-child {
    border-top: none;
  }
  .page_link_3 li,
  .page_link_4 li,
  .page_link_5 li {
    width: 100%;
  }
}



/*===============================
 事業内容
===============================*/
.title_service {
  background: url(../images/service/bg_title.jpg) no-repeat center center / cover;
}

/* スライダー */
.service_slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* 安全への取り組み */
.service_safety .wrapper > h2,
.service_safety .wrapper > p {
  color: #fff;
}

.service_safety_list .bg_wt {
  overflow: hidden;
}

/* 仕事の流れ */
.service_schedule_list {
  position: relative;
}

.service_schedule_list::before {
  content: "";
  display: block;
  background: #003f98;
  height: 86%;
  width: 3px;
  position: absolute;
  top: 20px;
  left: 62px;
  z-index: 100;
}

.service_schedule_list table {
  position: relative;
  z-index: 150;
}

.service_schedule_list th,
.service_schedule_list td {
  box-sizing: border-box;
  padding: 10px 10px 40px;
}

.service_schedule_list th {
  vertical-align: top;
  width: 120px;
}

.service_schedule_list th span {
  background: #003f98;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
}

.service_schedule_list li figure {
  margin: 0;
}

.service_schedule_list li h4 {
  margin: 0.5em 0;
}

.service_schedule_list li p {
  margin: 0.5em 0;
}

@media screen and (max-width:1180px) {
  .service_schedule_list::before {
    height: 87%;
  }
}

@media screen and (max-width:770px) {
  .service_schedule_list::before {
    height: 88.3%;
  }
}

@media screen and (max-width:640px) {
  .service_schedule_list::before {
    content: none;
  }
  .service_schedule_list th,
  .service_schedule_list td {
    display: block;
    padding: 10px 0 40px;
    width: 100%;
  }
  .service_schedule_list th {
    padding: 10px 0;
    text-align: left;
  }
}



/*===============================
 会社概要
===============================*/
.title_company {
  background: url(../images/company/bg_title.jpg) no-repeat center center / cover;
}

/* 代表者挨拶 */


/* 社是 */
.comapny_shaze p {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: 130px;
  line-height: 1;
}

/* 社訓 */
.company_shakun ul {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
}

/* 安全スローガン */

/* 会社概要 */
.company_table th {
  width: 150px;
}

@media screen and (max-width:640px) {
  .company_table th {
    width: 100%;
  }
}

/* アクセス */



/*===============================
 採用情報
===============================*/
.title_recruit {
  background: url(../images/recruit/bg_title.jpg) no-repeat center center / cover;
}

.title_recruit span {
  background: #fff;
  color: #000;
  padding: 3px 15px;
  margin: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

/* メッセージ */
.recruit_message_content {
  box-sizing: border-box;
  background-image: url(../images/common/triangle_y_top_t.svg),
  url(../images/common/triangle_b_bottom_t.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  background-size: 100% auto, 100% auto;
  padding: 40px;
  position: relative;
}

.recruit_message_img {
  overflow: hidden;
}

.recruit_message_img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: auto;
  height: 100%;
}

@media screen and (max-width:640px) {
  .recruit_message_content {
    padding: 15px;
  }
}

/* 仕事内容を知る */
.recruit_business .bg_bl {
  border-radius: 50px;
  padding: 40px;
}

.recruit_business h2,
.recruit_business p {
  color: #fff;
}

@media screen and (max-width:640px) {
  .recruit_business .bg_bl {
    border-radius: 30px;
    padding: 15px;
  }
}

/* 共栄配管で働くポイント */
.recruit_points_list {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
}

.recruit_points_list div div {
  padding: 40px;
}

.recruit_points_list h3 span,
.recruit_points_list2 h3 span {
  color: #003f98;
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.recruit_points_list2 {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 40px;
}

.recruit_points_list2 h3 {
  text-align: center;
}

@media screen and (max-width:640px) {
  .recruit_points_list div div {
    padding: 20px;
  }
  .recruit_points_list h3 span {
    font-size: 30px;
  }
  .recruit_points_list2 {
    padding: 20px;
  }
}

/* スタッフインタビュー */
.recruit_interview_list figure img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: 100%;
  width: auto;
}

.recruit_interview_list div div {
  padding: 40px;
}

@media screen and (max-width:640px) {
  .recruit_interview_list div div {
    padding: 20px;
  }
}

/* 募集要項 */
.recruit_description h2,
.recruit_description .wrapper > p {
  color: #fff;
}

.recruit_description .wrapper > p a {
  color: #fff;
  text-decoration: underline;
}

.recruit_description_list {
  padding: 40px;
}

.recruit_description_list h3::before {
  content: "●";
}

.recruit_description_list img {
  border-radius: 20px;
}

@media screen and (max-width:640px) {
  .recruit_description_list {
    padding: 15px;
  }
}

/* 採用エントリー */
.recruit_entry {
  background: url(../images/recruit/bg_entry.jpg) no-repeat center center / cover;
  position: relative;
  z-index: 100;
}

.recruit_entry::after {
  content: "";
  display: block;
  background: rgba(2,49,104,0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 150;
}

.recruit_entry .wrapper {
  position: relative;
  z-index: 200;
}

.recruit_entry h2,
.recruit_entry p {
  color: #fff;
}



/*===============================
 採用エントリー
===============================*/
.title_entry {
  background: url(../images/entry/bg_title.jpg) no-repeat center center / cover;
}



/*===============================
 プライバシーポリシー
===============================*/
.title_privacy {
  background: url(../images/company/bg_title.jpg) no-repeat center center / cover;
}

.privacy ul li {
  margin-left: 1em;
}

.privacy ul li:nth-of-type(1)::before {
  content: "(1)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(2)::before {
  content: "(2)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(3)::before {
  content: "(3)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(4)::before {
  content: "(4)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(5)::before {
  content: "(5)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(6)::before {
  content: "(6)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(7)::before {
  content: "(7)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(8)::before {
  content: "(8)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(9)::before {
  content: "(9)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(10)::before {
  content: "(10)";
  margin-left: -1em;
}



/*===============================
 お問い合わせ
===============================*/
.title_inquiry {
  background: url(../images/inquiry/bg_title.jpg) no-repeat center center / cover;
}

.inquiry_tel a {
  font-size: 36px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
}

.form_table th span {
  float: right;
  margin-top: 7px;
}

.mfp_achroma,
.mfp_colored {
  background-color: transparent !important;
}

#mailformpro .uk-input,
#mailformpro .mfp_checked,
#mailformpro .uk-textarea,
#mailformpro .uk-radio {
  box-shadow: none !important;
}

#mailformpro .uk-textarea {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
}

.mfp_element_button {
  background: none;
  border: none;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button,
.mfp_next,
.mfp_prev {
  text-shadow: none;
}

/* 送信するボタン */
#mfp_button_send {
  background: #fff;
  border: 2px solid #003f98;
  border-radius: 100vw;
  color: #003f98;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 25px;
  margin: 15px 0 0;
}

#mfp_button_send:hover {
  background: #003f98;
  color: #fff;
  cursor: pointer;
}

/* キャンセルボタン */
#mfp_button_cancel {
  background: #fff;
  border: 2px solid #003f98;
  border-radius: 100vw;
  color: #003f98;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 25px;
  margin: 15px 0 0;
}

#mfp_button_cancel:hover {
  background: #003f98;
  color: #fff;
  cursor: pointer;
}



/*===============================
 footer
===============================*/
footer {
  background-image: url(../images/common/bg_footer_left.svg),
  url(../images/common/bg_footer_right.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, bottom right;
  background-size: 40% auto, 15% auto;
  padding-bottom: 0 !important;
}

@media screen and (max-width:640px) {
  footer {
    background-size: 80% auto, 35% auto;
  }
}

/*---------- お仕事のご依頼・ご相談 ----------*/
.footer_contact {
  background: rgba(2, 9, 35, 0.85);
  border-radius: 50px;
}

.footer_contact,
.footer_contact h2,
.footer_contact a {
  color: #fff;
}

.footer_contact_tel p,
.footer_contact_mail p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.footer_contact_tel a {
  font-family: "Albert Sans", sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.footer_contact_tel a:hover {
  opacity: 0.6;
}

.footer_contact_mail a {
  border: 2px solid #fff;
  border-radius: 100vw;
  font-size: 36px;
  font-weight: 700;
  padding: 10px 60px;
}

.footer_contact_mail a:hover {
  background: #fff;
  color: rgba(2, 9, 35, 0.85);
}

@media screen and (max-width:640px) {
  .footer_contact_tel a {
    font-size: 10vw;
  }
  .footer_contact_mail a {
    font-size: 8vw;
    padding: 10px 30px;
  }
}

/*---------- footer_info ----------*/
.footer_info {
  font-weight: 500;
}

.footer_info a {
  color: #000;
}

.footer_info a:hover {
  color: #003f98;
}

.footer_logo {
  margin: 0 0 20px;
}

.footer_logo img {
  width: 250px;
}

.footer_info .tel {
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: 24px;
}

/*---------- nav ----------*/
footer nav a {
  color: #000;
  font-weight: 500;
}

footer nav a:hover {
  text-decoration: underline;
}

@media screen and (max-width:640px) {
  footer nav ul {
    margin: 0 !important;
  }
}

/*---------- copyright ----------*/
.copyright {
  color: #999;
  padding: 20px 0;
  margin: 0;
}