@charset "utf-8";
/*共通 設定
---------------------------------------------------------*/
:root {
  --pale-light-blue: #EBF5FA;
  --light-blue: #4391CE;
  --blue: #0064be;
  --dark-blue: #103675;
  --gray: #A0A0A0;
  --grad_blue: linear-gradient(90deg, #0064BE 0%, #80B1DE 100%);
  --grad_blue02: linear-gradient(90deg, #105FAD 0%, #87AFD6 100%);
  --grad_dark-blue: linear-gradient(90deg, #B7CFE6 0%, #105FAD 100%);
  --fontGothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --fontEn: "sofia-pro", sans-serif;
  --fontEn_sub: "balboa", sans-serif;
  --fontEn_sub02: "montserrat", sans-serif;
}
body {
  font-feature-settings: "palt";
  letter-spacing: .1em;
}
.fontGothic {
  font-family: var(--fontGothic);
  font-weight: 600;
}
.fontEn {
  font-family: var(--fontEn);
  letter-spacing: .02em;
  font-weight: 800;
  line-height: 1;
}
.fontEn_sub {
  font-family: var(--fontEn_sub);
  font-weight: 500;
  line-height: 1;
}
.fontEn_sub02 {
  font-family: var(--fontEn_sub02);
  font-weight: 600;
  font-style: normal;
}
.d-grid {
  display: grid;
}
.txt-set {
  line-height: 2;
  text-align: justify;
}

/*loader
---------------------------------------------------------*/
/* ローディング画面のスタイル */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}
/* ローディングアニメーション */
.loader-bg {
  width: 100vw;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #103675;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  margin: 0 auto;
  max-width: 70%;
}
.loadLogo {
  overflow: hidden;
}
.loadLogo .mark {
  position: relative;
  animation: loader 1s 1 cubic-bezier(0.72, 0.08, 0.58, 1) forwards;
}
@keyframes loader {
  0% {
    transform: translateY(120%);
  }
  100% {
    transform: translateY(0);
  }
}

/*header
---------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 9999;
  color: #fff;
  padding: 1.2rem 0 1.4rem;
}
#index #header::before {
  content: "";
  width: 100%;
  height: 20rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: .4s;
}
#header.scrollCrass::before {
  opacity: 0;
}
.headerWrap {
  width: 97%;
  max-width: 200rem;
  margin: 0 auto;
  align-items: center;
}
.hLogo {
  transition: .4s;
  width: 30.8rem;
  margin-top: 0.4rem;
}
.hLogo img {
  max-height: 5.9rem;
}
.hLogo._recruit {
  display: flex;
  width: 68rem;
  gap: 1rem 2rem;
  flex-wrap: wrap;
}
.hLogo._recruit .logoRecruit {
  width: 26.8rem;
  margin-top: 1.7rem;
}
@media screen and (max-width: 1450px) {
  .hLogo._recruit {
    flex-direction: column;
    width: 32rem;
  }
  .hLogo._recruit .logoRecruit {
    margin-top: 0;
  }
}
.hNav {
  gap: 4.4rem;
  align-items: flex-end;
}
.hNav ul {
  align-items: center;
  gap: 4rem;
  margin-bottom: 0.2rem;
}
.scrollCrass .hNav ul {
  margin-bottom: .4rem;
}
.hNav li {
  position: relative;
}
.hNav li a {
  position: relative;
  color: #fff;
  letter-spacing: .1em;
}
.hNav li a::before {
  content: "";
  position: absolute;
  bottom: -.2rem;
  left: 0;
  width: 100%;
  height: .1rem;
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
}
.hNav li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.hTel {
  margin: auto;
}
.hTel a {
  font-size: 4rem;
  color: #fff;
  white-space: nowrap;
}
.hTel a .small {
  font-size: 60%;
  color: #1ebef0;
}
#subPage .hTel a .small{
  color: #1ebef0;
}
#header.scrollCrass {
  background: rgb(0, 100, 190, .9);
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, .2);
}
#subPage #header.scrollCrass .hTel a .small{
  color: #1ebef0;
}
.menuIcon {
  display: none;
}
/*footer
---------------------------------------------------------*/
.footer {
  position: relative;
  background-color: #fff;
}
.footer .container {
  padding: 4.6rem 0 2.8rem;
}
.fRow {
  gap: 5rem;
  align-items: center;
  padding-bottom: 2.4rem;
}
.fLogo {
  width: 34.6rem;
  max-width: 100%;
}
.fNav {
  flex: 1;
  gap: 3.2rem;
  align-items: center;
  justify-content: flex-end;
}
.fNav ul {
  gap: 3.2rem;
  font-weight: 500;
}
.fBtn p a {
  color: #fff;
  background-color: var(--blue);
  font-size: 1.3rem;
  padding: 0.4rem 1.2rem 0.5rem;
  font-weight: 500;
  letter-spacing: .1em;
}
.fNav ul a:hover,
.footer .privacy a:hover {
  color: var(--light-blue);
}
.fBtn p a:hover {
  background-color: var(--light-blue);
}
.fAddress {
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.fAddress .name {
  font-size: 2rem;
  padding-bottom: 0.6rem;
}
.fAddress .map {
  background-color: var(--dark-blue);
  padding: 0.7rem 1rem .8rem;
  color: #fff;
  font-size: 1.3rem;
  margin-left: 1rem;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  letter-spacing: .1em;
}
.fAddress .map:hover {
  background-color: var(--light-blue);
}
.fAddress .time {
  font-size: 1.4rem;
  padding-top: .4rem;
}
.footer .privacy {
  font-size: 1.3rem;
  text-align: right;
  color: #646464;
}
.copyRight {
  border-top: .1rem solid #969696;
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  color: #969696;
  text-align: right;
  font-size: 1.3rem;
}
#pageTop {
  width: 5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #EBF5FA;
  display: grid;
  place-content: center;
  position: fixed;
  bottom: 0;
  transform: translateY(-50%);
  right: 3rem;
  z-index: 999;
  opacity: 0;
  transition: .4s;
}
#pageTop:hover {
  background-color: var(--blue);
}
#pageTop:hover img {
  filter: brightness(0) invert(1);
}
#pageTop.visible {
  opacity: 1;
}
#pageTop.at-footer {
  position: absolute;
  top: 0;
  bottom: auto;
  right: 3rem;
}

