@charset "UTF-8";
body {
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

li {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.67em;
  color: #4E4E4E;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.site-body {
  position: relative;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
  vertical-align: bottom;
}

video {
  max-width: 100%;
  height: auto;
  width: auto;
}

a {
  text-decoration: none;
  color: #4E4E4E;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px !important;
  font-weight: 400;
  line-height: 1.67em;
}

p {
  margin: 0px !important;
  text-align: justify;
}
p.annotation {
  font-size: 1.2rem;
}

.current-menu-item {
  font-weight: bold;
}

.l-header__container {
  position: fixed !important;
  height: clamp(75px, 9vw, 154px);
  width: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.l-header__logo {
  left: 3%;
  max-width: 240px !important;
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .l-header__logo {
    max-width: 180px !important;
    left: 5%;
  }
}
@media screen and (max-width: 480px) {
  .l-header__logo {
    max-width: 170px !important;
  }
}
.l-header__logo .logo-w {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-in;
  position: absolute;
}
.l-header__logo .logo-color {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  position: absolute;
}
.l-header__nav {
  right: 3%;
  position: relative;
  display: flex;
  column-gap: 8px;
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .l-header__nav {
    right: 5%;
    column-gap: 3px;
  }
}
.l-header__nav-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 80%;
  margin: 0 auto;
}
.l-header__nav-content ul li {
  font-size: clamp(1.6rem, 1.3vw, 2.5rem);
  line-height: 1em;
  font-weight: 600;
  transition: background-color 0.5s ease;
  position: relative;
  height: clamp(3.2rem, 3vw, 6rem);
  display: flex;
  align-items: center;
}
.l-header__nav-content ul li::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid #0770CE;
  border-right: 2px solid #0770CE;
  transform: rotate(45deg);
  left: -10px;
}
.l-header__nav-content ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background-color: white;
  transform: scaleX(0%);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.l-header__nav-content ul li a {
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: padding-left 0.3s ease;
  display: flex;
  align-items: center;
}
.l-header__nav-content ul li:hover::after {
  left: 5px;
}
.l-header__nav-content ul li:hover::before {
  transform: scaleX(100%);
}
.l-header__nav-content ul li:hover a {
  color: #0770CE;
  padding-left: 3rem;
}
.l-header__nav-content .heading {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3.2rem, 4vw, 9rem);
  color: rgba(255, 255, 255, 0.3215686275);
  letter-spacing: -0.05em;
  line-height: 1em;
  font-weight: 800;
  margin-bottom: 21px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4509803922);
  padding-bottom: 3px;
}
.l-header__nav-entry {
  background-color: white;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  transition: background-color 0.5s ease-in;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  --colorbox: #0770CE;
  --colorarrow: white;
}
@media screen and (max-width: 991px) {
  .l-header__nav-entry {
    height: 40px;
    width: 80px;
  }
}
.l-header__nav-entry .txt {
  color: #0770CE;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  line-height: 1em;
  text-align: center;
  font-weight: 700;
  position: relative;
  top: 1px;
  transition: transform 0.5s ease-in;
}
@media screen and (max-width: 991px) {
  .l-header__nav-entry .txt {
    font-size: 2rem;
  }
}
.l-header__nav-entry .wrap {
  position: absolute;
  height: 0%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: all 0.5s;
  top: 50px;
  background-color: white;
  padding: 2.4rem;
  visibility: hidden;
  row-gap: 2rem;
  transform: translateY(-10%);
}
@media screen and (max-width: 991px) {
  .l-header__nav-entry .wrap {
    padding: 1rem;
    top: 40px;
  }
}
.l-header__nav-entry .wrap a {
  font-size: 1.6rem;
  position: relative;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}
