@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ----------- 共通 ----------- */

body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0.05em;
  margin: 0 auto;
  padding: 0;
  background-color: #eeeeee;
}
.fixed {
  overflow: hidden;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
p,
a {
  line-height: 2em;
}
img {
  display: block;
  width: 100%;
}
li {
  list-style-type: none;
}
h2 {
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3em;
}
h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: 0.09em;
}
h4 {
  font-weight: 800;
  font-size: 18px;
}
.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 150px 7% 0;
}
/* .content:last-child {
  padding-bottom: 100px;
} */
a {
  color: #000;
  text-decoration: none;
}
.title {
  margin-bottom: 40px;
}
.title h2,
.title h1 {
  color: #006da2;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 40px;
  letter-spacing: 0.06em;
}
.title p {
  color: #888888;
  font-size: 15px;
}
main {
  position: relative;
  z-index: 2;
}
.link {
  margin-top: 30px;
}
.link a {
  position: relative;
  display: block;
  padding: 10px 30px;
  width: 100%;
  max-width: 280px;
  background: url(./img/btn_bg02.png);
  background-size: cover;
  color: #ffffff;
  text-align: left;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  outline: none;
  transition: ease 0.4s;
}
.link a span {
  position: relative;
  z-index: 3;
  color: #ffffff;
}
.link a:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translate(0, -50%) rotate(45deg);
  z-index: 9;
}
.link a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #006293;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.link a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.title02 {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 50px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table tr th,
table tr td {
  padding: 25px;
  border: 1px solid #c9d8e3;
  background-color: #eaecef;
}
table tr th {
  text-align: left;
  background-color: #006da2;
  color: #ffffff;
  font-weight: 400;
}
table thead tr {
  background: url(./img/bg_img.png);
  background-size: cover;
}
table thead th {
  background-color: rgba(255, 255, 255, 0) !important;
}

/* ----------- header ----------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4% 15px 7%;
  background-color: #eeeeee;
  position: relative;
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
}
header .logo {
  width: 280px;
}
header .logo img {
  width: 100%;
  margin: auto 0;
  display: block;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  padding-right: 20px;
}
header nav ul li a {
  display: block;
  padding: 10px;
}
header nav ul .recruit_btn {
  padding-right: 0;
}
header nav ul .recruit_btn a {
  background-image: url(./img/btn_bg.png);
  background-size: cover;
  color: #fff;
  position: relative;
  padding: 5px 50px;
}
header nav ul .recruit_btn span {
  position: relative;
  z-index: 3;
  color: #ffffff;
}
header nav ul .recruit_btn a:after {
  content: "";
  position: absolute;
}
header nav ul .recruit_btn a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #ff5808;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
header nav ul .recruit_btn a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* ----------- header ここまで ----------- */

/* ----------- border ----------- */
.bg_border {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bg_border_in {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 7%;
}
.bg_border_in span {
  display: block;
  width: calc(100% / 5);
  height: 100%;
  border-left: 1px solid #c9d8e3;
}
.bg_border_in span:last-child {
  border-right: 1px solid #c9d8e3;
}

/* ----------- border ここまで ----------- */

/* ----------- footer ----------- */
footer {
  background-color: #232332;
  color: #ffffff;
  padding: 50px 7% 15px 7%;
  position: relative;
  z-index: 2;
  margin-top: 150px;
}
.footer_top {
  margin-top: 0;
}
footer .logo {
  width: 280px;
  margin-bottom: 20px;
}
footer .logo img {
  width: 100%;
  margin: auto 0;
  display: block;
}
footer a {
  color: #ffffff;
}
footer .flex {
  display: flex;
  justify-content: space-between;
}
footer .flex .left,
footer .flex .right {
  width: calc(50% - 20px);
}
/* footer .flex .right {
  margin: auto 0 0 0;
} */
footer .flex_top {
  margin-bottom: 20px;
  align-items: flex-end;
}
footer .flex_top .right .nav {
  margin: 0 0 0 auto;
  display: flex;
  justify-content: flex-end;
}
footer .flex_top .left .nav {
  display: flex;
}
footer .flex_top .left .contact {
  display: flex;
}
footer .flex_top .left .contact p:nth-child(n + 2) {
  margin-left: 15px;
}
footer .flex_top .right .nav a:nth-child(n + 2) {
  margin-left: 15px;
}
footer .flex_top .right .nav a span {
  position: relative;
  padding-left: 25px;
}
footer .flex_top .right .nav a span::before {
  position: absolute;
  display: inline-block;
  content: "";
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 19px;
  height: 19px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #006da2;
}
footer .flex_top .right .nav a span::after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  left: 8px;
  box-sizing: border-box;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 5px solid #fff;
  transform: translate(0, -50%);
}
.gm-style .place-card-medium {
  display: none;
}
footer .flex_bottom .left .contact p:first-child {
  margin-right: 20px;
}
footer .flex_bottom .right .block {
  display: block;
  background-color: #007fbe30;
  padding: 20px;
  height: 100%;
  position: relative;
  transition: 0.4s;
}
footer .flex_bottom .right .block:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  width: 15px;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translate(0, -50%) rotate(45deg);
  z-index: 9;
}
footer .flex_bottom .right .block:hover {
  background-color: #006da2;
}
footer .flex_bottom .right .title {
  margin-bottom: 10px;
}
footer .flex_bottom .right .block .title h2,
footer .flex_bottom .right .block .title p {
  color: #ffffff !important;
}
footer .copy {
  text-align: center;
  margin-top: 50px;
}
/* ----------- footer ここまで ----------- */