/*共通 パーツ
---------------------------------------------------------*/
/* タイトル */
.ttlEnJa {
  font-size: 1.6rem;
  margin-bottom: 4.8rem;
  text-align: left;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  letter-spacing: .05em;
}
.ttlEnJa span {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 1.4rem;
  white-space: nowrap;
}
.ttlEnJa._grad {
  color: var(--gray);
}
.ttlEnJa._grad span {
  background: var(--grad_blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttlEnJa._center {
  text-align: center;
}
.enTxtBg {
  position: absolute;
  z-index: -1;
  white-space: nowrap;
  font-weight: 700;
}
/* ボタン */
.btn._arrow a {
  color: var(--blue);
  font-size: 1.8rem;
  letter-spacing: .1em;
  text-align: left;
  display: inline-block;
}
.btn._arrow a::after {
  content: "";
  display: block;
  width: 16rem;
  height: .7rem;
  background: url("../img/btn_arrow.svg") left center no-repeat;
  background-size: contain;
  transition: .2s;
  margin-top: 0.6rem;
}
.btn._arrow a:hover{
  opacity: .6;
}
.btn._arrow a:hover::after {
  transform: translateX(1.4rem);
}
.btn._arrow._white a,
.btn._arrow._grad-white a {
  color: #fff;
}
.btn._arrow._grad-blue a::after {
  background-image: url("../img/btn_arrow_grad_blue.svg");
}
.btn._arrow._grad-darkblue a::after {
  background-image: url("../img/btn_arrow_grad_darkblue.svg");
}
.btn._arrow._arrow._white a::after {
  background-image: url("../img/btn_arrow_white.svg");
}
.btn._arrow._arrow._grad-white a::after {
  background-image: url("../img/btn_arrow_grad_white.svg");
}
.btn._arrow._back a {
  text-align: center;
  font-size: 1.6rem;
}
.btn._arrow._back a .fontEn {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .1em;
  margin-right: 0.2rem;
}
.btn._arrow._back a::after {
  transform: scale(-1, 1);
  background-position: center;
}
.btn._arrow._back a:hover::after {
  transform: scale(-1, 1) translateX(1rem);
}

.btn03._arrow{
  text-align:center;
}
.btn03._arrow a {
  color: var(--blue);
  font-size: 1.6rem;
  letter-spacing: .1em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.btn03._arrow a::after {
  content: "";
  display: inline-block;
  width: 3.5rem;
  height: 0.6rem;
  background: url("../img/btn03_arrow.svg") left center no-repeat;
  background-size: contain;
  transition: .2s;
}
.btn03._arrow a:hover::after {
  transform: translateX(.6rem);
}

/*top
---------------------------------------------------------*/
.mainArea,
.mainSlide .slick-slide {
  height: 100svh !important;
  min-height: 68rem !important;
}
.mainArea {
  position: relative;
}
.mainBox {
  position: absolute;
  top: -4rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  width: 57rem;
  max-width: 100%;
}
.mainBox h1 {
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 2rem;
  opacity: 0;
  position:relative;
}
.mainBox h1 img{
  position:absolute;
  bottom: -16rem;
  right: -5.4rem;
  width: 36.6rem;
}
.mainBox h2 {
  font-size: 2rem;
  letter-spacing: 0.4em;
  opacity: 0;
  padding-left: .3em;
  line-height: 1.7;
}
.mainArea.active h1,
.mainArea.active h2 {
  animation: var(--translateY);
  animation-delay: .4s;
}
:root {
  --translateY: translateY .8s 1 cubic-bezier(0.72, 0.08, 0.58, 1) forwards;
}
@keyframes translateY {
  0% {
    opacity: 0;
    transform: translateY(8rem);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mainSlide {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: .2s;
}
.mainSlide.slick-initialized {
  opacity: 1;
  visibility: visible;
  height: auto;
  position: relative;
}
.mainSlide .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-dots {
  position: absolute;
  bottom: 13vh;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 999;
}
.slick-dots li {
  margin: 0 .5rem !important;
}
.slick-dots li button {
  background-color: #fff;
  width: 4rem;
  height: .2rem;
  border: none;
  transition: background-color 0.3s ease;
}
.slick-dots li.slick-active button {
  background-color: #00fbff;
}
.slick-dots button::before {
  display: none;
}


.topLead {
  color: #fff;
  padding: 13rem 0 11rem;
  position: relative;
}
.topLead::before {
  content: "";
  width: 100%;
  height: 88.5rem;
  background: url("../img/top/lead_bg.jpg") top center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.topLead .box{
  position: relative;
  color: var(--dark-blue);
  margin-bottom: 6rem;
}
.topLead h2 {
  font-size: 4rem;
  padding-bottom: 1.6rem;
  letter-spacing: .1em;
}
.topLead .txt {
  font-size: 1.8rem;
  letter-spacing: .05em;
  line-height: 2.2;
  font-weight: 500;
}
.topLead .img._01{
  position: absolute;
  bottom: 0;
  left: -3rem;
  width: 26.2rem;
}
.topLead .img._02{
  position: absolute;
  bottom: 0;
  right: 1rem;
  width: 21.6rem;
}
.movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.loopTxt {
  overflow: hidden;
  z-index: -1;
}
.loopTxt._top{
  position: absolute;
  top: 1rem;
  left: 0;
}
.loopTxt._bottom{
  position: absolute;
  top: 80.4rem;
  left: 0;
}
.loopTxt p {
  animation: loop infinite linear 50s both;
  padding: 0 3rem;
}
.loopTxt._bottom p{
	animation-direction: reverse !important;
}
.loopTxt img {
  height: 7.2rem;
  max-width: none;
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.commonSec {
  background: url("../img/top/about_bg.jpg ") center no-repeat;
  background-size: cover;
  padding: 15rem 0;
}
.commonSec .row {
  gap: 12rem;
  position: relative;
  z-index: 1;
}
.commonSec .row .box {
  width: 35rem;
  max-width: 100%;
  position: relative;
  text-align: left;
  padding-top: 11rem;
  z-index: 4;
}
.commonSec._service .row .box {
  padding-top: 13.6rem;
}
.commonSec .row .box .enTxtBg {
  font-size: 15rem;
  color: #fff;
  top: 0;
  left: -5.8vw;
  text-align: left;
}
@media screen and (min-width: 1600px) {
  .commonSec .row .box .enTxtBg {
    left: -27.7rem;
    letter-spacing: .05em;
  }
}
.commonSec .row .box .txt {
  padding-bottom: 5rem;
  letter-spacing: .1em;
}
.commonSec .row .box .bgImg {
  width: 28.8rem;
  position: absolute;
  bottom: -11.6rem;
  right: -16rem;
  z-index: -1;
}
.commonSec .row .img {
  width: 104rem;
  margin-right: calc(-50vw + 50%);
  position: relative;
  z-index: 10;
}
.commonSec .row .img img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.commonSec._service {
  background-image: url("../img/top/service_bg.jpg ");
  position: relative;
  padding-bottom: 0;
}
.commonSec._service .container {
  padding-bottom: 15rem;
  position: relative;
}
.commonSec._service .row {
  flex-direction: row-reverse;
  color: #fff;
}
.commonSec._service .row .box .enTxtBg {
  opacity: .1;
  top: 2.6rem;
  left: -2.8vw;
}
.commonSec._service .row .box .txt {
  padding-bottom: 6rem;
}
.commonSec._service .bgImg {
  width: 50.2rem;
  position: absolute;
  bottom: 0;
  right: -14rem;
  z-index: 0;
  mix-blend-mode: screen;
}
.commonSec._service .row .img {
  margin-right: 0;
  margin-left: calc(-50vw + 50%);
}
.topNews{
  padding: 8rem 0 0;
}
.topNews .container {
  position: relative;
  text-align: left;
  padding-bottom: 17rem;
}
.topNews .ttlEnJa{
  margin-bottom: 2.6rem;
}
.postCard{
    gap: 4rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    padding-bottom: 7rem;
}
.postCard a .box{
    padding: 1.6rem 0 0;
    text-align: left;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.thumb {
    overflow: hidden;
    aspect-ratio: 4 / 2.6;
}
.thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .4s;
}
a:hover .thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
}
.date {
  color: #B4B4B4;
  font-size: 1.4rem;
}
.cate {
  padding: 0.3rem 1rem;
  color: #fff;
  background-color: var(--dark-blue);
  font-size: 1.4rem;
  min-width: 10rem;
  text-align: center;
  font-weight: 500;
}
a:nth-of-type(even) .cate {
  background-color: var(--blue);
}
.postCard a .ttl {
  line-height: 1.7;
  width: 100%;
}
.postCard a:hover .ttl {
  color: var(--blue);
}
.topNews .bgImg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36.8rem;
}
.topSlide {
  padding: 0;
  background-color:var(--pale-light-blue);
  position: relative;
}
/* .loopSlide {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: .2s;
  position: relative;
  z-index: 2;
}
.loopSlide.slick-initialized {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.loopSlide .slick-track {
  display: flex;
  gap: 6.4rem;
  padding: 12rem 0;
}
.loopSlide .slick-track li {
  width: 45.4rem !important;
}
.loopSlide .slick-track li:nth-of-type(even) {
  width: 24.4rem !important;
  margin-top: 14rem;
}
.loopSlide .slick-track li img {
    border-radius: 1.5rem;
    box-shadow: 2rem 2rem 2rem rgba(0, 100, 190, 0.2);
} */
.loopSlideWrap{
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.loopSlide {
  gap: 6.4rem;
  padding: 12rem 3.2rem;
  animation: loop infinite linear 50s both;
}
.loopSlide li{
  width: 24.4rem;
}
.loopSlide li:nth-of-type(odd)  {
  width: 45.4rem !important;
  margin-top: 14rem;
}
.loopSlide li img {
    border-radius: 1.5rem;
    box-shadow: 2rem 2rem 2rem rgba(0, 100, 190, 0.2);
}



.loopSlideBg {
  overflow: hidden;
  z-index: 1;
  position: absolute;
  top: 10rem;
  left: 0;
}
.loopSlideBg p {
  animation: loop infinite linear 70s both;
  animation-direction: reverse !important;
  padding: 0 3rem;
}
.loopSlideBg img {
  height: 35.2rem;
  max-width: none;
}


/* topSustana */
.topSustana {
  padding-top: 0;
  padding-bottom: 24%;
  overflow: hidden;
}
.topSustana .inner{
  position: relative;
  max-width: 170rem;
  margin-inline: auto;
  padding-top: 10rem;
}
.topSustana .img {
  width: 50%;
  margin: 0 auto;
}
.topSustana .img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
.topSustana .box{
  color: #fff;
}
.topSustana h2,
.topSustana .txtWrap{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  width: 100%;
  max-width: 100%;
}
.topSustana h2 {
  font-size: 6rem;
  padding-top: 17%;
  font-weight: 600;
  letter-spacing: .07em;
}
.topSustana .txtWrap {
  padding-top: 23%;
  opacity: 0;
}
.topSustana .box h3{
  font-size: 3rem;
  padding: 0 0 1.4rem;
  letter-spacing: .3em;
}
.topSustana .box p{
  line-height: 2;
}


.topCompany {
  padding-bottom: 14rem;
}
.topCompany .row {
  gap: 5rem;
}
.topCompany .row .img {
  width: 52rem;
  max-width: 100%;
}
.topCompany .row .box {
  flex: 1;
  text-align: left;
  position: relative;
  align-content: flex-end;
  margin-bottom: 1.6rem;
}
.topCompany .row .box .ttl {
  font-size: 3rem;
  letter-spacing: .05em;
}
.topCompany .row .box .enTxtBg {
  font-size: 10rem;
  color: #EBF5FA;
  top: 2.4rem;
  left: -1rem;
  line-height: 0.8;
}
.topCompany .row .box .enTxtBg .small {
  font-size: 75%;
}
.topCompany .row .box address {
  position: relative;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: .1rem solid #969696;
}
.topCompany .row .box .access {
  font-size: 1.8rem;
  padding-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.topCompany .row .box .map {
  background-color: var(--dark-blue);
  padding: 0.8rem;
  width: 16rem;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.topCompany .row .box .map:hover {
  background-color: var(--light-blue);
}
.topCompany .row .box .tel {
  font-size: 3rem;
  display: block;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 0.4rem;
}
.topCompany .row .box .tel .num {
  font-size: 153%;
  letter-spacing: .02em;
}
.topCompany .row .box address .bgImg {
  width: 9.6rem;
  position: absolute;
  top: 0;
  right: -2.6rem;
}
.topCompany .row .box .fax {
  font-size: 1.8rem;
  padding-bottom: 0.3rem;
}
.topCompany .row .box .time {
  font-size: 1.4rem;
}
.topRecruit {
  background: url("../img/top/recruit_bg.jpg") top center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 7rem 0 0;
  height: 100.8rem;
}
.topRecruit .container {
  position: relative;
}
.topRecruit .row {
  gap: 11rem;
}
.topRecruit .ttl {
  width: 61.9rem;
  max-width: 100%;
}
.topRecruit .recruitTtl {
  width: 72rem;
  max-width: 100%;
  margin: -8.3rem 0 0 7rem;
}
.topRecruit .enTtl {
  font-size: 9.6rem;
  text-align: left;
  line-height: 1;
  letter-spacing: .05em;
  font-weight: 600;
}
.topRecruit .enTtl img{
  width: 48.3rem;
  margin-left: 5.2rem;
}
.topRecruit .row .box {
  flex: 1;
  text-align: left;
  padding-top: 6rem;
}
.topRecruit .row .box .ttlEnJa{
  margin-bottom: 3.6rem;
}
.topRecruit .row .box .txt {
  font-size: 1.8rem;
  padding-bottom: 4rem;
}

.fContact {
  background-color: var(--dark-blue);
  padding: 12rem 0 9rem;
}
.fContact .ttlEnJa {
  position: relative;
  width: 100%;
  z-index: 3;
  padding-top: 2.7rem;
}
.fContact .ttlEnJa::before {
  content: "";
  width: 111rem;
  height: 23.3rem;
  background: url("../img/contactttl_bg.png") center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.fContact .box {
  margin-top: 2.4rem;
}
.fContact .box h3{
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.fContact .box a {
  border: .1rem solid #fff;
  display: block;
  padding: 2rem 1rem;
  background-color: #155599;
  color: #fff;
  max-width: 53.5rem;
  margin-inline: auto;
}
.fContact .box a .numWrap {
  font-size: 3rem;
  display: block;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 0.4rem;
}
.fContact .box a .num {
  font-size: 153%;
  letter-spacing: .02em;
}

/*下層共通
---------------------------------------------------------*/
.lower_mv {
  height: 36rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.lower_mv .ttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .35em;
}
.lower_mv .ttl .fontEn {
  display: block;
  font-size: 7rem;
  padding-bottom: 1rem;
}
.lower_mv .bgImg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.lower_mv .bgImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pankz {
  padding: 1rem 0;
}
.pankz ul {
  text-align: left;
  font-size: 1.4rem;
}
.pankz ul li {
  display: inline;
}
.pankz ul li a::after {
  content: ">";
  margin: 0 0.2em 0 .4em;
}
.pankz ul li,
.pankz ul li a,
.pankz ul li a::after {
  color: #000;
}
.pankz._white ul li,
.pankz._white ul li a,
.pankz._white ul li a::after  {
  color: #fff;
}
.pankz ul li a:hover {
  color: var(--blue);
}
/*privacy
---------------------------------------------------------*/
.s_privacy {
  padding-top: 7rem;
}
.s_privacy .area h2 {
  background-color: var(--blue);
  color: #fff;
  padding: 1.4rem;
  margin: 6rem 0 7rem;
  font-size: 1.6rem;
  letter-spacing: .15em;
  font-weight: 600;
}
.s_privacy .box {
  text-align: left;
}
.s_privacy .box+.box {
  margin-top: 2.8rem;
}
.s_privacy .box h3 {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
}
.s_privacy .box p,
.s_privacy .box ul li {
  line-height: 1.7;
}
.s_privacy .box .break {
  word-break: break-all;
}
.s_privacy .box p+p,
.s_privacy .box ul {
  margin-top: 2.2rem;
}
.s_privacy .box ul li {
  text-align: left;
  line-height: 1.4;
  text-indent: -0.3em;
  padding-left: 0.6em;
}
.s_privacy .box ul li+li {
  margin-top: .6rem;
}
.s_privacy .box ul li::before {
  content: "●";
  display: inline-block;
  font-size: 0.4rem;
  vertical-align: .4rem;
  margin-right: 0.6rem;
}
/*recruit soon
---------------------------------------------------------*/
.recruitSoon {
  background: url("../img/recruit/soon_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 21rem 0 0;
  color: #fff;
}
.recruitSoon h1 {
  font-size: 10rem;
  padding-bottom: 6.6rem;
  font-weight: 500;
}
.recruitSoon .txt {
  font-size: 1.8rem;
  padding-bottom: 6rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
}
.recruitSoon .bgImg {
  width: 35rem;
  max-width: 100%;
  margin-inline: auto;
  padding: 8rem 0;
  transform: translateX(-2rem);
}
/*recruit
---------------------------------------------------------*/
.recruitMv {
  background: url("../img/recruit/mv_bg.jpg") center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 12rem 0 0;
  height: 96.1rem;
}
.recruitMv h1 {
  font-size: 2.4rem;
  letter-spacing: .2em;
}
.recruitMv h1 span._stroke {
  display: block;
  font-size: 9.1rem;
  color: transparent;
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
  line-height: 1;
}
.recruitMv h1 span._white {
  display: block;
  font-size: 11rem;
  line-height: 1;
  padding-bottom: 1rem;
}
.recruitMv h2 {
  width: 58.4rem;
  max-width: 100%;
  margin: -6rem -2rem 0 auto;
}
.recruitLead {
  position: relative;
  padding: 0;
  background: url("../img/recruit/lead_bg.jpg") center no-repeat;
  background-size: cover;
  color: #fff;
}
.recruitLead .container{
  position: relative;
  z-index:1
}
.recruitLead .img{
  margin: 10rem 0 0;
  width:90rem;
  max-width: 100%;
  margin-inline: auto;
}
.recruitLead .box{
  margin-top: -13.3rem;
  margin-bottom: 13.8rem;
}
.recruitLead .enTtl {
  font-size: 8.6rem;
  text-align: left;
  line-height: 1;
  letter-spacing: .05em;
  font-weight: 600;
  width: 51rem;
  max-width: 100%;
  margin-inline: auto;
}
.recruitLead .enTtl img{
  width: 43.4rem;
  margin-left: 4.5rem;
}
.recruitLead h2 {
  font-size: 3.6rem;
  margin: 0.5rem 0 0 8rem;
  letter-spacing: 0.22em;
  text-indent: -0.7em;
}
.recruitLead .txt{
  font-size: 1.8rem;
  margin-top: 2.4rem;
  line-height: 2;
}
.recruitLead .loopTxt{
  z-index: 0;
}
.recruitLead .loopTxt._top{
  top: 5.7rem;
  left: 0;
}
.recruitLead .loopTxt._bottom{
  top: auto;
  bottom: 2rem;
  left: 0;
}
.recruitBusiness {
  position: relative;
  background: #fff;
}
.recruitBusiness .row {
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
  position: relative;
  z-index: 10;
}
.recruitBusiness .row .box:last-child {
  margin-top: 14.6rem;
}
.recruitBusiness .row .box .ttl {
  font-size: 3.2rem;
  padding-bottom: 2rem;
  margin-top: -8.4rem;
  text-align: left;
  margin-left: 1rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--dark-blue);
}
.recruitBusiness .row .box .ttl .num {
  font-size: 15rem;
  background: var(--grad_blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
  margin-right: 1rem;
}
.recruitBusiness .row .box p {
  letter-spacing: 0.05em;
}
.recruitBusiness .bgImg._01 {
  position: absolute;
  right: -18rem;
  top: -10rem;
  width: 89rem;
  width: 49vw;
  max-width: 89rem;
  z-index: 0;
}
.recruitBusiness .bgImg._02 {
  position: absolute;
  left: -12.3rem;
  bottom: -7rem;
  width: 38vw;
  max-width: 73.1rem;
  z-index: 0;
}
.recruitPersonal {
  background: url("../img/recruit/personal_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 11rem 0 13rem;
}
.recruitPersonal .txtRow {
    gap: 7.3rem;
}
.recruitPersonal .txtBox {
    text-align: left;
    margin-top: 5rem;
    width: 38.7rem;
    max-width: 100%;
}
.recruitPersonal .txtBox .ttl {
    font-size: 3rem;
    padding-bottom: 2rem;
    color: var(--dark-blue);
}
.recruitPersonal .boxWrap {
  margin-inline: auto;
  position: relative;
  flex: 1;
}
.recruitPersonal .boxWrap::after{
  content: "";
  width: 40.5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: .1rem solid var(--blue);
  position: absolute;
  bottom: 5rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}
.recruitPersonal .row {
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.recruitPersonal .box {
  width: 30rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--dark-blue);
  display: grid;
  place-content: center;
  margin-inline: auto;
  justify-items: center;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  z-index: 2;
}
.recruitPersonal .box._01 .img {
  width: 8.1rem;
}
.recruitPersonal .box._02 .img {
  width: 12.7rem;
  margin-right: 2rem;
}
.recruitPersonal .box._03 .img {
  width: 10.2rem;
}
.recruitPersonal .box h4 {
  font-size: 2rem;
  margin-top: 1rem;
}

#parallax{
	height: 45.5rem;
}
#parallax .img {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	z-index: -9999;
	transition: 1.5s;
	background: url("../img/recruit/parallax.jpg") center center no-repeat;
	background-size: cover;
}


.recruit_loopTxt {
  overflow: hidden;
  padding: 12rem 0 5.4rem;
  background-color: #fff;
}
.recruit_loopTxt p {
  animation: loop infinite linear 22s both;
  padding: 0 3rem;
}
.recruit_loopTxt img {
  height: 7.2rem;
  max-width: none;
}
.recruitEntry {
  background: url("../img/recruit/entry_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 15.4rem 0;
}
.recruitEntry h2 {
  color: #fff;
  font-size: 11rem;
  font-style: italic;
  padding-bottom: 3.6rem;
  line-height: 1;
}
.btnBig {
  background: linear-gradient(90deg, #abceee 0%, #0064BE 80%);
  width: 53.5rem;
  max-width: 100%;
  padding: .2rem;
  margin-inline: auto;
}
.btnBig a {
  color: #fff;
  font-size: 3.8rem;
  display: inline-block;
  width: 100%;
  margin-inline: auto;
  padding: 3.2rem 2rem 3.2rem 1rem;
  position: relative;
  letter-spacing: .1em;
  z-index: 4;
}
.btnBig a .small {
  font-size: 70%;
}
.btnBig a::after {
  content: "";
  width: 7rem;
  height: .7rem;
  background: url("../img/btn_arrow_btnBig.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  transform: translateY(-80%);
  position: absolute;
  right: 3.8rem;
  top: 50%;
}
.btnBig a .garadBg::before,
.btnBig a .garadBg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.btnBig a .garadBg::before {
  transition: all 0.3s;
  z-index: -1;
  background: linear-gradient(90deg, #9acfff 0%, #1267b3 40%, #00288F 90%);
}
.btnBig a .garadBg::after {
  z-index: -2;
  background: linear-gradient(90deg, #abceee 0%, #0064BE 80%);
}
.btnBig a:hover .garadBg::before {
  opacity: 0;
}


/*service
---------------------------------------------------------*/
#serviceTop {
  position: relative;
  padding: 0 0 6.4rem;
  overflow: visible;
}
#serviceTop .container{
  position: relative;
  padding-top: 10rem;
}
.serviceTop h2 {
  color: var(--blue);
  font-size: 4rem;
  letter-spacing: .2em;
  text-indent: .2em;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.serviceTop .txt {
  line-height: 2.125;
}
#serviceTop figure {
  width: clamp(24rem,15vw,29.2rem);
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: -15rem;
}
#serviceTop figure._02 {
  width: clamp(17rem,13vw,21.3rem);
  bottom: auto;
  left: auto;
  top: -4.1rem;
  right: -10.5rem;
}
@media screen and (max-width: 1450px) {
  #serviceTop figure {
  left: -5rem;
}
#serviceTop figure._02 {
  right: 3rem;
}
}
#serviceContents {
  padding-top: 0;
}
.serviceArea:not(:first-of-type) {
  margin-top: 8rem;
}
.serviceWrap {
  position: relative;
  gap: 5.4rem;
  padding: 4.2rem 0 6.8rem;
}
.serviceArea:nth-of-type(even) .serviceWrap{
  justify-content: flex-end;
}
.serviceWrap dl {
  text-align: left;
  line-height: 2;
}
.serviceWrap dl::before {
  content: "";
  display: block;
  position: absolute;
  width: clamp(128rem,97vw,163.7rem);
  min-width: 160rem;
  height: 51.2rem;
  left: -42rem;
  right: calc(-50vw + 100%);
  top: -20rem;
  z-index: -1;
  background: url("../img/service/service01_bg.jpg") center center no-repeat;
  background-size: cover;
}
.serviceArea:nth-of-type(even) .serviceWrap dl::before {
  left: -12rem;
}
@media screen and (max-width: 1400px) {
  .serviceWrap dl::before{
      left: -40rem;
  }
}
@media screen and (max-width: 1370px) {
  .serviceArea:nth-of-type(even) .serviceWrap dl::before {
    left: -3rem;
  }
}
#service02 .serviceWrap dl::before {
  background-image: url("../img/service/service02_bg.jpg")
}
#service03 .serviceWrap dl::before {
  background-image: url("../img/service/service03_bg.jpg");
  top: -21.5rem;
}
.serviceWrap .img {
  position: relative;
  z-index: 5;
  flex: 1;
  height: 54rem;
  margin-right: 9rem;
  margin-left: calc(-50vw + 50%);
}
.serviceArea:nth-of-type(even) .serviceWrap .img {
  margin-left: 16rem;
  margin-right: calc(-50vw + 50%);
}
.serviceWrap .img img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.serviceWrap .num {
  display: inline-block;
  background: linear-gradient(90deg, #19ace1 0%, #ace1f4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15rem;
  margin: -.25em 0 0;
}
.serviceArea:nth-of-type(even) .num {
  background-image: var(--grad_blue);
}
.serviceWrap h3 {
  font-size: 3rem;
  line-height: 1.6;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-feature-settings: normal;
}
.serviceArea:nth-of-type(odd) dl {
  color: #fff;
}
.serviceArea dd{
  max-width: 68.8rem;
}
.serviceWrap figure {
  position: absolute;
}
#service01 .serviceWrap figure {
  width: min(14.5833vw, 280px);
  right: -14rem;
  bottom: 0;
  mix-blend-mode: screen;
}
#service02 .serviceWrap figure {
  width: min(14.5833vw, 267px);
  top: 8rem;
  left: -10.3rem;
}
#service03 .serviceWrap figure {
  width: min(14.5833vw, 236px);
  bottom: 0;
  right: -19rem;
  mix-blend-mode: screen;
}
@media screen and (max-width: 1550px) {
  #service01 .serviceWrap figure {
    width: 24rem;
    right: -5rem;
  }
  #service02 .serviceWrap figure {
    width: 24rem;
    left: 4rem;
  }
  #service03 .serviceWrap figure {
    width: 22rem;
    right: -5rem;
  }
}
.productArea {
  margin-top: 13rem;
  line-height: 2;
  font-feature-settings: normal;
}
.productArea h3 {
  max-width: 22rem;
  margin: 0 auto 3.5rem;
  position: relative;
  color: #fff;
  font-weight: 600;
  letter-spacing: .3em;
  text-indent: .3em;
  font-size: 2.2rem;
  line-height: 1.3;
  padding: 1.2rem 1rem 1rem;
  background: var(--blue);
}
.productArea h3::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--blue) transparent transparent transparent;
  border-width: 1rem 1rem 0 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 99.9%;
  margin: 0 auto;
}