.l-header__nav-entry .wrap a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--colorbox);
}
@media screen and (max-width: 991px) {
  .l-header__nav-entry .wrap a::after {
    width: 1rem;
    height: 1rem;
    top: 0rem;
  }
}
.l-header__nav-entry .wrap a::before {
  content: "";
  position: absolute;
  right: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid var(--colorarrow);
  border-right: 2px solid var(--colorarrow);
  z-index: 1;
  transform: translateX(0%) rotate(45deg);
}
@media screen and (max-width: 991px) {
  .l-header__nav-entry .wrap a::before {
    right: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media screen and (max-width: 991px) {
  .l-header__nav-entry .wrap a {
    font-size: 1.3rem;
    letter-spacing: -0.1em;
    padding: 0;
  }
}
.l-header__nav-entry .wrap a:hover {
  text-decoration: underline;
}
.l-header__nav-entry .wrap a:hover::before {
  animation: btnHover 0.7s ease forwards;
}
@keyframes btnHover {
  0% {
    transform: translateX(0%) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateX(30%) rotate(45deg);
    opacity: 0;
  }
  51% {
    transform: translateX(-30%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) rotate(45deg);
    opacity: 1;
  }
}
.l-header__nav-entry:hover .wrap {
  opacity: 1;
  visibility: visible;
  height: 200%;
  transform: translateY(0);
}

.l-footer__container {
  position: relative;
  background-color: #0257BA;
  width: 100%;
  z-index: 99;
  padding: 50px 0px 0px 0;
}
.l-footer__typo {
  bottom: 0;
  opacity: 0.1;
  position: relative;
  width: 80%;
}
@media screen and (max-width: 640px) {
  .l-footer__typo {
    width: 100%;
  }
}
.l-footer__inner {
  position: relative;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .l-footer__inner {
    width: 92%;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__inner {
    width: 85%;
  }
}
.l-footer__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-bottom: clamp(80px, 4vw, 650px);
  column-gap: 38px;
}
@media screen and (max-width: 480px) {
  .l-footer__row {
    flex-direction: column;
    row-gap: 52px;
  }
}
.l-footer__row .col-info {
  width: 60vw;
}
@media screen and (max-width: 480px) {
  .l-footer__row .col-info {
    width: 85vw;
  }
}
.l-footer__row .col-nav {
  width: 43vw;
  max-width: 500px;
}
@media screen and (max-width: 991px) {
  .l-footer__row .col-nav {
    max-width: 120px;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__row .col-nav {
    max-width: inherit;
    width: 100%;
  }
}
.l-footer__nav {
  display: flex;
  column-gap: 20px;
  row-gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-footer__nav-heading {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  color: white;
  line-height: 1em;
  font-weight: 800;
  margin-bottom: 12px !important;
}
@media screen and (max-width: 991px) {
  .l-footer__nav-heading {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__nav-heading {
    margin-bottom: 6px !important;
  }
}
.l-footer__nav .col ul li {
  position: relative;
  line-height: 2.2em;
}
.l-footer__nav .col ul li a {
  color: white;
  font-size: 1.4rem !important;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 2em;
  position: relative;
}
.l-footer__nav .col ul li a::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: -5px;
  background-color: white;
  transform: scaleX(0);
  transition: transform 0.2s ease-in;
  transform-origin: left;
}
.l-footer__nav .col ul li a:hover::before {
  transform: scaleX(100%);
}
@media screen and (max-width: 640px) {
  .l-footer__nav .col ul li a {
    font-size: 1.2rem !important;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__nav {
    justify-content: flex-start;
    column-gap: 18px;
  }
}
.l-footer__logo {
  margin-bottom: 10px;
  max-width: 350px !important;
  width: 85%;
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .l-footer__info {
    margin-bottom: 30px;
  }
}
.l-footer__info p {
  color: white;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .l-footer__info p {
    font-size: 1.3rem;
  }
}
.l-footer__info .tel {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-footer__link {
  display: flex;
  column-gap: 34px;
  flex-wrap: wrap;
  row-gap: 9px;
}
.l-footer__link p {
  color: white;
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .l-footer__link p {
    font-size: 1.3rem;
  }
}
.l-footer__link .wrap {
  display: flex;
  column-gap: 6px;
  align-items: center;
}
.l-footer__link .wrap img {
  width: 1.7rem;
}
@media screen and (max-width: 640px) {
  .l-footer__link .wrap img {
    font-size: 1.5rem;
  }
  .l-footer__link .wrap img.exlink {
    position: relative;
    left: 0.15rem;
  }
}
.l-footer__link a {
  transition: opacity 0.5s ease;
}
.l-footer__link a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 640px) {
  .l-footer__link {
    flex-direction: column;
    row-gap: 11px;
  }
}
.l-footer__copyright {
  width: fit-content;
  position: absolute;
  bottom: 19px;
  right: 3%;
}
@media screen and (max-width: 640px) {
  .l-footer__copyright {
    right: 7%;
  }
}
.l-footer__copyright p {
  font-size: 12px;
  color: white;
}
.l-footer__copyright p a {
  color: white;
}

.l-intro__section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #0F55B9;
}
.l-intro__section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(61.2% 0, 100% 0, 100% 100%, 38.2% 100%);
  z-index: 3;
}
.l-intro__section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: polygon(61.2% 0, 100% 0, 100% 100%, 38.2% 100%);
  opacity: 0.6;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .l-intro__section:before {
    clip-path: polygon(0 66%, 100% 43%, 100% 100%, 0 100%);
  }
  .l-intro__section:after {
    clip-path: polygon(0 66%, 100% 43%, 100% 100%, 0 100%);
  }
}
.l-intro__left {
  position: absolute;
  left: 0;
  top: 0;
  width: 52%;
  height: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-intro__left {
    width: 100%;
    height: 68%;
  }
}
.l-intro__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  color: #3E3E3E;
}
@media screen and (max-width: 767px) {
  .l-intro__right {
    top: 50%;
    width: 100%;
    height: 47%;
  }
}

.l-front__section, .l-front__section-entry {
  position: relative;
  background-color: #0770CE;
  height: clamp(780px, 100dvh, 1000px);
  display: flex;
  align-items: center;
  overflow-x: hidden;
  z-index: 111;
  overflow-x: hidden;
}
@media screen and (max-width: 991px) {
  .l-front__section, .l-front__section-entry {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 640px) {
  .l-front__section, .l-front__section-entry {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.l-front__section-mv {
  position: relative;
  background-color: white;
  padding: 0px;
  z-index: 10;
  height: 200dvh;
  margin-bottom: -100px;
}
@media screen and (max-width: 991px) {
  .l-front__section-mv {
    margin-bottom: -15vw;
  }
}
@media screen and (max-width: 640px) {
  .l-front__section-mv {
    margin-bottom: -5vw;
  }
}
@media screen and (max-width: 480px) {
  .l-front__section-mv {
    margin-bottom: 0vw;
  }
}
.l-front__section-entry {
  height: auto;
  padding-top: clamp(20px, 15vw, 100px);
  padding-bottom: clamp(100px, 15vw, 300px);
}
.l-front__inner, .l-front__inner-l, .l-front__inner-entry {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
}
.l-front__inner-entry {
  max-width: inherit;
}
.l-page__section, .l-page__section-b, .l-page__section-404, .l-page__section-g, .l-page__section-w, .l-page__section-w-2, .l-page__section-title {
  position: relative;
  padding: clamp(80px, 10.5vw, 200px) 0;
}
.l-page__section h1, .l-page__section-b h1, .l-page__section-404 h1, .l-page__section-g h1, .l-page__section-w h1, .l-page__section-w-2 h1, .l-page__section-title h1 {
  font-size: clamp(3.1rem, 3.7vw, 5.5rem);
  color: white;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 480px) {
  .l-page__section h1, .l-page__section-b h1, .l-page__section-404 h1, .l-page__section-g h1, .l-page__section-w h1, .l-page__section-w-2 h1, .l-page__section-title h1 {
    top: 10px;
    line-height: 1.5em;
  }
}
.l-page__section h2, .l-page__section-b h2, .l-page__section-404 h2, .l-page__section-g h2, .l-page__section-w h2, .l-page__section-w-2 h2, .l-page__section-title h2 {
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 700;
  position: relative;
  left: 30px;
  line-height: 1em;
  min-width: 23%;
}
.l-page__section h2::before, .l-page__section-b h2::before, .l-page__section-404 h2::before, .l-page__section-g h2::before, .l-page__section-w h2::before, .l-page__section-w-2 h2::before, .l-page__section-title h2::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  background-color: #0770CE;
  left: -30px;
  top: 1px;
}
.l-page__section h2.gr::before, .l-page__section-b h2.gr::before, .l-page__section-404 h2.gr::before, .l-page__section-g h2.gr::before, .l-page__section-w h2.gr::before, .l-page__section-w-2 h2.gr::before, .l-page__section-title h2.gr::before {
  background-color: #16B475;
}
@media screen and (max-width: 640px) {
  .l-page__section h2, .l-page__section-b h2, .l-page__section-404 h2, .l-page__section-g h2, .l-page__section-w h2, .l-page__section-w-2 h2, .l-page__section-title h2 {
    left: 20px;
  }
  .l-page__section h2::before, .l-page__section-b h2::before, .l-page__section-404 h2::before, .l-page__section-g h2::before, .l-page__section-w h2::before, .l-page__section-w-2 h2::before, .l-page__section-title h2::before {
    left: -20px;
    width: 6px;
  }
}
.l-page__section h3, .l-page__section-b h3, .l-page__section-404 h3, .l-page__section-g h3, .l-page__section-w h3, .l-page__section-w-2 h3, .l-page__section-title h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px !important;
}
@media screen and (max-width: 640px) {
  .l-page__section h3, .l-page__section-b h3, .l-page__section-404 h3, .l-page__section-g h3, .l-page__section-w h3, .l-page__section-w-2 h3, .l-page__section-title h3 {
    font-size: 1.6rem;
  }
}
.l-page__section h3.bartype, .l-page__section-b h3.bartype, .l-page__section-404 h3.bartype, .l-page__section-g h3.bartype, .l-page__section-w h3.bartype, .l-page__section-w-2 h3.bartype, .l-page__section-title h3.bartype {
  background-color: #0770CE;
  width: 100%;
  color: white;
  font-size: 2rem;
  margin-bottom: 0px !important;
  padding: 0px 20px;
  height: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .l-page__section h3.bartype, .l-page__section-b h3.bartype, .l-page__section-404 h3.bartype, .l-page__section-g h3.bartype, .l-page__section-w h3.bartype, .l-page__section-w-2 h3.bartype, .l-page__section-title h3.bartype {
    font-size: 1.7rem;
  }
}
.l-page__section h4, .l-page__section-b h4, .l-page__section-404 h4, .l-page__section-g h4, .l-page__section-w h4, .l-page__section-w-2 h4, .l-page__section-title h4 {
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 15px !important;
}
@media screen and (max-width: 640px) {
  .l-page__section h4, .l-page__section-b h4, .l-page__section-404 h4, .l-page__section-g h4, .l-page__section-w h4, .l-page__section-w-2 h4, .l-page__section-title h4 {
    font-size: 1.5rem;
  }
}
.l-page__section-title {
  background-color: #0770CE;
  padding: 0;
}
.l-page__section-title-txt {
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.l-page__section-title-txt .breadcrumbs {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.2rem;
}
@media screen and (max-width: 991px) {
  .l-page__section-title-txt .breadcrumbs {
    font-size: 1.1rem;
  }
}
.l-page__section-title-txt .breadcrumbs li {
  color: white;
  position: relative;
}
.l-page__section-title-txt .breadcrumbs li a {
  color: white;
}
.l-page__section-title-txt .breadcrumbs li:not(:first-child) {
  margin-left: 5px;
  padding-left: 12px;
}
.l-page__section-title-txt .breadcrumbs li:last-child {
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 32%;
  max-width: 250px;
}
.l-page__section-title-txt .breadcrumbs li:not(:first-child):after {
  content: "/";
  position: absolute;
  left: 0;
}
.l-page__section-title-pictypo {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1366px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow-x: clip;
  z-index: 1;
}
.l-page__section-title-typo {
  position: absolute;
  width: clamp(400px, 67vw, 900px);
  left: 0vw;
  top: 52%;
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
}
.l-page__section-title-typo.about {
  width: clamp(400px, 73vw, 900px);
}
.l-page__section-title-typo.job {
  width: clamp(200px, 43vw, 550px);
  left: clamp(50px, 17vw, 238px);
}
@media screen and (max-width: 640px) {
  .l-page__section-title-typo.job {
    left: 0;
  }
}
.l-page__section-title-typo.workstyle {
  width: clamp(400px, 112vw, 1640px);
}
.l-page__section-title-typo.news {
  width: clamp(400px, 55vw, 660px);
  left: clamp(124px, 11vw, 100px);
}
@media screen and (max-width: 991px) {
  .l-page__section-title-typo.news {
    left: 0;
  }
}
.l-page__section-title-typo.newgrad {
  width: clamp(600px, 97vw, 1200px);
}
.l-page__section-title-typo.career {
  width: clamp(450px, 77vw, 850px);
}
.l-page__section-title-pic {
  width: 45vw;
  justify-content: flex-start;
  display: flex;
  max-width: 700px;
  z-index: 1;
  position: relative;
  margin-bottom: -75px;
  overflow-x: hidden;
  margin-top: clamp(75px, 9vw, 154px);
}
@media screen and (max-width: 991px) {
  .l-page__section-title-pic {
    width: 50vw;
    margin-bottom: 0;
    min-width: 273px;
  }
}
@media screen and (max-width: 480px) {
  .l-page__section-title-pic {
    margin-top: 110px;
    min-width: 262px;
  }
}
.l-page__section-title-pic img {
  min-width: clamp(500px, 47vw, 650px);
}
@media screen and (max-width: 991px) {
  .l-page__section-title-pic img {
    min-width: clamp(350px, 57vw, 650px);
  }
}
.l-page__section-title-pattern {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 480px;
  width: 36vw;
  min-width: 200px;
}
.l-page__section-subnav {
  background-color: #CDE2F4;
  position: relative;
}
@media screen and (max-width: 480px) {
  .l-page__section-subnav {
    padding: 8px 0px;
  }
}
.l-page__section-subnav-wrap {
  display: flex;
  column-gap: clamp(9px, 2.5vw, 40px);
  align-items: center;
  height: 75px;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .l-page__section-subnav-wrap {
    column-gap: 22px;
    height: 55px;
  }
}
.l-page__section-subnav-wrap .item {
  column-gap: 3px;
  display: flex;
  align-items: center;
  position: relative;
}
.l-page__section-subnav-wrap .item p {
  color: #0770CE;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .l-page__section-subnav-wrap .item p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__section-subnav-wrap .item p {
    font-size: 1.2rem;
  }
}
.l-page__section-subnav-wrap .item .arrow {
  width: 13px;
  height: 13px;
  background-color: #0770CE;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-page__section-subnav-wrap .item .arrow::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 1px solid #cde2f4;
  border-bottom: 1px solid #cde2f4;
  transform: rotate(45deg);
  top: 3px;
}
.l-page__section-subnav-wrap .item::before {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 100%;
  bottom: -5px;
  background-color: #0094FF;
  transform: scaleX(0);
  transition: transform 0.2s ease-in;
  transform-origin: left;
}
.l-page__section-subnav-wrap .item:hover::before {
  transform: scaleX(100%);
}
.l-page__section-w-2 {
  padding-top: 0px;
}
.l-page__section-g {
  background-color: #F4F6F8;
}
.l-page__section-b, .l-page__section-404 {
  background-color: #0770CE;
}
.l-page__section-b h2, .l-page__section-404 h2 {
  color: white;
}
.l-page__section-b h2::before, .l-page__section-404 h2::before {
  background-color: white;
}
.l-page__section-b h3, .l-page__section-404 h3,
.l-page__section-b h4,
.l-page__section-404 h4,
.l-page__section-b p,
.l-page__section-404 p {
  color: white;
}
.l-page__section-404 {
  min-height: 100dvh;
  display: flex;
}
.l-page__section-404 .typo {
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
}
.l-page__section-404 p {
  text-align: center;
}
.l-page__section-typo {
  position: absolute;
  max-width: 1366px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  .l-page__section-typo.business {
    top: 50px;
  }
}
.l-page__section-typo.minutes {
  top: calc(clamp(30px, 6vw, 80px) * -1);
}
.l-page__section-typo.company {
  top: 61px;
}
.l-page__section-typo.businessbase {
  top: 71px;
  max-width: 1100px;
  left: -200px;
}
@media screen and (max-width: 991px) {
  .l-page__section-typo.businessbase {
    left: 0;
  }
}
.l-page__section-typo.group {
  max-width: 994px;
  top: clamp(48px, 4vw, 140px);
}
.l-page__section-typo.jobtype {
  top: clamp(30px, 6vw, 80px);
}
.l-page__section-typo.department {
  top: clamp(30px, 6vw, 80px);
}
.l-page__section-typo.onenichiha {
  top: clamp(70px, 6.5vw, 200px);
}
.l-page__section-typo.recruitment {
  top: clamp(48px, 6vw, 140px);
}
.l-page__inner, .l-page__inner-404 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
  width: 75vw;
}
@media screen and (max-width: 480px) {
  .l-page__inner, .l-page__inner-404 {
    width: 80vw;
  }
}
.l-page__inner-404 {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: center;
  justify-content: center;
}
.l-page__row, .l-page__row-vt {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 90px;
}
@media screen and (max-width: 991px) {
  .l-page__row, .l-page__row-vt {
    flex-direction: column;
    row-gap: 50px;
  }
}
.l-page__row .content, .l-page__row-vt .content {
  position: relative;
  width: 67%;
}
@media screen and (max-width: 991px) {
  .l-page__row .content, .l-page__row-vt .content {
    width: 100%;
  }
}
.l-page__row .content .video, .l-page__row-vt .content .video {
  border: #b3b3b3 1px solid;
}
.l-page__row .col, .l-page__row-vt .col {
  position: relative;
  background-color: white;
  padding: 35px;
}
@media screen and (max-width: 991px) {
  .l-page__row .col, .l-page__row-vt .col {
    padding: 30px;
  }
}
.l-page__row .sidebar, .l-page__row-vt .sidebar {
  min-width: 27%;
  position: sticky;
  top: 110px;
}
.l-page__row .sidebar .heading, .l-page__row-vt .sidebar .heading {
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px !important;
}
.l-page__row .sidebar .heading::after, .l-page__row-vt .sidebar .heading::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #bababa;
  bottom: 0;
  left: 0;
}
.l-page__row .sidebar ul, .l-page__row-vt .sidebar ul {
  display: flex;
  flex-direction: column;
  row-gap: 2.3rem;
  position: relative;
}
.l-page__row .sidebar ul li, .l-page__row-vt .sidebar ul li {
  padding: 0.4rem 1.8rem;
  width: fit-content;
  position: relative;
  cursor: pointer;
  transition: background-color 0.5s ease;
}
.l-page__row .sidebar ul li:hover, .l-page__row-vt .sidebar ul li:hover {
  color: #0094FF;
}
.l-page__row .sidebar ul li.current, .l-page__row-vt .sidebar ul li.current {
  background-color: #0094FF;
  color: white;
}
.l-page__row .sidebar ul li.current a, .l-page__row-vt .sidebar ul li.current a {
  color: white;
}
.l-page__row .sidebar ul.recruit li, .l-page__row-vt .sidebar ul.recruit li {
  padding: 0 0 0 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.l-page__row .sidebar ul.recruit li.current, .l-page__row-vt .sidebar ul.recruit li.current {
  background-color: transparent;
}
.l-page__row .sidebar ul.recruit li.current a, .l-page__row-vt .sidebar ul.recruit li.current a {
  color: #4E4E4E;
}
.l-page__row .sidebar ul.recruit li.current::before, .l-page__row-vt .sidebar ul.recruit li.current::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #0094FF;
  border-radius: 100%;
  left: 0;
}
.l-page__row .sidebar ul.recruit li a, .l-page__row-vt .sidebar ul.recruit li a {
  color: #A7A7A7;
}
.l-page__row .sidebar ul.recruit li a:hover, .l-page__row-vt .sidebar ul.recruit li a:hover {
  color: #4E4E4E;
}
@media screen and (max-width: 640px) {
  .l-page__row .sidebar, .l-page__row-vt .sidebar {
    position: relative;
    min-width: initial;
    top: 0;
  }
  .l-page__row .sidebar ul, .l-page__row-vt .sidebar ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 3.2rem;
    row-gap: 0.8rem;
  }
  .l-page__row .sidebar ul li, .l-page__row-vt .sidebar ul li {
    padding: 0;
  }
  .l-page__row .sidebar ul li.current, .l-page__row-vt .sidebar ul li.current {
    padding: 0.4rem 1.8rem;
  }
}
.l-page__row-vt {
  flex-direction: column;
  row-gap: 75px;
}
@media screen and (max-width: 991px) {
  .l-page__row-vt {
    row-gap: 50px;
  }
}
.l-page__row-vt .content {
  width: 100%;
}

