* {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.0;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
}

a:hover{
  opacity: 0.5;
  transition: all 1s;
} 

#loading{
  position: fixed;
  top:0;
  bottom:0;
  right:0;
  left:0;
  background-color: #fff;
  z-index: 300;
}

.loader,
.loader:before,
.loader:after {
  background: #191919;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #191919;
  text-indent: -9999em;
  position: absolute;
  bottom:50%;
  right:50%;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translate(50%,50%,0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s 0s ease;
}



header {
  width: 100%;
  height: 80px;
  background-image: linear-gradient(to right, #4b6cb7, #182848);
  display: flex;
  position: relative;
}

.header-sticky{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slideDown 0.3s ease-in-out;
  background-color: #fff;
  background-image: none;
  z-index: 100;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.img-1 {
  width: 136px;
  height: 29px;
  padding: 26px 0 0 39px;
}

.img-11{
  width: 136px;
  height: 29px;
  padding: 26px 0 0 39px;
  display: none;
}

.header-sticky .img-1{
  display: none;
}

.header-sticky .img-11{
  display: block;
}

header ul {
  color: #fff;
  display: flex;
  padding-top: 25px;
}

header ul a{
  display: flex;
  flex-direction: column;
  color:#fff;
}

.header-sticky a{
  color:#191919;
}

.header-sticky li{
  color: #191919;
}

header li {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.li-1 {
  margin: 0 7px 0 27px;
}

.li-2 {
  margin: 0 6px;
}

.li-3 {
  margin: 0 9px 0 7px;
}

.li-4 {
  margin: 0 6px;
}

.li-5 {
  margin: 0 6px 0 5px;
}

.li-6 {
  margin-left: 5px;
}

.top {
  background-image: linear-gradient(to right, #4b6cb7, #182848);
  position: relative;
  min-height: 688px;
}

.span-1 {
  font-size: 16px;
  margin-bottom: 3px;
}

.span-2 {
  font-size: 10px;
  font-family: 'Lato', sans-serif;
}

.li-7 {
  font-size: 24px;
  transform: rotate(-5deg);
}

.hamburger {
  width: 20px;
  height: 16px;
  position: absolute;
  top:20px;
  right:20px;
}

.hamburger_bar {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: #fff;
}

.header-sticky .hamburger_bar{
  background-color: #191919;
}

.hamburger_bar:nth-child(1) {
  top: 0;
}

.hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.over-flow{
  position:fixed;
  top:0;
  bottom:0;
  right:0;
  left:0;
  z-index: 200;
  background-color: #4b6cb7;
}

.img-12{
  width:120px;
  height:26px;
  padding-top: 15px;
  padding-left: 20px;
}

.over-flow ul{
  text-align: center;
  margin-top: 94px;
  display: flex;
  gap:20px;
  flex-direction: column;
}

.over-flow li a{
  font-size: 20px;
  color:#fff;
}

.over-flow li:nth-of-type(1) a{
  font-size: 20px;
  color:#191919;
}

.span-20{
  font-size: 14px;
  margin-top: 6px;
  font-family: 'Lato', sans-serif;
}

.batsu {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top:20px;
  right:20px;
}
 
.batsu::before, .batsu::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #fff;
}
 
.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}



.over-flow.hidden{
  transform: translateX(100vw);
}

.over-flow{
  transform: translateX(0);
  transition: all .2s linear;
}



.top h1 {
  width: fit-content;
}

.h1-1 {
  font-size: 96px;
  padding-top: 106px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  text-shadow: 4.2px 4.2px 4px rgba(24, 40, 72, 0.5);
  letter-spacing: 1.92px;
  padding-bottom: 15px;
  font-weight: 900;
  width: fit-content;
}

.h1-2 {
  font-size: 96px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  width: 950px;
  text-shadow: 4.2px 4.2px 4px rgba(24, 40, 72, 0.5);
  letter-spacing: 1.92px;
  font-weight: 900;
}

.p-1 {
  font-size: 32px;
  color: #182848;
  padding: 16px 0px;
  background-color: #fff;
  width: fit-content;
  font-weight: bold;
  position: relative;
  margin-bottom: 16px;
  margin-top: 31px;
  margin-left: 52px;
}

.p-4 {
  font-size: 32px;
  color: #182848;
  padding: 16px 0;
  background-color: #fff;
  width: fit-content;
  font-weight: bold;
  position: relative;
  margin-left: 52px;
}

.img-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 688px;
  z-index: 0;
  width: 100%;
  object-fit: cover;
  animation: changeimg 15s infinite;
  opacity: 0;
}

@keyframes changeimg{
  0%{
    opacity: 0%;
  }
  10%{
    opacity:100%;
  }
  35%{
    opacity: 100%;
  }
  45%{
    opacity:0%;
  }
  100%{
    opacity: 0%;
  }
}

.img-7 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 688px;
  z-index: 0;
  width: 100%;
  object-fit: cover;
  animation: changeimg 15s infinite 5s;
  opacity: 0;
}

.img-8 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 688px;
  z-index: 0;
  width: 100%;
  object-fit: cover;
  animation: changeimg 15s infinite 10s;
  opacity: 0;
}