.productBox:not(:first-of-type) {
  margin-top: 6rem;
}
.productBox h4{
  font-size: 3rem;
  color: #19ace1;
  letter-spacing: .15em;
  margin-bottom: .4rem;
}
.productBox._non-iron h4{
  color: var(--blue);
}
.productBox {
  opacity: 0;
  animation-fill-mode: forwards;
}
.swiperWrap{
  position: relative;
  min-height: 40rem;
}
.swiper{
  /* height: 41.8rem; */
}
.swiper-button::before{
  content:"";
  background: url("../img/arrow_blue.svg") center center no-repeat;
  background-size: contain;
  width: 1.3rem;
  height: 2.6rem;
  cursor: pointer;
  transition: .2s;
  position:absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 4;
}
.swiper-button-prev::before{
  transform: rotate(180deg);
  left: -3rem;
}
.swiper-button-next::before{
  right: -3rem;
}
.swiper-button:hover::before{
  opacity: .7;
}
.swiper-slide figcaption{
  opacity: 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  transition: .4s;
  margin: 0;
}
.swiper-slide-active figcaption{
  opacity: 1;
  margin: 1rem 0 0.2rem;
}
.swiper-slide img{
  border-radius: 1rem;
}
.swiper-slide{
  position: relative;
}
.swiper-slide::before{
  content: "";
  width: 100%;
  height: 88.9%;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0, .7) 60%, rgb(0, 0, 0, .7) 100%);
  position: absolute;
  top: 0;
  right: 0;
  margin: auto;
  z-index: 30;
  display: block;
  opacity: 1;
  transition: opacity .4s;
}
.swiper-slide-active::before{
  opacity: 0;
}
.swiper-slide-prev::before,
.swiper-slide:nth-of-type(1)::before,
.swiper-slide:nth-of-type(2)::before,
.swiper-slide:nth-of-type(3)::before{
  left: 0;
  right: auto;
  transform: rotate(180deg);
}
.productArea .txt{
  margin-top: 4rem;
}