.c-hamburger {
  /*開くメニューコンテンツ*/
}
.c-hamburger-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 0;
  height: 100dvh;
  width: 40%;
  background: #0770CE;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  display: flex;
  z-index: 1;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .c-hamburger-content {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .c-hamburger-content {
    width: 80%;
  }
}
.c-hamburger {
  /*閉じる用の薄黒カバー*/
}
.c-hamburger-cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.c-hamburger {
  /*バーガーアイコン*/
}
.c-hamburger-icon {
  display: flex;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10000;
  background-color: white;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  justify-content: center;
  transition: background-color 0.5s ease-in;
  --linecolor: #0770CE;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .c-hamburger-icon {
    height: 40px;
    width: 40px;
  }
}
.c-hamburger-icon .line, .c-hamburger-icon:hover .line-3, .c-hamburger-icon:hover .line-2, .c-hamburger-icon:hover .line-1, .c-hamburger-icon .line-3, .c-hamburger-icon .line-2, .c-hamburger-icon .line-1 {
  position: relative;
  width: 40%;
  height: 3px;
  background-color: var(--linecolor);
  z-index: 10;
  transition: height 0.3s ease-in-out, width 0.3s ease-in-out;
  transform: scaleX(100%) rotate(0deg);
}
.c-hamburger-icon .line-1 {
  left: 3px;
}
.c-hamburger-icon .line-3 {
  left: -3px;
}
.c-hamburger-icon:hover .lineanime {
  animation-name: lineanimation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transform: scaleX(0%);
}
@keyframes lineanimation {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  32% {
    transform-origin: left;
  }
  33% {
    transform: scaleX(100%);
    transform-origin: right;
  }
  65% {
    transform: scaleX(0%);
    transform-origin: right;
  }
  66% {
    transform: scaleX(0%);
    transform-origin: left;
  }
  100% {
    transform: scaleX(100%);
    transform-origin: left;
  }
}
.c-hamburger-icon:hover .line-1 {
  animation-delay: 0;
}
.c-hamburger-icon:hover .line-2 {
  animation-delay: 0.1s;
}
.c-hamburger-icon:hover .line-3 {
  animation-delay: 0.2s;
}

.c-btn__nomal, .c-btn__recruit, .c-btn__entry, .c-btn__groupco {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 13px;
  transition: background-color 0.1s ease-out, padding-left 0.1s ease-out;
  width: fit-content;
}
.c-btn__nomal::after, .c-btn__recruit::after, .c-btn__entry::after, .c-btn__groupco::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 100%;
  height: 100%;
  left: 0;
  transform: scaleX(0%);
  transform-origin: right;
  transition: transform 0.2s ease;
}
.c-btn__nomal p, .c-btn__recruit p, .c-btn__entry p, .c-btn__groupco p {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
  .c-btn__nomal p, .c-btn__recruit p, .c-btn__entry p, .c-btn__groupco p {
    font-size: 1.6rem;
  }
}
.c-btn__nomal-arrow, .c-btn__entry-arrow, .c-btn__groupco-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.1s ease-out;
  z-index: 1;
}
.c-btn__nomal-arrow::before, .c-btn__entry-arrow::before, .c-btn__groupco-arrow::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  left: 12px;
  transform: translateX(0%) rotate(45deg);
  transition: transform 0.1s ease-out;
}
.c-btn__nomal-arrow::after, .c-btn__entry-arrow::after, .c-btn__groupco-arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  left: 12px;
  transform: translateX(-1000%) rotate(45deg);
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 991px) {
  .c-btn__nomal-arrow, .c-btn__entry-arrow, .c-btn__groupco-arrow {
    width: 30px;
    height: 30px;
  }
  .c-btn__nomal-arrow::before, .c-btn__entry-arrow::before, .c-btn__groupco-arrow::before {
    left: 9px;
    width: 6px;
    height: 6px;
  }
  .c-btn__nomal-arrow::after, .c-btn__entry-arrow::after, .c-btn__groupco-arrow::after {
    left: 9px;
    width: 6px;
    height: 6px;
  }
}
.c-btn__nomal:hover, .c-btn__recruit:hover, .c-btn__entry:hover, .c-btn__groupco:hover {
  column-gap: 0px;
  padding-left: 20px;
}
.c-btn__nomal:hover::after, .c-btn__recruit:hover::after, .c-btn__entry:hover::after, .c-btn__groupco:hover::after {
  transform: scaleX(100%);
  transform-origin: right;
}
.c-btn__nomal:hover p, .c-btn__recruit:hover p, .c-btn__entry:hover p, .c-btn__groupco:hover p {
  color: #0770CE;
  z-index: 1;
}
.c-btn__nomal:hover .c-btn__nomal-arrow, .c-btn__recruit:hover .c-btn__nomal-arrow, .c-btn__nomal:hover .c-btn__entry-arrow, .c-btn__recruit:hover .c-btn__entry-arrow, .c-btn__entry:hover .c-btn__nomal-arrow, .c-btn__entry:hover .c-btn__entry-arrow, .c-btn__nomal:hover .c-btn__groupco-arrow, .c-btn__recruit:hover .c-btn__groupco-arrow, .c-btn__entry:hover .c-btn__groupco-arrow, .c-btn__groupco:hover .c-btn__nomal-arrow, .c-btn__groupco:hover .c-btn__entry-arrow, .c-btn__groupco:hover .c-btn__groupco-arrow {
  background-color: white;
}
.c-btn__nomal:hover .c-btn__nomal-arrow::before, .c-btn__recruit:hover .c-btn__nomal-arrow::before, .c-btn__nomal:hover .c-btn__entry-arrow::before, .c-btn__recruit:hover .c-btn__entry-arrow::before, .c-btn__entry:hover .c-btn__nomal-arrow::before, .c-btn__entry:hover .c-btn__entry-arrow::before, .c-btn__nomal:hover .c-btn__groupco-arrow::before, .c-btn__recruit:hover .c-btn__groupco-arrow::before, .c-btn__entry:hover .c-btn__groupco-arrow::before, .c-btn__groupco:hover .c-btn__nomal-arrow::before, .c-btn__groupco:hover .c-btn__entry-arrow::before, .c-btn__groupco:hover .c-btn__groupco-arrow::before {
  transform: translateX(1000%) rotate(45deg);
  border-top: 2px solid #0770CE;
  border-right: 2px solid #0770CE;
}
.c-btn__nomal:hover .c-btn__nomal-arrow::after, .c-btn__recruit:hover .c-btn__nomal-arrow::after, .c-btn__nomal:hover .c-btn__entry-arrow::after, .c-btn__recruit:hover .c-btn__entry-arrow::after, .c-btn__entry:hover .c-btn__nomal-arrow::after, .c-btn__entry:hover .c-btn__entry-arrow::after, .c-btn__nomal:hover .c-btn__groupco-arrow::after, .c-btn__recruit:hover .c-btn__groupco-arrow::after, .c-btn__entry:hover .c-btn__groupco-arrow::after, .c-btn__groupco:hover .c-btn__nomal-arrow::after, .c-btn__groupco:hover .c-btn__entry-arrow::after, .c-btn__groupco:hover .c-btn__groupco-arrow::after {
  transform: translateX(0%) rotate(45deg);
  border-top: 2px solid #0770CE;
  border-right: 2px solid #0770CE;
}
.c-btn__groupco p {
  font-size: 1.3rem;
  color: #16B475;
  font-weight: 600;
}
.c-btn__groupco-arrow {
  border: 1px solid #16B475;
  width: 15px;
  height: 15px;
}
.c-btn__groupco-arrow::before {
  width: 4px;
  height: 4px;
  border-top: 1px solid #16B475;
  border-right: 1px solid #16B475;
  left: 3px;
  top: 5px;
}
.c-btn__groupco-arrow::after {
  width: 4px;
  height: 4px;
  border-top: 1px solid #16B475;
  border-right: 1px solid #16B475;
  left: 3px;
  top: 5px;
}
.c-btn__groupco:hover {
  padding-left: 0;
  column-gap: 13px;
}
.c-btn__groupco:hover::after {
  background-color: white;
  border-bottom: 1px solid #16B475;
  transform-origin: left;
}
.c-btn__groupco:hover p {
  color: #16B475;
}
.c-btn__groupco:hover .c-btn__groupco-arrow {
  background-color: #16B475;
}
.c-btn__groupco:hover .c-btn__groupco-arrow::before {
  transform: translateX(1000%) rotate(45deg);
  border-top: 1px solid white;
  border-right: 1px solid white;
}
.c-btn__groupco:hover .c-btn__groupco-arrow::after {
  transform: translateX(0%) rotate(45deg);
  border-top: 1px solid white;
  border-right: 1px solid white;
}
.c-btn__entry {
  column-gap: 30px;
  padding: 20px 35px 20px 0px;
}
.c-btn__entry p {
  font-size: clamp(2rem, 3vw, 5rem);
  font-weight: 600;
}
.c-btn__entry-arrow {
  width: clamp(2rem, 3.7vw, 5rem);
  height: clamp(2rem, 3.7vw, 5rem);
  background-color: white;
}
.c-btn__entry-arrow::before {
  width: clamp(0.6rem, 0.9vw, 1.2rem);
  height: clamp(0.6rem, 0.9vw, 1.2rem);
  border-top: 3px solid #0770CE;
  border-right: 3px solid #0770CE;
  left: clamp(0.6rem, 1vw, 1.5rem);
}
.c-btn__entry-arrow::after {
  width: clamp(0.6rem, 0.9vw, 1.2rem);
  height: clamp(0.6rem, 0.9vw, 1.2rem);
  border-top: 3px solid #0770CE;
  border-right: 3px solid #0770CE;
  left: clamp(0.6rem, 1vw, 1.5rem);
}
.c-btn__entry:hover {
  column-gap: 10px;
}
.c-btn__entry:hover::after {
  transform-origin: left;
}
.c-btn__recruit {
  margin: 0 auto;
  width: fit-content;
  margin-top: 60px;
  padding: 10px 0px;
}
.c-btn__recruit p {
  color: #0770CE;
  font-size: 1.6rem;
  font-weight: 600;
}
.c-btn__recruit .exlink {
  width: 2rem;
  height: 2rem;
  border: 2px solid #0770CE;
  position: relative;
}
.c-btn__recruit .exlink .arrow {
  width: 1.6rem;
  height: 1.6rem;
  background-color: white;
  position: relative;
  right: -0.5rem;
  top: -0.5rem;
}
.c-btn__recruit .exlink .arrow::before {
  content: "";
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background-color: #0770CE;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%) rotate(-45deg);
}
.c-btn__recruit .exlink .arrow::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #0770CE;
  border-right: 2px solid #0770CE;
  right: 0.05rem;
  top: 0;
}
.c-btn__recruit:hover {
  padding-left: 0;
  column-gap: 13px;
}
.c-btn__recruit:hover::after {
  background-color: transparent;
  border-bottom: 1px solid #0094FF;
  transform-origin: left;
}
.c-btn__map {
  background-color: white;
  width: 5.6rem;
  height: 2.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 1rem;
  transition: background-color 0.5s ease;
  color: #0770CE;
}
.c-btn__map::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
  right: 8px;
  border-top: 2px solid #0770CE;
  border-right: 2px solid #0770CE;
}
.c-btn__map:hover {
  background-color: transparent;
  border: 1px solid white;
  color: white !important;
}
.c-btn__map:hover::after {
  border-top: 2px solid white;
  border-right: 2px solid white;
  animation: arrowmov 0.7s ease forwards;
}
.c-btn__message {
  background-color: #0094FF;
  max-width: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 10px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .c-btn__message {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
}
.c-btn__message p {
  font-size: 1.4rem;
  color: white;
  line-height: 1.2em;
  font-weight: 500;
}
.c-btn__message p span {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1em;
}
.c-btn__message .speechbubble {
  width: 3.5rem;
  height: 2.6rem;
  background-color: white;
  border-radius: 100%;
  position: relative;
  top: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}
.c-btn__message .speechbubble::before {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 2rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #fff;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.c-btn__message .speechbubble::after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid #0094FF;
  transform: translateX(0%) rotate(45deg);
  border-bottom: 0;
  border-left: 0;
  border-radius: 2px;
}
.c-btn__message:hover .speechbubble {
  transform: scale(1.2);
  animation: bounce 0.5s ease-in-out 1;
  /* アニメーションを適用 */
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(1.1);
  }
}
.c-btn__message:hover .speechbubble::after {
  animation: arrowmov 0.7s ease forwards;
}
@keyframes arrowmov {
  0% {
    transform: translateX(0%) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateX(70%) rotate(45deg);
    opacity: 0;
  }
  51% {
    transform: translateX(-70%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0%) rotate(45deg);
    opacity: 1;
  }
}