.top-contents {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-51.5%);
  width: fit-content;
}

.span-3 {
  width: 0;
  height: 0;
  border-top: 32px solid #fff;
  border-right: 26px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 26px solid #fff;
  display: block;
  position: absolute;
  top: 0;
  right: -51px;
}

.span-4 {
  width: 0;
  height: 0;
  border-bottom: 32px solid #fff;
  border-left: 26px solid transparent;
  border-top: 32px solid transparent;
  border-right: 26px solid #fff;
  display: block;
  top: 0px;
  left: -51px;
  position: absolute;
}

.p-2 {
  height: 64px;
  width: 256px;
  position: absolute;
  background-color: #182848;
  top: 4px;
  left: 4px;
  z-index: -1;
  display: block;
}

.p-3 {
  height: 64px;
  width: 416px;
  position: absolute;
  background-color: #182848;
  top: 4px;
  left: 4px;
  z-index: -1;
  display: block;
}

.span-5 {
  width: 0;
  height: 0;
  border-top: 32px solid #182848;
  border-right: 26px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 26px solid #182848;
  display: block;
  position: absolute;
  top: 0;
  right: -52px;
}

.span-6 {
  width: 0;
  height: 0;
  border-bottom: 32px solid #182848;
  border-left: 26px solid transparent;
  border-top: 32px solid transparent;
  border-right: 26px solid #182848;
  display: block;
  top: 0px;
  left: -52px;
  position: absolute;
}

.news {
  max-width: 1016px;
  width: 110%;
  height: 64px;
  margin: 119px auto 0;
  display: flex;
  background-color: #182848;
}

.p-5 {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #fff;
  line-height: 64px;
  padding-left: 41px;
}

.p-6 {
  background-color: #fff;
  height: 60px;
  box-sizing: border-box;
  line-height: 60px;
  margin-top: 2px;
  position: relative;
  margin-left: 89px;
  width: 720px;
  padding-left: 24px;
  font-weight: 500;
}

.p-6::before {
  width: 0;
  height: 0;
  content: "";
  border-bottom: 30px solid #fff;
  border-left: 26px solid transparent;
  border-top: 30px solid transparent;
  border-right: 26px solid #fff;
  display: block;
  top: 0px;
  left: -51px;
  position: absolute;
}

.p-6::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 30px solid #fff;
  border-right: 26px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 26px solid #fff;
  display: block;
  top: 0px;
  right: -51px;
  position: absolute;
}


.p-6 span {
  width: 80px;
  height: 28px;
  font-size: 12px;
  color: #fff;
  padding: 0px 16px;
  box-sizing: border-box;
  background-color: #b8614b;
  border-radius: 6px;
  line-height: 28px;
  display: inline-block;
  margin: 0 24px;
  transform: translateY(-2px);
}

.news img {
  width: 18px;
  height: 4.5px;
  padding: 30px 0 0 72px;
}



.service {
  margin-top: 201px;
  display: flex;
  gap: 48px;
  color: #191919;
  position: relative;
}

.service-left img {
  width: 620px;
  height: 440px;
}

.service-right h1 {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 48px;
  margin-bottom: 25px;
  transform: translateY(-9px);
}

.p-8 {
  font-size: 32px;
  font-weight: 500;
}

.p-9 {
  font-size: 32px;
  margin: 12px 0 24px;
  font-weight: 500;
}

