@charset "UTF-8";
/* CSS Document */
/*--------------------
Base
---------------------*/
@font-face {
  font-family: 'Lexend', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
}
body {
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  font-weight: normal;
  color: #333;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  line-height: 1.2;
  letter-spacing: 1px;
}
html {
  font-size: 62.5%; /*16px×62.5%=10px*/
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #333;
  font-size: 1.6rem;
  outline: none;
}
a {
  text-decoration: none;
  display: block;
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-more a:hover, .btn-company a:hover, .service-Adjustment a:hover {
  opacity: 1;
}
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 900;
  background: #182E5B;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 200px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#splash_logo:before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: #182E5B;
  position: absolute;
  top: 0;
  left: 100%;
  animation: loadLogo 1s;
  z-index: 999;
}
@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loadLogo {
  0% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/*========= //LoadingのためのCSS ===============*/
.text-center {
  text-align: center;
}
.bg-lg {
  background-color: #F8F8F8;
}
.bg-gy {
  background-color: #F0F0F0;
}
.bg-wh {
  background-color: #FFF;
}
.bg-bl {
  background-color: #F4F4F4;
  padding-bottom: 10px;
}
.bg-lb {
  background-color: #F0F3F6;
}
.f-gy {
  color: #707070;
}
.sp {
  display: none;
}
.tb {
  display: none;
}
.pointer {
  cursor: pointer;
}
/*--------------------
js用
---------------------*/
/* 画面外にいる状態 */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 2s;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: all 2s;
}
.fadein_left.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}
/*--------------------
ボタン系
---------------------*/
/*トップにあるもの*/
/*コンタクトボタン*/
.btn-contact {
  font-weight: bold;
  color: #182E5B; /*文字色*/
  border: solid 3px #182E5B; /*線*/
  border-radius: 4px; /*角の丸み*/
  margin-top: -5px;
  transition: 0.3s;
  padding: 0;
}
.btn-a {
  margin: 0;
  transition: 0.3s;
  padding: 0 45px;
  letter-spacing: 0.4rem;
}
.btn-contact:hover {
  background-color: #182E5B;
  color: #fff;
}
.btn-a:hover {
  color: #fff;
}
/*Who we areの入りが変わるボタン*/
.btn-more {
  position: absolute;
  right: 20px;
  top: 25%;
}
.btn {
  position: relative;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 240px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #182E5B;
  border: 1px solid #182E5B;
}
.btn-text {
  width: 100%;
  height: 100%;
  color: #182E5B;
  z-index: 10;
}
.btn-text:after {
  position: relative;
  left: 16px;
  content: "\f105";
  font-family: FontAwesome;
}
.btn-text:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #182E5B;
  z-index: -1;
  transition: .2s;
}
.btn-text:hover {
  color: #fff;
}
.btn-text:hover:before {
  width: 100%;
}
.btn-w {
  border: none;
  background-color: #fff;
  color: #182E5B;
  margin-left: 0;
  margin-bottom: 0px;
}
.btn-service {
  margin-left: 55%;
}
/*右左ボタン*/
.btn-l {
  position: relative;
  display: inline-block;
  *display: inline;
  z-index: 1;
  vertical-align: top;
  border: 1px solid #182E5B;
  color: #182E5B;
  text-decoration: none;
  padding: 1px 15px 0;
  line-height: 35px;
}
.btn-r {
  position: relative;
  display: inline-block;
  *display: inline;
  z-index: 1;
  vertical-align: top;
  border: 1px solid #182E5B;
  color: #182E5B;
  text-decoration: none;
  padding: 1px 15px 0;
  line-height: 35px;
}
.btn-l :before {
  position: relative;
  content: "\f104";
  font-family: FontAwesome;
}
.btn-r :before {
  position: relative;
  content: "\f105";
  font-family: FontAwesome;
}
/*プライバシーの閉じるボタン*/
.btn-c {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0%);
  border: 1px solid #182E5B;
  color: #182E5B;
  padding: 1px 30px 0;
  line-height: 35px;
  background-color: #fff;
}
.btn-times {
  font-size: 50px;
  top: 25px;
  left: 98%;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  line-height: 0;
}
/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 60px;
  z-index: 300;
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #182E5B;
  border-radius: 50%;
  line-height: 50px;
}
.pagetop a i {
  font-size: 20px;
  color: #fff;
  line-height: 50px;
}
/*imgが大きくなるホバー*/
.zoom-in-img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.zoom-in-img > a:hover {
  opacity: 1;
}
.zoom-in-img .join-img {
  transform: scale(1);
  transition: .4s ease-in-out;
}
.zoom-in-img:hover .join-img {
  transform: scale(1.2);
}
/*--------------------
header
---------------------*/
/*
  .hero-bg {
	  background-image: url("../img/top/top-1.jpg");
	  max-width: 100%;
 	 height: auto;
	  background-position: center center;
	  background-size: cover;
	  background-attachment: fixed;
  }
*/
.hero-bg::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-image: url("../img/top/top-1.jpg");
  background-size: cover;
}
.header {
  position: absolute;
  z-index: 100;
}
.logo {
  width: 130px;
  padding-top: 10px;
  padding-left: 30px;
  padding-bottom: 10px;
  z-index: 300;
}
.logo-js {
  color: #8A8D9D;
  padding-bottom: 5px;
  font-size: 1.2rem;
  padding-left: 30px;
  z-index: 300;
}
.logo-vn {
  color: #8A8D9D;
  font-size: 1.2rem;
  padding-left: 30px;
  margin-top: -15px;
  z-index: 300;
}
.header-nav {
  position: static;
  display: block;
  width: auto;
  height: 50px;
  right: 10px;
  padding-top: 10px;
}
.menu {
  position: fixed;
  display: block;
  top: -100px;
  width: 100%;
  height: 60px;
  padding-top: 10px;
  transition: .8s;
  z-index: 300;
  background-color: #fff;
}
.logo-menu {
  position: absolute;
  width: 130px;
  padding-top: 5px;
  padding-left: 30px;
  padding-bottom: 10px;
  z-index: 200;
}
.logo-menu-js {
  position: absolute;
  top: 45px;
  color: #8A8D9D;
  padding-bottom: 5px;
  font-size: 1.2rem;
  padding-left: 30px;
  z-index: 200;
}
.nav-list {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  line-height: 40px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  z-index: 300;
}
.nav-item {
  margin: 0 15px;
  display: inline;
  font-size: 1.5rem;
}
.nav-item > a {
  color: #333;
  line-height: 3em;
}
.current > a {
  color: #182E5B;
  border-bottom: 2px solid var(--main, #182E5B);
}
.btn-contact > a {
  color: #182E5B;
}
.current-btn {
  background-color: #182E5B;
}
.current-btn .btn-a {
  color: #fff;
}
.catch-bd {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  border: solid 10px #FFF;
}
.catch {
  color: #182E5B;
  font-family: 'Lexend', sans-serif;
  /*	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";*/
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 2em;
  letter-spacing: 0.3em;
  width: 70%;
  padding: 100px 50px 300px 100px;
}
.catch-sub {
  font-weight: 600;
}
.catch-sub_1 {
  font-size: 4rem;
  font-weight: 600;
}
.catch-sub_2 {
  font-size: 2rem;
}
.scroll {
  position: absolute;
  top: -60px;
  left: 48%;
  transform: translateY(-50%);
  color: #333;
}
.scroll-text {
  padding-bottom: 5px;
  font-family: 'Lexend', sans-serif;
  font-weight: 200;
  letter-spacing: 0.5em;
}
.scroll-text::after {
  content: "";
  /*描画位置*/
  position: absolute;
  left: 40px;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 100px;
  background: #333;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.5s ease-in-out infinite;
  opacity: 0;
}
.hero-icon {
  width: 40%;
  position: absolute;
  left: 55%;
  top: 360px;
}
.hero-icon_individual {
  width: 80px;
  padding-bottom: 15px;
}
.my-parts {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
}
.my-parts span::before, .my-parts span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1px;
  margin: -8% 0 0 -42%;
  background: #333333;
}
.my-parts span::before {
  transform: rotate(-45deg);
}
.my-parts span::after {
  transform: rotate(45deg);
}
/*--------------------
top- Who we are
---------------------*/
.section-1 {
  margin: 0 auto;
  padding: 80px 0 100px;
  width: 80%;
  position: relative;
}
.catch-below {
  padding-bottom: 400px;
}
.bg-wh-2 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}
.section-title {
  font-size: 3rem;
  padding-bottom: 50px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
}
.section-1-below {
  width: 50%;
  line-height: 3rem;
}
/*--------------------
top- Service
---------------------*/
.section-2-below {
  padding-top: 30px;
  line-height: 3rem;
}
.section-2 {
  margin: 0 auto;
  padding: 80px 0 100px;
  width: 80%;
  color: #738FD5;
}
.service-hero {
  background-image: url("../img/top/top.jpg");
  background-size: cover;
  width: 100%;
  height: 380px;
  background-attachment: fixed;
}
#service {
  color: #fff;
  padding-bottom: 0;
}
.icon {
  width: 100px;
  padding-bottom: 15px;
}
.number {
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #738FD5;
  border-radius: 50%;
  line-height: 50px;
}
.section-2_service {
  font-size: 1.4rem;
  font-weight: 800;
}
.section-2_service_js {
  font-size: 1.2rem;
  padding-top: 5px;
}
.boxContainer {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
/*Service*/
.service {
  padding-top: 100px;
  width: 85%;
  margin: 0 auto;
  padding-bottom: 100px;
}
.service-title {
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 10px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.service-title_js {
  font-size: 1.2rem;
}
.relative {
  position: relative;
}
.index-carousel {
  margin-bottom: -50px;
  padding-bottom: 20px;
}
.system-container {
  display: flex;
  align-items: center;
}
.system-icon {
  width: 200px;
}
.system-item {
  width: 30%;
  height: 350px;
}
.system-item_below {
  background-color: #fff;
  padding: 40px;
  margin-top: 20px;
}
.line {
  margin-top: 20px;
  margin-bottom: 20px;
}
.system-text {
  font-size: 1.4rem;
  text-align: justify;
  text-justify: inter-ideograph;
  height: 250px;
}
.service-recruitment {
  position: absolute;
  top: 10px;
  left: 330px;
}
.service-recruitment_frame {
  margin-top: 30px;
  margin-bottom: 50px;
  background-color: #FFFFFF;
}
.service-recruitment_text {
  padding: 30px 20px;
  width: 45%;
  line-height: 2.5rem;
  font-size: 1.4rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.recruitimg {
  position: absolute;
  top: -60px;
  right: 2%;
  z-index: 10;
}
/*--------------------
top- Customer
---------------------*/
.section-3 {
  margin: 0 auto;
  padding: 80px 0 100px;
  width: 75%;
  position: relative;
}
.section-cus {
  padding-bottom: 150px;
}
.section-title-3 {
  font-size: 3rem;
  line-height: 4rem;
  padding-bottom: 10px;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
}
.section-title_js {
  font-size: 1.2rem;
  padding-bottom: 20px;
}
.btn-story {
  position: absolute;
  top: 20px;
  right: 0px;
}
.btn-story a:hover {
  opacity: 1;
}
.story-title {
  font-weight: 800;
  font-size: 1.4rem;
  padding-top: 10px;
  color: #707070;
  line-height: 1.7rem;
  text-align: left;
}
.story-text {
  font-size: 1.4rem;
  padding-top: 10px;
  color: #707070;
  line-height: 1.7rem;
  text-align: left;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex-s {
  display: flex;
  justify-content: flex-start;
}
.story-container {
  flex-wrap: wrap;
}
.story-list {
  width: 25%;
  margin: 0 0 0 30px;
  padding-bottom: 50px;
}
/*--------------------
top- Join Our Team！
---------------------*/
.recruit-js {
  padding-left: 0;
}
.join {
  padding: 0 80px;
}
.join-title {
  padding-bottom: 10px;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
}
.join-bg {
  margin-right: -50px;
  background-image: url("../img/top/join-bg.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
}
.join-adjustment {
  margin-right: -50px;
}
.join-flex {
  margin: 0 auto;
  padding: 80px;
}
.job-container {
  margin-right: 50px;
}
.job-container :last-of-type {
  margin-right: 0;
}
.join-img {
  width: 100%;
  transform: scale(1);
  transition: .3s ease-in-out;
}
a.join-img :hover img {
  transform: scale(1.3);
}
.join-text {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 100%;
  color: #fff;
}
.join-title {
  font-size: 1.6rem;
  padding-bottom: 5px;
}
.join-icon {
  position: absolute;
  width: 40px;
  top: 20px;
  left: 110px;
}
.join-recruit {
  left: 80px;
}
/*--------------------
top- News
---------------------*/
.section-4 {
  padding: 100px 110px 120px;
  justify-content: flex-start;
}
.news {
  padding: 60px 30px 0px 120px;
  width: 20%;
  color: #333;
  background-color: #F0F0F0;
}
.news-title {
  padding-bottom: 50px;
}
.news-subtitle {
  padding-bottom: 30px;
  padding-right: 15px;
  display: block;
}
.news-subtitle_text {
  font-size: 1.3rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
}
.news-container {
  padding: 10px;
  padding-bottom: 50px;
}
.news-link {
  border-left: solid #738FD5;
  display: inline-block;
  height: 90px;
  width: 100%;
  font-size: 1.4rem;
  color: #333;
}
.news-text {
	padding: 10px 0 10px 20px;

  display: flex;
  flex-wrap: wrap;
}
.news-container_type {
  padding-right: 30px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #738FD5;
}
.news-container_text {
  width: 100%;
  padding-top: 20px;
}
.list {
  width: 600px;
  padding: 60px;
}
.search_item {
  cursor: pointer;
}
.is-hide {
  display: none;
}
/*search*/
#Information .search > *.is-select {
  color: #738FD5;
}
.is-hide {
  display: none !important;
}
.holder {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  margin-top: -50px;
  font-size: 1.4rem;
}
.holder a {
  padding: 0 20px;
  font-weight: bold;
  color: #738FD5;
}
.holder a.jp-current {
  color: #333333;
}
.holder a.jp-previous, .holder a.jp-next {
  font-size: 0;
  /*    display: none;*/
}
.holder a.jp-previous:before {
  font-size: 1.8rem;
  content: "\f104";
  font-family: FontAwesome;
}
.holder a.jp-next:before {
  font-size: 1.8rem;
  content: "\f105";
  font-family: FontAwesome;
}
/*//search*/
/*--------------------
top- Contact
---------------------*/
.contact {
  display: flex;
  background: #182E5B;
  background-size: 200%;
  transition: .5s;
  height: 195px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact:hover *:not(.i-svg) {
  transform: scale(1.1);
  transform-origin: center;
  transition: .5s;
}
.contact-text {
  font-size: 4rem;
  color: #fff;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
}
.contact-subtext {
  font-size: 1.2rem;
  color: #fff;
}
.story-link {
  background-color: #738FD5;
}
.i-svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}
/*--------------------
top- footer
---------------------*/
.footer {
  padding: 50px 150px 10px;
  color: #333;
  font-size: 1.4rem;
  margin-left: 30px;
}
.footer-bottom {
  padding-top: 10px;
  display: flex;
  align-items: center;
  align-content: flex-end;
}
.footer-bottom div {
  padding-right: 30px;
}
.footer-l {
  width: 30%;
  padding-right: 5px;
}
.address {
  line-height: 1.4em;
  padding-bottom: 30px;
}
.footer-logo {
  width: 100px;
  padding-bottom: 10px;
}
.footer-r {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.footer-container {
  margin: 0 40px;
}
.footer-link {
  color: #333;
  padding-bottom: 15px;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
}
.footer-link_sub {
  font-size: 1.2rem;
  color: #333;
  padding-bottom: 10px;
  padding-left: 10px;
}
.footer-line {
  width: 80%;
}
.fb {
  width: 25px;
  margin: auto;
  margin-bottom: 15px;
}
.copyrights {
  color: #333;
  font-size: 1.2rem;
}
/*--------------------

aboutus-page

---------------------*/
.bg-gy3 {
  background: linear-gradient(270deg, #F0F0F0 90%, #FFF 10%);
  margin-top: 180px;
  padding-top: 60px;
}
.about-title {
  padding-bottom: 10px;
}
.about-catch {
  position: absolute;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-img {
  width: 100%;
  vertical-align: top;
}
.about-below {
  padding-top: 100px;
  padding-bottom: 50px;
  font-size: 2rem;
}
.about-bgt {
  position: absolute;
  color: #EFEFEF;
  font-size: 20rem;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  z-index: 0;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  width: 50%;
  overflow: hidden;
}
.about-container {
  display: flex;
  justify-content: space-between;
  padding: 150px 15%;
  margin-bottom: 50px;
}
.about-realize_catch {
  line-height: 1.8em;
  font-size: 2rem;
  padding-left: 20px;
  z-index: 30;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
}
.about-realize {
  font-size: 3rem;
  color: #738FD5;
  margin: 0px 0 30px 70px;
  padding-bottom: 10px;
  border-bottom: solid #738FD5;
  font-weight: 600;
}
.about-copy {
  font-size: 3rem;
  padding-bottom: 20px;
  z-index: 30;
  line-height: 1.5em;
}
.about-text {
  width: 50%;
  line-height: 1.8em;
  z-index: 30;
  text-align: justify;
  text-justify: inter-ideograph;
}
.flex-flow {
  flex-flow: row-reverse;
}
.about-bgt2 {
  position: absolute;
  color: #F7F7F7;
  font-size: 20rem;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
  z-index: 0;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
}
.about-message {
  padding-bottom: 50px;
  padding-left: 20%;
}
.about_message-flex {
  align-items: flex-end;
  padding: 20px 0 60px;
  justify-content: flex-start;
  position: relative;
}
.about-representative-img {
  width: 65%;
  height: auto;
  margin-right: 30px;
  object-fit: contain;
  position: relative;
  left: 20%;
}
.name-container {
  position: absolute;
  right: 15%;
}
.message-name {
  color: #738FD5;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-family: 'Lexend', sans-serif;
  padding-bottom: 20px;
}
.message-name_js {
  font-weight: 600;
  font-size: 1.8rem;
  padding-left: 20px;
}
.about-message_text {
  padding: 0px 15% 40px 20%;
  line-height: 2em;
  font-size: 1.5rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.btn-company {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 90px;
}
.about-container2 {
  padding: 150px 15% 30px 15%;
  position: relative;
  z-index: 100;
}
.btn-company2 a:hover {
  opacity: 1;
}
.about-bgt3 {
  position: absolute;
  color: #EFEFEF;
  font-size: 20rem;
  top: 40%;
  left: 40%;
  transform: translate(0, -50%);
  z-index: 0;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
}
/*--circle--*/
.circle-container {
  display: flex; /* フレックスボックスを使用 */
  justify-content: center; /* 水平方向の中央寄せ */
  align-items: center; /* 垂直方向の中央寄せ */
  width: 100%; /* コンテナの幅を100%に設定 */
  height: auto; /* ビューポートの高さに設定 */
  position: relative;
}
.circle {
  width: 20vw; /* 幅 */
  height: 20vw; /* 高さ */
  max-width: 256px;
  max-height: 256px;
  background-color: #FFFFFF; /* 背景色 */
  color: #333333; /* テキストカラー */
  border: thin solid #738FD5; /* ボーダーの指定 */
  border-radius: 50%; /* 丸くするための設定 */
  display: flex; /* フレックスボックスを使用 */
  position: relative;
  align-items: center; /* 垂直方向の中央寄せ */
  justify-content: center; /* 水平方向の中央寄せ */
  text-align: center; /* テキストを中央寄せ */
  font-size: 2.2rem; /* フォントサイズ：ビューポートの幅に対する割合 */
  line-height: 4rem;
  z-index: 100;
  transition: 0.4s;
}
.circle_1 {
  margin-right: 5vw;
}
.circle_2 {
  margin-right: 5vw;
}
.circle:hover {
  background-color: #315896; /* ホバー時の背景色 */
  color: #fff; /* ホバー時のテキストカラー */
}
.circle_1::before {
  content: "協力と共創"; /* 元のテキスト */
  display: block;
}
.circle_1:hover::before {
  content: "チーム、パートナーやクライアントと共に協力、共創をし、成功を目指します。"; /* ホバー時に変更されるテキスト */
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 6%;
}
.circle_2::before {
  content: "文化の違いを楽しむ"; /* 元のテキスト */
  display: block;
}
.circle_2:hover::before {
  content: "文化の違いは個性。個性を受け入れ、認め合い、お互いを尊重し、新たなシナジーを生み出します。"; /* ホバー時に変更されるテキスト */
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 7%;
}
.circle_3::before {
  content: "成長志向"; /* 元のテキスト */
  display: block;
}
.circle_3:hover::before {
  content: "チャレンジを繰り返し、自己、効率、品質の成長を実現します。"; /* ホバー時に変更されるテキスト */
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 6%;
}
.about-message-sign {
  position: absolute;
  width: 280px;
  margin-top: -8%;
  margin-left: -2%;
}
/*--circle--*/
/*--------------------

service-page

---------------------*/
.service-catch {
  position: relative;
  top: 150px;
  text-align: center;
}
.pt0 {
  padding-top: 0;
}
.bg-half {
  background: linear-gradient(180deg, #FFF 0%, #FFF 50%, #F0F0F0 50%, #F0F0F0 100%);
}
.service-main-box {
  align-items: center;
  padding-top: 50px;
}
.service-main {
  width: 50%;
  padding: 50px;
}
.service-box {
  width: 20%;
  padding-left: 25px;
  padding-right: 25px;
}
.service-box-icon {
  height: 100px;
  padding-bottom: 15px;
}
.service-adjustment {
  padding-left: 20px;
}
.systempage-system {
  flex-wrap: wrap;
  justify-content: center;
}
.systempage-item {
  margin: 50px 10px;
}
.service-below {
  font-size: 1.4rem;
  padding-top: 20px;
  line-height: 1.5em;
  text-align: justify;
  text-justify: inter-ideograph;
}
.below2 {
  padding-top: 8px;
  padding-bottom: 25px;
  text-align: left;
}
.service-boxContainer {
  display: flex;
  justify-content: space-around;
}
.last-text {
  text-align: center;
  margin: 0 auto;
  padding: 50px 0 80px;
  line-height: 1.5em;
  font-size: 1.5rem;
}
/*Customer Stories*/
.open-btn {
  position: relative;
  color: #738FD5;
  font-size: 1.4rem;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  border-radius: 30px;
}
/*--------------------

Customer Stories-page

---------------------*/
.customer-page {
  width: 70%;
  margin: 0 auto;
}
.customer-img_cover {
  margin: 0 auto;
  padding: 0 10%;
  justify-content: space-around;
  align-items: flex-end;
}
.customer-container {
  width: 40%;
  padding-right: 20px;
}
.customer-logo {
  width: 130px;
  padding-bottom: 20px;
}
.customer-title {
  font-size: 2.5rem;
  font-weight: 800;
  padding-bottom: 30px;
  line-height: 1.2;
}
.customer-company {
  font-weight: bold;
  padding-bottom: 10px;
}
.customer-text {
  padding-bottom: 30px;
}
.customer-text img {
  width: 800px;
}
.customer-title-p {
  font-weight: 800;
  padding-bottom: 10px;
}
.customer-img_top {
  background-size: cover;
  width: 800px;
}
/*--------------------

company-page

---------------------*/
.company-hero {
  background-image: url("../img/company/company-top.png");
  background-size: cover;
  width: 100%;
  height: 300px;
}
.company-space {
  height: 200px;
}
.company-bg {
  background-position: bottom;
  width: 90%;
  padding: 50px 0px;
}
.company-pd {
  width: 80%;
}
.company-link {
  border-left: thick solid #fff;
  display: inline-block;
  height: 30px;
  width: 100%;
  font-size: 2rem;
  padding-left: 50px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  color: #fff;
}
#s-1 {
  margin-top: 80px;
}
#s-1, #s-2, #s-3 {
  color: #707070;
}
.company-container {
  padding: 50px 50px 0px 20%;
}
.company-profile {
  width: 80%;
  margin: 80px 60px;
  font-size: 1.5rem;
}
.company-profile_year {
  font-size: 2.8rem;
  color: #707070;
  padding-top: 30px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  margin-left: -30px;
}
.company-profile_title {
  padding: 10px;
  text-align: left;
  width: 23%;
}
.company-profile_detail {
  padding: 10px;
  width: 55%;
  line-height: 1.6em;
  text-align: justify;
  text-justify: inter-ideograph;
}
.company-btn {
  padding-right: 200px;
  justify-content: center;
}
.btn-company2 {
  margin-left: 40px;
}
.history-date {
  padding-left: 30px;
}
.history {
  border-left: solid #fff;
  width: 80%;
  padding-left: 60px;
}
.company-group_name {
  font-weight: bold;
}
.company-group_below {
  padding: 30px 1em;
  font-size: 1.4rem;
}
.company-group-ad {
  padding-left: 1em;
  padding-top: 10px;
  padding-bottom: 40px;
}
.company-access {
  position: absolute;
  color: #fff;
  font-size: 3rem;
  top: 50%;
  left: 12%;
  transform: translate(0%, -50%);
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
}
.access-logo {
  width: 130px;
  padding-bottom: 20px;
  margin-left: 50px;
}
.company-access_container {
  margin: 0 auto;
  padding-top: 80px;
  width: 70%;
}
.access-text {
  padding-left: 50px;
  padding-bottom: 10px;
  line-height: 1.5em;
}
.access-text:last-of-type {
  padding-bottom: 50px;
}
.map {
  position: absolute;
  top: -160px;
  left: 65%;
  height: 60px;
  width: 300px;
  line-height: 3.5em;
  text-align: center;
  border-radius: 20px;
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
}
/*--------------------

news-page

---------------------*/
.bg-gy2 {
  background: linear-gradient(270deg, #FFF 68%, #F0F0F0 32%);
}
/*--------------------

news-page

---------------------*/
.about-title span {
  color: #8A8D9D;
}
.section-news {
  padding-bottom: 0;
  display: flex;
}
.section-news a {
  color: #333;
}
.news-fa {
  padding-left: 10px;
  padding-right: 10px;
}
.news-page {
  padding: 60px 60px 50px;
  width: 80%;
  color: #333;
}
.line {
  height: 1px;
  background: #333;
  width: 100%;
  border: none;
}
.news-page_title {
  font-size: 2rem;
  padding-bottom: 10px;
  line-height: 1.5em;
}
.news-page_date {
  font-size: 1.4rem;
  padding-top: 10px;
}
.news-page_text {
  padding-top: 30px;
  font-size: 1.5rem;
  line-height: 1.8em;
  text-align: justify;
  text-justify: inter-ideograph;
}
.news-page_title1 {
  font-weight: 600;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
.news-page_pb {
  padding-bottom: 30px;
  line-height: 2;
}
.news-page_btn {
  padding-top: 100px;
}
.news-page a {
  color: #738fd5;
}
.page-numbers {
  color: #738FD5;
}
.news-page-return {
  padding-left: 10px;
  font-weight: bold;
  color: #738FD5;
}
.news-info {
  border-top: 1px solid #ccc;
  padding: 20px;
  margin: 100px 0 0;
  width: 100px;
}
.ogp-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  background-color: #fff;
  text-decoration: none;
  margin: 1em 0;
  line-height: 1.4em;
  max-width: 100%;
  box-sizing: border-box;
}
.ogp-card a {
  display: flex;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.ogp-image {
  width: 240px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}
.ogp-content {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  background-color: #fff;
}
.ogp-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 6px 0;
  word-break: break-word; /* 長い語句でも折り返す */
  white-space: normal; /* 折り返しを許可 */
}
.ogp-description {
  font-size: 1.3rem;
  color: #666;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 最大3行に制限 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.ogp-site {
  font-size: 1rem;
  color: #999;
  word-break: break-word; /* 長い語句でも折り返す */
  line-height: 1em;
}
/*--------------------

recruit-page

---------------------*/
.recruit-top {
  padding: 80px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
.recruit-main {
  display: flex;
  padding: 0px 15%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.recruit-main p {
  font-size: 4.2rem;
  ;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 72px */
}
.recruit-main > p > span {
  font-weight: 700;
  display: inline;
  background-image: linear-gradient(to bottom, transparent 60%, #E7DF73 60%);
  padding: 0px 20px 0px 20px;
  background-repeat: no-repeat;
}
.recruit-main-img {
  padding: 0px 80px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.recruit-main-img img {
  width: 30%;
}
.recruit-desc {
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 200%; /* 48px */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex: 1 0 0;
}
/*========= //interview ===============*/
.recruit-interview {
  flex-wrap: wrap;
  margin-top: 30px;
}
.recruit-interview li {
  width: 30%;
  padding-bottom: 10px;
}
.recruit-interview > li > a:hover {
  opacity: 1;
}
.zoom-in-img .join-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
li:hover .zoom-in-img .join-img {
  transform: scale(1.1);
}
.thumbnail {
  background-size: cover;
  background-position: center center;
  padding-top: 65%;
  width: 100%;
}
.recruit-member-textbox {
  padding: 20px 10px;
}
.recruit-member-textbox > .story-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  height: 60px;
}
.recruit-member_div {
  display: inline-block;
  padding: 4px 12px;
  align-items: center;
  border-radius: 4px;
  background: #E7DF73;
}
.recruit-member_div p {
  color: #182E5B;
  font-size: 1.6rem;
  font-family: 'Lexend', sans-serif;
  text-align: left;
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: 150%; /* 30px */
  letter-spacing: var(--letter-spacing-0_5, 0.5px);
}
/*========= //office===============*/
.recruit-office {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 2rem auto;
}
.recruit-office-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 3rem 4rem;
  align-self: stretch;
  border-radius: 10px;
  background: #F8F8F8;
}
.recruit-office-container img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.office-title {
  flex: 1;
}
.office-title div {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 20px;
}
.recruit-office-container p {
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: left;
}
.recruit-office-container.reverse {
  flex-direction: row-reverse;
}
/*========= //welfare===============*/
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding-top: 30px;
}
.card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 30px 50px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-align: center;
}
.card:hover {
  transform: translateY(-4px);
}
.card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.card h3 {
  margin: 0 0 20px;
  font-size: 1.6rem;
  font-weight: 600;
}
.card p {
  font-size: 1.4rem;
  color: #555;
  text-align: justify;
  line-height: 2.3rem;
}
/*========= //募集中の職種===============*/
.recruit-join_info {
  padding: 50px 20%;
}
.recruit-info_js {
  font-size: 1.8rem;
  padding-bottom: 50px;
}
.recruit-info_title {
  font-size: 2rem;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  margin-top: 10px;
  border-top: #ededed solid 1px;
}
.recruit-info_container {
  padding-left: 30px;
  font-size: 1.5rem;
}
.recruit-info_text {
  padding-left: 1em;
  padding-top: 5px;
  padding-bottom: 15px;
  line-height: 1.5em;
  text-align: justify;
  text-justify: inter-ideograph;
}
/*accordion-area*/
/*アコーディオンタイトル*/
.recruit-info_title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 2.3rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.recruit-info_title::before, .recruit-info_title:after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #738FD5;
}
.recruit-info_title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.recruit-info_title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.recruit-info_title.close::before {
  transform: rotate(45deg);
}
.recruit-info_title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.accordion-area_box {
  display: none; /*はじめは非表示*/
  background: #F8F8F8;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.recruit-contact {
  display: flex;
}
.instagram {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.instagram img {
  width: 60px;
  height: 60px;
}
/* -------------------
    recruit-member_page
---------------------*/
.member-header {
  margin: 0 auto;
  padding-top: 80px;
}
.member-img_top {
  padding-top: 20px;
}
/*
.bg-gy4 {
  background: linear-gradient(180deg, #FFF 50%, #F0F0F0 50%);
}
*/
.member-title {
  font-size: 3rem;
  font-weight: 800;
}
.member-text_div {
  color: #738FD5;
  font-size: 1.5rem;
  font-family: 'Lexend', sans-serif;
  padding-bottom: 10px;
}
.bottom_none {
  padding-bottom: 0px;
}
.member-profile {
  padding: 10px 30px 20px;
  align-items: center;
  border-radius: 10px;
  background: #FCFCFC;
  margin-bottom: 30px;
}
.member-profile_box {
  display: flex;
  align-items: center;
  gap: 32px;
}
.member-profile_box img {
  width: 74px;
}
.member-text {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.6rem;
}
.department {
  padding-bottom: 5px;
}
.member-text_position {
  font-size: 2rem;
  font-family: 'Lexend', sans-serif;
  color: #738FD5;
  padding-bottom: 20px;
}
.timeline-title {
  width: 250px;
  height: 30px;
  margin: 0 0 10px 20px;
  border-radius: 40px;
  background-color: #738FD5;
}
.timeline-title p {
  color: #fff;
  text-align: center;
}
.timeline {
  padding-left: 50px;
  padding-bottom: 40px;
}
.timeline > li {
  overflow: hidden;
  margin: 0;
  position: relative;
}
.timeline-date {
  width: 70px;
  float: left;
  margin-top: 7px;
  color: #738FD5;
}
.timeline-content {
  width: 75%;
  float: left;
  border-left: 3px #738FD5 solid;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 13px;
}
.timeline-content:before {
  content: '';
  width: 15px;
  height: 15px;
  background: #738FD5;
  position: absolute;
  left: 64px;
  top: 10px;
  border-radius: 100%;
}
.timeline-text {
  line-height: 1.4em;
  font-size: 1.4rem;
  padding-top: 5px;
  text-align: justify;
  text-justify: inter-character;
}
/*--------------------

contact-page

---------------------*/
.contact-container {
  padding: 100px 20% 100px;
}
.contact-container_text {
  font-size: 1.5rem;
  line-height: 1.5em;
  padding-bottom: 100px;
}
.contact-container_textmin {
  font-size: 1.2rem;
}
.form {
  box-sizing: border-box;
  padding: 0 20px;
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Noto Sans JP', sans-serif;
}
.form-item {
  margin: 0 0 30px;
}
.form-item:last-of-type {
  margin: 0 0 55px;
}
.form-title {
  margin: 0 0 17px;
}
.form-parts {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 8px 4px;
  border: solid 1px #e0e0e0;
  border-radius: 3px;
  line-height: 1.5;
  box-shadow: none;
}
.form-parts_text {
  height: 100%;
}
.btn-submit {
  letter-spacing: 0.5em;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  padding: 15px 120px;
  margin-top: 50px;
  font-weight: 400;
}
.form-parts__checkbox {
  width: 18px;
  height: 18px;
  margin: 0 9px 0 0;
  border: solid 1px #e0e0e0;
  background-color: #fff;
  vertical-align: -3px;
}
.form-parts__checkbox:checked {
  background-color: #738FD5;
}
.policy {
  color: #738FD5;
  display: inline-block;
  border: none;
}
.policy:hover {
  opacity: 0.5;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.require {
  margin-left: 5px;
  padding-right: 5px;
  border-radius: 3px;
  color: #738FD5;
  font-size: 1.1rem;
  font-weight: bold;
  vertical-align: 3px;
}
.btn-outer {
  margin: 80px 10%;
  padding-top: 5px;
  padding-bottom: 5px;
}
.popup {
  display: none;
  height: 100vh;
  width: 100%;
  background: black;
  opacity: 0.9;
  position: fixed;
  top: 0;
  left: 0;
}
.content {
  color: #333;
  background: #fff;
  padding: 30px;
  width: 50%;
  z-index: 300;
  overflow: scroll;
  height: 80%;
  line-height: 1.5em;
  font-size: 1.5rem;
}
.content > h2 {
  font-size: 1.8rem;
  padding-bottom: 30px;
}
.content div {
  padding-bottom: 30px;
}
.content p {
  padding-bottom: 10px;
}
.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes pathmove {
  20% {
    height: 20px;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}
@media screen and (max-width:767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /*--------------------
	nav
	---------------------*/
  .header {
    right: 20px;
    top: 30px;
    position: fixed;
  }
  .header-nav {
    height: 80px;
  }
  .logo {
    width: 140px;
    padding: 0;
  }
  .logo-js {
    display: inline;
    padding-left: 0;
    font-size: 1rem;
    color: #707070;
  }
  .logo-vn {
    display: inline;
    padding-left: 5px;
    font-size: 1rem;
    color: #707070;
  }
  .sp-line {
    display: inline;
    color: #707070;
    padding-right: 5px;
    font-size: 0.5rem;
  }
  .header-nav {
    position: static;
    display: block;
    width: auto;
    padding-top: 10px;
    z-index: 300;
  }
  .nav-list {
    display: block;
    z-index: 300;
  }
  .nav-item {
    margin: 0;
    z-index: 300;
  }
  .sp-contact-btn {
    padding: 0px 3em;
    font-weight: bold;
    color: #738FD5; /*文字色*/
    border: none;
    border-radius: 10px; /*角の丸み*/
    margin-right: 50px;
    z-index: 300;
  }
  .sp-contact-btn > a {
    background-color: #738FD5;
    z-index: 300;
  }
  /*　ハンバーガーボタン */
  .hamburger {
    display: block;
    position: fixed;
    z-index: 300;
    left: 32px;
    top: 32px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #738FD5;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    width: 24px;
    background: #738FD5;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2) {
    left: 60%;
    opacity: 0;
    -webkit-animation: active-btn17-bar02 .8s forwards;
    animation: active-hamburger-bar02 .8s forwards;
  }
  .hamburger.active span:nth-child(3) {
    top: 16px;
    width: 24px;
    background: #738FD5;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .hamburger::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 52px;
    height: 52px;
    margin: -32px 0 0 -32px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: all .75s;
  }
  .hamburger.active::after {
    border: 2px solid #738FD5;
  }
  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0px;
  }
  nav.globalMenuSp ul li:hover {
    background: #738FD5;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp {
    visibility: hidden;
  }
  nav.globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }
  /*--------------------
	header
	---------------------*/
  /*
  .hero-bg {

	  background-image: url("../img/top/top-sp.jpg");
	  max-width: 100%;
 	 height: auto;
	  background-position: center center;
	  background-size: cover;
  }
*/
  .hero-bg::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-image: url("../img/top/top-sp.jpg");
    background-size: cover;
  }
  .catch {
    padding: 50px 0px 100px 20px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    font-size: 3.5rem;
    width: 80%;
  }
  .catch-below {
    padding-top: 100px;
    padding-bottom: 200px;
  }
  .scroll {
    left: 40%;
    top: -20px;
  }
  .catch-sub {
    font-weight: 500;
    padding-bottom: 20px;
  }
  .catch-sub_1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 0.8em;
  }
  .catch-sub_2 {
    font-size: 1.6rem;
  }
  .hero-icon {
    transform: translate(-55%, -45%);
    width: 80%;
  }
  .my-parts {
    width: 40px;
    height: 40px;
  }
  .hero-icon_individual {
    width: 50px;
  }
  /*--------------------
	Who we are
	---------------------*/
  .section-1 {
    padding-bottom: 150px;
    display: block;
  }
  .service-Adjustment {
    padding-bottom: 10px;
  }
  .section-1-below {
    width: 100%;
    line-height: 1.5em;
    font-size: 1.5rem;
  }
  .btn-more {
    left: 50%;
    top: 80%;
    transform: translate(-50%, 0%);
    width: 100%;
    text-align: center;
  }
  /*--------------------
	service
	---------------------*/
  .section-2 {
    width: 90%;
    padding: 30px 0 0;
  }
  .service-hero {
    height: 300px;
  }
  .service-main-box {
    display: block;
    padding-top: 0;
  }
  .service-main {
    width: 100%;
    padding: 20px 0 50px;
  }
  .pb0 {
    padding-bottom: 0;
  }
  .icon {
    width: 60px;
  }
  .system-icon {
    width: 150px;
  }
  .service-title_js {
    padding-bottom: 20px;
  }
  .system-item_below {
    padding: 15px;
    margin-top: 0;
  }
  .index-carousel {
    padding-top: 30px;
  }
  .arrow {
    display: none;
  }
  .btn-w {
    margin: 0 auto 70px;
  }
  .btn-service {
    margin-top: 10px;
  }
  .service {
    padding: 100px 0px 50px;
  }
  .system-text {
    height: 300px;
  }
  .service-recruitment {
    left: 85%;
  }
  .recruitimg {
    top: 90px;
    right: 0;
    width: 180px;
    z-index: 0;
  }
  .service-recruitment_frame {
    margin-right: 0;
    margin-left: 10px;
    margin-top: 200px;
    margin-bottom: 80px;
  }
  .service-recruitment_text {
    margin-top: 10px;
    width: 80%;
  }
  /*--------------------
	customer
	---------------------*/
  .btn-story {
    top: 90%;
    right: 0;
    width: 100%;
    text-align: center;
  }
  /*--------------------
	join
	---------------------*/
  .section-3 {
    padding-top: 30px;
  }
  .join {
    padding: 0 0;
  }
  .join-title {
    padding-bottom: 10px;
  }
  .join-bg {
    margin-right: -50px;
    background-image: url("../img/top/join-bg.jpg");
    width: 100%;
    background-size: cover;
    height: auto;
  }
  .join-adjustment {
    margin: 0;
  }
  .join-flex {
    display: block;
    padding: 80px;
  }
  .job-container {
    margin-right: 0;
    padding-bottom: 30px;
  }
  .join-title {
    font-size: 3rem;
  }
  .join-icon {
    left: 130px;
  }
  .sp-icon {
    left: 160px;
  }
  /*--------------------
	News
	---------------------*/
  .section-4 {
    padding: 50px 10px 100px;
    display: block;
  }
  .flex-s {
    display: block;
  }
  .news {
    padding: 0 0 0 0px;
    width: 100%;
  }
  .news-container {
    padding: 40px 30px;
    margin: 0 auto;
  }
  .news-container_text {
    text-align: justify;
    text-justify: inter-ideograph;
  }
  .sp-news {
    padding: 10px 20px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
  }
  .sp-news_2 {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .news-subtitle {
    white-space: nowrap;
    background-color: #fff;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 10px;
    ;
  }
  .news-link {
    height: 100%;
  }
  .list {
    padding: 0 0px 80px;
    width: 100%;
  }
  /*--------------------
	footer
	---------------------*/
  .contact-text {
    font-size: 3.2rem;
  }
  .footer {
    padding: 30px 20px;
    margin-left: 0;
    flex-direction: column-reverse;
  }
  .footer-r {
    width: 100%;
    padding-bottom: 30px;
  }
  .footer-l {
    width: 100%;
  }
  .footer-container {
    margin: 10px;
  }
  .address {
    font-size: 1.2rem;
    padding-bottom: 0;
  }
  /*--------------------
	about us-page
	---------------------*/
  .about-img {
    height: 300px;
    background-size: contain;
    width: auto;
  }
  .about-catch {
    font-size: 1.5rem;
    width: 80%;
  }
  .about-below {
    line-height: 1.3em;
  }
  .about-realize {
    margin-left: 60px;
  }
  .about-container {
    display: block;
    padding: 100px 10px 50px;
  }
  .about-text {
    width: 90%;
    padding: 20px 0;
    z-index: 30;
    margin: 0 auto;
  }
  .about-copy {
    margin-left: 0;
    padding-top: 30px;
    font-size: 2.5rem;
  }
  .about_message-flex {
    display: block;
    padding-bottom: 50px;
  }
  .about-bgt {
    font-size: 8rem;
    left: 10px;
    top: 0px;
    z-index: 0;
    width: 100%;
  }
  .about-bgt2 {
    font-size: 8rem;
    left: 10px;
    top: 0px;
    z-index: 0;
  }
  .bg-gy3 {
    margin-top: 0;
  }
  .about-representative-img {
    width: 100%;
    left: 0;
    margin-right: 0;
  }
  .about-message {
    padding-bottom: 20px;
  }
  .message-name {
    font-size: 2.3rem;
    text-align: center;
    padding-bottom: 10px;
  }
  .message-position {
    text-align: center;
  }
  .title-sp {
    font-size: 2rem;
  }
  .about-message_text {
    line-height: 1.7em;
    padding: 0 10% 30px 15%;
  }
  /*追加*/
  .about-container2 {
    padding: 2% 2%;
  }
  .about-bgt3 {
    position: relative;
    font-size: 8rem; /* SP時のフォントサイズ */
    left: 10px; /* 左位置調整 */
    top: 0px; /* 上位置調整 */
    transform: none; /* スマートフォンでは変換を解除 */
  }
  /*--circle--*/
  .circle-container {
    margin: 5% 0 20% 0;
    z-index: 0;
  }
  .circle {
    font-size: 1.4rem;
    line-height: 1.8rem;
    width: 20vw;
    height: 20vw;
    padding: 3%
  }
  .circle_1:hover::before {
    content: "チーム、パートナーやクライアントと共に協力、共創をし、成功を目指します。"; /* ホバー時に変更されるテキスト */
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding: 2%;
  }
  .circle_2:hover::before {
    content: "文化の違いは個性。個性を受け入れ、認め合い、お互いを尊重し、新たなシナジーを生み出します。"; /* ホバー時に変更されるテキスト */
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding: 2%;
  }
  .circle_3:hover::before {
    content: "チャレンジを繰り返し、自己、効率、品質の成長を実現します。"; /* ホバー時に変更されるテキスト */
    font-size: 0.8rem;
    line-height: 1.2rem;
    padding: 2%;
  }
  .about-message-sign {
    position: absolute;
    width: 150px;
    margin-top: -5px;
    margin-left: 0%;
    right: 0;
  }
  /*--circle--*/
  /*--------------------
	service-page
	---------------------*/
  .service-boxContainer {
    flex-wrap: wrap;
  }
  .service-box {
    width: 40%;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 50px;
  }
  .systempage-item {
    width: 100%;
    margin: 0 0 20px;
  }
  /*--------------------
	customer-page
	---------------------*/
  .customer-img_cover {
    display: block;
  }
  .customer-container {
    width: 100%;
  }
  .customer-text {
    padding-bottom: 20px;
  }
  .customer-page {
    padding-top: 0px;
    width: 90%;
  }
  .customer-logo {
    padding-bottom: 0;
  }
  /*--------------------
	company-page
	---------------------*/
  .company-hero {
    background-image: url("../img/recruit/recruit-welfare.png");
    background-size: cover;
    width: 100%;
    height: 300px;
  }
  .company-bg {
    width: 90%;
  }
  .company-pd {
    padding: 0;
    padding-left: 30px;
  }
  .sp-company {
    display: block;
  }
  .sp-company_link {
    font-size: 1.5rem;
    margin-bottom: 0px;
    border-left: none;
  }
  .company-container {
    padding: 60px 10px 0px 20px;
  }
  #s-1 {
    margin-top: 0;
  }
  .company-link {
    padding-left: 20px;
    margin-left: 0px;
  }
  .company-profile {
    margin: 50px 00px 0px 20px;
    width: auto;
    font-size: 1.4rem;
  }
  .company-profile_year {
    padding-bottom: 20px;
    font-size: 2rem;
  }
  .company-profile_title {
    width: 25%;
    padding: 0 0 10px;
  }
  .company-profile_detail {
    padding: 0 0 10px 10px;
    width: 70%;
  }
  .company-btn {
    padding-left: 0;
    padding-right: 0;
  }
  .btn-company2 {
    padding-top: 40px;
    margin-left: 20px;
  }
  .sp-company_btn {
    width: 146px;
  }
  .sp-company-bg {
    padding: 0 0 30px;
  }
  .history-date {
    padding-left: 10px;
    padding-right: 10px;
  }
  .about-img {
    height: auto;
  }
  .access-logo {
    margin-left: 10px;
  }
  .access-text {
    padding-left: 20px;
  }
  .access-text:last-of-type {
    padding-bottom: 150px;
  }
  .map {
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  /*--------------------
	news-page
	---------------------*/
  .bg-gy2 {
    background: linear-gradient(90deg, #FFF 95%, #FFF 5%);
  }
  .ogp-card a {
    flex-direction: column;
    ;
  }
  .ogp-image {
    width: 100%;
    object-fit: contain;
  }
  /*--------------------
	news-story-page
	---------------------*/
  .sp-news-page {
    padding-top: 10px;
  }
  .news-page {
    padding: 20px;
    width: 90%;
  }
  .news-page_title {
    padding-top: 50px;
  }
  .news-page_btn {
    padding-top: 50px;
  }
  /*--------------------
	recruit-page
	---------------------*/
  .recruit-top {
    padding: 30px 0;
    gap: 40px;
  }
  .recruit-main {
    padding: 0 20px;
  }
  .recruit-main p {
    font-size: 2rem;
    line-height: 140%;
  }
  .recruit-interview li {
    width: 100%;
    margin: 0 auto 60px;
    padding-bottom: 10px;
  }
  .recruit-main-img {
    padding: 0 20px;
  }
  .recruit-desc {
    font-size: 1.6rem;
    padding: 60px 0;
  }
  .section-3 {
    width: 85%;
  }
  .recruit-member-textbox > .story-text {
    height: inherit;
  }
  .company-access_container {
    margin: 0 auto;
    padding-top: 70px;
  }
  .sp-recruit {
    display: block;
    text-align: center;
  }
  .story-list {
    margin: 0 auto;
    width: 200px;
    padding-bottom: 50px;
  }
  .recruit-office-container, .recruit-office-container.reverse {
    flex-direction: column !important;
    text-align: center;
    padding: 3rem 3rem;
    ;
  }
  .recruit-office-container img {
    width: 100%;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .card {
    padding: 20px 20px 40px;
  }
  .card h3 {
    font-size: 1.4rem;
  }
  .card p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.recruit-join_info {
  padding: 30px 10%;
}
/*--------------------
	recruit-member-page
	---------------------*/
.member-img_top {
  max-width: 100%;
  padding-right: 0;
}
.member-text_div {
  padding-bottom: 10px;
}
.timeline {
  padding-left: 20px;
}
.timeline-content {
  width: 65%;
}
/*--------------------
	contact-page
	---------------------*/
.contact-container {
  padding: 50px 10%;
}
.form {
  padding: 0;
}
.btn-outer {
  margin: 30px;
  padding: 5px;
}
.btn-submit {
  width: 100%;
  padding: 15px 40px;
}
.content {
  width: 75%;
}
@media screen and (max-width : 1024px) and (min-width : 767px) {
  .tb {
    display: block;
  }
  /*--------------------
	top
	---------------------*/
  .nav-item {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
  }
  .btn-contact {
    margin-right: 10px;
  }
  .service-title_js {
    right: 0;
    left: 10px;
  }
  .arrow {
    top: 0px;
  }
  .recruitimg {
    width: 200px;
    top: -10px;
    right: -5%;
  }
  .service-recruitment_text {
    width: 60%;
  }
  .service-recruitment {
    left: 250px;
  }
  .join-flex {
    padding: 30px 20px;
  }
  .join-icon {
    width: 20px;
  }
  .news-container_text {
    width: 100%;
  }
  .list {
    width: 500px;
  }
  /*--------------------
	about-page
	---------------------*/
  .about-bgt {
    left: 10%;
    width: 90%;
    overflow: hidden;
  }
  .about-realize_catch {
    width: 60%;
    padding-left: 30px;
    padding-right: 20px;
  }
  .about-container {
    padding: 100px 10%;
  }
  /*アヤカ修正*/
  .about-container2 {
    padding: 100px 10% 42px 10%;
    z-index: 100;
    position: relative;
  }
  .about-bgt3 {
    position: absolute;
    color: #EFEFEF;
    font-size: 20rem;
    top: 8%;
    left: 10%;
    transform: translate(0, -50%);
    z-index: 0;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    margin-top: 12%;
  }
  .circle {
    font-size: 2.6vw;
    padding: 2%;
    line-height: 2.5rem;
  }
  .circle_1:hover::before {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  .circle_2:hover::before {
    font-size: 1.7rem;
    line-height: 2.3rem;
  }
  .circle_3:hover::before {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  .about-message-sign {
    width: 230px;
  }
  /*アヤカ修正終了*/
  /*--------------------
	company-page
	---------------------*/
  #s-1 {
    margin-top: 0;
  }
  .company-bg {
    width: 90%;
  }
  .sp-company {
    justify-content: flex-start;
  }
  .sp-company_link {
    font-size: 1.8rem;
    margin-bottom: 0px;
    border-left: none;
    padding: 30px;
  }
  .company-container {
    padding: 70px 10px 0px 10%;
  }
  .company-link {
    padding-left: 20px;
    margin-left: 0px;
  }
  .company-profile {
    margin: 50px 00px 0px 20px;
    width: auto;
    font-size: 1.4rem;
  }
  .company-profile_title {
    width: 25%;
    padding: 0 0 10px;
  }
  .company-profile_detail {
    padding: 0 0 10px 10px;
    width: 70%;
  }
  .company-btn {
    padding: 40px 20% 0;
  }
  .sp-company-bg {
    padding: 0 0 30px;
  }
  .company-profile_year {
    padding-bottom: 20px;
  }
  .map {
    left: 75%;
    width: 230px;
  }
  /*--------------------
	NEWS-page
	---------------------*/
  .bg-gy2 {
    background: linear-gradient(270deg, #FFF 75%, #F0F0F0 25%);
  }
  .btn-outer {
    margin: 30px;
    padding: 5px;
  }
  /*--------------------
	recruit-page
	---------------------*/
  .recruit-member-textbox > .story-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: auto;
  }
  .recruit-member_div {
    padding-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}