/*about
---------------------------------------------------------*/
.anchor {
  gap: 1rem 1.25%;
}
.anchor li {
  width: 19%;
}
.anchor li a {
  font-size: 1.4rem;
  position: relative;
  color: #fff;
  background: var(--blue);
  padding: 2.3rem .5rem 4.2rem;
  display: block;
}
.anchor li a .fontEn {
  font-size: 200%;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: .07em;
}
.anchor li a::after {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--dark-blue) url("../img/about/arrow.svg") center center no-repeat;
  background-size: 1.1rem auto;
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  transition: .4s;
}
.anchor li:nth-of-type(even) a {
  background-color: var(--dark-blue);
}
.anchor li:nth-of-type(even) a::after {
  background-color: var(--blue);
}
.anchor li a:hover::after {
  background-color: #000;
  transform: translateY(.5rem)
}
.bgTop{
  position: relative;
  padding-top: 9rem;
}
.bgTop::before{
  content: "";
  width: 100%;
  height: 37.5rem;
  background: center right no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#outline::before{
  background-image: url("../img/about/outline_bg.jpg");
}
#history::before{
  background-image: url("../img/about/history_bg.jpg");
}
#group::before{
  background-image: url("../img/about/group_bg.jpg");
}
.aboutTtl {
  position: relative;
  padding-bottom: 3rem;
}
.aboutTtl .img {
  position: absolute;
  bottom: -9.6rem;
  right: 10%;
  max-width: 18.2rem;
}
.aboutWrap {
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 8rem 10rem;
}
.aboutWrap dt, .aboutWrap dd {
  width: 78%;
  text-align: left;
  padding: 2.6rem 6rem 3.6rem;
  border-top: 1px solid #DCDCDC;
}
#outline .aboutWrap dt,
#outline .aboutWrap dd {
  padding-bottom: 2.8rem;
}
.aboutWrap dt:last-of-type, .aboutWrap dd:last-of-type {
  border-bottom: 1px solid #dcdcdc;
}
.aboutWrap dt {
  width: 22%;
  font-weight: 500;
  padding: 2.6rem 1rem;
  background: var(--pale-light-blue);
  text-align: center;
  border-color: var(--blue) !important;
  color: var(--dark-blue)
}
.aboutWrap dd h3{
  font-size: 1.8rem;
}
.aboutWrap dd h3:nth-of-type(n+2){
  margin-top: 2rem;
}