.p-10 {
  font-size: 16px;
  line-height: 32px;
  width: 524px;
  font-weight: 500;
  letter-spacing: 0.32px;
}

.span-9 {
  font-size: 24px;
  color: #4b6cb7;
  display: inline-block;
  margin-right: 5px;
  transform: rotate(-5deg) translateX(-3px);
}

.span-10 {
  font-size: 24px;
  color: #4b6cb7;
}

.service-right a {
  width: 256px;
  height: 64px;
  display: block;
  margin-top: 45px;
  background-color: #4b6cb7;
  color: #fff;
  font-size: 16px;
  line-height: 64px;
  text-align: center;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
}

.service-right a img {
  width: 18px;
  height: 4.5px;
  margin-left: 16px;
  transform: translateY(-4px);
}

.service-back {
  width: calc(100% - 545px);
  height: 435px;
  position: absolute;
  top: -40px;
  background-color: #f0f0f0;
  z-index: -1;
}

.span-13 {
  content: "";
  width: 0;
  height: 0;
  border-top: 217.5px solid #f0f0f0;
  border-right: 185px solid transparent;
  border-bottom: 217.5px solid transparent;
  border-left: 185px solid #f0f0f0;
  display: block;
  top: 0px;
  right: -370px;

  position: absolute;
}

.span-14 {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 101.5px solid #f0f0f0;
  border-left: 87.5px solid transparent;
  border-top: 101.5px solid transparent;
  border-right: 87.5px solid #f0f0f0;
  display: block;
  bottom: 0;
  right: -545px;
  position: absolute;
}




.about {
  width: 100%;
  height: 656px;
  background-image: url(img/background-about@2x.png);
  background-size: cover;
  margin-top: 160px;
  padding-left: 12.8%;
  padding-top: 40px;
  box-sizing: border-box;
}

.about-box {
  width: 504px;
  height: 576px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px 0 0 49px;
}

.about-box h1 {
  font-size: 48px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}

.about-box p {
  font-size: 16px;
  line-height: 32px;
  margin: 25px 0 38px;
  font-weight: 500;
  letter-spacing: 0.32px;
}

.about-box a {
  width: 256px;
  height: 64px;
  display: block;
  background-color: #4b6cb7;
  color: #fff;
  font-size: 16px;
  line-height: 64px;
  text-align: center;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
}

.about-box a img {
  width: 18px;
  height: 4.5px;
  margin-left: 16px;
  transform: translateY(-4px);
}

.about-box img {
  width: 408px;
  height: 120px;
  margin-top: 32px;
}




.works {
  margin-top: 151px;
  position: relative;
  min-height: 770px;
}

.works h1 {
  font-size: 48px;
  font-weight: bold;
  color: #191919;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.p-11 {
  font-size: 32px;
  color: #191919;
  text-align: center;
  margin: 30px 0 34px;
  font-weight: 500;
}

.p-12 {
  font-size: 16px;
  line-height: 32px;
  color: #191919;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.32px;
}

.works-flex {
  width: fit-content;
  display: flex;
  gap: 40px;
  margin: 50px auto 0;
  transform: translateX(8px);
}

.work {
  width: 472px;
  height: 408px;
  box-shadow: 0 0 10px 0 rgba(25, 25, 25, 0.25);
  position: relative;
  background-color: #fff;
}

.p-15 {
  width: 56px;
  height: 56px;
  background-color: #182848;
  color: #fff;
  line-height: 56px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  position: absolute;
  top: -16px;
  left: -16px;
}

.work img {
  width: 472px;
  height: 240px;
}

.p-13 {
  font-size: 24px;
  color: #b8614b;
  margin: 26px 0 24px;
  padding: 0 0 0 25px;
  font-weight: 500;
}

.p-14 {
  font-size: 16px;
  line-height: 32px;
  padding-left: 25px;
  font-weight: 500;
  letter-spacing: 0.32px;
}

.works a {
  width: 256px;
  height: 64px;
  display: block;
  background-color: #4b6cb7;
  color: #fff;
  font-size: 16px;
  line-height: 64px;
  text-align: center;
  margin: 40px auto 0;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
}

.works a img {
  width: 18px;
  height: 4.5px;
  margin-left: 16px;
  transform: translateY(-4px);
}