/* ----------- サイドナビ ----------- */
.side-nav {
  position: relative;
}
#g-nav,
#g-nav02 {
  position: absolute;
  top: 150px;
  right: 0;
  height: 800px;
  width: 4%;
  display: block;
  width: 4%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#g-nav.fixed,
#g-nav02.fixed {
  position: fixed;
  overflow: inherit;
}
.side-nav ul {
  display: flex;
}
.side-nav ul li {
  position: relative;
  margin-top: 20px;
  padding-right: 3%;
}
.side-nav ul li:first-child {
  margin-top: 0;
}
.side-nav ul li a {
  color: #006da2;
  position: relative;
  padding-top: 20px;
  opacity: 0.6;
  display: block;
}
.recruit_side-nav ul li a {
  color: #ff5808;
}
.side-nav ul li a::after {
  position: absolute;
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  background-color: #006da2;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.recruit_side-nav ul li a::after {
  background-color: #ff5808;
}
.side-nav ul li.current a {
  opacity: 1;
}
.side-nav ul li.current::before {
  position: absolute;
  content: "";
  display: inline-block;
  height: 1px;
  width: 23px;
  background-color: #006da2;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.recruit_side-nav ul li.current::before {
  background-color: #ff5808;
}

/* ----------- サイドナビ ここまで ----------- */

/* ----------- 下層共通 ----------- */
.underlayer_top {
  position: relative;
  background: url(img/underlayer_img.png) no-repeat;
  background-size: cover;
  height: 280px;
  z-index: 2;
  text-align: center;
  margin-top: 71px;
}
.underlayer_recruit_top {
  background: url(img/underlayer_recruit_img.png) no-repeat;
  background-size: cover;
}
.underlayer_top a {
  color: #ffffff;
}
.underlayer_top .title {
  margin-bottom: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.underlayer_top .title h1,
.underlayer_top .title p {
  color: #ffffff;
}
.underlayer_top h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.breadcrumbs {
  position: absolute;
  bottom: 25px;
  left: 7%;
  font-size: 15px;
}
.breadcrumbs ol {
  display: flex;
  white-space: nowrap;
}
.breadcrumbs ol li {
  list-style: none;
  padding-right: 30px;
}
.breadcrumbs ol li:not(:last-child) {
  position: relative;
  padding-right: 45px;
}
.breadcrumbs ol li:not(:last-child) ::after {
  content: ">";
  display: block;
  position: absolute;
  width: 10px;
  height: 15px;
  top: 0px;
  right: 15px;
}
.breadcrumbs ol li a {
  cursor: pointer;
}
.breadcrumbs ol li a:hover {
  opacity: 0.7;
}

/* ----------- 下層共通 ここまで ----------- */

/* ----------- 共通 ここまで ----------- */

/* ----------- TOP ----------- */
.top {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
}
.top .slide {
  margin-left: 7%;
  height: 100%;
}
.top .slide .swiper-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%,
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top_title_block {
  position: absolute;
  bottom: 100px;
  left: 6%;
  display: grid;
  z-index: 8;
}
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.bg.is-animated .bg-wrap::before {
  animation: bg 3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  background: #006da2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg .bg-wrap .inn {
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
  color: #fff;
  display: inline-block;
  font-size: 36px;
  padding: 5px 15px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 1;
}
.top_title:first-child {
  margin-bottom: 20px;
}
.top h1.pc {
  display: inline-block;
}
.top h1.sp {
  display: none;
}
.top .swiper {
  width: 100%;
  height: 100%;
}
.top .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.top .swiper-slide .imgage {
  transform: translateX(-100%);
  overflow: hidden;
  transition-delay: 0.5s;
}
.top .swiper-slide .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_image_bg {
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100%;
}
.top_image_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .top_image_bg {
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-100%);
  overflow: hidden;
}
.top_image_bg img {
  transform: translateX(100%);
} */
.top .swiper {
  margin-left: auto;
  margin-right: auto;
}
.top .swiper-pagination {
  text-align: right !important;
  padding-right: 3%;
}
.top .swiper-pagination-bullet {
  background: #fff;
  opacity: 1 !important;
}
.top .swiper-pagination-bullet-active {
  background: #006da2;
}
.swiper-slide {
  opacity: 1 !important;
}

.swiper-slide .image,
.swiper-slide .image img {
  transition-delay: 0.5s;
}