.bgWrap{
  position: relative;
  padding: 0;
}
.bgWrap::before{
  content: "";
  width: 200%;
  height: 200%;
  background: url("../img/about/bg_img.png") top left -181.4rem repeat;
  background-size: auto;
  position: absolute;
  top: -187rem;
  left: -64rem;
  z-index: -1;
  transform: rotate(-28deg);
}
#access.bgWrap::before{
  height: 240%;
  top: -135rem;
  left: -58.3rem;
}
.bgWrap .container {
  padding: 10rem;
  background: #fff;
}
#history .aboutTtl .img {
  bottom: -3rem;
  left: 10%;
  right: auto;
  max-width: 19.8rem;
}
.historyProfile {
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 8rem 10rem 0;
}
.historyProfile dt, .historyProfile dd {
  width: 80%;
  text-align: left;
  padding: 2.7rem 8rem;
  border-top: 1px solid #DCDCDC;
}
.historyProfile dt:last-of-type, .historyProfile dd:last-of-type {
  border-bottom: 1px solid #dcdcdc;
}
.historyProfile dt {
  width: 20%;
  font-weight: 500;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--blue);
  font-size: 2.3rem;
}
#machine{
    margin-bottom: 12rem;
}
.machineAreaWrap{
  max-width: 600px;
  margin: 0 auto;
}
.machineArea + .machineArea{
  margin-top: 4rem;
}
.machineArea h3{
  color: #fff;
  background-color: var(--blue);
  font-size: 1.8rem;
  padding: 0.6rem;
}

.machineWrap dt, .machineWrap dd {
  width: 35%;
  text-align: center;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid #DCDCDC;
}
.machineWrap dt {
  font-weight: 500;
  width: 65%;
  text-align: left;
  border-color: var(--blue) !important;
  color: var(--dark-blue);
  white-space: nowrap;
}
#group .aboutTtl .img {
  max-width: 20.8rem;
  bottom: -2rem;
  right: auto;
  left: 10%;
  z-index: 1;
}
.btn02 a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: var(--blue) 1px solid;
  background: var(--dark-blue);
  color: #fff;
  padding: 1.2rem 2rem;
  text-align: center;
  letter-spacing: .05em;
  margin-top: 1rem;
}
.btn02 a::after {
  content: "";
  display: block;
  background: url("../img/about/blank_wh.svg") center center no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  margin-left: .7rem;
}
.btn02 a:hover {
  background-color: #000
}
.aboutWrap dd .img {
  margin-top: 2rem;
  max-width: 42rem;
}
#access .aboutWrap{
  padding: 0;
}
.gmap {
  margin-top: 2rem;
  height: 40rem;
}
.gmap iframe {
  width: 100%;
  height: 100%;
}
img[src*="/map.jpg"] {
  max-height: 36rem;
}


/*news
---------------------------------------------------------*/
.displayName .ttl {
    margin-bottom: 3.8rem;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--dark-blue);
}
.archiveCateWrap{
  gap: 4rem;
  align-items: center;
  margin-bottom: 7rem;
}
.archiveCateWrap .fontEn{
  font-size: 2.4rem;
  color: var(--dark-blue);
}
.archiveCate{
  gap: 0.8rem;
  flex-wrap: wrap;
}
.archiveCate li{
  min-width: 12rem;
}
.archiveCate li a{
  background-color: var(--dark-blue);
  font-size: 1.5rem;
  display: block;
  color: #fff;
  padding: 0.6rem;
}
.archiveCate li a:hover {
  background-color: var(--light-blue);
}
#newsPage .postCard{
    gap: 5rem;
}
#newsPage .cate {
  background-color: var(--dark-blue);
  font-size: 1.5rem;
}
/* pager */
.pager {
    width: 100%;
    text-align: center;
    margin-top: 4rem;
}
.pager span,
.pager a {
    padding: 0;
    margin: 0 1.8rem;
    transition: .1s;
    width: 2.8rem;
    height: 3.3rem;
    font-weight: 500;
    display: inline-block;
}
.next.page-numbers,
.prev.page-numbers{
    font-size: 1.2rem;
}
.pager .current {
    border-bottom: .1rem solid var(--blue);
}
.pager a:hover {
    color: var(--blue);
    opacity: 1;
}



/*news 詳細
---------------------------------------------------------*/
.newsSingle {
  padding: 6.4rem 0 0;
}
.singleWrap {
	text-align: left;
}
.singleHeader {
	margin-bottom: 2.4rem;
	gap: 1rem 3rem;
}
.singleHeader .date{
	font-size: 1.8rem;
}
.singleHeader .cate{
	padding: .7rem 2.8rem;
}
.singleHeader h2 {
	font-size: 3rem;
	width: 100%;
}
.single .singleThumb{
  margin-bottom: 3.6rem;
  text-align: center;
}
.single .singleThumb img{
	max-height: 64rem;
}
.single .cont h3,
.single .cont h4,
.single .cont h5,
.single .cont h6{
	font-size:1.8rem;
	margin-bottom: 1.4rem;
}
.single .cont h3{
	padding: 1.2rem 2rem;
	background-color: var(--pale-light-blue);
	color: var(--dark-blue);
}
.single .cont p{
	line-height: 2;
	margin-top: 1rem;
}
.single .btn03{
    margin: 6.6rem 0 8rem;
}
/* 前後の記事 */
.pageset {
  background: url("../img/news/pageset_bg.jpg") center no-repeat;
  background-size: cover;
  padding: 7rem 0 9rem;
}
.pageset .row{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 2.8rem;
	width: 100%;
}
.pageset .row > div{
	height: 100%;
}
.pageset .row > div a{
	display:flex;
	flex-direction:column;
	height: 100%;
}
.pageset .row > div a:hover{
	opacity:1;
}
.pageset a.postArrow .pagesetTxt{
  padding: 1.4rem 1.8rem 0.5rem;
  color: var(--blue);
  font-size: 1.2rem;
  position: relative;
  letter-spacing: .3em;
}
.pageset a.postArrow .pagesetTxt::after{
  content: "";
  display: block;
  width: 6.2rem;
  height: 0.8rem;
  background: url("../img/arrow_pageset.svg") right center no-repeat;
  background-size: contain;
  transition: .2s;
  position: absolute;
  bottom: 0;
  right: 0;
}
.pageset .pagebefore a.postArrow .pagesetTxt::after{
  right: auto;
  left: 0;
  transform: scale(-1, 1);
}
.pageset a.postArrow:hover .pagesetTxt::after{
  transform: translateX(.6rem);
}
.pageset .pagebefore a.postArrow:hover .pagesetTxt::after{
  transform: scale(-1, 1) translateX(.6rem);
}
.pageset a.postArrow:hover{
	color: var(--blue);
}
.pagebefore a.postArrow{
	text-align:left;
}
.pagenext a.postArrow{
	text-align:right;
	height: 100%;
}
.pagesetPost{
  background-color: #fff;
  text-align: left;
  flex: 1;
  align-items: flex-start;
}
.pagesetPostTxt{
  width: 50%;
  padding: 2.2rem 2rem;
  align-items: center;
  gap: 1rem;
}
.pagesetPost .thumb{
  width: 50%;
  aspect-ratio: 3 / 2;
  height: auto;
}
#newsPage .pagesetPostTxt .cate{
	font-size: 1.2rem;
	min-width: 7.7rem;
}
.pagesetPostTxt .date{
	font-size:1.2rem;
}
.pagesetPostTxt .ttl{
	font-size: clamp(14px,1.7vw,16px);
	line-height: 1.4;
	text-align: justify;
	font-weight: 500;
	width: 100%;
}