.works-content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.span-15 {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 204px solid #f0f0f0;
  border-right: 175px solid transparent;
  border-top: 204px solid transparent;
  border-left: 175px solid #f0f0f0;
  display: block;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.span-16 {
  content: "";
  width: 0;
  height: 0;
  border-top: 204px solid #f0f0f0;
  border-left: 175px solid transparent;
  border-bottom: 204px solid transparent;
  border-right: 175px solid #f0f0f0;
  display: block;
  top: 7px;
  ;
  right: 0;
  position: absolute;
  z-index: 1;
}





.recruit {
  width: 100%;
  height: 702px;
  background-color: #f0f0f0;
  margin-top: 160px;
}

.recruit h1 {
  font-size: 48px;
  color: #191919;
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-weight: bold;
  padding: 72px 0 94px;
}

.recruit-flex {
  display: flex;
  gap: 36px;
  width: fit-content;
  margin: 0 auto;
  transform: translateX(-4px);
}

.div-1 {
  width: 312px;
  height: 240px;
  position: relative;
  transform: translateY(40px);
}

.div-2 {
  width: 312px;
  height: 240px;
  position: relative;
}

.div-3 {
  width: 312px;
  height: 240px;
  position: relative;
  transform: translateY(-40px);
}

.div-1 img {
  width: 100%;
  height: 100%;
}

.div-2 img {
  width: 100%;
  height: 100%;
}

.div-3 img {
  width: 100%;
  height: 100%;
}

.div-1 img:nth-of-type(2){
  display: none;
}

.div-2 img:nth-of-type(2){
  display: none;
}

.div-3 img:nth-of-type(2){
  display: none;
}

.div-1 p {
  width: 264px;
  height: 56px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(24, 40, 72, 0.64);
  position: absolute;
  left: 56px;
  bottom: -24px;
  box-sizing: border-box;
  line-height: 56px;
  padding-left: 16px;
}

.div-2 p {
  width: 264px;
  height: 56px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(24, 40, 72, 0.64);
  position: absolute;
  left: 56px;
  bottom: -24px;
  box-sizing: border-box;
  line-height: 56px;
  padding-left: 17px;
}

.div-3 p {
  width: 264px;
  height: 56px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(24, 40, 72, 0.64);
  position: absolute;
  left: 56px;
  bottom: -24px;
  box-sizing: border-box;
  line-height: 56px;
  padding-left: 17px;
}

.recruit a {
  width: 256px;
  height: 64px;
  display: block;
  background-color: #4b6cb7;
  color: #fff;
  font-size: 16px;
  line-height: 64px;
  text-align: center;
  margin: 104px auto 0;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
}

.recruit a img {
  width: 18px;
  height: 4.5px;
  margin-left: 16px;
  transform: translateY(-4px);
}

.div-1 p img {
  width: 18px;
  height: 4.5px;
  margin-left: 118px;
  transform: translateY(-4px);
}

.div-2 p img {
  width: 18px;
  height: 4.5px;
  margin-left: 118px;
  transform: translateY(-4px);
}

.div-3 p img {
  width: 18px;
  height: 4.5px;
  margin-left: 118px;
  transform: translateY(-4px);
}



.contact {
  height: 407px;
  width: 100%;
  background-image: url(img/image-contact@2x.png);
  background-size: cover;
}

.contact h1 {
  font-size: 48px;
  color: #fff;
  padding: 71px 0 28px;
  text-align: center;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
}

.span-11 {
  font-size: 24px;
  display: inline-block;
  margin: 0 9px 0 5px;
  transform: rotate(-5deg);
}

.span-12 {
  font-size: 24px;
  font-weight: 500;
}

.contact p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 46px;
  font-weight: 400;
  letter-spacing: 0.32px;
}