.c-photo, .c-photo__topslide, .c-photo__topslide-5, .c-photo__topslide-4, .c-photo__topslide-3, .c-photo__topslide-2, .c-photo__topslide-1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-photo__topslide-1 {
  background-image: url(/recruit/assets/img/front/slide1.jpg);
}
.c-photo__topslide-2 {
  background-image: url(/recruit/assets/img/front/slide2.jpg);
}
.c-photo__topslide-3 {
  background-image: url(/recruit/assets/img/front/slide3.jpg);
}
.c-photo__topslide-4 {
  background-image: url(/recruit/assets/img/front/slide4.jpg);
}
.c-photo__topslide-5 {
  background-image: url(/recruit/assets/img/front/slide5.jpg);
}

.c-modal__open {
  cursor: pointer;
}
.c-modal__window {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(222, 222, 222, 0.6);
  z-index: 111;
  justify-content: center;
  align-items: center;
}
.c-modal__window .overlay {
  position: fixed;
  background: rgba(222, 222, 222, 0.6);
  height: 100%;
  width: 100%;
}
.c-modal__window-container {
  background-color: #0770CE;
  width: 90vw;
  height: 90dvh;
  position: relative;
  overflow: scroll;
}
.c-modal__window-container::-webkit-scrollbar {
  display: none;
}
.c-modal__window-container.passive {
  display: none;
}
.c-modal__window-container.active {
  display: flex;
}
.c-modal__close {
  cursor: pointer;
}
.c-modal__close.icon {
  width: 50px;
  height: 50px;
  background: #1458B9;
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-modal__close.icon::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  background-color: white;
  transform: rotate(45deg);
}
.c-modal__close.icon::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  background-color: white;
  transform: rotate(-45deg);
}

.scroll-fade {
  opacity: 0;
  visibility: hidden;
  transform: translate(-200px, 0px);
  transition: transform 0.5s, opacity 1s ease;
}
.scroll-fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}

.top-scroll-fadein, .mv-second-scroll-fade {
  opacity: 0;
  visibility: hidden;
  transform: translate(-200px, 0px);
}