.swiper-slide .image {
  transform: translateX(-100%);
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.swiper-slide .image img {
  transform: translateX(100%);
}

.swiper-slide-active {
  z-index: 2;
}

.swiper-slide-active .image,
.swiper-slide-active .image img {
  transition-delay: 0s;
  transition-duration: 0.5s;
  transform: translateX(0%);
}
.top01 {
  text-align: center;
  position: relative;
  max-width: 100%;
}
.top01 .block {
  max-width: 1400px;
  margin: 0 auto;
}
.top01 .link a {
  margin: 0 auto;
}
.top01:before {
  content: "";
  position: absolute;
  background-color: #d2dde7;
  bottom: 0;
  right: 0;
  width: 7%;
  height: 60%;
  z-index: -1;
}
.top01:after {
  content: "";
  position: absolute;
  background-color: #d2dde7;
  bottom: -100px;
  right: 0;
  width: 75%;
  height: 27%;
  z-index: -1;
}
.top02 {
  background: url(img/bg_img.png) no-repeat;
  background-size: cover;
  color: #ffffff;
  display: flex;
  width: 100%;
  padding: 100px 7% 100px 0;
  margin-top: 100px;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  width: auto;
}
.top02:before {
  content: "";
  position: absolute;
  background-color: #eeeeee;
  top: 0;
  left: 0;
  width: 7%;
  height: 100%;
}
.top02 .left {
  width: 50%;
  position: relative;
}
.top02 .left img {
  width: 100%;
}
.top02 .right {
  width: 50%;
  margin: auto 0;
  padding-left: 80px;
  position: relative;
}
.top02 .right:after {
  position: absolute;
  background: url(img/logo02.png) no-repeat;
  content: "";
  right: -4%;
  top: -41%;
  width: 250px;
  height: 230px;
  background-size: contain;
}
.top02 .title h2,
.top02 .title p {
  color: #ffffff;
}
.top02 .link a {
  background-color: transparent;
  border: 1px solid #ffffff;
  margin: 0;
}
.top03 {
  position: relative;
  max-width: 100%;
}
.top03 .title {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.top03 .content_in {
  max-width: 1400px;
  margin: 0 auto;
}
.top03:before {
  content: "";
  position: absolute;
  background-color: #d2dde7;
  bottom: 0;
  right: 0;
  width: 7%;
  height: 100%;
  z-index: -1;
}
.top03:after {
  content: "";
  position: absolute;
  background-color: #d2dde7;
  bottom: -100px;
  right: 0;
  width: 75%;
  height: 27%;
  z-index: -1;
}
.top03 a {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.top03 a img {
  transition: 0.8s all;
}
.top03 a:hover img {
  transform: scale(1.1, 1.1);
  transition: 0.8s all;
}
.top03 a h3 {
  position: absolute;
  left: 4%;
  bottom: 40px;
  color: #fff;
}
.top03 a h3:after {
  position: absolute;
  content: "";
  right: -20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translate(0, -50%) rotate(45deg);
}
.top04 {
  display: flex;
  margin-top: 100px;
  justify-content: space-between;
  padding-right: 0;
  position: relative;
  z-index: 3;
}
.top04 .left {
  width: calc(40% - 20px);
}
.top04 .right {
  width: calc(60% - 20px);
}
.top04 .right img {
  max-width: 800px;
  margin: 0 auto;
}
.top04 .bg_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  z-index: -1;
}

/* ----------- TOP ここまで ----------- */

/* ----------- 会社案内 ----------- */
.coumpany01 {
  text-align: center;
}
.coumpany01 .flex {
  display: flex;
  justify-content: space-between;
}
.coumpany01 .flex .left {
  width: calc(60% - 20px);
  text-align: left;
}
.coumpany01 .flex .right {
  width: calc(40% - 20px);
  text-align: left;
}
.coumpany01 .name {
  text-align: right;
  margin-top: 10px;
}
.coumpany02 {
  background-color: #ffffff;
  margin: 150px 7% 0 7%;
  padding: 40px;
  text-align: center;
}
.coumpany02 .title02 {
  margin-bottom: 20px;
}
.company-sdgs {
  text-align: center;
}
.company-sdgs .sdgs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 50px;
  margin-top: 40px;
}
.sdgs-slogan01 {
  text-align: center;
}
.sdgs-slogan01 img {
  width: 150px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.sdgs-slogan02 {
  margin-top: 100px;
}
.sdgs-list_img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sdgs_img {
  max-height: 100px;
  width: fit-content;
}
.company-sdgs .w-sdgs-list {
  padding: 50px 40px;
  background-color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: calc(100% / 2 - 20px);
}
.company-sdgs .w-sdgs-list h3 {
  font-weight: 500;
}
.company-sdgs .w-sdgs-list ul {
  font-size: 0.95rem;
  margin-top: 10px;
}
.company-sdgs .w-sdgs-list ul h4 {
  margin-bottom: 10px;
}
.company-sdgs .w-sdgs-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.company-sdgs .w-sdgs-list ul li::before {
  content: "";
  background-color: #006293;
  width: 15px;
  height: 15px;
  border-radius: 100vh;
  display: inline-block;
  margin-right: 10px;
}
.company-sdgs .link {
  margin-top: 80px;
}

.coumpany03 {
  margin-top: 150px;
  background-color: #d2dde7;
  padding-bottom: 150px;
}
.coumpany03 table {
  margin-bottom: 50px;
  border-bottom: none;
}
.coumpany04 .flex {
  display: flex;
  justify-content: space-between;
}
.coumpany04 .flex .block {
  background-color: #fff;
  width: calc(50% - 20px);
  padding: 30px;
}
.coumpany04 .flex .block h3 {
  font-family: "Noto Serif JP", serif;
}
.coumpany04 .flex .block .block_in {
  margin-top: 10px;
  height: 210px;
  column-count: 2;
  column-fill: auto;
}
.coumpany05 li {
  margin-bottom: 5px;
}
.coumpany05 li:last-child {
  margin-bottom: 0;
}
.coumpany05 li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #006da2;
  border-radius: 50%;
  margin-right: 10px;
}

/* ----------- 会社案内 ここまで ----------- */

/* ----------- 事業紹介 ----------- */
.service01 h2 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 80px;
}
.service01 .flex {
  display: flex;
  justify-content: space-between;
}
.service01 .flex:nth-child(n + 3) {
  margin-top: 50px;
}
.service01 .flex .left {
  width: calc(50% - 20px);
}
.service01 .flex .left h3 {
  margin-bottom: 10px;
}
.service01 .flex .right {
  width: calc(50% - 20px);
}
.service02 {
  background-color: #d2dde7;
  padding: 100px 0 0;
  margin-top: 150px;
  margin-right: 7%;
}
.service02 .title {
  padding-left: 7%;
}
.service02 .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  width: auto;
  background: #eeeeee 0% 0% / cover no-repeat;
  padding: 80px 7% 80px 0px;
  align-items: center;
}
.service02 .flex:before {
  content: "";
  position: absolute;
  background-color: #d2dde7;
  top: 0;
  left: 0;
  width: 7%;
  height: 100%;
}
.service02 .flex .left {
  width: calc(50% - 20px);
  position: relative;
}
.service02 .flex .right {
  width: calc(50% - 20px);
}
.service02 .flex .right h3 {
  color: #006da2;
  margin-bottom: 20px;
}
.service02 .content_block {
  padding: 80px 7%;
}
.service02 .content_block h3 {
  margin-bottom: 20px;
}
.service02 .process {
  display: flex;
  justify-content: space-between;
  background-color: #eaecef;
  padding: 20px 4%;
  color: #006da2;
  text-align: center;
}
.service02 .process .yajirushi {
  position: relative;
  top: -20px;
  width: 22px;
  height: 22px;
  border-top: 1px solid #006da2;
  border-right: 1px solid #006da2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto 0;
}
.service02 .process .block img {
  max-width: 130px;
  width: 100%;
  margin: 0 auto;
}
.service02 .process .block p {
  line-height: 1.5em;
  margin-top: 10px;
  font-weight: 800;
}
.service02 .content_block table tr th {
  text-align: center;
}
.service02 .content_block table tr th:nth-child(1) {
  width: 45%;
}
.service02 .content_block table tr th:nth-child(2) {
  width: 28%;
}
.service02 .content_block table tr th:nth-child(3) {
  width: 27%;
}
.service02 .txt-hide {
  display: none;
}
.service02 button.more {
  width: 100%;
  margin: 0;
  padding: 25px;
  display: block;
  color: #006da2;
  background-color: #eaecef;
  border: none;
  outline: 0;
  transition: 0.5s;
  -erbkit-transition: 0.5s;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.05em;
}
.service02 .more_tr td {
  padding: 0 !important;
}
.service02 button.more::after {
  content: "もっと見る";
  transition: 0.2s;
  -erbkit-transition: 0.2s;
}

