@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;
  }
}
.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;
  transition:
    background-color 0.3s ease,
    border 0.3s ease;
}

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

.common_bth.normal:hover .common_btn__icon_wrap {
  border: 1px solid transparent;
  background-color: #223c62;
}

.common_bth.normal:hover .fa-solid {
  color: #fff;
}

.service__content_wrap--01 .common_bth:hover .common_btn__icon_wrap {
  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 {
  background: linear-gradient(
    272.39deg,
    #b46f00 4.85%,
    #b46f00 45.75%,
    #ec9200 92%
  );
}

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

@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);
}

@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;
}

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

.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;
}

@media (max-width: 959px) {
  .pc_br {
    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 {
  border-radius: calc(24 / 16 * 1rem);
}

.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;
}

.header__nav_item.nav_recruit {
  background-color: #fff;
  border: 1px solid #2b4363;
}

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

.header__nav_item.nav_recruit {
  color: #2b4363;
}

.header__nav_item.nav_recruit:hover .icon_recruit {
  fill: #fff;
}

.header__contact .header__nav_link {
  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);
}

.header__contact .header__nav_link:hover {
  background: #fff;
  border: 1px solid #2b4363;
  color: #2b4363;
}

.header__contact .icon_contact {
  fill: currentColor;
}

.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 {
  background: #fff;
}

@media (max-width: 959px) {
  .header__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: 94%;
    margin: 3%;
    height: 94%;
  }
  .header__nav.is-open {
    display: block;
  }
  .header__nav_list {
    flex-direction: column;
    gap: calc(20 / 16 * 1rem);
    align-items: flex-start;
    padding-left: 15%;
  }
  .header__nav_item {
    display: none;
  }
  .header__nav.is-open .header__nav_item {
    display: block;
  }
  .header__hamburger {
    display: block;
    border: 1px solid #2b4363;
    margin-right: 4.7%;
    border-radius: calc(5 / 16 * 1rem);
  }
  .header__nav.is-open .header__hamburger span {
    color: #fff;
  }
}
/* デフォルト（PC）では非表示 */
.sp-nav__logo,
.sp-nav__contact {
  display: none;
}

@media (max-width: 959px) {
  .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);
    padding-left: 15%;
  }
  .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;
  }
}

/* ======================================================================
   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(18 / 16 * 1rem, 3vw, 24 / 16 * 1rem);
}

@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(676 / 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 (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: calc(123 / 16 * 1rem);
  padding-bottom: calc(105 / 16 * 1rem);
  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;
  }
}

.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: #90add6;
  border-radius: 8.5px;
  padding: 0rem 1rem;
  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;
  }
}

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

.service__inner {
  padding-bottom: calc(140 / 16 * 1rem);
}

.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(70%, 623 / 16 * 1rem);
  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 20s 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: 1rem;
    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: calc(89 / 16 * 1rem);
  padding-bottom: calc(117 / 16 * 1rem);
  display: flex;
  justify-content: space-between;
  align-items: top;
}

@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__inner {
  padding-top: calc(183 / 16 * 1rem);
  padding-bottom: calc(124 / 16 * 1rem);
  color: #fff;
}

.recruit__wrap {
  display: grid;
  gap: calc(30 / 16 * 1rem);
  grid-template-columns: 1fr 1fr;
  margin-top: calc(50 / 16 * 1rem);
}

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

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

.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;
}

.news {
  background-color: #ecf4ff;
  color: #2b4363;
  position: relative;
}

.news__inner {
  padding-top: calc(112 / 16 * 1rem);
  padding-bottom: calc(97 / 16 * 1rem);
  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: #223c62;
  background-color: #90add6;
  border-radius: 8.5px;
  padding: 0rem 1rem;
  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;
  }
}
.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: calc(63 / 16 * 1rem);
}

@media (max-width: 959px) {
  .footer {
    padding-top: calc(70 / 16 * 1rem);
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: calc(1166 / 16 * 1rem);
  margin-inline: auto;
  padding-inline: 3%;
  padding-bottom: calc(55 / 16 * 1rem);
}

@media (max-width: 959px) {
  .footer__inner {
    display: block;
    max-width: calc(500 / 16 * 1rem);
    padding-inline: 3%;
	      padding-bottom: calc(80 / 16 * 1rem);
  }
}
.footer__wrap1,
.footer__wrap2 {
  flex: 1;
}

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

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

.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 ul li {
  font-size: calc(14 / 16 * 1rem);
  position: relative;
  left: 1em;
}

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

.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;
}

.footer__nav_item.nav_contact {
  background: linear-gradient(
    272.39deg,
    #008aaa 4.85%,
    #078faf 51.1%,
    #179fbf 92%
  );
  color: #fff;
}

.footer__nav_item.nav_contact:hover {
  opacity: 0.7;
}

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

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

.low__fv {
  height: calc(352 / 16 * 1rem);
  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__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%;
  }
}
.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_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_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%;
  }
}
.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: calc(74 / 16 * 1rem);
  padding-bottom: calc(120 / 16 * 1rem);
}

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

@media (max-width: 959px) {
  .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 {
    min-width: 100%;
    object-fit: contain;
    margin-inline: auto;
  }
}

.low__company_message_container_right p {
  margin-bottom: 2rem;
}

.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: calc(93 / 16 * 1rem);
  padding-bottom: calc(103 / 16 * 1rem);
}

.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;
}

/* ======================================================================
  投稿一覧&詳細ページ
   ====================================================================== */