.contact-a {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.a-1 {
  width: 320px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background-color: #b8614b;
  display: block;
  color: #fff;
}

.a-2 {
  width: 320px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background-color: #191919;
  display: block;
  color: #fff;
}

.img-3 {
  width: 24px;
  height: 18px;
  margin-right: 17px;
  transform: translateY(4px);
}

.img-4 {
  width: 18px;
  height: 4.5px;
  margin-left: 17px;
  transform: translateY(-4px);
}

.img-5 {
  width: 20px;
  height: 17px;
  margin-right: 16px;
  transform: translateY(2px);
}




footer {
  width: 100%;
  height: 469px;
  background-color: #182848;
  color: #fff;
  padding: 0 175px;
  box-sizing: border-box;
}

footer img {
  width: 271px;
  height: 58px;
  padding: 85px 0 39px;

}

footer a{
  color: #fff;
}

.footer-left-right {
  display: flex;
  justify-content: space-between;
}

.footer-left ul {
  display: flex;
  gap: 21.5px;
  flex-direction: column;
}

.footer-left li {
  font-size: 16px;
  letter-spacing: 0.32px;
}

.footer-right {
  writing-mode: vertical-lr;
}

.footer-right ul {
  display: flex;
  gap: 22px;
  flex-direction: column;
  letter-spacing: 3.2px;
}

.ul-1 {
  margin-right: 78px;
}




.copyright {
  width: 100%;
  height: 60px;
  background-color: #191919;
  color: #fff
}

.copyright p {
  font-size: 12px;
  line-height: 60px;
  padding-left: 175px;
}



.span-1024 {
  display: none;
}

.span-768 {
  display: none;
}

.img-6 {
  display: none;
}

.img-9 {
  display: none;
}

.img-10 {
  display: none;
}



.about-img {
  display: none;
}

.news-2 {
  display: none;
}

.hamburger{
  display: none;
}



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

  .p-6 {
    width: 500px;
  }

  .news {
    width: 800px;
    margin-left: 0;
  }

  .service-left {
    padding-left: 30px;
  }

  .service-right {
    padding-left: 30px;
  }
}




@media(max-width:1024px) {

  header ul {
    display: none;
  }

  .hamburger{
    display: block;
    top:30px;
    right:30px;
  }

  .span-1024 {
    display: inline;
  }

  .p-5 {
    padding-left: 20px;
  }

  .p-6 {
    margin-left: 70px;
    width: 450px;
  }

  .news {
    width: 700px;
  }



  .works-flex {
    flex-direction: column;
  }

  .recruit-flex {
    flex-direction: column;
  }


  .h1-2 {
    width: fit-content;
  }

  .top {
    height: 800px;
  }

  .img-2 {
    height: 800px;
  }
  
  .img-7 {
    height: 800px;
  }

  .img-8 {
    height: 800px;
  }


  .works {
    min-height: 1220px;
  }

  .div-1 {
    transform: translate(0);
  }

  .div-3 {
    transform: translate(0);
  }

  .recruit {
    height: 1300px
  }

  footer {
    padding: 0 100px;
  }

}