.service02 button.more.on-click::after {
  content: "閉じる";
}
.service04 .block_in:nth-child(n + 2) {
  margin-top: 80px;
}
.service04 .block_in h3 {
  margin-bottom: 20px;
}
.service04 .swiper {
  background-color: #fff;
}
.service04 .swiper-slide {
  padding: 50px 4%;
}
.service04 .swiper-slide .flex {
  display: flex;
  justify-content: space-between;
}
.service04 .swiper-slide .flex .left {
  width: calc(50% - 20px);
}
.service04 .swiper-slide .flex .right {
  width: calc(50% - 20px);
}
.service04 .swiper-slide .flex .right .ex {
  background-color: #d2dde7;
  padding: 30px;
  display: inline-block;
}
.service04 .swiper-slide .flex .right h3 {
  font-family: "noto-sans-cjk-jp", sans-serif;
}
.service04 .swiper-slide .flex .right h3 span {
  display: block;
  font-size: 0.8em;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #006da2;
}
.service04 .swiper-slide .flex .right .ex p {
  margin-bottom: 10px;
}
.service04 .swiper-slide .flex .right .ex img {
  max-width: 400px;
}
.service05 {
  margin-bottom: 150px;
}
.service05 .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.service05 .flex .block {
  width: calc(50% - 20px);
}
.service05 .flex .block h4 {
  margin: 20px 0 10px 0;
  font-weight: bold;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  display: none !important;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  display: none !important;
}