/*********************************/
/* タブレット用のスタイル記述 */
/*********************************/
@media screen and (max-width: 1300px) {
  html {
    font-size: .77vw;
  }
}
/*********************************/
/* スマートフォン用のスタイル記述 */
/*********************************/
@media screen and (max-width: 780px) {

  /*全体レイアウト
---------------------------------------------------------*/
  html {
    font-size: 2.7777777vw;
  }
  body {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  body.active {
    overflow: hidden;
  }
  article > section {
    padding: 4rem 0;
  }
  /*header
	-------------------------------------------------------*/
  .hNav {
    display: none;
  }
  #header {
    padding: 1.4rem 0;
  }
  .hLogo {
    width: 20rem !important;
  }
  .hLogo img {
    max-height: 2.8rem;
  }
  .hLogo._recruit {
    gap: 0.6rem;
  }
  .hLogo._recruit .logoRecruit {
    width: 10.8rem;
  }

  /*nav
	-----------------------------------------------------*/
  #index.active #header::before {
    display: none;
  }
  .menuIcon {
    position: fixed;
    top: 1.3rem;
    right: 5%;
    width: 3rem;
    height: 2.2rem;
    z-index: 99999;
    cursor: pointer;
    display: block;
  }
  .menuIcon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: .2rem;
    background: #fff;
    z-index: 10;
    transition: .2s;
  }
  .menuIcon span:nth-of-type(1) {
    top: 0;
  }
  .menuIcon span:nth-of-type(2) {
    top: 1rem;
  }
  .menuIcon span:nth-of-type(3) {
    bottom: 0;
  }
  .menuIcon.active span:nth-of-type(1) {
    -webkit-transform: translateY(1rem) rotate(45deg);
    transform: translateY(1rem) rotate(45deg);
  }
  .menuIcon.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menuIcon.active span:nth-of-type(3) {
    -webkit-transform: translateY(-1rem) rotate(-45deg);
    transform: translateY(-1rem) rotate(-45deg);
  }
  #nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 6rem 5% 4rem;
    background: var(--blue);
    visibility: hidden;
    opacity: 0;
  }
  .active #header.scrollCrass {
    background: var(--blue);
  }
  #nav.active {
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    z-index: 9990;
  }
  .active #header.scrollCrass {
    box-shadow: none;
  }
  .spMenu .img {
    mix-blend-mode: screen;
    width: 80%;
    margin: 1rem auto 2rem 2.2rem;
    opacity: .8;
  }
  .spMenu li {
    border-bottom: 1px solid #f2f2f2;
  }
  .spMenu li:first-child {
    border-top: 1px solid #f2f2f2;
  }
  .spMenu li a {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    color: #fff;
    display: block;
    padding: 1.2rem 1.5rem;
    position: relative;
  }
  .spMenu li a::after {
    content: "";
    width: 1.4rem;
    height: 1.2rem;
    background: url("../img/spMenu_arrow.svg") center no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    top: 1.6rem;
    right: 1rem;
  }
  .spMenu .hBtn {
    margin-top: 2rem;
  }
  .spMenu .hBtn p {
    width: 50%;
  }
  .spMenu .hBtn p a {
    padding: 1.6rem 1rem;
    font-size: 1.8rem;
  }
  .spMenu .hTel {
    padding: 2rem 0 0;
  }
  .spAddress {
    text-align: left;
    font-weight: 500;
    background-color: #fff;
    padding: 1.4rem 1.6rem;
    margin-top: 2rem;
  }
  .spAddress .name {
    font-size: 1.8rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.4rem;
    border-bottom: .1rem solid #969696;
  }
  .spAddress .address {
    font-size: 1.3rem;
  }
  .spAddress .map {
    background-color: var(--dark-blue);
    padding: 0.7rem 1rem;
    color: #fff;
    font-size: 1.3rem;
    margin-left: 1rem;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    vertical-align: .1rem;
  }
  .spAddress .map:hover {
    background-color: var(--light-blue);
  }
  .spAddress .time {
    font-size: 1.1rem;
    padding-top: .4rem;
    letter-spacing: 0.02em;
  }

  /*footer
---------------------------------------------------------*/
  .footer .container {
    padding: 4.6rem 0 1.8rem;
  }
  .fNav {
    display: none;
  }
  .fAddress .name {
    font-size: 1.8rem;
    padding-bottom: 0.6rem;
  }
  .fAddress .map {
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
    margin-left: 0;
    margin: 0.6rem 0;
  }
  .fAddress .time {
    font-size: 1.2rem;
    padding-bottom: 1rem;
  }
  .footer .privacy {
    font-size: 1.3rem;
    text-align: right;
    color: #646464;
  }
  .copyRight {
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
  }
  #pageTop {
    width: 4.4rem;
    right: 1rem;
    bottom: -1rem;
  }
  #pageTop.at-footer {
    top: 0;
    bottom: auto;
    right: 1rem;
  }
  /*共通 パーツ
---------------------------------------------------------*/
  /* タイトル */
  .ttlEnJa {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .ttlEnJa span {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  #fContact .ttlEnJa {
    margin-bottom: 0;
    padding-top: 3.3rem;
  }
  /* ボタン */
  .btn._arrow a {
    color: var(--blue);
    font-size: 1.8rem;
    letter-spacing: .1em;
    text-align: left;
    display: inline-block;
  }
  .btn._arrow a::after {
    content: "";
    display: block;
    width: 16rem;
    height: .7rem;
    background: url("../img/btn_arrow.svg") left center no-repeat;
    background-size: contain;
  }
  .btn._arrow._white a,
  .btn._arrow._grad-white a {
    color: #fff;
  }
  .btn._arrow._grad-blue a::after {
    background-image: url("../img/btn_arrow_grad_blue.svg");
  }
  .btn._arrow._grad-darkblue a::after {
    background-image: url("../img/btn_arrow_grad_darkblue.svg");
  }
  .btn._arrow._arrow._white a::after {
    background-image: url("../img/btn_arrow_white.svg");
  }
  .btn._arrow._arrow._grad-white a::after {
    background-image: url("../img/btn_arrow_grad_white.svg");
  }

.btn03._arrow a {
  font-size: 1.5rem;
}
.btn03._arrow a::after {
  width: 3.2rem;
}





  /*top
---------------------------------------------------------*/
  .mainArea,
  .mainSlide .slick-slide {
    height: 100svh !important;
    min-height: 44rem !important;
  }
  .mainBox {
    max-height: 14rem;
    padding-left: 1.4rem;
    filter: drop-shadow(0 0 .6rem #7d7d7d);
  }
  .mainBox h1 {
    font-size: 5.3rem;
    margin-bottom: 1.6rem;
  }
  .mainBox h1 img{
  bottom: -6.4rem;
  right: 2.2rem;
  width: 15.8rem;
}
  .mainBox h2 {
    font-size: 1.4rem;
    letter-spacing: 0.4em;
    padding-left: .2em;
  }
  .slick-slide img.onlypc {
    display: none !important;
  }
  .mainSlide .slick-slide._01 img {
    object-position: bottom;
  }
  .mainSlide .slick-slide._04 img {
    object-position: bottom;
  }
    .mainSlide .slick-slide._05 img {
    object-position: 50% 75%;
  }
  .slick-dots {
    bottom: 6rem;
  }
  .slick-dots li {
    margin: 0 .5rem !important;
  }
  .slick-dots li button {
    width: 2.6rem;
  }

  .topLead {
    padding: 7rem 0 4rem;
  }
  .topLead::before {
    height: 44rem;
  }
  .topLead .box{
    margin-bottom: 7rem;
  }
  .topLead h2 {
    font-size: 2.2rem;
    padding-bottom: 1.2rem;
  }
  .topLead .txt {
    font-size: 1.4rem;
    line-height: 2;
  }
  .topLead .img._01{
    bottom: -6.5rem;
    left: -1rem;
    width: 12rem;
  }
  .topLead .img._02{
    bottom: -6.5rem;
    right: 0rem;
    width: 10.5rem;
  }
  .loopTxt {
  overflow: hidden;
  z-index: -1;
}
.loopTxt._bottom{
  top: auto;
  bottom: 11.4rem;
}
.loopTxt p {
  padding: 0 3rem;
}
.loopTxt img {
  height: 4.2rem;
}
  .commonSec {
    padding: 3rem 0;
  }
  .commonSec .row {
    gap: 4rem;
    flex-direction: column !important;
  }
  .commonSec .row .box {
    padding-top: 4.4rem !important;
  }
  .commonSec .row .box .enTxtBg {
    font-size: 6.5rem;
    left: -3.3vw;
    top: 0 !important;
  }
  .commonSec .row .box .txt {
    padding-bottom: 2rem!important;
  }
  .commonSec .row .box .bgImg {
    width: 14.8rem;
    bottom: -6.4rem;
    right: -1rem;
  }
  .commonSec .row .img {
    width: 100%;
    min-height: auto;
    margin: auto !important;
  }
  .commonSec .row .img img {
    height: auto;
  }
  .commonSec._service .container {
    padding-bottom: 4rem;
  }
  .commonSec._service .row .box .enTxtBg {
    left: -4vw;
  }
  .commonSec._service .bgImg {
    width: 15.6rem;
    bottom: 23.9rem;
    right: 1rem;
  }
  .topNews{
  padding: 5rem 0 0;
}
.topNews .container {
  padding-bottom: 8rem;
}
.topNews .ttlEnJa{
  margin-bottom: 2.6rem;
}
.postCard{
    gap: 3.2rem;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 4rem;
}
.postCard a .box{
    padding: 1.2rem 0 0;
    gap: .4rem 1rem;
}
.date {
  font-size: 1.3rem;
}
.cate {
  padding: 0.3rem 1rem;
  font-size: 1.3rem;
  min-width: 8.6rem;
}
.topNews .bgImg {
  width: 20rem;
}
  .topSlide {
    padding: 4rem 0 2rem;
  }
  /* .loopSlide .slick-track {
    gap: 1.8rem;
    padding: 2rem 0;
  }
  .loopSlide .slick-track li {
    width: 13.4rem !important;
  }
  .loopSlide .slick-track li:nth-of-type(even) {
    width: 7.2rem !important;
    margin-top: 6rem;
  }
  .loopSlide .slick-track li img {
    border-radius: .6rem;
    box-shadow: 0.6rem 0.6rem 1rem rgba(0, 100, 190, 0.2);
} */
.loopSlide {
    gap: 1.8rem;
    padding: 2rem .9rem;
}
.loopSlide li{
    width: 7.2rem ;
}
.loopSlide li:nth-of-type(odd)  {
    width: 13.4rem !important;
    margin-top: 6rem;
}
.loopSlide li img {
    border-radius: .6rem;
    box-shadow: 0.6rem 0.6rem 1rem rgba(0, 100, 190, 0.2);
}


.loopSlideBg {
  top: 5rem;
  left: 0;
}
.loopSlideBg p {
  padding: 0 3rem;
}
.loopSlideBg img {
  height: 16rem;
}

/* topSustana */
.topSustana{
  padding-bottom: 34%;
}
.topSustana .inner{
  padding-top: 8rem;
}
.topSustana .img {
  width: 70%;
}
.topSustana h2 {
  font-size: 2.2rem;
  padding-top: 50%;
}
.topSustana .txtWrap {
  padding-top: 50%;
}
.topSustana .box h3{
  font-size: 1.6rem;
  padding: 0 0 1rem;
}
.topSustana .box p{
  line-height: 1.8;
  font-size: 1.2rem;
}


  .topCompany {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .topCompany .row {
    gap: 2rem;
    flex-direction: column;
  }
  .topCompany .row .img {
    width: 52rem;
    max-width: 100%;
  }
  .topCompany .row .box {
    flex: 1;
    text-align: left;
    position: relative;
    align-content: flex-end;
  }
  .topCompany .row .box .ttl {
    font-size: 2rem;
    letter-spacing: .05em;
    padding-top: 2.5rem;
  }
  .topCompany .row .box .enTxtBg {
    font-size: 4.2rem;
    top: 0;
    right: 0;
  }
  .topCompany .row .box address {
    margin-top: 0.6rem;
    padding-top: 1rem;
  }
  .topCompany .row .box .access {
    font-size: 1.4rem;
    padding-bottom: 1.2rem;
  }
  .topCompany .row .box .map {
    padding: 0.8rem;
    width: 12.8rem;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .topCompany .row .box .tel {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
  }
  .topCompany .row .box address .bgImg {
    width: 5.3rem;
    top: 0;
    right: -1rem;
  }
  .topCompany .row .box .fax {
    font-size: 1.6rem;
    padding-bottom: 0.3rem;
  }
  .topCompany .row .box .time {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }

  .topRecruit {
    background-image: url("../img/top/recruit_bg_sp.jpg");
    padding: 2.8rem 0 0;
    height: 80rem;
  }
  .topRecruit .container {
    position: relative;
  }
  .topRecruit .recruitTtl {
    width: 26.7rem;
    margin: -3.6rem 0 0 5.7rem;
  }
.topRecruit .enTtl img{
    width: 48.3rem;
    margin-left: 5.2rem;
}
  .topRecruit .enTtl {
    font-size: 4.7rem;
    top: 0rem;
    left: 0;
    line-height: 1.4;
  }
  .topRecruit .enTtl img{
    width: 24rem;
    margin-left: 2.5rem;
    margin-top: -0.7rem;
  }
  .topRecruit .row {
    gap: 2rem;
    flex-direction: column;
  }
  .topRecruit .row .box {
    padding-top: 0.6rem;
  }
  .topRecruit .row .box .ttlEnJa {
    margin-bottom: 2rem;
}
  .topRecruit .row .box .txt {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }
  .topRecruit .btn._arrow {
    text-align: right
  }
  .topRecruit .row .img {
    width: 100%;
    margin-left: 0;
    margin-top: -2rem;
  }
  .fContact {
    padding: 1.4rem 0 4rem;
  }
  .fContact .ttlEnJa::before {
    width: 100%;
    height: auto;
  }
  .fContact .box {
    margin-top: 2.4rem;
  }
  .fContact .box h3{
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .fContact .box a {
    padding: 1.4rem .4rem;
  }
  .fContact .box a .numWrap {
    font-size: 2.2rem;
  }


  /*下層共通
---------------------------------------------------------*/
  .lower_mv {
    height: 22rem;
  }
  .lower_mv .ttl {
    font-size: 1.4rem;
  }
  .lower_mv .ttl .fontEn {
    font-size: 3.4rem;
    padding-bottom: 0.6rem;
    padding-top: 1.6rem;
  }
  .pankz {
    padding: 0.8rem 0;
  }
  .pankz ul {
    font-size: 1.2rem;
  }



  /*privacy
---------------------------------------------------------*/
  .s_privacy {
    padding-top: 2rem;
  }
  .s_privacy .area h2 {
    padding: 1rem;
    margin: 4rem 0 3rem;
    font-size: 1.4rem;
  }
  .s_privacy .box+.box {
    margin-top: 2rem;
  }
  .s_privacy .box h3 {
    font-size: 1.4rem;
  }
  .s_privacy .box p+p,
  .s_privacy .box ul {
    margin-top: 1.8rem;
  }
  /*recruit soon
---------------------------------------------------------*/
  .recruitSoon {
    padding: 12rem 0 0;
  }
  .recruitSoon h1 {
    font-size: 6rem;
    padding-bottom: 2.4rem;
  }
  .recruitSoon .txt {
    font-size: 1.5rem;
    padding-bottom: 3.2rem;
  }
  .recruitSoon .bgImg {
    width: 80%;
    transform: translateX(-1rem);
    padding: 4rem 0;
  }

  /*recruit
---------------------------------------------------------*/
  .recruitMv {
    padding: 10rem 0 0;
    background-image: url(../img/recruit/mv_bg_sp.jpg);
    height: 70rem;
  }
  .recruitMv h1 {
    font-size: 1.8rem;
  }
  .recruitMv h1 span._stroke {
    font-size: 3.8rem;
  }
  .recruitMv h1 span._white {
    font-size: 5.2rem;
    padding-bottom: 0.4rem;
  }
  .recruitMv h2 {
    width: 100%;
    margin: -1rem auto 0;
  }
  .recruitLead .img{
  margin: 6rem 0 0;
}
.recruitLead .box{
  margin-top: -6rem;
  margin-bottom: 8.8rem;
}
.recruitLead .enTtl {
  font-size: 4.6rem;
  width: 26rem;
}
.recruitLead .enTtl img{
  width: 20.4rem;
}
.recruitLead h2 {
  font-size: 2.2rem;
  margin: 1rem 0 0 2rem;
}
.recruitLead .txt{
  font-size: 1.4rem;
  margin-top: 1.8rem;
  line-height: 1.9;
}
  .recruitLead .loopTxt._top{
    top: 3.2rem;
  }
  .recruitBusiness .row {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
  }
  .recruitBusiness .row .box {
    width: 80%;
    margin:0 auto!important;
  }
  .recruitBusiness .row .box .ttl {
    font-size: 2.2rem;
    padding-bottom: 1rem;
    margin-top: -4rem;
    margin-left: .4rem;
  }
  .recruitBusiness .row .box .ttl .num {
    font-size: 8rem;
    margin-right: 1.4rem;
  }
  .recruitBusiness .bgImg._01 {
    right: -4.1rem;
    top: -0.1rem;
    width: 17.7rem;
  }
  .recruitBusiness .bgImg._02 {
    left: -3.3rem;
    bottom: -2rem;
    width: 16rem;
  }

  .recruitPersonal {
    padding: 6rem 0 4rem;
  }
  .recruitPersonal .txtRow {
    gap: 1.4rem;
    flex-direction: column;
  }
  .recruitPersonal .txtBox {
      margin-top: 1.6rem;
  }
  .recruitPersonal .txtBox .ttl {
      font-size: 2rem;
      padding-bottom: 1.4rem;
  }
  .recruitPersonal .boxWrap {
    width: 100%;
    margin-inline: auto;
    margin-top: .4rem;
  }
  .recruitPersonal .boxWrap::after{
    width: 22rem;
    bottom: 4rem;
  }
  .recruitPersonal .box {
    width: 16.4rem;
  }
  .recruitPersonal .row{
    gap: 0.8rem;
    margin-left: -0.6rem;
    margin-top: -1.4rem;
  }
  .recruitPersonal .box._01 .img {
    width: 4.2rem;
  }
  .recruitPersonal .box._02 .img {
    width: 6.7rem;
  }
  .recruitPersonal .box._03 .img {
    width: 5.6rem;
  }
  .recruitPersonal .box h4 {
    font-size: 1.2rem;
    margin-top: 0.6rem;
    line-height: 1.4;
  }
  .recruitPersonal .robotImg {
    width: 80%;
  }
  #parallax{
    height: 20rem;
  }
  .recruit_loopTxt {
    padding: 3.4rem 0 2rem;
  }
  .recruit_loopTxt p {
    padding: 0 1.6rem;
  }
  .recruit_loopTxt img {
    height: 3.2rem;
  }
  .recruitEntry {
    padding: 4rem 0;
  }
  .recruitEntry h2 {
    font-size: 5rem;
    padding-bottom: 0.6rem;
  }
  .btnBig {
    width: 85%;
    padding: .2rem;
  }
  .btnBig a {
    font-size: 2.2rem;
    padding: 1.6rem 1.6rem 1.6rem 0.9rem;
  }
  .btnBig a::after {
    width: 3.4rem;
    right: 1.4rem;
  }

  /*service
	-------------------------------------------------------*/
  #serviceTop {
    padding-bottom: 0;
  }
  #serviceTop .container {
    padding: 4rem 0 14rem;
    margin-bottom: 1.6rem;
}
  .serviceTop h2 {
    font-size: 1.8rem;
    letter-spacing: .15em;
    text-indent: .15em;
    margin-bottom: 2rem;
  }
  .serviceTop .txt {
    text-align: justify;
  }
  #serviceTop figure {
    max-width: 37%;
    left: 15%;
  }
  #serviceTop figure._02 {
    max-width: 20%;
    top: auto;
    bottom: 2.5rem;
    right: 15%;
  }
  .serviceArea:not(:first-of-type) {
    margin-top: 5rem;
  }
  .serviceWrap {
    gap: 1.8rem;
    padding: 2rem 0;
  }
  .serviceWrap .img {
    margin-right: 0;
    height: 19rem;
  }
  .serviceArea:nth-of-type(even) .serviceWrap .img {
    margin-left: 0;
  }
  .serviceWrap dl {
    margin-top: 0;
    width: 100%;
    text-align: justify;
    min-height: inherit;
    padding: 0rem 0 4rem;
  }
  .serviceWrap dt {
    margin-bottom: 1rem;
  }
  .serviceWrap .num {
    font-size: 5rem;
  }
  .serviceWrap h3 {
    font-size: 1.7rem;
    line-height: 1.4;
    margin: 0;
  }
  .serviceWrap dl::before, .serviceArea:nth-of-type(even) .serviceWrap dl::before {
    left: -2rem;
    right: -2rem;
    top: -5.5rem!important;
    height: 116%;
  }
  #service01 .serviceWrap figure {
    right: -1rem;
    width: 10.9rem;
    bottom: 0.2rem;
  }
  #service02 .serviceWrap figure {
    width: 10rem;
    left: -1.2rem;
    top: auto;
    bottom: -2rem;
  }
  #service03 .serviceWrap figure {
    width: 6.5rem;
    right: -1rem;
    bottom: 0.7rem;
  }
  .productArea {
    margin-top: 6rem;
  }
  .productArea h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    max-width: 16rem;
    padding: 1rem 1rem 0.8rem;
  }
  .productBox:not(:first-of-type) {
    margin-top: 4rem;
}
  .productBox h4 {
    font-size: 1.8rem;
}
  .productArea > .txt {
    text-align: justify;
    line-height: 1.6;
    margin-top: 2rem;
  }
  .swiperWrap{
    min-height: 17.1rem;
  }
  .swiper{
    width: 93%;
    /* height: auto; */
  }
  .swiper-slide::before {
    height: 80%;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 4rem, rgb(0, 0, 0, .7) 14rem, rgb(0, 0, 0, .7) 100%);
}
  .swiper-slide figcaption{
    font-size: 1.5rem;
    margin: 0.2rem 0 0.2rem;
  }
  .swiper-button::before{
    width: 1rem;
  }