/* 親リスト */
.column-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カード全体 */
.column-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.column-item a {
  display: flex;
  text-decoration: none;
  color: inherit;
}

/* サムネ */
.column-thumb {
  flex: 0 0 200px;
  margin-right: 20px;
}

.column-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト部分 */
.column-content {
  flex: 1;
}

.column-content h2 {
  font-size: 32px;
  margin: 0 0 30px 0;
  text-align: left;
}

.column-content p {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 399px) {
  .column-thumb {
    flex: 0 0 114px;
  }
}
.button-list-wrap {
  text-align: center;
  margin-top: 2rem;
}

.button-wrap {
  text-align: center;
}

.button-list {
  display: inline-block;
  background-color: #d63803;
  color: #fff;
  font-weight: 700;
  padding: 1rem 6rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 5px #a92c02;
  transition: all 0.2s ease;
  font-size: 1.1rem;
  width: 50%;
  max-width: 500px;
}

.button-list:hover {
  transform: translateY(2px);
  box-shadow: 0 2px #a92c02;
}

@media (max-width: 599px) {
  .button-wrap {
    width: 100%;
  }

  .button-list {
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
  }
}

/* コラムページ */

/* 投稿詳細ページ用シンプルCSS */

.column-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.8;
}

.column-single h1 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.column-thumb {
  margin-bottom: 2rem;
}

.column-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.column-content {
  font-size: 1rem;
  color: #333;
}

.column-content p {
  margin-bottom: 1.5rem;
}

.column-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}

/* 全体ラップ */

/* 本文（中央800px） */
.column-single {
  max-width: 800px;
  width: 100%;
}

.column-single h2:not(.non-style) {
  display: flex;
  align-items: stretch; /* ← 高さを揃えるポイント */
  gap: 0.5em;
  position: relative;
  line-height: 1.4;
}

.column-single h2:not(.non-style)::before {
  content: "";
  width: 5px;
  background-color: #d53803;
  flex-shrink: 0;
}

.content-with-toc {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.toc-sidebar {
  width: 250px;
  flex-shrink: 0;
  margin-top: 3rem;
}

/* タイトル */
.toc-title {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding-bottom: 5px;
  position: relative;
}

.toc-title:before,
.toc-title:after {
  box-sizing: inherit;
  display: block;
  height: 1px;
  position: absolute;
  z-index: 0;
}

.toc-title:before {
  content: "";
  bottom: 0;
  left: 0;
  width: 40%;
  z-index: 1;
  background: #d53803;
}

.toc-title:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ccc;
}
/* 番号付きリスト */
.toc-list {
  list-style: decimal;
  padding-left: 1rem;
  margin: 0;
}

.toc-item {
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.toc-item.level-3 {
  margin-left: 1.2em;
  font-size: 0.9em;
}
.toc-item a {
  color: #333;
  text-decoration: none;
}
.toc-item a:hover {
  color: #00aaff;
}

.toc-num {
  color: #d53803;
  position: relative;
  right: 0.5rem;
}

.toc-num:before {
  content: "|";
  padding: 0 0.5em 0 0;
  position: absolute;
  right: -1rem;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  white-space: nowrap;
  width: auto;
}

.column-single,
.toc-sidebar {
  margin-inline: 1rem;
}

/* スマホ（959px以下）では目次を下に移動 */
@media screen and (max-width: 959px) {
  .article-wrap {
    flex-direction: column;
  }

  .toc-sidebar {
    display: none;
  }

  .toc-box {
    display: none;
  }
}

/* 記事内目次 */

.column-single .wp-block-group {
  margin-block: 3rem !important;
}
#ez-toc-container {
  background: none;
  border: none;
  position: static;
  border-top: 3px solid #d53803;
  border-bottom: 3px solid #d53803;
  margin-bottom: 50px !important;
}

/* h1＆日付 */
.post-date {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
  border-right: 1px solid #fff;
  padding-right: 2rem;
  margin-right: 2rem;
}

/* .post-date:after {
	position:absolute;
	content:"|";
	right:-1.5rem;
	font-size:2.5rem;
}
 */
.post-date .year {
  font-weight: bold;
  font-size: 0.9rem;
}

.post-date .md {
  font-size: 1.5rem;
}

.post-title {
  font-size: 1.5rem; /* 必要に応じて調整 */
}

.title-block {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 8rem 1fr;
  padding-inline: 5%;
  align-items: center;
  justify-content: left;
  gap: 1.5rem;
  height: 180px;
  box-sizing: border-box;
  background-color: #2a4363;
}

/* .title-block:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 180px;
  background-color:#2A4363;
  z-index: 20;
} */

.post-date,
.title-block h1 {
  color: #fff;
  z-index: 30;
}

.title-block h1 {
  text-align: left !important;
  margin-top: 0 !important;
}

/* パンくず */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  padding-block: 0.5rem;
  padding-left: 5%;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