.c-animatiion-svgmask {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='2686.28' height='400'><path d='M1041.13,129.62c29.89,0,55.42,18.65,65.62,44.93h132.78C1227.03,76.11,1142.97,0,1041.13,0,930.67,0,841.13,89.54,841.13,200s89.54,200,200,200c101.84,0,185.9-76.11,198.4-174.56h-132.78c-10.2,26.29-35.72,44.94-65.62,44.94-38.87,0-70.38-31.51-70.38-70.38s31.51-70.38,70.38-70.38ZM661.13,400h160V0h-160v400ZM1481.13,120h-60V0h-160v400h160v-120h60v120h160V0h-160v120ZM481.13,115.54L392.42,1.73l-.42.32V0h-160v400h160v-121.18l89.13,114.34v6.84h160V0h-160v115.54ZM2544.1,0h-166.01l-142.18,400h160l7.76-21.84h114.83l7.76,21.84h160L2544.1,0ZM2443.74,265.47l17.36-48.84,17.36,48.84h-34.72ZM2061.13,120h-60V0h-160v400h160v-120h60v120h160V0h-160v120ZM1661.13,400h160V0h-160v400Z'/></svg>");
  mask-repeat: repeat-x;
  mask-position: 0vw 46%;
  mask-size: 150vw;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
  mask-composite: add;
  background-color: #9cabb2;
  min-height: 100dvh;
  transition: mask-size ease-in;
}
@media screen and (max-width: 1470px) {
  .c-animatiion-svgmask {
    mask-size: 191vw;
  }
}
@media screen and (max-width: 640px) {
  .c-animatiion-svgmask {
    mask-size: 250vw;
    mask-position: 0vw 39%;
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}
@media screen and (max-width: 991px) {
  .swiper-wrapper {
    height: 60%;
  }
}

.p-intro__logo {
  position: absolute;
  top: 25px;
  left: 35px;
  width: 50%;
  z-index: 9;
  transition: opacity 0.5s ease;
}
.p-intro__logo:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-intro__logo {
    top: 20px;
    left: 22px;
    width: 331px;
  }
}
.p-intro__logo_n {
  position: absolute;
  bottom: 0;
  right: calc(50% - 72px);
  width: 60.8345534407%;
  max-width: 831px;
  text-align: right;
  z-index: 2;
}
.p-intro__logo_n img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-intro__logo_n {
    bottom: auto;
    top: calc(66% - 314px);
    right: auto;
    left: 43%;
    transform: translateX(-50%);
    width: 438px;
  }
}
.p-intro__img_topleft {
  position: absolute;
  top: 0;
  left: 0;
  width: 56.8814055637%;
  max-width: 777px;
}
.p-intro__img_topleft img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-intro__img_topleft {
    width: 375px;
  }
}
.p-intro__img_topright {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.2884333821%;
  max-width: 564px;
  text-align: right;
  z-index: 7;
}
.p-intro__img_topright img {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-intro__img_topright {
    width: 161px;
    top: 40%;
    clip-path: polygon(0 39%, 100% 13%, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 540px) {
  .p-intro__img_topright {
    clip-path: polygon(0 26%, 100% 13%, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 430px) {
  .p-intro__img_topright {
    clip-path: polygon(0 48%, 100% 11%, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 375px) {
  .p-intro__img_topright {
    clip-path: polygon(0 38%, 100% 9%, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 360px) {
  .p-intro__img_topright {
    clip-path: polygon(0 38%, 100% 9%, 100% 100%, 0 100%);
  }
}
.p-intro__img_bottomleft {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 61.3469985359%;
  max-width: 838px;
  text-align: right;
  z-index: 9;
}
.p-intro__img_bottomleft img {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-intro__img_bottomleft {
    right: auto;
    left: 0;
    width: 375px;
  }
}
.p-intro__cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -5px;
  width: 100%;
  max-width: 376px;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .p-intro__cnt {
    max-width: 230px;
  }
}
.p-intro__cnt .ttl {
  text-align: center;
  font-size: 1.7rem;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-intro__cnt .ttl .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__cnt .ttl {
    font-size: 1.6rem;
    line-height: 24px;
  }
}
.p-intro__cnt .btn {
  position: relative;
  display: block;
  margin-top: 15px;
  height: 80px;
  background: #46B1FF;
  border-radius: 80px;
  padding-top: 12px;
  padding-right: 20px;
  text-align: center;
  color: #fff;
  font-size: 3.5rem;
  line-height: 50px;
  letter-spacing: -0.03em;
  font-weight: 700;
  transition: opacity 0.5s ease;
}
.p-intro__cnt .btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -8px;
  width: 8px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.11' height='15.791' viewBox='0 0 8.11 15.791'%3E%3Cg id='Group_3053' data-name='Group 3053' transform='translate(-730.074 -563.395)'%3E%3Cg id='Group_3043' data-name='Group 3043' transform='translate(732.179 565.5)'%3E%3Cg id='Group_3046' data-name='Group 3046' transform='translate(0 0)'%3E%3Cpath id='Path_3999' data-name='Path 3999' d='M22.179,12.081l4.505-5.791L22.179.5' transform='translate(-22.179 -0.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.p-intro__cnt .btn.green {
  background: #62C95E;
  padding-right: 0;
  padding-left: 12px;
}
.p-intro__cnt .btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-intro__cnt .btn {
    margin-top: 10px;
    height: 48px;
    padding-top: 7px;
    padding-right: 10px;
    font-size: 2.1rem;
    line-height: 30px;
    letter-spacing: -0.03em;
  }
  .p-intro__cnt .btn:before {
    right: 15px;
    margin-top: -6px;
    width: 6px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.351' height='11.269' viewBox='0 0 6.351 11.269'%3E%3Cg id='Group_3053' data-name='Group 3053' transform='translate(2.105 2.105)'%3E%3Cg id='Group_3043' data-name='Group 3043' transform='translate(0)'%3E%3Cg id='Group_3046' data-name='Group 3046' transform='translate(0 0)'%3E%3Cpath id='Path_3999' data-name='Path 3999' d='M22.179,7.56l2.746-3.53L22.179.5' transform='translate(-22.179 -0.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
}
.p-intro__link_corp {
  position: absolute;
  bottom: 28px;
  left: 42px;
  z-index: 10;
}
.p-intro__link_corp a {
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg id='Group_2045' data-name='Group 2045' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18.282' height='17.882' viewBox='0 0 18.282 17.882'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_247' data-name='Rectangle 247' width='18.282' height='17.882' fill='none' stroke='%23707070' stroke-width='1.5'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_2044' data-name='Group 2044' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_2065' data-name='Path 2065' d='M15.387,6.994v8.168A1.39,1.39,0,0,1,14,16.549H1.886A1.39,1.39,0,0,1,.5,15.163V3.048A1.39,1.39,0,0,1,1.886,1.662h8.687' transform='translate(0.193 0.641)' fill='none' stroke='%23fff' stroke-miterlimit='10' stroke-width='1.5'/%3E%3Cline id='Line_1' data-name='Line 1' x1='7.909' y2='8.077' transform='translate(9.37 1.129)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3Cpath id='Path_2066' data-name='Path 2066' d='M13.666,3.664,13.605.486,10.427.425' transform='translate(4.026 0.164)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 27px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: -0.1em;
  font-weight: 700;
  transition: opacity 0.5s ease;
}
.p-intro__link_corp a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-intro__link_corp {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-intro__link_corp a {
    font-size: 1.2rem;
    letter-spacing: -0.1em;
  }
}
.p-intro__comingsoon {
  position: absolute;
  bottom: 68px;
  right: 50px;
  color: #fff;
  font-size: 5.9rem;
  letter-spacing: 0;
  font-weight: 900;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .p-intro__comingsoon {
    bottom: 80px;
    right: 0;
    width: 100%;
    text-align: center;
    font-size: 3.9rem;
  }
}

.p-front__row, .p-front__row-re {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 40px;
  position: relative;
  transition: transform 0.5s, opacity 1s ease;
}
@media screen and (max-width: 640px) {
  .p-front__row, .p-front__row-re {
    flex-direction: column;
    row-gap: 50px;
  }
}
.p-front__row-re {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .p-front__row-re {
    flex-direction: column;
  }
}
.p-front__row .mv-second, .p-front__row-re .mv-second {
  transition: transform 0.5s, opacity 1s ease;
}
.p-front__pic {
  width: 65%;
  position: relative;
  column-gap: 40px;
  z-index: 1;
}
.p-front__pic-wrap {
  min-width: clamp(350px, 52vw, 900px);
}
@media screen and (max-width: 640px) {
  .p-front__pic {
    width: 75%;
  }
}
.p-front__typo, .p-front__typo-development, .p-front__typo-team, .p-front__typo-manufacturing, .p-front__typo-mind {
  position: absolute;
}
@media screen and (max-width: 640px) {
  .p-front__typo, .p-front__typo-development, .p-front__typo-team, .p-front__typo-manufacturing, .p-front__typo-mind {
    bottom: auto !important;
    width: 110% !important;
    top: 53vw;
  }
}
.p-front__typo-mind {
  width: 66%;
  right: 0;
  bottom: 0;
}
.p-front__typo-manufacturing {
  width: 66%;
}
.p-front__typo-team {
  width: 66%;
  bottom: 0;
}
.p-front__typo-development {
  width: 66%;
}
.p-front__textwrap, .p-front__textwrap-sec2 {
  min-width: 52%;
  z-index: 1;
  row-gap: 44px;
  display: flex;
  flex-direction: column;
  padding-right: 11vw;
}
@media screen and (max-width: 991px) {
  .p-front__textwrap, .p-front__textwrap-sec2 {
    padding-right: 9vw;
  }
}
@media screen and (max-width: 640px) {
  .p-front__textwrap, .p-front__textwrap-sec2 {
    padding-left: 9vw;
    row-gap: 30px;
  }
}
.p-front__textwrap-sec2 {
  min-width: 50%;
  padding-right: 0vw;
  padding-left: 9vw;
}
@media screen and (max-width: 640px) {
  .p-front__textwrap-sec2 {
    padding-right: 9vw;
  }
}
.p-front__textwrap h2, .p-front__textwrap-sec2 h2 {
  font-size: clamp(2.7rem, 3.65vw, 5rem);
  line-height: 1.5em;
  color: white;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .p-front__textwrap h2, .p-front__textwrap-sec2 h2 {
    font-size: clamp(2.6rem, 7.3vw, 5rem);
  }
}
.p-front__textwrap p, .p-front__textwrap-sec2 p {
  color: white;
}
.p-front__mv {
  position: sticky;
  min-height: 100dvh;
  width: 100%;
  z-index: 1;
  background-color: white;
  top: 0px;
  opacity: 0;
  transition: opacity 1s;
}
.p-front__mv-first {
  position: absolute;
  background-color: white;
  height: 100dvh;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}
.p-front__mv-second {
  position: relative;
  background-color: #0770CE;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-front__mv-second {
    padding: 70px 0px;
    height: auto;
  }
}
.p-front__mv-nonemask {
  position: fixed;
  bottom: 5dvh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  column-gap: 30px;
  z-index: 1;
}
.p-front__mv-nonemask h1 {
  font-size: clamp(3rem, 2.6vw, 4.5rem);
  line-height: 1.57em;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .p-front__mv-nonemask h1 {
    font-size: clamp(2rem, 5.5vw, 5.5rem);
  }
}
.p-front__mv-nonemask-news {
  display: flex;
  column-gap: 15px;
  max-width: 43%;
}
.p-front__mv-nonemask-news .icon {
  color: #0770CE;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border: 1.5px solid #0770CE;
  width: fit-content;
  height: 25px;
  padding: 5px 13px 2px;
  font-weight: 800;
  display: flex;
  align-items: center;
}
.p-front__mv-nonemask-news .detail-wrap {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 640px) {
  .p-front__mv-nonemask-news .detail-wrap {
    flex-direction: column;
  }
}
.p-front__mv-nonemask-news .detail-wrap .detail {
  font-weight: 600;
  position: relative;
}
.p-front__mv-nonemask-news .detail-wrap .detail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #0770CE;
  bottom: -5px;
  left: 0;
  transform: scaleX(0%);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.p-front__mv-nonemask-news .detail-wrap .detail:hover::after {
  transform: scaleX(100%);
}
.p-front__mv-nonemask-news .detail-wrap .detail:hover a {
  color: #0770CE;
}
@media screen and (max-width: 480px) {
  .p-front__mv-nonemask-news .detail-wrap .detail {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 991px) {
  .p-front__mv-nonemask-news {
    max-width: initial;
  }
}
@media screen and (max-width: 991px) {
  .p-front__mv-nonemask {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 23px;
  }
}
@media screen and (max-width: 480px) {
  .p-front__mv-nonemask {
    row-gap: 10vw;
  }
}
.p-front__entry {
  display: flex;
  column-gap: clamp(20px, 3vw, 50px);
  position: relative;
  transition: transform 0.5s, opacity 1s ease;
}
@media screen and (max-width: 640px) {
  .p-front__entry {
    align-items: center;
    flex-direction: column;
    row-gap: 35px;
  }
}
.p-front__entry-typo {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .p-front__entry-typo {
    width: 80%;
  }
}
.p-front__entry-btnwrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  position: relative;
  justify-content: space-between;
}
.p-front__entry-btnwrap-line {
  border: 1px solid white;
  width: 100%;
  position: relative;
}
.p-front__entry-btnwrap-line::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  border-top: 1.5px solid white;
  right: 0;
  transform: rotate(36deg);
  transform-origin: center right;
}
@media screen and (max-width: 640px) {
  .p-front__entry-btnwrap {
    width: 80%;
  }
}

.p-page__about-businessimg {
  display: flex;
  column-gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-page__about-businessimg .col, .p-page__about-businessimg .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__about-businessimg .forwardarrow {
  padding: 0px;
}
.p-page__about-company {
  row-gap: 20px;
  display: flex;
  flex-direction: column;
}
.p-page__about-company-itemwrap {
  display: flex;
  column-gap: 40px;
}
@media screen and (max-width: 640px) {
  .p-page__about-company-itemwrap {
    flex-direction: column;
  }
}
.p-page__about-company-itemwrap .item {
  min-width: 100px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .p-page__about-company-itemwrap .item {
    justify-content: flex-start;
  }
}
.p-page__about-company-itemwrap .detail {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.p-page__about-company-itemwrap .detail-wrap, .p-page__about-company-itemwrap .detail-wrap-2 {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-page__about-company-itemwrap .detail-wrap, .p-page__about-company-itemwrap .detail-wrap-2 {
    column-gap: 10px;
  }
}
.p-page__about-company-itemwrap .detail-wrap-2 {
  align-items: flex-start;
}
.p-page__about-company-itemwrap .detail-wrap .kind, .p-page__about-company-itemwrap .detail-wrap-2 .kind {
  min-width: 55px;
  border: 1px solid white;
  padding: 3px;
  text-align: center;
}
.p-page__about-base {
  overflow: hidden;
}
.p-page__about-base-row {
  display: flex;
  flex-direction: column;
}
.p-page__about-base-row-detailflame {
  margin-bottom: calc(clamp(80px, 30vw, 450px) * -1);
  position: absolute;
  min-height: 300px;
  width: fit-content;
  max-width: 70%;
}
@media screen and (max-width: 640px) {
  .p-page__about-base-row-detailflame {
    margin-bottom: 22px;
    position: relative;
    min-height: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-page__about-base-row-detailflame {
    max-width: 100%;
  }
}
.p-page__about-base-row-detailflame .basedetail {
  position: absolute;
  display: flex;
  padding: clamp(20px, 3vw, 40px);
  width: fit-content;
  column-gap: 20px;
  max-width: 570px;
  justify-content: space-between;
  transition: opacity 1s ease;
}
.p-page__about-base-row-detailflame .basedetail.base {
  background-color: #0770CE;
}
.p-page__about-base-row-detailflame .basedetail.group {
  background-color: #16B475;
}
.p-page__about-base-row-detailflame .basedetail.group .c-btn__map {
  color: #16B475;
}
.p-page__about-base-row-detailflame .basedetail.group .c-btn__map::after {
  border-top: 2px solid #16B475;
  border-right: 2px solid #16B475;
}
@media screen and (max-width: 991px) {
  .p-page__about-base-row-detailflame .basedetail {
    row-gap: 30px;
    width: 50vw;
    flex-direction: row;
  }
}
@media screen and (max-width: 640px) {
  .p-page__about-base-row-detailflame .basedetail {
    width: 100%;
    flex-direction: column;
    max-width: 320px;
  }
}
.p-page__about-base-row-detailflame .basedetail .wrap h4 {
  font-size: 1.9rem;
  color: white;
}
@media screen and (max-width: 640px) {
  .p-page__about-base-row-detailflame .basedetail .wrap h4 {
    font-size: 1.6rem;
  }
}
.p-page__about-base-row-detailflame .basedetail .wrap p {
  margin-bottom: 20px !important;
  color: white;
}
.p-page__about-base-row-detailflame .basedetail .pic {
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-page__about-base-row-detailflame .basedetail .pic {
    width: 65%;
  }
}
@media screen and (max-width: 640px) {
  .p-page__about-base-row-detailflame .basedetail .pic {
    width: 100%;
    aspect-ratio: 1.5;
  }
}
.p-page__about-base-row-detailflame .basedetail .pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-page__about-base-row-detailflame .basedetail.active {
  visibility: visible;
  opacity: 1;
  position: relative;
}
.p-page__about-base-row-detailflame .basedetail.passive {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.p-page__about-base-row-basemap {
  width: clamp(80px, 60vw, 900px);
  margin-left: auto;
  position: relative;
  display: flex;
}
@media screen and (max-width: 991px) {
  .p-page__about-base-row-basemap {
    width: clamp(80px, 90vw, 647px);
  }
}
@media screen and (max-width: 640px) {
  .p-page__about-base-row-basemap {
    margin-right: auto;
    width: 120%;
    left: -10%;
    margin-top: -14vw;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-page__about-base-row-basemap {
    margin-top: -6vw;
  }
}
.p-page__about-base-row-basemap svg {
  height: auto;
}
.p-page__about-base-row .txtwrap {
  max-width: 213px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .p-page__about-base-row .txtwrap {
    position: relative;
    margin-bottom: -118px;
  }
}
.p-page__about-base-row .txtwrap p {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-left: 1.7rem;
  line-height: 1.75em;
}
@media screen and (max-width: 991px) {
  .p-page__about-base-row .txtwrap p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-page__about-base-row .txtwrap p {
    font-size: 1.3rem;
  }
}
.p-page__about-base-row .txtwrap p::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #16B475;
  border-radius: 100%;
  left: 0;
}
@media screen and (max-width: 991px) {
  .p-page__about-base-row .txtwrap p::before {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.p-page__about-base-row .txtwrap p.annotation {
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 0rem;
  margin-top: 13px !important;
}
.p-page__about-base-row .txtwrap p.annotation::before {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-page__about-base-row .txtwrap p.annotation {
    font-size: 1.2rem;
  }
}
.p-page__about-base-row .txtwrap p:first-child::before {
  background-color: #0094FF;
}
.p-page__about-group, .p-page__job-dept .row-ovs, .p-page__job-dept .row-sale, .p-page__job-dept .row-product, .p-page__job-dept .row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.p-page__about-group .col, .p-page__about-group .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__about-group .forwardarrow, .p-page__job-dept .row-ovs .col, .p-page__job-dept .row-ovs .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow, .p-page__job-dept .row-sale .col, .p-page__job-dept .row-sale .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-sale .forwardarrow, .p-page__job-dept .row-product .col, .p-page__job-dept .row-product .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-product .forwardarrow, .p-page__job-dept .row .col, .p-page__job-dept .row .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row .forwardarrow {
  width: calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .p-page__about-group .col, .p-page__about-group .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__about-group .forwardarrow, .p-page__job-dept .row-ovs .col, .p-page__job-dept .row-ovs .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow, .p-page__job-dept .row-sale .col, .p-page__job-dept .row-sale .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-sale .forwardarrow, .p-page__job-dept .row-product .col, .p-page__job-dept .row-product .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-product .forwardarrow, .p-page__job-dept .row .col, .p-page__job-dept .row .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row .forwardarrow {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .p-page__about-group .col, .p-page__about-group .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__about-group .forwardarrow, .p-page__job-dept .row-ovs .col, .p-page__job-dept .row-ovs .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow, .p-page__job-dept .row-sale .col, .p-page__job-dept .row-sale .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-sale .forwardarrow, .p-page__job-dept .row-product .col, .p-page__job-dept .row-product .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-product .forwardarrow, .p-page__job-dept .row .col, .p-page__job-dept .row .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row .forwardarrow {
    width: 100%;
  }
}
.p-page__about-group .col h3, .p-page__about-group .p-page__job-flow .col .forwardarrow h3, .p-page__job-flow .col .p-page__about-group .forwardarrow h3, .p-page__job-dept .row-ovs .col h3, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow h3, .p-page__job-dept .row-sale .col h3, .p-page__job-flow .col .p-page__job-dept .row-sale .forwardarrow h3, .p-page__job-dept .row-product .col h3, .p-page__job-flow .col .p-page__job-dept .row-product .forwardarrow h3, .p-page__job-dept .row .col h3, .p-page__job-flow .col .p-page__job-dept .row .forwardarrow h3 {
  margin-bottom: 10px !important;
}
.p-page__about-group-itemwrap {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
  margin-bottom: 19px;
}
.p-page__about-group-itemwrap .wrap {
  display: flex;
  column-gap: 10px;
}
.p-page__about-group-itemwrap .wrap .item {
  font-size: 1.2rem;
  min-width: 60px;
  height: 25px;
  display: flex;
  font-weight: 600;
  background-color: #16B475;
  color: white;
  align-items: center;
  justify-content: center;
}
.p-page__about-group-itemwrap .wrap .detail {
  position: relative;
  top: 1px;
}
.p-page__job-dept {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 85px;
}
.p-page__job-dept .occ {
  width: 64px;
  color: #0770CE;
  border: 1px solid #0770CE;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px !important;
}
.p-page__job-dept .row .col, .p-page__job-dept .row .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row .forwardarrow {
  justify-content: flex-start;
}
.p-page__job-dept .row-product .col, .p-page__job-dept .row-product .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-product .forwardarrow {
  padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .p-page__job-dept .row-product .col, .p-page__job-dept .row-product .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-product .forwardarrow {
    padding-bottom: 30px;
  }
}
.p-page__job-dept .row-sale {
  width: calc((100% - 40px) / 3 * 2 + 20px);
}
.p-page__job-dept .row-sale .col, .p-page__job-dept .row-sale .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-sale .forwardarrow {
  width: calc((100% - 20px) / 2);
  justify-content: flex-start;
  padding-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .p-page__job-dept .row-sale {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .p-page__job-dept .row-sale .col, .p-page__job-dept .row-sale .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-sale .forwardarrow {
    width: 100%;
    padding-bottom: 30px;
  }
}
.p-page__job-dept .row-ovs {
  width: calc((100% - 40px) / 3);
  align-content: flex-start;
}
.p-page__job-dept .row-ovs .col, .p-page__job-dept .row-ovs .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow {
  width: 100%;
  justify-content: flex-start;
  height: calc(100% - 60px);
  padding-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .p-page__job-dept .row-ovs {
    width: 100%;
  }
  .p-page__job-dept .row-ovs .col, .p-page__job-dept .row-ovs .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .p-page__job-dept .row-ovs .col, .p-page__job-dept .row-ovs .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-dept .row-ovs .forwardarrow {
    width: 100%;
    padding-bottom: 30px;
  }
}
.p-page__job-interview {
  position: relative;
  align-items: center;
}
.p-page__job-interview .bg {
  position: absolute;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .p-page__job-interview .bg {
    height: 64vw;
  }
}
@media screen and (max-width: 640px) {
  .p-page__job-interview .bg {
    height: 80.5vw;
    top: 0;
  }
}
.p-page__job-interview .bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.p-page__job-interview .inner {
  position: relative;
  height: 100%;
  width: 80%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-page__job-interview .inner {
    align-items: flex-end;
    padding-bottom: 10vw;
  }
}
@media screen and (max-width: 640px) {
  .p-page__job-interview .inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 45px;
  }
}
.p-page__job-interview .pic {
  position: absolute;
  height: 100%;
  left: -50%;
  right: 0;
  margin: 0 auto;
  aspect-ratio: 0.9;
  top: 0;
}
@media screen and (max-width: 991px) {
  .p-page__job-interview .pic {
    left: -85%;
  }
}
@media screen and (max-width: 640px) {
  .p-page__job-interview .pic {
    position: relative;
    left: auto;
    left: -36%;
  }
}
.p-page__job-interview .pic img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.p-page__job-interview .col, .p-page__job-interview .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-interview .forwardarrow {
  width: fit-content;
  z-index: 1;
  width: 50% !important;
  margin-left: auto;
  min-width: 390px;
}
@media screen and (max-width: 991px) {
  .p-page__job-interview .col, .p-page__job-interview .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-interview .forwardarrow {
    min-width: 47vw;
    width: 55% !important;
  }
}
@media screen and (max-width: 640px) {
  .p-page__job-interview .col, .p-page__job-interview .p-page__job-flow .col .forwardarrow, .p-page__job-flow .col .p-page__job-interview .forwardarrow {
    min-width: inherit;
    width: 100% !important;
    margin-top: -92px;
    padding-bottom: 10vw;
  }
}
.p-page__job-interview .lead {
  font-size: clamp(2rem, 2.4vw, 4.5rem);
  line-height: 2.2em;
  margin-bottom: 40px !important;
  font-weight: 600;
  color: #0770CE;
}
.p-page__job-interview .lead span {
  background-color: #fff;
  padding: 8px 30px 10px;
}
@media screen and (max-width: 640px) {
  .p-page__job-interview .lead span {
    padding: 8px 15px 10px;
  }
}
.p-page__job-interview .dept {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 5px !important;
  margin-bottom: 10px !important;
}
@media screen and (max-width: 991px) {
  .p-page__job-interview .dept {
    font-size: 1.7rem;
  }
}
.p-page__job-interview .name {
  font-size: 6.5rem;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 20px !important;
}
@media screen and (max-width: 640px) {
  .p-page__job-interview .name {
    font-size: 5.5rem;
  }
}
.p-page__job-interview .txt {
  max-width: 650px;
  font-size: 1.5rem;
  line-height: 1.9em;
}
@media screen and (max-width: 991px) {
  .p-page__job-interview .txt {
    font-size: 1.4rem;
  }
}
.p-page__job-interview p {
  color: white;
}
.p-page__job-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  --gap: 50px;
  column-gap: var(--gap);
  row-gap: var(--gap);
}
@media screen and (max-width: 640px) {
  .p-page__job-flow {
    --gap: 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-page__job-flow {
    --gap: 90px;
  }
}
.p-page__job-flow h4 {
  font-size: 2.7rem;
  margin-bottom: 0px !important;
  line-height: 1em;
  margin-bottom: 31px !important;
  margin-top: 16px !important;
  text-align: center;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-page__job-flow h4 span {
  font-weight: 400;
  font-size: 1.6rem;
}
.p-page__job-flow .num {
  font-size: 2.5rem;
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 0px 13px;
  position: relative;
  top: -13px;
}
.p-page__job-flow .col, .p-page__job-flow .col .forwardarrow {
  background-color: transparent;
  position: relative;
  border: 1px solid white;
  border-top: 0px;
  padding: 0px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  min-width: 180px;
  width: calc((100% - var(--gap) * 3) / 4);
}
.p-page__job-flow .col::before, .p-page__job-flow .col .forwardarrow::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  top: 48.5%;
  transform: rotate(45deg);
  right: calc(var(--gap) * -1);
}
@media screen and (max-width: 480px) {
  .p-page__job-flow .col::before, .p-page__job-flow .col .forwardarrow::before {
    top: auto;
    bottom: calc((var(--gap) - 25px) * -1);
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(135deg);
  }
}
.p-page__job-flow .col::after, .p-page__job-flow .col .forwardarrow::after {
  content: "";
  position: absolute;
  height: 1px;
  width: var(--gap);
  background-color: white;
  right: calc(var(--gap) * -1);
  top: 50%;
}
@media screen and (max-width: 480px) {
  .p-page__job-flow .col::after, .p-page__job-flow .col .forwardarrow::after {
    width: 1px;
    height: calc(var(--gap) - 25px);
    top: auto;
    bottom: calc((var(--gap) - 25px) * -1);
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.p-page__job-flow .col:last-child::after, .p-page__job-flow .col .forwardarrow:last-child::after {
  display: none;
}
.p-page__job-flow .col:last-child::before, .p-page__job-flow .col .forwardarrow:last-child::before {
  display: none;
}
.p-page__job-flow .col .border-top {
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0;
}
.p-page__job-flow .col .border-top::after {
  content: "";
  position: absolute;
  border-top: 1px solid white;
  top: 0;
  left: 0;
  width: 40%;
}
.p-page__job-flow .col .border-top::before {
  content: "";
  position: absolute;
  border-top: 1px solid white;
  top: 0;
  right: 0;
  width: 40%;
  transform: rotate(0);
}
.p-page__job-flow .col .forwardarrow {
  width: 100%;
  height: 100%;
  position: absolute;
  border: 0;
}
.p-page__job-flow .col .forwardarrow::before {
  left: -10px;
  right: auto;
}
.p-page__job-flow .col .forwardarrow::after {
  left: calc(var(--gap) * -1);
  right: auto;
}
@media screen and (max-width: 480px) {
  .p-page__job-flow .col .forwardarrow {
    display: none;
  }
}
.p-page__job-flow .col:nth-child(1) .forwardarrow, .p-page__job-flow .col .forwardarrow:nth-child(1) .forwardarrow {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-page__job-flow .col, .p-page__job-flow .col .forwardarrow {
    min-width: 160px;
    padding: 0px 20px 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-page__job-flow .col, .p-page__job-flow .col .forwardarrow {
    width: 100%;
  }
}
.p-page__workstyle-hcm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .p-page__workstyle-hcm {
    flex-direction: column;
    row-gap: 38px;
  }
}
.p-page__workstyle-hcm-left, .p-page__workstyle-hcm-right {
  width: 45.5%;
}
.p-page__workstyle-hcm-left h3, .p-page__workstyle-hcm-right h3 {
  text-align: center;
  font-size: 3rem;
  color: #0770CE;
  position: relative;
  position: relative;
  margin-bottom: 44px !important;
}
.p-page__workstyle-hcm-left h3::before, .p-page__workstyle-hcm-right h3::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #0770CE;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -18px;
}
.p-page__workstyle-hcm-left p, .p-page__workstyle-hcm-right p {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.75em;
}
@media screen and (max-width: 640px) {
  .p-page__workstyle-hcm-left p, .p-page__workstyle-hcm-right p {
    font-size: 1.6rem;
  }
}
.p-page__workstyle-hcm-left p.annotation, .p-page__workstyle-hcm-right p.annotation {
  font-size: 1.4rem;
}
@media screen and (max-width: 640px) {
  .p-page__workstyle-hcm-left p.annotation, .p-page__workstyle-hcm-right p.annotation {
    font-size: 1.2rem;
  }
}
.p-page__workstyle-hcm-left .pointwrap, .p-page__workstyle-hcm-right .pointwrap {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.p-page__workstyle-hcm-left .pointwrap p, .p-page__workstyle-hcm-right .pointwrap p {
  color: white;
  font-size: 1.6rem;
  background-color: #0770CE;
  padding: 15px;
  max-width: 140px;
  min-width: 115px;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 640px) {
  .p-page__workstyle-hcm-left .pointwrap p, .p-page__workstyle-hcm-right .pointwrap p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .p-page__workstyle-hcm-left, .p-page__workstyle-hcm-right {
    width: 100%;
  }
}
.p-page__workstyle-hcm-right h3 {
  color: #16B475;
}
.p-page__workstyle-hcm-right h3::before {
  background-color: #16B475;
}
.p-page__workstyle-hcm-right .pointwrap p {
  background-color: #16B475;
}
.p-page__workstyle-hcm-multiplied {
  width: 9%;
  aspect-ratio: 1;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(45deg);
}
.p-page__workstyle-hcm-multiplied::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: black;
}
.p-page__workstyle-hcm-multiplied::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: black;
}
.p-page__workstyle-dev, .p-page__workstyle-att, .p-page__workstyle-policy {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.p-page__workstyle-dev h3, .p-page__workstyle-att h3, .p-page__workstyle-policy h3 {
  position: relative;
  padding-left: 22px;
}
.p-page__workstyle-dev h3::after, .p-page__workstyle-att h3::after, .p-page__workstyle-policy h3::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #0094FF;
  left: 0;
  top: 9px;
}
@media screen and (max-width: 991px) {
  .p-page__workstyle-dev h3, .p-page__workstyle-att h3, .p-page__workstyle-policy h3 {
    display: flex;
    align-items: center;
  }
  .p-page__workstyle-dev h3::after, .p-page__workstyle-att h3::after, .p-page__workstyle-policy h3::after {
    top: auto;
  }
}
.p-page__workstyle-dev .row, .p-page__workstyle-att .row, .p-page__workstyle-policy .row {
  display: flex;
  column-gap: 50px;
}
.p-page__workstyle-dev .row .txt, .p-page__workstyle-att .row .txt, .p-page__workstyle-policy .row .txt {
  width: calc(32.5% - 50px);
}
.p-page__workstyle-dev .row .figure, .p-page__workstyle-att .row .figure, .p-page__workstyle-policy .row .figure {
  width: 67.5%;
}
@media screen and (max-width: 991px) {
  .p-page__workstyle-dev .row, .p-page__workstyle-att .row, .p-page__workstyle-policy .row {
    flex-direction: column;
    row-gap: 38px;
  }
  .p-page__workstyle-dev .row .txt, .p-page__workstyle-att .row .txt, .p-page__workstyle-policy .row .txt {
    width: 100%;
  }
  .p-page__workstyle-dev .row .figure, .p-page__workstyle-att .row .figure, .p-page__workstyle-policy .row .figure {
    width: 100%;
  }
}
.p-page__workstyle-policy {
  row-gap: 40px;
}
.p-page__workstyle-policy .row {
  display: flex;
  column-gap: 100px;
  row-gap: 0px !important;
}
.p-page__workstyle-policy .row h3 {
  max-width: 210px;
  width: calc(32.5% - 50px);
}
.p-page__workstyle-policy .row p {
  width: 67.5%;
}
@media screen and (max-width: 991px) {
  .p-page__workstyle-policy .row {
    flex-direction: column;
    row-gap: 38px;
  }
  .p-page__workstyle-policy .row h3 {
    width: 100%;
    max-width: initial;
  }
  .p-page__workstyle-policy .row p {
    width: 100%;
  }
}
.p-page__workstyle-policy .line {
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
}
.p-page__workstyle-att .row .txt {
  display: flex;
  flex-direction: column;
  row-gap: 70px;
}
.p-page__workstyle-att .row .txt ul {
  padding-left: 23px;
}
.p-page__workstyle-att .row .txt ul li {
  list-style: initial;
  list-style-position: outside;
}
@media screen and (max-width: 991px) {
  .p-page__news, .p-page__entry {
    flex-direction: row;
    column-gap: 50px;
  }
}
@media screen and (max-width: 640px) {
  .p-page__news, .p-page__entry {
    flex-direction: column;
  }
}
.p-page__news-list, .p-page__news-details {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.p-page__news-list .row, .p-page__news-details .row {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 19px;
}
.p-page__news-list .row p, .p-page__news-details .row p {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 640px) {
  .p-page__news-list .row p, .p-page__news-details .row p {
    font-size: 1.5rem;
  }
}
.p-page__news-list .row p a:hover, .p-page__news-details .row p a:hover {
  color: #0770CE;
}
.p-page__news-list .catedatewrap, .p-page__news-details .catedatewrap {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.p-page__news-list .catedatewrap .cate, .p-page__news-details .catedatewrap .cate {
  font-size: 1.4rem;
  color: #0094FF;
  border: 1px solid #0094FF;
  min-width: 75px;
  padding: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-page__news-list .catedatewrap .date, .p-page__news-details .catedatewrap .date {
  font-size: 1.4rem;
  color: #7E7E7B;
}
.p-page__news-list .line, .p-page__news-details .line {
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #bababa;
}
.p-page__news-list-pagination, .p-page__news-details .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  margin-top: 55px;
}
.p-page__news-list-pagination ul, .p-page__news-details .pagination ul {
  display: flex;
  column-gap: 21px;
  justify-content: center;
}
.p-page__news-list-pagination ul li, .p-page__news-details .pagination ul li {
  font-size: 1.5rem;
  position: relative;
  min-width: 15px;
  text-align: center;
  cursor: pointer;
}
.p-page__news-list-pagination ul li.current, .p-page__news-details .pagination ul li.current {
  font-weight: 500;
  position: relative;
  color: #0094FF;
}
.p-page__news-list-pagination ul li.current::after, .p-page__news-details .pagination ul li.current::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #0094FF;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.p-page__news-list-pagination .arrow, .p-page__news-details .pagination .arrow, .p-page__news-list-pagination .arrow-prev, .p-page__news-details .pagination .arrow-prev {
  width: 20px;
  height: 20px;
  border: 1px solid #0094FF;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.2s;
}
.p-page__news-list-pagination .arrow::after, .p-page__news-details .pagination .arrow::after, .p-page__news-list-pagination .arrow-prev::after, .p-page__news-details .pagination .arrow-prev::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 5.5px;
  border-top: 1px solid #0094FF;
  border-right: 1px solid #0094FF;
  transform: rotate(45deg);
}
.p-page__news-list-pagination .arrow:hover, .p-page__news-details .pagination .arrow:hover, .p-page__news-list-pagination .arrow-prev:hover, .p-page__news-details .pagination .arrow-prev:hover {
  opacity: 0.7;
}
.p-page__news-list-pagination .arrow-prev::after, .p-page__news-details .pagination .arrow-prev::after {
  transform: rotate(-135deg);
  left: 8px;
}
.p-page__news-list-pagination .active, .p-page__news-details .pagination .active {
  display: flex;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .p-page__news-list-pagination, .p-page__news-details .pagination {
    margin-top: 20px;
  }
}
.p-page__news-details {
  row-gap: 0px;
}
.p-page__news-details .posttitle {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 37px;
}
.p-page__news-details .posttitle h2 {
  left: 0px;
  line-height: 1.67em;
}
.p-page__news-details .posttitle h2::before {
  display: none;
}
.p-page__news-details .posttitle p {
  margin-bottom: 0px !important;
}
.p-page__news-details .cms-content h1, .p-page__news-details .cms-content h2, .p-page__news-details .cms-content h3, .p-page__news-details .cms-content h4, .p-page__news-details .cms-content h5, .p-page__news-details .cms-content h6 {
  margin-bottom: 0px !important;
}
.p-page__news-details .cms-content h1:not(:first-child), .p-page__news-details .cms-content h2:not(:first-child), .p-page__news-details .cms-content h3:not(:first-child), .p-page__news-details .cms-content h4:not(:first-child), .p-page__news-details .cms-content h5:not(:first-child), .p-page__news-details .cms-content h6:not(:first-child) {
  margin-top: 4em;
}
.p-page__news-details .cms-content h1 + h2:not(:first-child), .p-page__news-details .cms-content h1 + h3:not(:first-child), .p-page__news-details .cms-content h1 + h4:not(:first-child), .p-page__news-details .cms-content h1 + h5:not(:first-child), .p-page__news-details .cms-content h1 + h6:not(:first-child), .p-page__news-details .cms-content h1 + p:not(:first-child), .p-page__news-details .cms-content h1 + ul:not(:first-child), .p-page__news-details .cms-content h1 + ol:not(:first-child), .p-page__news-details .cms-content h1 + figure:not(:first-child), .p-page__news-details .cms-content h1 + table:not(:first-child), .p-page__news-details .cms-content h1 + .mt-be-columns:not(:first-child), .p-page__news-details .cms-content h2 + h2:not(:first-child), .p-page__news-details .cms-content h2 + h3:not(:first-child), .p-page__news-details .cms-content h2 + h4:not(:first-child), .p-page__news-details .cms-content h2 + h5:not(:first-child), .p-page__news-details .cms-content h2 + h6:not(:first-child), .p-page__news-details .cms-content h2 + p:not(:first-child), .p-page__news-details .cms-content h2 + ul:not(:first-child), .p-page__news-details .cms-content h2 + ol:not(:first-child), .p-page__news-details .cms-content h2 + figure:not(:first-child), .p-page__news-details .cms-content h2 + table:not(:first-child), .p-page__news-details .cms-content h2 + .mt-be-columns:not(:first-child), .p-page__news-details .cms-content h3 + h2:not(:first-child), .p-page__news-details .cms-content h3 + h3:not(:first-child), .p-page__news-details .cms-content h3 + h4:not(:first-child), .p-page__news-details .cms-content h3 + h5:not(:first-child), .p-page__news-details .cms-content h3 + h6:not(:first-child), .p-page__news-details .cms-content h3 + p:not(:first-child), .p-page__news-details .cms-content h3 + ul:not(:first-child), .p-page__news-details .cms-content h3 + ol:not(:first-child), .p-page__news-details .cms-content h3 + figure:not(:first-child), .p-page__news-details .cms-content h3 + table:not(:first-child), .p-page__news-details .cms-content h3 + .mt-be-columns:not(:first-child), .p-page__news-details .cms-content h4 + h2:not(:first-child), .p-page__news-details .cms-content h4 + h3:not(:first-child), .p-page__news-details .cms-content h4 + h4:not(:first-child), .p-page__news-details .cms-content h4 + h5:not(:first-child), .p-page__news-details .cms-content h4 + h6:not(:first-child), .p-page__news-details .cms-content h4 + p:not(:first-child), .p-page__news-details .cms-content h4 + ul:not(:first-child), .p-page__news-details .cms-content h4 + ol:not(:first-child), .p-page__news-details .cms-content h4 + figure:not(:first-child), .p-page__news-details .cms-content h4 + table:not(:first-child), .p-page__news-details .cms-content h4 + .mt-be-columns:not(:first-child), .p-page__news-details .cms-content h5 + h2:not(:first-child), .p-page__news-details .cms-content h5 + h3:not(:first-child), .p-page__news-details .cms-content h5 + h4:not(:first-child), .p-page__news-details .cms-content h5 + h5:not(:first-child), .p-page__news-details .cms-content h5 + h6:not(:first-child), .p-page__news-details .cms-content h5 + p:not(:first-child), .p-page__news-details .cms-content h5 + ul:not(:first-child), .p-page__news-details .cms-content h5 + ol:not(:first-child), .p-page__news-details .cms-content h5 + figure:not(:first-child), .p-page__news-details .cms-content h5 + table:not(:first-child), .p-page__news-details .cms-content h5 + .mt-be-columns:not(:first-child), .p-page__news-details .cms-content h6 + h2:not(:first-child), .p-page__news-details .cms-content h6 + h3:not(:first-child), .p-page__news-details .cms-content h6 + h4:not(:first-child), .p-page__news-details .cms-content h6 + h5:not(:first-child), .p-page__news-details .cms-content h6 + h6:not(:first-child), .p-page__news-details .cms-content h6 + p:not(:first-child), .p-page__news-details .cms-content h6 + ul:not(:first-child), .p-page__news-details .cms-content h6 + ol:not(:first-child), .p-page__news-details .cms-content h6 + figure:not(:first-child), .p-page__news-details .cms-content h6 + table:not(:first-child), .p-page__news-details .cms-content h6 + .mt-be-columns:not(:first-child) {
  margin-top: 1.5em !important;
}
.p-page__news-details .cms-content p, .p-page__news-details .cms-content ul, .p-page__news-details .cms-content ol, .p-page__news-details .cms-content figure, .p-page__news-details .cms-content table, .p-page__news-details .cms-content blockquote, .p-page__news-details .cms-content .mt-be-columns {
  margin-bottom: 0px !important;
}
.p-page__news-details .cms-content p:not(:first-child), .p-page__news-details .cms-content ul:not(:first-child), .p-page__news-details .cms-content ol:not(:first-child), .p-page__news-details .cms-content figure:not(:first-child), .p-page__news-details .cms-content table:not(:first-child), .p-page__news-details .cms-content blockquote:not(:first-child), .p-page__news-details .cms-content .mt-be-columns:not(:first-child) {
  margin-top: 3em !important;
}
.p-page__news-details .cms-content figure {
  display: block;
  margin: 0 auto;
}
.p-page__news-details .cms-content figure figcaption {
  text-align: center;
  margin-top: 0.75em;
}
.p-page__news-details .cms-content figure + p:not(:first-child) {
  margin-top: 1.5em !important;
}
.p-page__news-details .cms-content p + p:not(:first-child), .p-page__news-details .cms-content p + figure:not(:first-child), .p-page__news-details .cms-content p + ul:not(:first-child), .p-page__news-details .cms-content p + ol:not(:first-child), .p-page__news-details .cms-content p + table:not(:first-child), .p-page__news-details .cms-content figure + p:not(:first-child), .p-page__news-details .cms-content figure + figure:not(:first-child), .p-page__news-details .cms-content figure + ul:not(:first-child), .p-page__news-details .cms-content figure + ol:not(:first-child), .p-page__news-details .cms-content figure + table:not(:first-child), .p-page__news-details .cms-content ul + p:not(:first-child), .p-page__news-details .cms-content ul + figure:not(:first-child), .p-page__news-details .cms-content ul + ul:not(:first-child), .p-page__news-details .cms-content ul + ol:not(:first-child), .p-page__news-details .cms-content ul + table:not(:first-child), .p-page__news-details .cms-content ol + p:not(:first-child), .p-page__news-details .cms-content ol + figure:not(:first-child), .p-page__news-details .cms-content ol + ul:not(:first-child), .p-page__news-details .cms-content ol + ol:not(:first-child), .p-page__news-details .cms-content ol + table:not(:first-child), .p-page__news-details .cms-content table + p:not(:first-child), .p-page__news-details .cms-content table + figure:not(:first-child), .p-page__news-details .cms-content table + ul:not(:first-child), .p-page__news-details .cms-content table + ol:not(:first-child), .p-page__news-details .cms-content table + table:not(:first-child) {
  margin-top: 1.5em !important;
}
.p-page__news-details .cms-content ul {
  margin: 0 auto 0 0;
  padding-left: 1.6rem;
}
.p-page__news-details .cms-content ul li {
  list-style: unset;
}
.p-page__news-details .cms-content ul li::marker {
  font-weight: 400;
}
.p-page__news-details .cms-content ol {
  margin: 0 auto 0 0;
  padding-left: 1.6rem;
}
.p-page__news-details .cms-content ol li {
  list-style: unset;
}
.p-page__news-details .cms-content ol li::marker {
  font-weight: 400;
}
.p-page__news-details .cms-content table th,
.p-page__news-details .cms-content table td {
  padding: 5px 8px;
}
.p-page__news-details .cms-content a {
  color: #007aff;
  text-decoration: underline;
}
.p-page__news-details .cms-content blockquote {
  padding: 5px 0 5px 16px;
  margin: 0 0 65px 0;
  border-left: 2px solid #ccc;
}
.p-page__news-details .cms-content blockquote p {
  margin-bottom: 0 !important;
}
.p-page__news-details .cms-content .mt-be-columns {
  gap: 30px;
}
@media screen and (max-width: 991px) {
  .p-page__news-details .cms-content .mt-be-columns {
    gap: 3em;
    flex-direction: column;
  }
}
.p-page__news-details .pagination {
  flex-direction: column;
  align-items: inherit;
}
.p-page__news-details .pagination ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0 !important;
  margin-top: 24px;
}
.p-page__news-details .pagination ul li {
  font-size: 1.4rem;
  visibility: hidden;
}
.p-page__news-details .pagination ul li.active {
  visibility: visible;
}
.p-page__news-details .pagination ul a {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.p-page__news-details .pagination .arrow, .p-page__news-details .pagination .arrow-prev {
  display: flex;
  border: 1px solid #4E4E4E;
}
.p-page__news-details .pagination .arrow::after, .p-page__news-details .pagination .arrow-prev::after {
  border-top: 1px solid #4E4E4E;
  border-right: 1px solid #4E4E4E;
}
.p-page__entry-heading {
  margin-bottom: 75px;
}
.p-page__entry .cms-content h3 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  position: relative;
  border-bottom: 1px solid gray;
  padding-bottom: 15px;
  margin-bottom: 0px !important;
  margin-top: 150px !important;
}
.p-page__entry .cms-content h3::after {
  content: "";
  position: absolute;
}
.p-page__entry .cms-content h3::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 80px;
  background-color: #0770CE;
  bottom: -1px;
}
.p-page__entry .cms-content h3:first-child {
  margin-top: -15px !important;
}
@media screen and (max-width: 640px) {
  .p-page__entry .cms-content h3:first-child {
    margin-top: 15px !important;
  }
}
.p-page__entry .cms-content h4 {
  color: #0770CE;
  margin-bottom: 0px !important;
  text-align: justify;
  text-align-last: justify;
}
@media screen and (max-width: 480px) {
  .p-page__entry .cms-content h4 {
    text-align: left;
    text-align-last: left;
  }
}
.p-page__entry .cms-content ul {
  padding-left: 1.6rem;
}
.p-page__entry .cms-content ul li {
  list-style: unset;
}
.p-page__entry .cms-content ul li::marker {
  font-weight: 400;
}
.p-page__entry .cms-content .mt-be-columns {
  display: flex;
  column-gap: clamp(40px, 6.7vw, 90px);
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #bebebe;
}
.p-page__entry .cms-content .mt-be-columns .item {
  min-width: 80px;
}
@media screen and (max-width: 480px) {
  .p-page__entry .cms-content .mt-be-columns {
    flex-direction: column;
    row-gap: 6px;
  }
}
.p-page__entry .recruithide {
  padding-top: 24px;
}
.p-page__entry .recruitbanner {
  margin-top: 60px;
}
.p-page__entry .recruitbanner__ttl {
  text-align: center;
  color: #0770CE;
  font-size: 1.6rem;
  font-weight: 600;
}
.p-page__entry .recruitbanner__img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}
.p-page__entry .recruitbanner__img .eachimg {
  width: calc(50% - 15px);
  max-width: fit-content;
}
@media screen and (max-width: 480px) {
  .p-page__entry .recruitbanner__img .eachimg {
    width: 100%;
  }
}
.p-page__entry .recruitbanner__img .eachimg a:hover {
  opacity: 0.7;
}

.divlink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
}
.photodark {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  top: 0;
}

.kaigyo, .kaigyo-sp, .kaigyo-tab2, .kaigyo-tab1 {
  display: none;
}
@media screen and (max-width: 991px) {
  .kaigyo-tab1 {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .kaigyo-tab2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .kaigyo-sp {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .nokaigyo-tab1 {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .nokaigyo-tab2 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .nokaigyo-sp {
    display: none;
  }
}

.notdisplayed {
  display: none !important;
}