.swiper-button-prev::before{
  left: -0.8rem;
}
.swiper-button-next::before{
  right: -0.8rem;
}

  /*about
	-------------------------------------------------------*/
  #aboutAnc{
    padding-top: 2rem;
  }
  .anchor {
    gap: 2.3rem 4%;
  }
  .anchor li {
    width: 48%;
  }
  .anchor li a {
    font-size: 1.2rem;
    flex-direction: column;
    padding: .8rem .5rem 2rem;
  }
  .anchor li a .fontEn {
    font-size: 160%;
    margin: 0 0 .5rem;
  }
  .anchor li a::after {
    width: 3rem;
    height: 3rem;
    bottom: -1.5rem;
  }
  .bgTop{
    padding-top: 4rem;
  }
  .bgTop::before{
    /* height: 18rem; */
    display: none;
  }
  .aboutTtl {
    padding-bottom: 1rem;
  }
  .aboutTtl .img {
    max-width: 7.8rem;
    right: 0;
    bottom: -4.2rem;
  }
  .aboutWrap {
    padding: 0;
  }
  .aboutWrap dt, .aboutWrap dd {
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    padding: 1rem 1.8rem!important;
    border: none !important
  }
  .aboutWrap dt {
    line-height: 1.2;
    font-size: 1.4rem;
  }
    #group .aboutWrap dt{
      padding-left: 1rem!important;
  }
    #group .aboutWrap dd{
      padding-right: 0!important;
      padding-left: 0!important;
      padding-bottom: 2.4rem!important;
  }
  .aboutWrap dd h3{
    font-size: 1.4rem;
    padding-bottom: .4rem;
  }
  .aboutWrap dd h3:nth-of-type(n+2){
    margin-top: 1.4rem;
  }
  .bgWrap {
    padding: 5.2rem 0;
  }
  .bgWrap::before{
    width: 400%;
    height: 300%!important;
    background-position: top left;
    background-size: 270rem auto;
    top: -19rem;
    left: -13rem;
}
#access.bgWrap::before{
    top: -124rem;
    left: -46rem;
}
  .bgWrap .container {
    padding: 3.2rem 2rem;
  }
  #history .aboutTtl .img {
    bottom: -1.4rem;
    left: 0;
    max-width: 8.5rem;
  }
  .historyProfile {
    padding: 0;
  }
  .historyProfile dt, .historyProfile dd {
    width: 100%;
    text-align: left;
    padding: 1.8rem 1.2rem;
  }
  .historyProfile dt:last-of-type {
    border-bottom: none;
  }
  .historyProfile dt {
    font-size: 1.7rem;
    padding-bottom: 0;
  }
  .historyProfile dd{
    border-top: none;
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  #machine{
    margin-bottom: 0;
  }
  .machineArea + .machineArea{
    margin-top: 2.6rem;
  }
  .machineArea h3{
    font-size: 1.5rem;
    padding: 0.6rem;
  }
  .machineWrap dt, .machineWrap dd {
    padding: .8rem 1rem;
    width: 25%;
    font-size: 1.2rem;
    align-content: center;
  }
  .machineWrap dt {
    width: 75%;
  }
  #group .aboutTtl .img {
    max-width: 7.3rem;
    bottom: -.5rem;
    left: 0;
  }
  .gmap {
    height: 20rem;
  }