@media(max-width:768px) {
  .span-pc{
    display: none;
  }

  header {
    height: 56px;
  }

  .hamburger{
    top:20px;
    right:20px;
  }

  .img-1 {
    width: 120px;
    height: 26px;
    padding: 15px 0 0 20px;
  }

  .img-11 {
    width: 120px;
    height: 26px;
    padding: 15px 0 0 20px;
  }

  

  .top {
    min-height: 611px;
    height: 611px;
  }

  .top-contents {
    transform: translateX(calc(-50% - 8.5px));
  }

  .news {
    display: none;
  }

  .news-2 {
    display: block;
    position: absolute;
    bottom: 26px;
    width: 331px;
    height: 48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-16 {
    position: absolute;
    width: 331px;
    height: 46px;
    background-color: #fff;
    font-size: 14px;
    line-height: 46px;
    font-weight:500 ;
    box-sizing: border-box;
    padding-left: 8px;
  }

  .p-16 span{
    width:65px;
    height:20px;
    color: #fff;
    background-color: #b8614b;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    box-sizing: border-box;
    padding-left: 9px;
    border-radius: 8px;
    margin-left: 4px;
    margin-right: 8px;
    transform: translateY(-1px);
  }

  .span-17 {
    position: absolute;
    width: 61px;
    height: 22px;
    background-color: #182848;
    top: -22px;
    left:-1px;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    font-family: 'Lato', sans-serif;
    padding-left: 11px;
    box-sizing: border-box;
  }

  .span-18 {
    position: absolute;
    left: 61px;
    width: 0;
    height: 0;
    border-bottom: 11px solid #182848;
    border-right: 5px solid transparent;
    border-top: 11px solid transparent;
    border-left: 5px solid #182848;
  }

  .span-19 {
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 333px;
    height: 48px;
    background-color: #182848;
    z-index: 0;
  }

  .img-2 {
    display: none;
  }

  .img-7 {
    display: none;
  }

  .img-8 {
    display: none;
  }

  .img-6 {
    display: block;
    position: absolute;
    height: 611px;
    width: 100%;
    object-fit: cover;
    animation: changeimg 15s infinite ;
    opacity: 0;
  }

  .img-9 {
    display: block;
    position: absolute;
    height: 611px;
    width: 100%;
    object-fit: cover;
    animation: changeimg 15s infinite 5s;
    opacity: 0;
  }

  .img-10 {
    display: block;
    position: absolute;
    height: 611px;
    width: 100%;
    object-fit: cover;
    animation: changeimg 15s infinite 10s;
    opacity: 0;
  }


  .h1-1 {
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0.96px;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .h1-2 {
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0.96px;
    width: 320px;
  }

  .p-1 {
    font-size: 19.6px;
    padding: 8px 8px;
    margin-top: 21px;
    margin-bottom: 14px;
    margin-left: 18px;
  }

  .p-4 {
    font-size: 19.6px;
    padding: 8px 8px;
    margin-left: 18px;
  }

  .span-3 {
    width: 0;
    height: 0;
    border-top: 17.8px solid #fff;
    border-right: 9px solid transparent;
    border-bottom: 17.8px solid transparent;
    border-left: 9px solid #fff;
    display: block;
    position: absolute;
    bottom: 0;
    right: -18px;
  }

  .span-4 {
    width: 0;
    height: 0;
    border-bottom: 17.8px solid #fff;
    border-left: 9px solid transparent;
    border-top: 17.8px solid transparent;
    border-right: 9px solid #fff;
    display: block;
    position: absolute;
    bottom: 0;
    left: -18px;
    top:auto;
  }

  .p-2 {
    width: 170.81px;
    height: 35.6px;
  }

  .span-5 {
    width: 0;
    height: 0;
    border-top: 17.8px solid #182848;
    border-right: 9px solid transparent;
    border-bottom: 17.8px solid transparent;
    border-left: 9px solid #182848;
    display: block;
    position: absolute;
    top: 0;
    right: -18px;
  }

  .span-6 {
    width: 0;
    height: 0;
    border-bottom: 17.8px solid #182848;
    border-left: 9px solid transparent;
    border-top: 17.8px solid transparent;
    border-right: 9px solid #182848;
    display: block;
    position: absolute;
    bottom: 0;
    top:auto;
    left: -18px;
  }

  .p-3 {
    width: 268.81px;
    height: 35px;
  }

  .service {
    width: 100%;
    gap: 40px;
    margin-top: 120px;
  }

  .service-left {
    padding: 0;
  }

  .service-left img {
    width: 100%;
    height: auto;
    aspect-ratio: 187.5/124;
    object-fit: cover;
  }

  .service-right {
    padding: 0;
  }

  .service-right h1 {
    font-size: 32px;
    padding-left: 20px;
    transform: translateY(-5px);
    margin-bottom: 20px;
  }

  .span-9{
    font-size: 20px;
  }

  .span-10{
    font-size: 20px;
  }

  .p-8 {
    font-size: 24px;
    padding-left: 23px;
  }

  .p-9 {
    font-size: 24px;
    padding-left: 21px;
    margin-top: 14px;
  }

  .p-10 {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.28px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .service-right a {
    height: 44px;
    line-height: 44px;
    margin:30px auto 0;
    font-size: 14px;
  }


  .service-back{
    height:calc(100% + 48px);
    width:calc(100% - 290px);
    top:0%;
  }

  .span-14 {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 67px solid #f0f0f0;
    border-left: 31.5px solid transparent;
    border-top: 67px solid transparent;
    border-right: 31.5px solid #f0f0f0;
    display: block;
    bottom: 0;
    right: -290px;
    position: absolute;
  }

  .span-13 {
    content: "";
    width: 0;
    height: 0;
    border-top: calc(234px * 1.05) solid #f0f0f0;
    border-right: calc(110px * 1.05) solid transparent;
    border-bottom: calc(234px * 1.05) solid transparent;
    border-left: calc(110px * 1.05) solid #f0f0f0;
    display: block;
    bottom: 0;
    right: calc(-220px * 1.05);
    top:auto;
    left:auto;
    position: absolute;
}



  .about {
    background-image: none;
    height: fit-content;
    padding-left: 0;
    margin-top: 128px;
  }

  .about-img {
    width: calc(100% - 40px);
    margin: 0 auto;
    aspect-ratio: 167.5/124;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .about-box h1 {
    font-size: 32px;
    padding-left: 20px;
    margin-top: 35px;
  }

  .about-box p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.28px;
    padding: 0 24px 0 20px;
    box-sizing: border-box;
    width:100%;
    margin:20px 0 29px;
  }
  

  .about-box{
    width:100%;
    padding: 0;
    height:fit-content;
  }

  .about-box img {
    display: none;
  }

  .about-box a img {
    display: inline-block;
  }

  .about-box a {
    height: 44px;
    line-height: 44px;
    margin: 0 auto;
    font-size: 14px;
  }

  .about-box img{
    margin-top: 0;
  }

  .span-16 {
    content: "";
    width: 0;
    height: 0;
    border-top: 111px solid #f0f0f0;
    border-right: 52px solid transparent;
    border-bottom: 111px solid transparent;
    border-left: 52px solid #f0f0f0;
    display: block;
    top: 7px;
    left: 0;
    position: absolute;
    z-index: 1;
  }

  .span-15 {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 111px solid #f0f0f0;
    border-left: 52px solid transparent;
    border-top: 111px solid transparent;
    border-right: 52px solid #f0f0f0;
    display: block;
    bottom:0;
    right: 0;
    position: absolute;
    z-index: 1;
  }

  .work{
    background-color:unset;
  }

  .p-15{
    width:64px;
    height:40px;
    line-height: 40px;
  }



  .works h1 {
    font-size: 32px;
  }

  .p-11 {
    font-size: 24px;
    text-align: left;
    padding-left: 21px;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 18px;
  }

  .p-12 {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.28px;
    padding: 0 26px 0 20px;
    width:100%;
    box-sizing:border-box ;
    text-align: left;
  }

  .works-flex {
    width: 100%;
    transform: translateX(0);
    gap: 0;
    margin-top: 35px;
  }

  .work {
    width: 100%;
    box-shadow: none;
    height: fit-content;
  }

  .work img {
    width: 100%;
    height: auto;
    aspect-ratio: 187.5/80;
    object-fit: cover;
  }

  .works {
    min-height: fit-content;
    margin-top: 145px;
  }

  .works h1{
    text-align: unset;
    padding-left: 20px;
  }

  .works-content {
    position: static;
  }

  .p-13{
    font-size: 20px;
    margin-top: 22px;
    margin-bottom:15px ;
    padding-left: 21px;
  }

  .p-14{
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.28px;
    width: 100%;
    padding:0 26px 0 20px;
    box-sizing: border-box;
    margin-bottom: 33px;
  }

  .works a{
    height:44px;
    line-height: 44px;
    margin-top: 0px;
    font-size: 14px;
  }

  .works img{
    vertical-align: bottom;
  }

  .works a img{
    margin-left: 10px;
    vertical-align:middle;
    transform: translateY(-2px);
  }

  .div-1 img:nth-of-type(2){
    display: block;
  }
  
  .div-2 img:nth-of-type(2){
    display: block;
  }
  
  .div-3 img:nth-of-type(2){
    display: block;
  }

  .div-1>img:nth-of-type(1){
    display: none;
  }
  
  .div-2>img:nth-of-type(1){
    display: none;
  }
  
  .div-3>img:nth-of-type(1){
    display: none;
  }

  .div-4{
    position: relative;
  }

  .p-15{
    left:0;
    bottom:0px;
    top:auto;
    font-size: 20px;
    box-sizing: border-box;

  }

  .span-15 {
    z-index: -1;
    bottom:-40px;
  }

  .span-16 {
    z-index: -1;
    top:-25px;
  }

  .recruit h1 {
    font-size: 32px;
  }

  .recruit-flex {
    width: 100%;
    gap: 0;
  }

  .div-1 {
    width: 100%;
    height: fit-content;
    aspect-ratio: 187.5/100;
  }

  .div-1>img{
    aspect-ratio: 187.5/100;
    object-fit: cover;
    vertical-align: bottom;
    
  }

  .div-2>img{
    aspect-ratio: 187.5/100;
    object-fit: cover;
    vertical-align: bottom;
  }

  .div-3>img{
    aspect-ratio: 187.5/100;
    object-fit: cover;
    vertical-align: bottom;
  }

  .div-1 p{
    font-size: 16px;
    line-height: 16px;
    background-color: unset;
    width:fit-content;
    height:fit-content;
    bottom:16px;
    left:21px;
    padding-left: 0;
  }

  .div-1 p img{
    margin-left: 10px;
    
  }

  .div-2 p{
    font-size: 16px;
    line-height: 16px;
    background-color: unset;
    width:fit-content;
    height:fit-content;
    bottom:16px;
    left:21px;
    padding-left: 0;
  }

  .div-2 p img{
    margin-left: 10px;
    
  }

  .div-2 {
    width: 100%;
    height: fit-content;
   
  }

  .div-3 {
    width: 100%;
    height: fit-content;

  }

  .div-3 p{
    font-size: 16px;
    line-height: 16px;
    background-color: unset;
    width:fit-content;
    height:fit-content;
    bottom:16px;
    left:21px;
    padding-left: 0;
  }

  .div-3 p img{
    margin-left: 10px;
   
  }


  .recruit {
    height: fit-content;
    background-color: unset;
    margin-top: 156px;
  }

  .recruit h1{
    padding:0;
    text-align: left;
    margin-left: 21px;
    margin-bottom: 32px;
  }

  .recruit a {
    height: 44px;
    line-height: 44px;
    margin-top: 40px;
    font-size: 14px;
    margin-bottom: 120px;
  }

  .recruit-flex{
    transform: translateX(0);
  }

  .span-768{
    display: inline;
  }

  .contact h1 {
    font-size: 32px;
    padding-top: 91px;
    text-align: left;
    padding-left: 21px;
    padding-bottom: 20px;
  }

  .span-11{
    font-size: 20px;
    margin: 0 7px 0 3px;
  }

  .span-12{
    font-size: 20px;
  }

  .contact-a {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    font-size: 14px;
  }

  .a-1 {
    height: 48px;
    line-height: 48px;
    width:calc(100% - 40px);
    margin: 0 auto;
    position: relative;
    max-width: 400px;
  }


  .a-2 {
    height: 48px;
    line-height: 48px;
    width:calc(100% - 40px);
    margin: 0 auto;
    position:relative;
    max-width: 400px;
  }

  .contact {
    height: fit-content;
    padding-bottom: 96px;
    background-image: url(img/image-contact@2x\(2\).png);
  }

  .contact p{
    padding:0 17px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 26px;
  }

  .img-3{
    width:16px;
    height:12px;
    position: absolute;
    left:24px;
    top:50%;
    transform: translateY(-50%);
  }

  .img-5{
    width:14px;
    height:12px;
    position: absolute;
    left:24px;
    top:50%;
    transform: translateY(-50%);
  }

  .img-4{
    position: absolute;
    right:24px;
    top:50%;
    transform: translateY(-50%);
  }



  footer {
    position: relative;
    height: fit-content;
  }

  .footer-right {
    position: absolute;
    top: 38px;
    left: 20px;
    writing-mode: horizontal-tb;
    font-size: 14px;
  }

  .footer-left li {
    font-size: 14px;
    letter-spacing: 0;
  }

  .footer-left ul{
    padding-left: 20px;
    gap:16px;
    position:relative;
  }

  .footer-left li:nth-of-type(3){
    position:absolute;
    top:30px;
    min-width: 240px;
    left:88px;
  }

  footer {
    padding: 0px;
  }

  footer img {
    padding-top: 363px;
    width:159px;
    height:34px;
    padding-left: 20px;
    padding-bottom: 21px;
  }

  .footer-right ul{
    letter-spacing: 0;
    gap:24px;
  }

  .ul-1{
    margin-bottom: 63px;
  }

  .footer-left-right{
    padding-bottom: 43px;
  }
  
  .copyright{
    height:42px;
  }

  .copyright p{
    line-height: 42px;
    font-size: 10px;
    padding-left: 20px;
  }
  
}