/* ----------- 事業紹介 ここまで ----------- */

/* ----------- 採用情報 ----------- */
.recruit {
  background-color: #fff0ee;
}
.pop_h1 {
  opacity: 0;
}
.fadeIn {
  opacity: 1;
  animation: popup 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%,
  100% {
    opacity: 1;
  }
}

.recruit .title h2,
.recruit a.title h1 {
  color: #ff5808;
}
.recruit .bg_border_in span {
  border-left: 1px solid #ffe4d1;
}
.recruit .bg_border_in span:last-child {
  border-right: 1px solid #ffe4d1;
}
.recruit table tr th {
  background-color: #ffe4de;
  /* border-left: 3px solid #ff5808 !important; */
  color: #000;
}
.recruit table tr th,
.recruit table tr td {
  border: 1px solid #ff5808;
}
.recruit table tr td {
  background-color: #fff;
}
.recruit01 {
  background: linear-gradient(#fff, #ffe4de);
  text-align: center;
  padding-bottom: 150px;
  position: relative;
  padding: 100px 7%;
  max-width: 100%;
}
.recruit01 .circle {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 1400px;
}
.recruit01 .circle img {
  width: 100%;
}
.recruit01 .recruit01_in {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.recruit01 h1 {
  background-color: #ff5808;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 5px 40px;
  display: inline-block;
  width: fit-content;
  font-weight: 500;
  margin-bottom: 30px;
}
.recruit01 .irasuto {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.recruit_link {
  padding-top: 0;
}
.recruit_link ul {
  display: flex;
  justify-content: space-between;
}
.recruit_link ul li {
  width: calc((100% / 3) - 20px);
}
.recruit_link ul li a {
  display: block;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ff5808;
  color: #ff5808;
  padding: 15px;
  position: relative;
  transition: ease 0.4s;
}
.recruit_link ul li a:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ff5808;
  border-right: 2px solid #ff5808;
  transform: translate(0, -50%) rotate(135deg);
}

.recruit_link ul li a:hover {
  background-color: #ff5808;
  color: #fff;
}
.recruit_link ul li a:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.recruit02 .flex {
  display: flex;
  flex-wrap: wrap;
  background: url(img/bg_img04.png) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.recruit02 .flex .block {
  width: calc(100% / 3);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-top: 30px;
}
.recruit02 .flex .block:before {
  position: absolute;
  content: "";
  background-color: #c9d8e3;
  left: 0;
  width: 1px;
  height: 400px;
  transform: translate(0, -50%);
  top: 50%;
}
.recruit02 .flex .block:first-child:before,
.recruit02 .flex .block:nth-child(4):before {
  content: none;
}
.recruit02 .flex .block .img {
  position: relative;
  margin-bottom: 20px;
  transition: 1s all;
  display: inline-block;
}
.recruit02 .flex .block:hover .img {
  transform: scale(1.1, 1.1);
  transition: 0.4s all;
}
.recruit02 .flex .block .img img {
  max-width: 150px;
  margin: 0 auto;
}
.recruit02 .flex .block .img .number {
  position: absolute;
  right: -10px;
  top: -10px;
  font-size: 35px;
  -webkit-text-stroke: 1px #c9d8e3;
  color: #ffffff00;
  font-weight: 900;
}
.recruit02 .flex .block .text h4 {
  margin-bottom: 10px;
}
.recruit02 .flex .block h3 {
  margin-bottom: 10px;
}
.recruit02 .flex .block .click {
  margin-top: 20px;
}
.recruit03 {
  background-color: #ffe4de;
  margin-top: 150px;
  padding: 150px 0 150px 7%;
}
.recruit03_content {
  background-color: #fff0ee;
  padding: 80px 7% 80px 4%;
}
.recruit03_content .flex {
  display: flex;
  justify-content: space-between;
}
.recruit03_content .flex .text {
  width: calc(50% - 20px);
}
.recruit03_content .flex .img {
  width: calc(50% - 20px);
}
.recruit03_content .flex .text .category {
  display: inline-block;
  padding: 5px 20px;
  background-color: #ff5808;
  color: #fff;
}
.recruit03_content .flex .text h2 {
  font-family: "Noto Serif JP", serif;
  margin: 10px 0;
}
.recruit03_content .flex .text h4 {
  color: #888888;
  font-weight: 400;
}
.recruit03_content .flex .text p {
  border-top: 1px solid #ff5808;
  margin-top: 20px;
  padding-top: 20px;
}
.recruit03_content .interview {
  margin-top: 80px;
  background-color: #fff;
  border: 1px solid #ff5808;
  padding: 50px 4%;
}
.recruit03_content .interview .text {
  margin-bottom: 30px;
}
.recruit03_content .interview .text h4 {
  color: #ff5808;
  font-weight: bold;
  margin-bottom: 10px;
}
.recruit03_content .interview .text:last-child {
  margin-bottom: 0;
}
.recruit04 .tabs {
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
  display: flex;
}

.recruit04 .tab_class {
  width: 30%;
  padding: 20px;
  background-color: #ffe4de;
  border: 1px solid #ff5808;
  border-right: none;
  border-bottom: 1px solid #ff5808;
  font-size: 15px;
  text-align: center;
  display: block;
  float: left;
  order: -1;
  z-index: 9;
  cursor: pointer;
}
.recruit04 .tab_class:nth-child(n + 3) {
  border-right: 1px solid #ff5808;
}
.recruit04 input[name="tab_name"] {
  display: none;
}
.recruit04 input:checked + .tab_class {
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.recruit04 .content_class {
  display: none;
  padding: 50px 4%;
  width: 100%;
  border: 1px solid #ff5808;
  border-top: none;
  background-color: #fff;
  position: relative;
}
.recruit04 .content_class:after {
  content: "";
  background: #ff5808;
  height: 1px;
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}
.recruit04 .content_class h3 {
  margin-bottom: 30px;
}
.recruit04 input:checked + .tab_class + .content_class {
  display: block;
}

/* ポップアップ */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 63%;
  padding: 35px;
  background-color: #fff;
  border: 5px solid #ff5808;
  color: #000;
  z-index: 2;
  overflow-y: auto;
  height: 80%;
  margin-bottom: 30px !important;
  text-align: center;
}
.popup-inner h4 {
  color: #ff5808;
  margin-bottom: 10px;
}
.popup-inner img {
  width: 100%;
  margin: 20px 0;
}
.close-btn {
  text-align: center;
  cursor: pointer;
  font-size: 18px;
}
.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  cursor: pointer;
}

/* ----------- 採用情報 ここまで ----------- */

/* ----------- お問い合わせ ----------- */
.form {
  padding: 150px 7% 0;
}
.form .title {
  text-align: center;
}
.form h2 {
  text-align: center;
}
.form .flex {
  display: flex;
  border: 1px solid #006da2;
  border-bottom: none;
  font-weight: bold;
}
.recruit05 .flex {
  border: 1px solid #ff5808;
}
.form .flex .mail_block {
  width: 50%;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  color: #006da2;
  position: relative;
}
.recruit05 .flex .mail_block {
  color: #ff5808;
}
.form .flex .mail_block p {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
}
.form .flex .tel_block {
  width: 50%;
  text-align: center;
  background: url(./img/bg_img.png);
  background-size: cover;
}
.recruit05 .flex .tel_block {
  background: url(./img/bg_img04.png);
  background-size: cover;
}
.form .flex .tel_block .tel_text {
  font-size: 30px;
  position: relative;
  display: inline-block;
  padding-left: 45px;
  line-height: 1.5em;
}
.form .flex .tel_block .tel_text::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: inline-block;
  background-image: url(img/tel_icon.png);
  background-size: contain;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
}
.form .flex .tel_block a {
  color: #fff;
  padding: 20px;
  display: block;
}
.contact_block {
  background-color: #fff;
  border: 1px solid #006da2;
  padding: 80px 4%;
}
.recruit05 .contact_block {
  border: 1px solid #ff5808;
}
.contact_block h2 {
  color: #006da2;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
}
.recruit05 .contact_block h2 {
  color: #ff5808 !important;
}

/* ----------- お問い合わせ ここまで ----------- */

/* ----------- サイトマップ ----------- */
#sitemap .content ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
#sitemap .content ul li a {
  padding: 5px;
  display: block;
}
#sitemap .content ul li a:hover {
  opacity: 0.8;
}
#sitemap .content ul li::before {
  position: absolute;
  content: "";
  background-color: #006da2;
  height: 6px;
  width: 6px;
  border-radius: 6px;
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
#sitemap .content ul ul {
  margin-left: 20px;
}