/*news
---------------------------------------------------------*/
.displayName .ttl {
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
}
.archiveCateWrap{
  gap: 1.6rem;
  margin-bottom: 3.2rem;
   flex-direction: column;
   align-items: flex-start;
  }
.archiveCateWrap .fontEn{
font-size: 2.4rem;
}
.archiveCate{
gap: 0.8rem;
}
.archiveCate li{
  min-width: auto;
}
.archiveCate li a{
  font-size: 1.4rem;
  padding: 0.3rem 1rem;
}
#newsPage .postCard{
  gap: 3rem;
}
#newsPage .cate {
  font-size: 1.2rem;
}

.pager {
  margin-top: 1rem;
}
.pager span,
.pager a {
  margin: 0 0.8rem;
  height: 3rem;
}


/*news 詳細
---------------------------------------------------------*/
.newsSingle {
  padding: 2.6rem 0 0;
}
.singleHeader {
	margin-bottom: 1.6rem;
	gap: 0.8rem 1.4rem;
}
.singleHeader .date{
	font-size: 1.4rem;
}
.singleHeader .cate{
	padding: 0.5rem 0.8rem;
}
.singleHeader h2 {
	font-size: 1.8rem;
	width: 100%;
}
.single .contWrap{
	max-width:95rem;
	margin:0 auto
}
.single .singleThumb{
  margin-bottom: 2.4rem;
}
.single .singleThumb img{
	max-height: 64rem;
}
.single .cont h3,
.single .cont h4,
.single .cont h5,
.single .cont h6{
	font-size: 1.6rem;
	margin-bottom: 1.2rem;
}
.single .cont h3{
	padding: 1rem 1.6rem;
}
.single .btn03{
    margin: 2.6rem 0 4rem;
}
/* 前後の記事 */
.pageset {
  padding: 4.2rem 0;
}
.pageset .row{
	gap: 1.4rem;
}
.pageset a.postArrow .pagesetTxt{
  padding: 0.8rem 1.8rem 0.5rem;
}
.pageset a.postArrow .pagesetTxt::after{
  width: 6.2rem;
  height: 0.8rem;
}
.pagesetPostTxt{
  width: 100%;
  padding: 1rem;
  gap: 0.4rem 0.6rem;
}
.pagesetPost {
  flex-direction: column;
}
.pagesetPost .thumb{
  width: 100%;
}
#newsPage .pagesetPostTxt .cate{
	font-size: 1rem;
	min-width: auto;
	padding: 0.1rem 0.6rem;
}
.pagesetPostTxt .date{
	font-size: 1.1rem;
}
.pagesetPostTxt .ttl{
	font-size: 1.2rem;
}


}