@charset "UTF-8";
:root {
  --base: #fff;
  --contrast: #ecf4ff;
  --main: #2b4363;
  --accent: #179fbf;
}

/* ======================================================================
   Common
   ====================================================================== */

.common_bth {
  margin-top: calc(25 / 16 * 1rem);
  border-radius: calc(30 / 16 * 1rem);
  display: flex;
  width: calc(240 / 16 * 1rem);
  padding: calc(5 / 16 * 1rem) calc(7 / 16 * 1rem) calc(5 / 16 * 1rem)
    calc(18 / 16 * 1rem);
  font-weight: 700;
  justify-content: space-between;
  align-items: center;
}

.low__contact__wrap .common_bth {
  display: block;
}

@media (max-width: 959px) {
  .common_bth {
    display: block;
    margin-inline: auto;
  }
	
	.recruit_news .common_bth,
	.about .common_bth {
		margin-left:0;
	} 
	.service__content_wrap .common_bth {
		  margin-top: calc(15 / 16 * 1rem);
	}
}
.common_bth a,
.common_bth button {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  color: #2b4263;
}

.common_bth.normal {
  background-color: #fff;
  border: 1px solid #2b4263;
}

.common_btn__icon_wrap {
  border-radius: 50%;
  width: calc(31 / 16 * 1rem);
  aspect-ratio: 1/1;
  padding: 18px 25px;
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.common_btn__icon_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.common_bth.normal .common_btn__icon_wrap {
  background-color: #fff;
  border: 1px solid #2b4263;
  color: #2b4263;
}

.common_bth.normal:hover .common_btn__icon_wrap {
  border-color: transparent;
  color: #fff;
}
.common_bth.normal:hover .common_btn__icon_wrap::before {
  opacity: 1;
}

.common_bth.normal:hover .common_btn__icon_wrap::before {
  background-color: #223c62;
}

.service__content_wrap--01 .common_bth:hover .common_btn__icon_wrap::before {
  background: linear-gradient(274.73deg, #e54100 -490.16%, #e54100 36.46%, #ad3505 632.06%);
}

.service__content_wrap--02 .common_bth:hover .common_btn__icon_wrap::before {
  background: linear-gradient(272.39deg, #b46f00 4.85%, #b46f00 45.75%, #ec9200 92%);
}

.service__content_wrap--03 .common_bth:hover .common_btn__icon_wrap::before {
  background: linear-gradient(272.39deg, #007237 4.85%, #00994a 51.1%, #32a469 92%);
}

.common_bth.normal .fa-solid {
  transition: color 0.3s ease;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto BoldItalic";
  src: url("../fonts/Roboto/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto condensed";
  src: url("../fonts/Roboto/Roboto_Condensed-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto BoldCondensed";
  src: url("../fonts/Roboto/Roboto_Condensed-Bold.ttf") format("truetype");
  font-weight: 700;
}

.en-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.en-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.en-boldItalic {
  font-family: "Roboto BoldItalic", sans-serif;
  font-weight: 700;
}

.en-condensed {
  font-family: "Roboto condensed", sans-serif;
  font-weight: 400;
}

.en-boldCondensed {
  font-family: "Roboto BoldCondensed", sans-serif;
  font-weight: 700;
}

body {
  font-size: calc(16 / 16 * 1rem);
	color:#223D62;
}

@media (max-width: 959px) {
  body {
    font-size: calc(14 / 16 * 1rem);
  }
}
.common__sub_text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: calc(48 / 16 * 1rem);
  color: #fff;
  white-space: nowrap;
}

h2.common__title {
  font-size: calc(16 / 16 * 1rem);
  color: #fff;
  position: relative;
  margin-bottom: calc(22 / 16 * 1rem);
  font-weight: 700;
	transform:translatey(-7px);
}

h2.common__title::before {
  content: "";
  border-left: 3px solid #179fbf;
  width: 3px;
  height: 1em;
  padding-left: 0.5rem;
}

.common_p {
	line-height:2;
}

.common__inner {
  padding-inline: 3%;
  margin-inline: auto;
}

@media (min-width: 960px) {
  .common__inner {
    max-width: calc(calc(1203 / 16 * 1rem) - 6%);
  }
}
.pc_br {
  display: inline-block;
}

.sp_br {
  display: inline-block;
}

.pc_only {
  display: block;
}

.sp_only {
  display: block;
}

@media (max-width: 959px) {
  .pc_br,
	.pc_only {
    display: none;
  }
}

@media (min-width: 960px) {
  .sp_br,
	.sp_only {
    display: none;
  }
}

/* ======================================================================
   HEADER
   ====================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  background-color: rgba(255, 255, 255, 0.8);
  justify-content: space-between;
  align-items: center;
  height: calc(69 / 16 * 1rem);
}

.header__logo {
  max-width: calc(111 / 16 * 1rem);
}

.header__nav_right {
  display: flex;
}

.header__nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(15 / 16 * 1rem);
  font-weight: 500;
  color: #2b4363;
}

.header__nav_item {
  font-size: calc(15 / 16 * 1rem);
}

@media (min-width: 960px) {
  .header__nav_item {
    border-right: 1px solid #2b4363;
    padding-right: calc(15 / 16 * 1rem);
  }
  .header__nav_item:first-child {
    border-left: 1px solid #2b4363;
    padding-left: calc(15 / 16 * 1rem);
  }
}
.header__nav_item:hover {
  color: #afb8c4;
}

.header__nav_item:last-child {
  margin-right: calc(14 / 16 * 1rem);
}

.header__nav_item.nav_recruit {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #2b4363;
  border-radius: calc(24 / 16 * 1rem);
  color: #2b4363;
  overflow: hidden;
  transition: border-color 0.3s;
}

.header__nav_item.nav_recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(96.87deg, #2b4263 5.15%, #0e516d 54.79%, #007692 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__nav_item.nav_recruit a {
  display: flex;
  gap: calc(5 / 16 * 1rem);
  padding: calc(12 / 16 * 1rem) calc(24 / 16 * 1rem) calc(12 / 16 * 1rem) calc(34 / 16 * 1rem);
  justify-content: center;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.header__nav_item.nav_recruit:hover {
  border-color: transparent;
  color: #fff;
}

.header__nav_item.nav_recruit:hover::before {
  opacity: 1;
}

.icon_recruit {
  fill: currentColor;
  transition: fill 0.3s;
}

.header__contact .header__nav_link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(5 / 16 * 1rem);
  padding: calc(12 / 16 * 1rem) calc(24 / 16 * 1rem);
  border-radius: calc(24 / 16 * 1rem);
  background: linear-gradient(96.87deg, #2b4263 5.15%, #0e516d 54.79%, #007692 100%);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  margin-right: calc(14 / 16 * 1rem);
  border: 1px solid transparent;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
}

.header__contact .header__nav_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__contact .header__nav_link:hover {
  color: #2b4363;
  border-color: #2b4363;
}

.header__contact .header__nav_link:hover::before {
  opacity: 1;
}

.header__contact .icon_contact {
  fill: currentColor;
  transition: fill 0.3s;
}

.header__hamburger {
  display: none;
  width: calc(44 / 16 * 1rem);
  height: calc(44 / 16 * 1rem);
  background: #fff;
  border: 2px solid #046b87;
  border-radius: calc(10 / 16 * 1rem);
  position: relative;
  cursor: pointer;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}

.header__hamburger span {
  position: absolute;
  left: 50%;
  width: calc(18 / 16 * 1rem);
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: background 0.25s;
}

.header__hamburger.is-open {
  background: #2b4363;
  color: #fff;
}

.header__hamburger span:nth-child(1) {
  top: calc(13 / 16 * 1rem);
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__hamburger span:nth-child(3) {
  bottom: calc(13 / 16 * 1rem);
}

.header__hamburger.is-open span,
.recruitHeader__hamburger.is-open span{
  background: #fff;
}

@media (max-width: 959px) {
.header__nav,
.recruitHeader__nav {
  position: fixed;
  inset: 0;
  background: #ecf4ff;
  border: 9px solid #2b4363;
  border-radius: calc(5 / 16 * 1rem);
  display: none;
  padding: 4rem 2rem;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.header__nav.is-open,
.recruitHeader__nav.is-open {
  display: block;
}
.header__nav_list,
.recruitHeader__nav_list {
  flex-direction: column;
  gap: calc(20 / 16 * 1rem);
  align-items: flex-start;
}
.header__nav_item,
.recruitHeader__nav_item {
  display: none;
}
.header__nav.is-open .header__nav_item,
.recruitHeader__nav.is-open .recruitHeader__nav_item {
  display: block;
}
.header__hamburger,
.recruitHeader__hamburger {
  display: block;
  border: 1px solid #2b4363;
  margin-right: 4.7%;
  border-radius: calc(5 / 16 * 1rem);
}
.header__nav.is-open .header__hamburger span,
.recruitHeader__nav.is-open .recruitHeader__hamburger span {
  color: #fff;
}
}
.sp-nav__logo,
.sp-nav__contact {
  display: none;
}


.header__hamburger span {
  position: absolute;
  left: 50%;
  width: calc(18 / 16 * 1rem);
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: background 0.25s, transform 0.25s, opacity 0.25s, top 0.25s;
}

.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.header__hamburger.is-open span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}


@media (max-width: 959px) {
.header__nav.is-open ~ .header__contact,
.header__nav.is-open + .header__contact {
    display: none !important;
  }

.header__hamburger.is-open:not(.recruitHeader__hamburger) {
		right:1rem;
	}
  .sp-nav__logo {
    display: block;
    width: calc(69 / 16 * 1rem);
    transform: translate(-30%, -170%);
  }
  .sp-nav__contact {
    display: flex;
    margin-top: calc(20 / 16 * 1rem);
  }
  .sp-nav__contact_link {
    display: flex;
    align-items: center;
    gap: calc(6 / 16 * 1rem);
    padding: calc(14 / 16 * 1rem) calc(28 / 16 * 1rem);
    border-radius: calc(24 / 16 * 1rem);
    background: linear-gradient(
      96.87deg,
      #2b4263 5.15%,
      #0e516d 54.79%,
      #007692 100%
    );
    width: calc(179 / 16 * 1rem);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
  }
  .sp-nav__contact_link svg {
    fill: currentColor;
  }
	.nav_recruit,
	.sp-nav__contact a {
		width:100%;
	}
}

/* ======================================================================
   TOP
   ====================================================================== */

.fv_section {
  height: calc(630 / 16 * 1rem);
}

.fv_section__inner {
  display: flex;
  height: 100%;
}

.fv_section__inner_left {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(100 / 16 * 1rem);
  height: 100%;
}

@media (max-width: 599px) {
  .fv_section__inner_left {
    flex: 0 0 calc(70 / 16 * 1rem);
  }
}
.fv_section__bg1 {
  background-color: #ecf4ff;
  height: calc(470 / 16 * 1rem);
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.fv_section__scroll {
  position: absolute;
  bottom: calc(144 / 16 * 1rem);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  bottom: 0;
}

.fv_section__scroll::after {
  content: "";
  display: block;
  margin-top: calc(16 / 16 * 1rem);
  width: 1px;
  height: calc(95 / 16 * 1rem);
  background-color: #2b4363;
}

.fv_section__bg2 {
  flex: 1;
  background: #2b4363;
}

.fv_section__inner_right {
  flex: 1;
  width: 100%;
  height: 100%;
}

.fv_section__bg3 {
  background: #2b4363;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.fv_section__bg4 {
  background: url(/wp-content/uploads/2026/01/fv.mp4) no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom-left-radius: calc(70 / 16 * 1rem);
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.fv_section__bg4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(18, 44, 81, 0.55) 0%,
    rgba(87, 134, 201, 0.15) 82.73%
  );
  z-index: 2;
  pointer-events: none;
}

.fv_section__bg4 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv_section__title {
  z-index: 5;
  position: absolute;
  left: 5%;
  top: 50%;
  color: #fff;
  transform: translatey(-60%);
  font-weight: 700;
  font-size:clamp(21px, 0.94vw + 17.47px, 31px);
	line-height:1.6;
}

.fv_section__title h1 span.bg-text {
		text-shadow:0 4px 4px rgba(0, 0, 0, 0.25);
	background-color: rgba(255, 255, 255, 0.25);
  padding: 0.1em 0 0.1rem 0.25em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (max-width: 959px) {
  .fv_section__inner_left {
    display: none;
  }
  .fv_section__bg4 {
    border-radius: 0;
  }
}
.fv__marquee_wrap {
  position: absolute;
  bottom: -15rem;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.fv__marquee {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: fv-marquee 25s linear infinite;
  will-change: transform;
}

.fv__marquee span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: clamp(100 / 16 * 1rem, 5vw, 135 / 16 * 1rem);
  white-space: nowrap;
  padding-right: 4rem;
  opacity: 0.5;
  background: linear-gradient(180deg, #ebf3f5 50%, #006c85 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes fv-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.about {
  background: linear-gradient(
    96.87deg,
    #2b4263 5.15%,
    #0e516d 54.79%,
    #007692 100%
  );
  position: relative;
  z-index: 0;
  color: #fff;
}

@media (min-width: 960px) {
  .about {
    height: calc(859 / 16 * 1rem);
	  padding-bottom: calc(140 / 16 * 1rem);
  }
}
.about:after {
  position: absolute;
  content: "";
  width: 46.1vw;
  aspect-ratio: 2/1;
  background: url(../image/about-bg.png) no-repeat;
  background-size: contain;
  bottom: -17vw;
  z-index: -1;
}

@media (max-width: 959px) {
  .about:after {
    width: 100%;
    height: calc(413 / 16 * 1rem);
    bottom: 43.06vw;
  }
}
.about__inner {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.about__content__main_text {
  font-size: clamp(24 / 16 * 1rem, 2.5vw, 30 / 16 * 1rem);
  font-weight: 700;
  margin-bottom: calc(22 / 16 * 1rem);
}

.about__inner__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 46.5vw;
  height: 100%;
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
}

@media (min-width: 960px) {
	.about__content {
	width:min(48vw, 560px); 
	}
}

@media (max-width: 959px) {
  .about__inner__right {
    position: inherit;
    height: calc(413 / 16 * 1rem);
    width: 94%;
    margin-inline: auto;
    margin-top: 47.86vw;
  }
}
/* スライダー共通 */
.about__slider {
  width: 50%;
  overflow: hidden;
}

.about__slider__list {
  display: flex;
  flex-direction: column;
  gap: calc(14 / 16 * 1rem);
}

.about__slider__list li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(10 / 16 * 1rem);
}

.about__slider--up .about__slider__list {
  animation: slideUp 20s linear infinite;
}

.about__slider--down .about__slider__list {
  animation: slideDown 20s linear infinite;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
.recruit_news__bg {
  background-color: #ecf4ff;
}

.recruit_news {
  background-color: #2b4363;
  color: #fff;
  border-bottom-right-radius: calc(70 / 16 * 1rem);
}

.recruit_news__inner {
  padding-top: clamp(3.125rem, calc(1.518rem + 6.85vw), 7.688rem);
  padding-bottom:clamp(5rem, calc(4.45rem + 2.35vw), 6.563rem);
  display: flex;
  gap: 5vw;
}

.recruit_news__inner__right.sp_only {
  display: block;
}

.recruit_news__inner__right.pc_only {
  display: none;
}

@media (min-width: 960px) {
  .recruit_news__inner__right.sp_only {
    display: none;
  }

  .recruit_news__inner__right.pc_only {
    display: flex;
    align-items: start;
  }
}

.recruit_news__inner__right {
  align-items: center;
  justify-content: space-between;
  gap: 3vw;
}

.recruit_news__content_img {
  margin-bottom: calc(10 / 16 * 1rem);
  width: clamp(260px, 24.5vw, 353px);
  aspect-ratio: 353 / 164;
}

.recruit_news__content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

.recruit_news__content_inner {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: calc(10 / 16 * 1rem);
}

.recruit_news__content_date {
  font-size: calc(14 / 16 * 1rem);
  color: #9e9e9e;
  border-right: 1px solid #9e9e9e;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}

.recruit_news__content_tag {
color: #fff;
    background-color: #179fbf;
    border-radius: 8.5px;
    padding: 0rem 0.5rem;
    font-size: calc(14 / 16 * 1rem);
}

@media (max-width: 959px) {
  .recruit_news__content_img {
    width: 100%;
  }

  .recruit_news__content_wrap {
    margin-bottom: 2rem;
    display: inline-block;
	  width:100%;
  }
}

.service {
  background-color: #ecf4ff;
  overflow: hidden;
}

@media (min-width: 960px) {
.service__inner {
  padding-bottom: 5.75rem;
}
}

.service .common__sub_text {
  padding-top: calc(54 / 16 * 1rem);
  color: #2b4363;
  text-align: center;
}

.service h2.common__title {
  color: #2b4363;
  text-align: center;
}

.service__content {
  position: relative;
  margin-bottom: calc(60 / 16 * 1rem);
}

@media (max-width: 959px) {
  .service__content {
    margin-bottom: calc(28 / 16 * 1rem);
  }
}
.service__content img {
	width: min(60.94vw, 460px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.service__marquee_wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

.service__marquee {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.service__marquee span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: calc(135 / 16 * 1rem);
  white-space: nowrap;
  background: linear-gradient(
    182.8deg,
    rgba(63, 105, 150, 0.5) 55.13%,
    rgba(0, 152, 186, 0.5) 87.41%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: calc(80 / 16 * 1rem);
}

.service__content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(103 / 16 * 1rem);
  color: #223c62;
  font-weight: 500;
}

@media (max-width: 959px) {
  .service__content_wrap {
    flex-direction: column-reverse;
    gap: 0.5rem;
    margin-bottom: calc(62 / 16 * 1rem);
  }
}

@media (min-width: 960px) {
  .service__content_wrap__left {
    width: 53%;
  }
}

.service__content_wrap__right {
  position: absolute;
  right: 0;
  width: 45vw;
}

.service__content_wrap__right img {
  width: inherit;
  border-bottom-left-radius: 20px;
}

@media (max-width: 959px) {
  .service__content_wrap__right {
    width: 100%;
    position: static;
  }
  .service__content_wrap__right img {
    border-radius: 20px;
  }
}

@media (min-width: 1600px) {
  .service__content_wrap__right {
    max-width: 720px;
  }
}
.service__sub_text {
  font-size: clamp(calc(50 / 16 * 1rem), 5vw, calc(70 / 16 * 1rem));
  font-weight: bold;
  line-height: 1.2;
}

.service__content_wrap__left h3 {
  font-weight: bold;
  line-height: 1.2;
  font-size: calc(20 / 16 * 1rem);
  padding-bottom: calc(17 / 16 * 1rem);
  margin-bottom: calc(17 / 16 * 1rem);
  position: relative;
}

.service__content_wrap__left h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.service__content_wrap--01 .service__content_wrap__left h3::after {
  background: linear-gradient(
    274.74deg,
    #e54100 -134.94%,
    #e54100 392.88%,
    #ad3505 989.84%
  );
}

.service__content_wrap--02 .service__content_wrap__left h3::after {
  background: linear-gradient(
    272.39deg,
    #b46f00 4.85%,
    #b46f00 45.75%,
    #ec9200 92%
  );
}

.service__content_wrap--03 .service__content_wrap__left h3::after {
  background: linear-gradient(
    272.39deg,
    #007237 4.85%,
    #00994a 51.1%,
    #32a469 92%
  );
}

.service__content_wrap--01 .service__sub_text span {
  display: inline-block;
  background: linear-gradient(
    274.74deg,
    #e54100 -134.94%,
    #e54100 392.88%,
    #ad3505 989.84%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service__content_wrap--02 .service__sub_text span {
  display: inline-block;
  background: linear-gradient(
    272.39deg,
    #b46f00 4.85%,
    #b46f00 45.75%,
    #ec9200 92%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service__content_wrap--03 .service__sub_text span {
  display: inline-block;
  background: linear-gradient(
    272.39deg,
    #007237 4.85%,
    #00994a 51.1%,
    #32a469 92%
  );

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.guide__bg {
  background-color: #ecf4ff;
}
.guide {
  background-color: #2b4363;
  border-top-left-radius: calc(70 / 16 * 1rem);
  color: #fff;
  position: relative;
  z-index: 0;
}

.low__company .guide {
  border-top-left-radius: 0;
}

.guide:after {
  position: absolute;
  content: "";
  width: 46.1vw;
  aspect-ratio: 2/1;
  background: url(../image/features_bg.png) no-repeat;
  background-size: contain;
  bottom: -17vw;
  z-index: -1;
}

.low__company .guide::after {
  content: none;
}

@media (max-width: 959px) {
  .guide:after {
    width: 100%;
    bottom: -30vw;
    z-index: -1;
  }
  .low__company .guide::after {
    content: none;
  }
}

.guide__inner {
  padding-top: clamp(4.25rem, calc(2.267rem + 3.66vw), 5.563rem);
  padding-bottom: clamp(4.875rem, calc(-0.04rem + 8.17vw), 7.313rem);
  display: flex;
  justify-content: space-between;
  align-items: start;
}

@media (max-width: 959px) {
  .guide__inner {
    display: block;
  }
}
@media (min-width: 960px) {
  .guide .common__sub_text {
    white-space: nowrap;
  }
  .guide__inner__left {
    width: 17.36vw;
  }
  .guide__inner__right {
    white-space: wrap;
  }
}
.guide__content__article {
  font-size: calc(40 / 16 * 1rem);
}

.guide__content__article span {
  background-color: #fff;
  color: #2b4263;
  font-size: calc(48 / 16 * 1rem);
  border-radius: calc(5 / 16 * 1rem);
  width: calc(44 / 16 * 1rem);
  height: calc(44 / 16 * 1rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-right: calc(3 / 16 * 1rem);
  font-weight: bold;
}

.guide h3 {
  font-weight: bold;
  font-size: calc(20 / 16 * 1rem);
}

.guide__column {
  margin-bottom: calc(34 / 16 * 1rem);
}

.recruit__bg {
  background-color: #ecf4ff;
}

.recruit {
  background: linear-gradient(
    96.87deg,
    #2b4263 5.15%,
    #0e516d 54.79%,
    #007692 100%
  );
  color: #fff;
}

.recruit .common__title,
.recruit .common__sub_text,
.recruit p {
  text-align: center;
}

.recruit__inner {
  padding-top: clamp(1.875rem, calc(-1.492rem + 14.37vw), 11.438rem);
	padding-bottom: clamp(1.875rem, -0.194rem + 8.83vw, 7.75rem);
  color: #fff;
}

.recruit__wrap {
  display: grid;
  gap: calc(30 / 16 * 1rem);
  grid-template-columns: repeat(2, 1fr);
  margin-top: calc(50 / 16 * 1rem);
  text-align: center;
	align-items:center;
	justify-content:center;
}
@media (min-width: 960px) {
  .recruit__cards:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 27.78vw;
    min-width: 462px;
	    max-width: 470px;
  }
}

@media (max-width: 599px) {
  .recruit__wrap {
    grid-template-columns: 1fr;
  }
}
.recruit__cards {
  background-color: #fff;
  border-radius: calc(42.5 / 16 * 1rem);
  padding: calc(17 / 16 * 1rem) calc(36 / 16 * 1rem);
}



.recruit__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit__card_empty {
  width: calc(31 / 16 * 1rem);
}

.recruit__card__ja {
  color: #000;
  font-weight: 700;
  font-size: calc(20 / 16 * 1rem);
}

.recruit__card__en {
  color: #179fbf;
  font-size: calc(14 / 16 * 1rem);
}

.recruit__card_icon {
  color: #223c62;
  border: 1px solid #223c62;
  border-radius: 50%;
  width: calc(31 / 16 * 1rem);
  aspect-ratio: 1/1;
  padding: 13px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.recruit__cards:hover .recruit__card_icon {
  background-color: #2b4263;
  border-color: #2b4263;
  color: #fff;
}
.news {
  background-color: #ecf4ff;
  color: #2b4363;
  position: relative;
}

.news__inner {
  padding-top: clamp(1.875rem, 0.07rem + 7.7vw, 7rem);
  padding-bottom: clamp(1.875rem, 0.401rem + 6.29vw, 6.063rem);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 959px) {
  .news__inner {
    flex-direction: column;
    gap: calc(40 / 16 * 1rem);
  }
}
.news .common__sub_text {
  color: #2b4363;
}

.news h2.common__title {
  color: #2b4363;
}

.news__inner__left {
  width: 41.67vw;
}

@media (max-width: 959px) {
  .news__inner__left {
    width: 100%;
  }
}

.news__container {
  margin-left: 0;
  margin-block: calc(27 / 16 * 1rem);
}

.news__content_wrap {
  border-bottom: 1px solid #223c62;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.news__content_inner {
  display: flex;
  align-items: center;
  justify-content: left;
}

.news__content_date {
  font-size: calc(14 / 16 * 1rem);
  color: #9e9e9e;
  border-right: 1px solid #9e9e9e;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}

.news__content_new,
.news__content_tag {
  color: #fff;
  background-color: #179fbf;
  border-radius: 8.5px;
  padding: 0rem 0.5rem;
  font-size: calc(14 / 16 * 1rem);
  margin-right: 0.5rem;
}

.news__inner__right {
  width: 42.85vw;
  max-width: calc(617 / 16 * 1rem);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 959px) {
  .news__inner__right {
    position: inherit;
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
	  margin-inline:auto;
	  margin-bottom:calc(25 / 16 * 1rem);
  }
}
.news__inner__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact {
  background-image: url(../image/contact_bg.jpg);
  background-repeat: no-repeat;
  background-position: center 20%;
  height: clamp(240px, 22.6vw, 325px);
  position: relative;
}

.contact_bg__blue {
  position: absolute;
  background-color: rgba(23, 159, 191, 0.9);
  width: 100%;
  height: 100%;
  transition:
    background-color 0.3s ease,
    border 0.3s ease;
}

.contact__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.contact__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(9 / 16 * 1rem);
}

.contact__title {
  font-size: calc(40 / 16 * 1rem);
  font-weight: 700;
}

.contact__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(28 / 16 * 1rem);
  aspect-ratio: 1/1;
  font-size: calc(12 / 16 * 1rem);
  background-color: #fff;
  border-radius: 50%;
  color: rgba(23, 159, 191, 0.9);
}

.contact__content .common_btn__icon_wrap {
  padding: 6px 11px;
  background-color: #fff;
}

.contact .fa-solid {
  color: rgba(23, 159, 191, 0.9);
  background-color: #fff;
  border-radius: 50%;
  width: 1.5rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact:hover .contact_bg__blue {
  background-color: rgba(255, 255, 255, 0.8);
}

.contact:hover .contact__inner {
  color: #223c62;
}

.contact:hover .contact__content .common_btn__icon_wrap {
  background-color: #223c62;
}
.contact:hover .fa-solid {
  background-color: #223c62;
  color: #fff;
}

/* ======================================================================
   FOOTER
   ====================================================================== */

.footer {
  background-color: #2b4363;
  color: #fff;
  padding-top: clamp(1.875rem, calc(1.149rem + 3.1vw), 3.938rem);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: calc(1166 / 16 * 1rem);
  margin-inline: auto;
  padding-inline: 3%;
  padding-bottom: clamp(1.875rem, calc(1.325rem + 2.35vw), 3.438rem);
}

@media (max-width: 959px) {
  .footer__inner {
    display: block;
  }
}


.footer__wrap1,
.footer__wrap2 {
  flex: 1;
}

.footer__wrap1 {
	    display: flex;
	flex-direction: column-reverse;
}

.footer__wrap1 > div {
  margin-bottom: calc(21 / 16 * 1rem);
}

.footer__wrap1 p span {
  font-weight: 700;
}



@media (min-width: 960px) {
  .footer__wrap1 {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer_logo {
  width: calc(130 / 16 * 1rem);
}

@media (max-width: 959px) {
  .footer_logo {
    margin-inline: auto;
  }
}
.footer__wrap2 {
  display: flex;
  justify-content: space-between;
  max-width: calc(510 / 16 * 1rem);
}

@media (max-width: 599px) {
  .footer__wrap2 {
    display: block;
  }
}
.footer__title {
  font-weight: 700;
  border-bottom: 1px solid #fff;
  margin-bottom: calc(11 / 16 * 1rem);
  padding-bottom: calc(11 / 16 * 1rem);
}

.footer__wrap2 ul li {
  margin-bottom: calc(10 / 16 * 1rem);
}

.footer__wrap2 ul li a:hover {
  color: #afb8c4;
}

.footer__wrap2 ul li ul li {
  font-size: calc(14 / 16 * 1rem);
  position: relative;
  left: 1em;
}

.footer__wrap2 ul li ul li:before {
  content: "- ";
}

.footer__wrap2 ul > li > a[href="/#service"] {
  display: inline-block;
  padding-bottom: 5px;
}

.footer__nav_item.nav_contact {
  border-radius: calc(24 / 16 * 1rem);
}

.footer__nav_item.nav_contact a {
  display: flex;
  gap: calc(5 / 16 * 1rem);
  padding: calc(12 / 16 * 1rem) calc(24 / 16 * 1rem);
  justify-content: center;
  align-items: center;
	  border: 1px solid transparent;
}

.footer__nav_item.nav_contact {
  position: relative;
  z-index: 1;
  color: #fff; /* 通常時の文字色とアイコンの色 */

  background: linear-gradient(272.39deg, #008aaa 4.85%, #078faf 51.1%, #179fbf 92%);
  transition: border 0.3s, color 0.3s;
  overflow: hidden;
		box-sizing:border-box;
}

/* 白背景のフェード用 */
.footer__nav_item.nav_contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer__nav_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 10px 20px;
}

.icon-mail {
  transition: fill 0.3s;
}

.footer__nav_item.nav_contact a:hover {
  border: 1px solid #008aaa;
  color: #008aaa;
	border-radius:1.5rem;
	box-sizing:border-box;
}

.footer__nav_item.nav_contact:hover::before {
  opacity: 1;
}

.copyRight-wrap {
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #141e32;
  padding-block: 1rem;
}

/* ======================================================================
   下層_Common
   ====================================================================== */

.low__fv {
  height: clamp(12.5rem, calc(9.155rem + 14.27vw), 22rem);
  background: linear-gradient(
    96.87deg,
    #2b4263 5.15%,
    #0e516d 54.79%,
    #007692 100%
  );
  position: relative;
}

.low__fv__text_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8%;
}

.low__fv_text {
  font-weight: 700;
  margin-bottom: calc(6 / 16 * 1rem);
  color: #fff;
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.2;
}

.low__fv_Subtext {
  font-size: clamp(50 / 16 * 1rem, 7vw, 96 / 16 * 1rem);
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

/* ======================================================================
   下層_プライバシーポリシー
   ====================================================================== */
.low__privacyPolicy p {
	line-height:2;
}

.low__privacyPolicy__inner {
  background-color: #ecf4ff;
  border-radius: calc(70 / 16 * 1rem);
  margin: calc(85 / 16 * 1rem) calc(125 / 16 * 1rem);
  padding: calc(60 / 16 * 1rem) calc(50 / 16 * 1rem);
}

@media (max-width: 959px) {
  .low__privacyPolicy__inner {
    padding: calc(60 / 16 * 1rem) 2%;
    margin: calc(40 / 16 * 1rem) 3%;
	  	    border-radius: calc(30 / 16 * 1rem);
  }
}
.low__privacyPolicy__text_wrap {
  line-height: calc(30 / 16 * 1rem);
  margin-bottom: calc(30 / 16 * 1rem);
}

.low__privacyPolicy__intro_text {
  margin-bottom: calc(30 / 16 * 1rem);
}

.low__privacyPolicy h2.common__title {
  font-size: calc(20 / 16 * 1rem);
  color: #000;
  margin-bottom: calc(10 / 16 * 1rem);
}

.low__privacyPolicy__text_wrap ol {
  padding-left: 1.5rem;
}

/* ======================================================================
   下層_お問合せ
   ====================================================================== */

.low__contact__wrap {
  margin: calc(60 / 16 * 1rem) calc(125 / 16 * 1rem);
}

.low__contact_thanks p {
	line-height:2;
}

.low__contact_intro_text {
  text-align: center;
  margin-bottom: calc(56 / 16 * 1rem);
}

@media (max-width: 959px) {
  .low__contact__wrap {
    margin: calc(40 / 16 * 1rem) 3%;
  }
	.low__contact_intro_text {
		text-align:left;
	}
}
.low__contact_form__wrap {
  background-color: #ecf4ff;
  border-radius: calc(70 / 16 * 1rem);
  padding: calc(51 / 16 * 1rem) 7.5vw;
  max-width: calc(921 / 16 * 1rem);
  margin-inline: auto;
}

.low__contact_thanks .low__contact_form__wrap {
  background-color: transparent;
}

@media (max-width: 959px) {
  .low__contact_form__wrap {
    padding: calc(60 / 16 * 1rem) 5%;
	    border-radius: calc(30 / 16 * 1rem);
  }
}
.form__field {
  margin-bottom: 1rem;
}

.essential {
  background-color: #e54100;
  color: #fff;
  padding: 0.1rem 0.75rem;
  border-radius: 2px;
  margin-right: 4px;
}
label {
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.form__field > input {
  width: 100%;
  background-color: #fff;
  border-radius: calc(5 / 16 * 1rem);
  padding: 0.5% 1%;
  height: calc(50 / 16 * 1rem);
}
.form__field textarea {
  width: 100%;
  background-color: #fff;
  border-radius: calc(5 / 16 * 1rem);
  padding: 0.5% 1%;
  height: calc(192 / 16 * 1rem);
}
.form__title {
  font-weight: 700;
  margin-bottom: calc(5 / 16 * 1rem);
}
.form__radio {
  display: block;
  margin-bottom: 0.5rem;
}
.form__privacy__label a {
  border-bottom: 1px solid #000;
}
.low__contact__wrap .common_bth {
  margin-inline: auto;
}

/* ======================================================================
   下層_会社概要
   ====================================================================== */
.low___company_wrap {
  width: 100%;
  overflow: hidden;
  color: #2b4363;
}

.low__company h2.common__title,
.low__company .common__sub_text {
  color: #2b4363;
}

.low___company_toc {
  background-color: #ecf4ff;
}

.low___company_toc__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: calc(43 / 16 * 1rem);
}

.low___company_toc__inner li {
  border-left: 1px solid #2b4363;
  padding-left: calc(15 / 16 * 1rem);
  margin-left: calc(15 / 16 * 1rem);
  font-weight: 500;
  color: #2b4363;
  font-size: clamp(0.8rem, 1vw, 1rem);
}

.low___company_wrap:nth-of-type(odd) {
  background-color: #ecf4ff;
}

.low___company_message__inner {
  padding-top: clamp(1.875rem, calc(0.907rem + 4.13vw), 4.625rem);
  padding-bottom: clamp(1.875rem, calc(-0.106rem + 8.45vw), 7.5rem)
}

.low__company_message_container {
  display: flex;
  gap: 5vw;
}

@media (max-width: 959px) {
	.low___company_toc__inner li {
		  padding-left: calc(10 / 16 * 1rem);
  margin-left: calc(10 / 16 * 1rem);
	}
  .low__company_message_container {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

.low__company_message_container_left {
  min-width: calc(375 / 16 * 1rem);
  aspect-ratio: 1/1.37;
  object-fit: cover;
}

.low__company_message_container_left img {
  border-radius: 10px;
}
@media (max-width: 959px) {
	.low__company_message_container_left {
	aspect-ratio: auto;	
	}
  .low__company_message_container_left {
    min-width: 100%;
    object-fit: contain;

  }
	.low__company_message_container_left  img {
		    margin-inline: auto;
	}
	.low__company_message_container_left.sp_only {
		margin-bottom:15px;
	}
}

.low__company_message_container_right p:not(.low__company_message_main_text) {
  margin-bottom: 1.4rem;
}

.low__company_message_container_right p:nth-of-type(2) {
	margin-top:1.625rem;
}

.low__company_message_main_text {
  font-size: calc(24 / 16 * 1rem);
  font-weight: bold;
  line-height: 1.6;
  display: inline;
  background: linear-gradient(transparent 60%, #dfe8f4 60%);
}

.low___company_message_name {
  display: block;
  font-weight: 700;
  font-size: calc(24 / 16 * 1rem);
}

#about {
  position: relative;
}

.low___company_about__inner {
  padding-top: clamp(1.875rem, calc(0.489rem + 5.92vw), 5.813rem);
  padding-bottom: clamp(1.875rem, calc(0.268rem + 6.85vw), 6.438rem);
}

.low__company_about_container {
  display: flex;
}

@media (max-width: 959px) {
  .low__company_about_container {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

@media (min-width: 960px) {
  .low__company_about_container_left {
    width: 50%;
  }
}

.low__company_about_container_right {
  width: 41.39vw;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.low__company_about_container_right img {
  border-radius: 10px 0 0 10px;
}

@media (max-width: 959px) {
  .low__company_about_container_right {
    position: static;
    width: 100%;
    transform: translateY(0);
  }
}

.company-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid #8fa3d6;
  gap: 3vw;
}

.company-info__row dt {
  font-weight: 600;
  color: #233a67;
}

.company-info__row dd {
  margin: 0;
  color: #233a67;
  line-height: 1.8;
}

#guide h2.common__title,
#guide .common__sub_text {
  color: #fff;
}

.low___company_member_bg {
  width: 100%;
  aspect-ratio: 120 / 47;
  overflow: hidden;
}

.low___company_member_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ======================================================================
  投稿一覧&詳細ページ
   ====================================================================== */
.l-topTitleArea {
  position: relative;
  position: relative;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.l-topTitleArea__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.c-filterLayer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: linear-gradient(96.87deg, #2B4263 5.15%, #0E516D 54.79%, #007692 100%);
  z-index: 0;
}

.l-topTitleArea__body {
  position: relative;
  z-index: 1;
}

.c-pageTitle {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

@media (min-width: 960px) {
  .l-topTitleArea {
    padding: 50px 0;
  }
  .c-pageTitle {
    font-size: 2.8rem;
  }
}


.l-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.l-mainContent__inner {
  width: 100%;
}
.p-postList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-postList__item {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-postList__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.p-postList__link {
  display: block;
  text-decoration: none;
  color: #333;
  height: 100%;
}

@media (min-width: 560px) {
  .p-postList.-sp-col2 .p-postList__item {
    width: calc((100% - 20px) / 2);
  }
}

@media (min-width: 960px) {
  .p-postList.-pc-col3 .p-postList__item {
    width: calc((100% - 40px) / 3);
  }
}


.p-postList__thumb {
  position: relative;
  width: 100%;
}

.c-postThumb__figure {
  margin: 0;
  padding-top: 60%;
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
}

.c-postThumb__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.c-postThumb__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #179FBF;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: bold;
  z-index: 2;
}


.p-postList__body {
  padding: 15px;
}

.p-postList__title {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.p-postList__meta {
  margin-top: auto;
}

.c-postTimes {
  font-size: 0.85rem;
  color: #777;
}

.icon-posted::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}


.c-pagination {
  margin-top: 40px;
  text-align: center;
}

.c-pagination .page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.c-pagination .page-numbers.current,
.c-pagination .page-numbers:hover {
  background: #007a53;
  border-color: #007a53;
  color: #fff;
}

body.category {
	background-color:#F5FDFF;
}



/* == 詳細ページ == */
.single__content {
	line-height:2;
}

.single #main_content {
  padding-bottom:clamp(5rem, calc(4.45rem + 2.35vw), 6.563rem);	
}
/* ======================================================================
  採用-トップ
   ====================================================================== */
/* 採用ヘッダー */
.recruitHeader {
  position: sticky;
  top: 0;
  z-index: 100;
}

.recruitHeader__inner {
  display: flex;
  background-color: rgba(34, 60, 98, 0.8);
  justify-content: space-between;
  align-items: center;
  height: calc(69 / 16 * 1rem);
  padding: 0 calc(20 / 16 * 1rem) 0 0;
}

.recruitHeader__logo {
  max-width: calc(142 / 16 * 1rem);
}

.recruitHeader__nav {
  display: flex;
}

.recruitHeader__nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(15 / 16 * 1rem);
  font-weight: 500;
  color: #fff;
}

.recruitHeader__nav_item {
  font-size: calc(14 / 16 * 1rem);
  white-space: nowrap;
}

@media (min-width: 960px) {
  .recruitHeader__nav_item:not(.nav_recruit) {
    border-right: 1px solid #fff;
    padding-right: calc(15 / 16 * 1rem);
  }
  .recruitHeader__nav_item:first-child {
    border-left: 1px solid #fff;
    padding-left: calc(15 / 16 * 1rem);
  }
}

.recruitHeader__nav_item a:hover {
  color: #afb8c4;
}

.recruitHeader__nav_item.nav_recruit {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #2b4363;
  border-radius: calc(24 / 16 * 1rem);
  margin-left: calc(10 / 16 * 1rem);
  overflow: hidden;
  transition: border 0.3s;
}

.recruitHeader__nav_item.nav_recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    96.87deg,
    #2b4263 5.15%,
    #0e516d 54.79%,
    #007692 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.recruitHeader__nav_item.nav_recruit a {
  display: flex;
  padding: calc(10 / 16 * 1rem) calc(24 / 16 * 1rem);
  justify-content: center;
  align-items: center;
  color: #2b4363;
  text-decoration: none;
  transition: color 0.3s;
}

.recruitHeader__nav_item.nav_recruit:hover {
	border-color: none;
}

.recruitHeader__nav_item.nav_recruit:hover::before {
  opacity: 1;
}

.recruitHeader__nav_item.nav_recruit:hover a {
  color: #fff;
}

.recruitHeader__hamburger {
  display: none;
  width: calc(44 / 16 * 1rem);
  height: calc(44 / 16 * 1rem);
  background: #fff;
  border: 1px solid #2b4363;
  border-radius: calc(5 / 16 * 1rem);
  position: relative;
  cursor: pointer;
	z-index:9999;
}

.recruitHeader__hamburger span {
  position: absolute;
  left: 50%;
  width: calc(18 / 16 * 1rem);
  height: 2px;
  background: #2b4363;
  transform: translateX(-50%);
}

.recruitHeader__hamburger span:nth-child(1) {
  top: 13px;
}
.recruitHeader__hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.recruitHeader__hamburger span:nth-child(3) {
  bottom: 13px;
}

@media (max-width: 959px) {
  .recruitHeader__hamburger {
    display: block;
  }

  .recruitHeader__nav {
    position: fixed;
    inset: 0;
    background: #ecf4ff;
    border: 9px solid #2b4363;
    display: none;
    padding: 4rem 2rem;
    z-index: 1000;
  }
	
	.recruitHeader__nav_item {
  font-size:1rem;
	}

  .recruitHeader__nav.is-open {
    display: block;
  }

  .recruitHeader__nav_list {
    flex-direction: column;
    align-items: flex-start;
	  color:#223C62;
  }

  .recruitHeader__nav_item {
    border: none !important;
    padding: 0 !important;
  }
	.recruitHeader__nav_item.nav_recruit {
	margin-left:0;	
	}
}

/* 採用FV */

.recruitTop_fv_section {
  height: calc(630 / 16 * 1rem);
  position: relative;
  z-index: 1;
}

.recruitTop_fv_section__inner {
  display: flex;
  height: 100%;
}

.recruitTop_fv_section__inner_left {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(100 / 16 * 1rem);
  height: 100%;
}

@media (max-width: 599px) {
  .recruitTop_fv_section__inner_left {
    flex: 0 0 calc(70 / 16 * 1rem);
  }
}
.recruitTop_fv_section__bg1 {
  background-color: #253957;
  height: calc(470 / 16 * 1rem);
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.recruitTop_fv_section__scroll {
  position: absolute;
  bottom: calc(144 / 16 * 1rem);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  bottom: 0;
  color: #fff;
}

.recruitTop_fv_section__scroll::after {
  content: "";
  display: block;
  margin-top: calc(16 / 16 * 1rem);
  width: 1px;
  height: calc(95 / 16 * 1rem);
  background-color: #fff;
}

.recruitTop_fv_section__bg2 {
  flex: 1;
  background: transparent;
}

.recruitTop_fv_section__inner_right {
  flex: 1;
  width: 100%;
  height: 100%;
}

.recruitTop_fv_section__bg3 {
  background: linear-gradient(
    0deg,
    rgba(18, 44, 81, 0.55) 7.51%,
    rgba(87, 134, 201, 0.15) 90.24%
  );
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: calc(70 / 16 * 1rem);
}

.recruitTop_fv_section__bg4 {
  background: url(/wp-content/uploads/2026/04/fv_pc2-scaled.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.recruitTop_fv_section__bg4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(18, 44, 81, 0.55) 0%,
    rgba(87, 134, 201, 0.15) 82.73%
  );
  z-index: 2;
  pointer-events: none;
}

.recruitTop_fv_section__title {
  z-index: 5;
  position: absolute;
  left: 5%;
  top: 50%;
  color: #fff;
  transform: translatey(-60%);
  font-weight: 700;
  font-size: clamp(18 / 16 * 1rem, 3vw, 24 / 16 * 1rem);
}

@media (max-width: 959px) {
  .recruitTop_fv_section__inner_left {
    display: none;
  }
  .recruitTop_fv_section__bg4 {
    border-radius: 0;
  }
}

/* 採用メッセージ */
.recruitTop_message {
  position: relative;
  margin-top: calc(-160 / 16 * 1rem);
  z-index: 0;
  background-color: transparent;
}

.recruitTop_message .common__title,
.recruitTop_message .common__sub_text {
  color: #141e32;
}

.recruitTop_message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(/wp-content/uploads/2026/04/recruit_fv.png) no-repeat;
  background-size: cover;
  background-position: 10% 50%;
}

.recruitTop_message__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3vw;
  padding-top: clamp(1.875rem, calc(-3.517rem + 23vw), 17.188rem);
  padding-bottom: clamp(1.875rem, calc(0.224rem + 7.04vw), 6.563rem);
}

.recruitTop_message__title_area {
  flex: 0 0 35%;
}

.recruitTop_message__lead {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  color: #141e32;
}

.recruitTop_message__body {
  flex: 0 1 60%;
  padding-top: 10px;
}

.recruitTop_message__text {
  line-height: 2;
  margin-bottom: 1.2rem;
}

.recruitTop_message__text:last-child {
  margin-bottom: 0;
}

@media (max-width: 959px) {
  .recruitTop_message {
    margin-top: calc(-60 / 16 * 1rem);
  }
  .recruitTop_message__inner {
    padding-top: calc(120 / 16 * 1rem);
    flex-direction: column;
  }
  .recruitTop_message__title_area,
  .recruitTop_message__body {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* 採用メンバー */
.recruitTop_member {
  background-color: #223c62;
}

.recruitTop_member__inner {
  padding-top: clamp(1.875rem, calc(0.268rem + 6.85vw), 6.438rem);
  padding-bottom: clamp(1.875rem, calc(-0.128rem + 8.54vw), 7.563rem);
  color: #fff;
  max-width: 1350px;
  padding-inline: 3%;
  margin-inline: auto;
}

.recruitTop_member .common__title,
.recruitTop_member .common__sub_text {
  text-align: center;
}

.recruitTop_member__slider {
  position: relative;
}

.recruitTop_member__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruitTop_member__arrow--prev,
.recruitTop_member__arrow--next {
  width: 50px !important;
  height: 50px !important;
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.recruitTop_member__arrow--prev:hover,
.recruitTop_member__arrow--next:hover {
  background: #333 !important;
  color: #fff !important;
}

.splide__arrow--prev {
  left: -25px !important;
}

.splide__arrow--next {
  right: -25px !important;
}

.recruitTop_member__link {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.recruitTop_member__link:hover {
  opacity: 0.9;
}

.recruitTop_member__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0 10px;
}

.recruitTop_member__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 10px 25px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 152, 186, 0) 3.77%,
    rgba(0, 152, 186, 0.5) 25.05%,
    rgba(0, 152, 186, 0.8) 46.04%,
    #0098ba 100%
  );
}

.recruitTop_member__dept {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 500;
}

.recruitTop_member__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.recruitTop_member__en {
  font-size: 11px;
  font-weight: 400;
}
.recruitTop_member {
  background-color: #223c62;
}

.recruitTop_member__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0 10px;
}
.recruitTop_member__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruitTop_member__modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal_content_top {
  padding: 60px 5% 7.75rem 5%;
  position: relative;

}

.modal_name_en {
  font-size: clamp(4rem, 9vw, 8.56rem);
	z-index: 40;
    position: relative;
  font-weight: bold;
  color: #49b2cf;
  line-height: 1;
  margin-bottom: calc(19 / 1440 * 100vw);
	
}

.modal_meta_info {
  display: flex;
  gap: 10px;
  color: #fff;
  font-size: clamp(1.1rem,2vw,1.5rem);
  background-color: #000;
  color: #fff;
  justify-content: center;
  width: fit-content;
  padding: 1px 20px;
  align-items: center;
}

.modal_full_wrapper {
	background: linear-gradient(
    to right, 
    #2E486B 0%, 
    #2E486B 27%, 
    #CDE1FE 27%, 
    #CDE1FE 100%
  );
	padding-bottom:4.4375rem;
}
.modal_content_bottom {
  background: #fff;
  border-radius: 30px;
  padding: 3.125rem 5%;
  position: relative;
  margin-inline: 2%;
transform-style: preserve-3d;
}

.modal_content_bottom:after {
  position: absolute;
  content: "";
	width: calc(510 / 1440 * 100vw);
	max-width:610px;
  aspect-ratio: 2/1;
  background: url(/wp-content/uploads/2026/04/member_dec.png) no-repeat;
  background-size: contain;
  top: -4.5vw;
transform: translateZ(-1px);
}

.modal_img_fixed {
  position: absolute;
  top: 0px;
  right: 0;
  width: 50%;
  pointer-events: none;
}

.modal_img_fixed img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}


.modal_qa_container::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 120px;
  height: 80px;
  background: url("path/to/deco.png") no-repeat center/contain;
  z-index: -1;
  opacity: 0.5;
}

.modal_qa_item {
  margin-bottom: 30px;
}

.modal_label_q {
  display: block;
  background:#141E32;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 15px 14px;
  margin-bottom: 10px;
	  font-family: "Roboto BoldItalic", sans-serif;
}

.modal_text_a {
  white-space: pre-wrap;
}

@media screen and (max-width: 959px) {
  .modal_img_fixed {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }
	
	.modal_content_top {
  padding: 30px 3%;
}
  .modal_qa_container {
    width: 100%;
  }
	.modal_meta_info {
		margin-bottom:30px;
	}
  .modal_content_bottom {
    margin-top: -50%;
    padding-top: 30px;
  }
	.modal_content_bottom:after {
/*         width: 70.1vw;
        top: -9vw; */
		content:none;
	}
}

.recruitTop_member__modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.recruitTop_member__modal-container.is-active {
  display: block;
}

.recruitTop_member__modal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.recruitTop_member__modal-close-x {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #141e32d9;
  width: calc(70 / 16 * 1rem);
  aspect-ratio: 1/1;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 100;
  line-height: 1;
}

/* 採用特徴 */
.recruitTop_features {
  background-color: #141e32;
}
.recruitTop_features__inner {
  padding-top: clamp(1.875rem, calc(0.665rem + 5.16vw), 5.313rem);
  padding-bottom: clamp(1.875rem, calc(0.29rem + 6.76vw), 6.375rem);
  color: #fff;
}

.recruitTop_features .common__title,
.recruitTop_features .common__sub_text {
  text-align: center;
}

.recruitTop_features .common__title {
  margin-bottom: 3.125rem;
}

.recruitTop_features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.recruitTop_features__item {
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.recruitTop_features__item:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: #fff;
}

.recruitTop_features__item:nth-child(-n + 4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background-color: #fff;
}

.recruitTop_features__label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.recruitTop_features__content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
}

.recruitTop_features__icon {
  width: 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruitTop_features__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.recruitTop_features__value {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 85px;
  line-height: 0.85;
}

.recruitTop_features__value--large {
  font-size: 110px;
}

.recruitTop_features__unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin-left: 5px;
  line-height: 1;
}

.recruitTop_features__gender_labels {
  display: flex;
  justify-content: space-around;
  width: 100%;
  font-size: 10px;
  margin-bottom: 4px;
  font-family: "Noto Sans JP", sans-serif;
}

.recruitTop_features__ranking_box {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px 35px;
  text-align: left;
}

.recruitTop_features__ranking_box li {
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
}

.recruitTop_features__note {
  font-size: 12px;
  margin-top: 10px;
  opacity: 0.6;
}

@media (max-width: 959px) {
  .recruitTop_features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	.recruitTop_features__content {
		gap:0;
	}
	
	.recruitTop_features__item {
		padding-inline:0;
	}
	.recruitTop_features__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background-color: #fff;
}
	
  .recruitTop_features__item:nth-child(2n)::after {
    display: none;
  }
  .recruitTop_features__item::before {
    display: block !important;
    bottom: 0;
  }
  .recruitTop_features__item:nth-child(n + 7)::before {
    display: none !important;
  }
	.recruitTop_features__label { 
	font-size:1.1rem;
		margin-bottom: 10px;
	}
	  .recruitTop_features__value {
    font-size: calc(50 / 16 * 1rem);
  }
	.recruitTop_features__ranking_box { 
	padding:5px 35px;	
	}
}

@media (max-width: 480px) {
  .recruitTop_features__item::after {
    display: none;
  }

}

/* 採用最新情報 */

.recruitTop_recruit_news__bg {
  background-color: #223c62;
}

.recruitTop_recruit_news__bg .recruit_news {
  position: relative;
  z-index: 0;
}

.recruitTop_recruit_news__bg .recruit_news:after {
  position: absolute;
  content: "";
  width: 46.1vw;
  aspect-ratio: 2/1;
  background: url(../image/features_bg.png) no-repeat;
  background-size: contain;
  bottom: -17vw;
  z-index: -1;
}

@media (max-width: 959px) {
  .recruitTop_recruit_news__bg .recruit_news:after {
    width: 100%;
    bottom: -30vw;
    z-index: -1;
  }
}

.recruitTop_recruit_news__bg .recruit_news__inner {
  padding-top: clamp(1.875rem, calc(-0.304rem + 9.3vw), 8.063rem);
  padding-bottom: clamp(1.875rem, calc(-0.656rem + 10.8vw), 9.063rem);
}

/* 採用募集要項 */
.recruitTop_recruit {
  background: #223c62;
  color: #fff;
}

.recruitTop_recruit__inner {
  padding-top: clamp(1.875rem, calc(-0.656rem + 10.8vw), 9.063rem);
  padding-bottom: clamp(1.875rem, calc(0.731rem + 4.88vw), 5.125rem);
  color: #fff;
}

.recruitTop_recruit .common__title,
.recruitTop_recruit .common__sub_text,
.recruitTop_recruit p {
  text-align: center;
}

/* ======================================================================
  採用-募集要項
   ====================================================================== */
.low___recruitType_wrap {
  background-color: #223c62;
}

.low___recruitType_inner {
  padding: calc(163 / 16 * 1rem) 2%;
  max-width: calc(1217 / 16 * 1rem);
  margin-inline: auto;
}

@media (max-width: 959px) {
  .low___recruitType_inner {
    padding: calc(60 / 16 * 1rem) 2%;
    max-width: 100%;
  }
}

.l_recruitType__wrap {
  border-radius: calc(30 / 16 * 1rem);
  overflow: hidden;
  background-color: #e1edff;
  margin-bottom: calc(50 / 16 * 1rem);
}

.l_recruitType__title {
  background-color: #0e516d;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding-block: calc(19 / 16 * 1rem);
}

.l_recruitType__item {
  padding: calc(61 / 16 * 1rem) calc(44 / 16 * 1rem);
}
@media (max-width: 959px) {
  .l_recruitType__item {
    padding: calc(32 / 16 * 1rem) calc(20 / 16 * 1rem);
  }
}

.l_recruitType_item__content p {
  font-weight: bold;
  margin-bottom: calc(15 / 16 * 1rem);
  font-size: calc(20 / 16 * 1rem);
}

.l_recruitType_item__inner {
  display: flex;
  gap: calc(30 / 16 * 1rem);
  justify-content: center;
  align-items: center;
}

@media (max-width: 959px) {
  .l_recruitType_item__inner {
    flex-direction: column;
    gap: calc(16 / 16 * 1rem);
  }
}

.l_recruitType_item__inner a {
  border-radius: calc(30 / 16 * 1rem);
  color: #fff;
  background-color: #223c62;
  border: 1px solid #000;
  padding-block: calc(21 / 16 * 1rem);
  width: 100%;
  max-width: calc(250 / 16 * 1rem);
  text-align: center;
  font-weight: bold;
  font-size: calc(15 / 16 * 1rem);
}

@media (max-width: 959px) {
  .l_recruitType_item__inner a {
    max-width: 100%;
  }
}

.l_recruitType__item .has-border {
  padding-bottom: calc(49 / 16 * 1rem);
  margin-bottom: calc(49 / 16 * 1rem);
  border-bottom: 1px solid #223c62;
}

@media (max-width: 959px) {
  .l_recruitType__item .has-border {
    padding-bottom: calc(30 / 16 * 1rem);
    margin-bottom: calc(30 / 16 * 1rem);
  }
}

/* ======================================================================
  採用-詳細
   ====================================================================== */
.recruit_mv {
  width: 100%;
  margin-bottom: calc(64 / 16 * 1rem);
}
.recruit_mv img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: calc(323 / 16 * 1rem);
}

.recruit_mainTitle {
  background-color: #49b2cf;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 11px 50px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: calc(25 / 16 * 1rem);
}



.recruit_row {
  display: flex;
  flex-wrap: wrap;
  padding-block: 25px;
  background-image: linear-gradient(to right, #253957 25%, #d9d9d9 25.1%);
  background-position: bottom;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  align-items: center;
}

.recruit_row:last-of-type {
  background-image: none;
}

.recruit_label {
  width: 100%;
  font-weight: bold;
  color: #253957;
  margin-bottom: 10px;
}

.recruit_data {
  width: 100%;
}

@media (min-width: 960px) {

  .recruit_row {
    padding-block: 30px;
  }

  .recruit_label {
    width: 25%;
    margin-bottom: 0;
    text-align: center;
    padding-right: 15px;
  }

  .recruit_data {
    width: 75%;
    padding-left: 30px;
  }
}

@media (max-width: 959px) {
	.recruit_mainTitle {
	padding:10px;
		text-align:left;
		
	}
}

.recruit_action {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 80px;
}

.low__recruitDetail .common_bth {
  margin-bottom: calc(59 / 16 * 1rem);
  margin-inline: auto;
}



/* ======================================================================
  サービス共通
   ====================================================================== */
.low__outsourcing,
.low__staffingAgency,
.low__salesPromotion {
color:#223C62;	
}
.low__outsourcing .low__fv__text_wrap h1,
.low__staffingAgency .low__fv__text_wrap h1,
.low__salesPromotion .low__fv__text_wrap h1{
	text-align:center;
}



.low__outsourcing .low__fv__text_wrap,
.low__staffingAgency .low__fv__text_wrap,
.low__salesPromotion .low__fv__text_wrap{
	left:50%;
	transform:translate(-50%, -50%);
}

.low___service_bigText {
	font-weight:bold;
font-size: clamp(1.3rem, 2.5vw, 1.625rem);
	text-align:center;
	margin-bottom: calc(34 / 16 * 1rem);
	line-height:1.4;
	color:#223C62;
}

.low__outsourcing .low___service_bigText span {
	color:#E54100;
}
.low__staffingAgency .low___service_bigText span {
	color:#EC9200;
}
.low__salesPromotion .low___service_bigText span {
	color:#007237;
}

/* ======================================================================
  アウトソーシング事業
   ====================================================================== */
.low___outsourcing_introInner {
  padding-top: clamp(3.125rem, 5.8vw, 7rem);
  padding-bottom: clamp(2.188rem, 3.9vw, 4.688rem);
}

@media (min-width: 960px) {
  .low___outsourcing_introInner p {
    text-align: center;
  }
}

.low___outsourcing_introInner p {
  margin-bottom: calc(34 / 16 * 1rem);
}

.low___outsourcing_image1 {
  width: 100%;
  max-width: 40.625rem;
  margin-inline: auto;
}

.low___outsourcing_mainWrap {
  background-color: #ecf4ff;
}

.low___outsourcing_inner {
  padding-top: clamp(3.125rem, calc(2.399rem + 3.1vw), 5.188rem);
  padding-bottom: clamp(3.125rem, calc(2.399rem + 3.1vw), 5.188rem);
}

.low___outsourcing_image2 {
padding-block:clamp(1.875rem, calc(1.501rem + 1.6vw), 2.938rem);
	padding-inlinr:clamp(1.875rem, calc(1.215rem + 2.82vw), 3.75rem);
border-radius: 20px;
	border:1px solid #253957;
	background-color:#fff;
width:100%;
}

.low___outsourcing_outroInner {
  padding-top: clamp(3.125rem, calc(2.575rem + 2.35vw), 4.688rem);
  padding-bottom: clamp(1rem, -0.298rem + 5.54vw, 4.688rem);
}

/* ======================================================================
  人材紹介事業
   ====================================================================== */
.low___staffingAgency_introInner {
  padding-top: clamp(3.125rem, 5.8vw, 7rem);
  padding-bottom: clamp(2.188rem, 3.9vw, 4.688rem);
}
@media (min-width: 960px) {
  .low___staffingAgency_introInner p {
    text-align: center;
  }
}

.low__staffingAgency .low__fv__text_wrap p {
	margin-bottom:0.9375rem;
}

.low___staffingAgency_introInner p {
  margin-bottom: calc(34 / 16 * 1rem);
}

.low___staffingAgency_mainWrap {
  background-color: #ecf4ff;
}

.low___staffingAgency_inner {
  padding-top: clamp(3.125rem, calc(2.399rem + 3.1vw), 5.188rem);
  padding-bottom: clamp(3.125rem, calc(2.399rem + 3.1vw), 5.188rem);
}

.low___staffingAgency_outroInner {
  padding-top: clamp(3.125rem, calc(2.575rem + 2.35vw), 4.688rem);
  padding-bottom: clamp(1rem, -0.298rem + 5.54vw, 4.688rem);
}

.low___staffingAgency_image1 {
	width:100%;
	max-width:334px;
	margin-inline:auto;
}

.low___staffingAgency_mainItem {
display:flex;
	justify-content:space-between;
	align-items:stretch;
	gap:3vw;
}

.low___staffingAgency_mainItem_inner {
		border:1px solid #253957;
	overflow:hidden;
	border-bottom-left-radius: calc(10 / 16 * 1rem);
		border-bottom-right-radius: calc(10 / 16 * 1rem);
		background-color:#fff;
}

.low___service_title,
.low___service_text {
padding:4%;	
}

.low___service_title {
	background-color:#253957;
	text-align:center;
	color:#fff;
	font-weight:bold;
}


@media (max-width: 959px) {
.low___staffingAgency_mainItem {
	flex-direction:column;
}
}

/* ======================================================================
  販売促進事業 
   ====================================================================== */

.low___salesPromotion_introInner {
  padding-top: clamp(3.125rem, 5.8vw, 7rem);
}

@media (min-width: 960px) {
  .low___salesPromotion_introInner p {
    text-align: center;
  }
}
@media (max-width: 959px) {
.low___salesPromotion_introInner {
	padding-bottom:2.188rem;
	}
}

.low___salesPromotion_introInner p {
  margin-bottom: calc(34 / 16 * 1rem);
}


.low___salesPromotion_mainWrap {
  background-color: #ecf4ff;
	position:relative;
}

.low___salesPromotion_mainWrap::after {
  content: "";
  position: absolute;
	top: 0;
  left: 0;
  width: 100%;
  height: 150px; 
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media (max-width: 959px) {
.low___salesPromotion_mainWrap::after {
	height:50px;
	}
}

.low___salesPromotion_inner {
  padding-top: clamp(5rem, calc(1.818rem + 13.58vw), 13rem);
  padding-bottom: clamp(3.125rem, calc(2.399rem + 3.1vw), 5.188rem);
}


.low___salesPromotion_outroInner {
  padding-top: clamp(3.125rem, calc(2.575rem + 2.35vw), 4.688rem);
  padding-bottom: clamp(1rem, -0.298rem + 5.54vw, 4.688rem);
}

.low___salesPromotion_image1 {
	margin-inline:auto;
	width:100%;
	max-width:550px;
}

.low___salesPromotion_cardList {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
	justify-content:center;
	align-items:stretch;
	max-width: 780px;
    margin-inline: auto;
}

.low___salesPromotion_cardItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  aspect-ratio: 1 / 1; 
  background-color: #ffffff;
  border: 1px solid #223C62;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

.low___salesPromotion_cardBg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  pointer-events: none;
}

.low___salesPromotion_cardItem:nth-of-type(1) .low___salesPromotion_cardBg,
.low___salesPromotion_cardItem:nth-of-type(3) .low___salesPromotion_cardBg {
  width: 60%;
}


.low___salesPromotion_cardBg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.low___salesPromotion_cardText {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #223C62;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-size: clamp(1rem, 1.5vw, 1.6rem);
}


@media (min-width: 960px) {
  .low___salesPromotion_cardList {
    gap: clamp(1.25rem, 2.5vw, 2.5rem); 
	    gap: 1.25rem;
  }

  .low___salesPromotion_cardItem {
    flex: 1;
    max-width: calc((100% - (clamp(1.25rem, 2.5vw, 2.5rem) * 2)) / 3);
  }
}