/* ----------- サイトマップ ここまで ----------- */

/* ----------- プライバシーポリシー ----------- */
#policy .content p:nth-child(n + 2) {
  margin-top: 20px;
}
/* ----------- プライバシーポリシー ここまで ----------- */

/* ----------- レスポンシブ ----------- */
@media (min-width: 1000px) {
  .recruit02 .flex .block:nth-child(-n + 5) {
    margin-top: 0;
  }
}

/* ----------- レスポンシブ ----------- */
@media (max-width: 1055px) {
  .coumpany04 .flex {
    display: block;
  }
  .coumpany04 .flex .block {
    width: 100%;
  }
  .coumpany04 .flex .block:first-child {
    margin-bottom: 30px;
  }
  .coumpany04 .flex .block .block_in {
    height: auto;
    column-count: unset;
    column-fill: unset;
  }
}

/* ----------- レスポンシブ ----------- */
@media (max-width: 1000px) {
  h1 {
    font-size: 27px;
  }
  h3 {
    font-size: 20px;
  }
  .title h2,
  .title h1 {
    font-size: 36px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .content {
    padding: 100px 4% 0;
  }
  table td:last-child {
    width: 100%;
  }
  table {
    width: 100%;
    border-bottom: 1px solid #006da2;
  }
  table tr {
    display: block;
  }
  table tbody {
    display: block;
  }
  .recruit table {
    border-bottom: 1px solid #ff5808 !important;
  }
  table th,
  table td {
    border-bottom: none;
    display: block;
    width: 100%;
    border-bottom: none !important;
    padding: 25px 20px !important;
  }
  .bg_border_in {
    padding: 0 4%;
  }
  .bg_border_in span {
    width: calc(100% / 4);
  }
  .bg_border_in .sp_last {
    border-right: 1px solid #c9d8e3;
  }
  .recruit .bg_border_in .sp_last {
    border-right: 1px solid #ffe4d1;
  }
  .bg_border_in .pc {
    display: none !important;
  }
  /* ----------- ハンバーガーメニュー ----------- */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 4% 15px 4%;
  }
  header .logo img {
    max-width: 230px;
  }
  header .logo_sp {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
  }
  header nav ul {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
  header nav ul li {
    padding-right: 0;
  }
  .el_humburger {
    position: absolute;
    top: 23px;
    right: 4%;
    width: 26px;
    height: auto;
    padding-top: 1px;
    box-sizing: border-box;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
  }
  .el_humburger > span {
    display: block;
    width: 100%;
    margin: 0 auto 6px;
    height: 3px;
    background: #006da2;
    transition: all 0.2s ease-in-out;
  }
  .el_humburger > span:last-child {
    margin-bottom: 0;
  }
  .js_humburgerOpen .el_humburger > span {
    background: #006da2;
  }
  .js_humburgerOpen .el_humburger > span.top {
    transform: translateY(9px) rotate(-45deg);
  }
  .js_humburgerOpen .el_humburger > span.middle {
    opacity: 0;
  }
  .js_humburgerOpen .el_humburger > span.bottom {
    transform: translateY(-9px) rotate(45deg);
  }
  .el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
  }
  .el_humburgerButton__close > span {
    display: block;
    width: 35px;
    margin: 0 auto;
    height: 4px;
    background: #fff;
  }
  .el_humburgerButton__close > span.el_humburgerLineTop {
    transform: translateY(5px) rotate(-45deg);
  }
  .el_humburgerButton__close > span.el_humburgerLineBottom {
    transform: translateY(-6px) rotate(45deg);
  }
  .uq_spNavi {
    display: none;
  }
  .uq_spNavi.js_appear {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 9999;
  }
  .uq_spNavi_screen {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 0;
    margin-top: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navigation {
    padding: 80px 4% 0;
    text-align: center;
  }
  .navigation li {
    margin-bottom: 20px;
  }
  .navigation li a {
    color: #000;
    text-decoration: none;
  }
  .js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  /* ----------- ハンバーガーメニュー ここまで ----------- */
  /* ----------- footer ----------- */
  footer {
    margin-top: 100px;
    padding: 50px 4% 15px 4%;
  }
  footer .flex {
    display: block;
  }
  footer .flex .left,
  footer .flex .right {
    width: 100%;
  }
  footer .flex_top .left .contact {
    display: block;
  }
  footer .flex_top .left .contact p:nth-child(n + 2) {
    margin-left: 0;
  }
  footer .flex_top .right .nav {
    display: block;
  }
  footer .flex_top .right .nav a {
    display: block;
  }
  footer .flex_top .right .nav a:nth-child(n + 2) {
    margin-left: 0;
  }
  footer .flex_bottom .right .block {
    margin-top: 20px;
    padding: 20px 30px 20px 20px;
  }
  footer .flex .right {
    margin-top: 10px;
  }
  /* ----------- footer ここまで ----------- */
  /* ----------- TOP ----------- */
  .bg .bg-wrap .inn {
    font-size: 25px;
  }
  .top01:before {
    width: 17%;
  }
  .top_title_block {
    bottom: 30px;
  }
  .top_title_block {
    left: 4%;
  }
  .top_title:first-child {
    margin-bottom: 10px;
  }
  .top02 {
    display: block;
    padding: 100px 4% 100px 0;
  }
  .top h1.sp {
    display: inline-block;
  }
  .top h1.pc {
    display: none;
  }
  .top02:before {
    content: none;
  }
  .top02 .left {
    width: 100%;
  }
  .top02 .right {
    width: 100%;
    padding-left: 4%;
    margin-top: 50px;
  }
  .top02 .right:after {
    width: 180px;
    height: 170px;
  }
  .top03:before {
    width: 17%;
  }
  .top03 a h3 {
    bottom: 20px;
  }
  .top04 {
    display: block;
  }
  .top04 .left {
    width: 100%;
    margin-bottom: 50px;
  }
  .top04 .right {
    width: 100%;
  }
  /* ----------- TOP ここまで ----------- */
  /* ----------- 事業紹介 ----------- */
  .service01 .flex {
    display: block;
  }
  .service01 .flex .left {
    width: 100%;
  }
  .service01 .flex .right {
    width: 100%;
    margin-top: 20px;
  }
  .service02 {
    padding: 50px 0;
    margin-right: 0;
  }
  /* .service02 .flex:before {
    content: none;
  } */
  .service02 .title {
    padding-left: 4%;
  }
  .service02 .flex {
    display: block;
    padding: 50px 0;
  }
  .service02 .flex .left {
    width: 100%;
    padding-right: 4%;
  }
  .service02 .flex .right {
    width: 100%;
    padding-left: 12%;
    padding-right: 4%;
    margin-top: 50px;
  }
  .service02 .flex .right:after {
    width: 180px;
    height: 170px;
  }
  .service02 .content_block {
    padding: 50px 0;
  }
  .service02 .content_block02 {
    padding: 50px 4%;
  }
  #achievement {
    padding: 50px 4%;
  }
  .service02 .process {
    display: block;
    padding: 50px 4%;
  }
  .service02 .process .yajirushi {
    top: 0;
    left: 50%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg) translate(0, 50%);
    margin: 30px 0;
  }
  .service02 table {
    border-bottom: none;
  }
  .service02 table thead {
    display: none;
  }
  .service02 table tr {
    border: 1px solid #006da2;
    margin-bottom: 5px;
    display: block;
    background-color: #eaecef;
    padding: 10px 0;
  }
  .service02 table td {
    padding: 10px 25px !important;
    border: none;
  }
  .service02 table span {
    font-weight: bold;
    font-size: 0.9em;
    color: #006da2;
  }
  .service04 .swiper-slide .flex {
    display: block;
  }
  .service04 .swiper-slide .flex .left {
    width: 100%;
  }
  .service04 .swiper-slide .flex .right {
    width: 100%;
    margin-top: 20px;
  }
  .service05 .flex {
    display: block;
  }
  .service05 .flex .block {
    width: 100%;
  }
  .service05 .flex .block:first-child {
    margin-bottom: 30px;
  }
  /* ----------- 事業紹介 ここまで ----------- */
  /* ----------- 会社案内 ----------- */
  .coumpany01 .flex {
    display: block;
  }
  .coumpany01 .flex .left {
    width: 100%;
  }
  .coumpany01 .flex .right {
    width: 100%;
    margin-top: 20px;
  }
  .coumpany02 {
    padding: 50px 4%;
    margin: 100px 4% 0 4%;
  }
  .coumpany03 {
    padding: 100px 4%;
  }
  /* SDGs */
  .company-sdgs .sdgs-list {
    flex-direction: column;
  }
  .company-sdgs .w-sdgs-list {
    width: 100%;
    padding: 50px 4%;
  }
  .sdgs_img {
    max-height: fit-content;
    max-width: calc(100% / 4 - 10px);
    width: 100px;
  }
  /* ----------- 会社案内 ここまで ----------- */
  /* ----------- 採用情報 ----------- */
  .recruit_link ul {
    display: block;
  }
  .recruit_link ul li {
    width: 100%;
  }
  .recruit_link ul li a {
    max-width: 500px;
    margin: 0 auto;
  }
  .recruit_link ul li:nth-child(n + 2) {
    margin-top: 20px;
  }
  .recruit01 h1 {
    width: 100%;
    max-width: 500px;
  }
  .recruit02 .flex .block {
    width: 50%;
  }
  .recruit02 .flex .block {
    margin-top: 20px;
  }
  .recruit02 .flex .block:nth-child(-n + 3) {
    margin-top: 0 !important;
  }
  .recruit02 .flex .js-show-popup:last-child::before {
    position: absolute;
    content: "";
    background-color: #c9d8e3;
    right: 0;
    width: 1px;
    height: 400px;
    transform: translate(0, -50%);
    top: 50%;
  }
  .recruit03 {
    padding-bottom: 100px !important;
  }
  .recruit03_content .flex {
    display: block;
  }
  .recruit03_content .flex .text {
    width: 100%;
  }
  .recruit03_content {
    padding: 50px 4%;
  }
  .recruit03_content .flex .img {
    width: 100%;
    margin-top: 20px;
  }
  .recruit03_content .interview {
    margin-top: 50px;
  }
  .recruit03_content .interview .text {
    margin-bottom: 50px;
  }
  .recruit04 .tab_class {
    width: 50%;
  }
  .popup-inner {
    max-width: 96%;
    padding: 35px 3%;
  }
  /* ----------- 採用情報 ここまで ----------- */
}
/* ----------- レスポンシブ ----------- */
@media (max-width: 700px) {
  .recruit02 .flex .block {
    width: 100%;
  }
  .recruit02 .flex .block:nth-child(n + 5) {
    margin-top: 0;
  }
}
