@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.2rem;
  font-family: "Noto Sans JP";
  color: #333333;
  margin: 0 auto;
  width: 100%;
}

table, td, th {
  border: 1px solid #E5E5E5;
  padding: 20px 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

#loading {
  /* 画面いっぱいになる箇所 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to right, #4b6cb7, #182848);
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* 中のローディングアニメ */
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading .loader,
#loading .loader:before,
#loading .loader:after {
  background: #ffffff;
  animation: loading 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

#loading .loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

#loading .loader::before, #loading .loader::after {
  position: absolute;
  top: 0;
  content: '';
}

#loading .loader::before {
  left: -1.5em;
  animation-delay: -0.32s;
}

#loading .loader::after {
  left: 1.5em;
}

@keyframes loading {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

.header {
  height: 56px;
  align-items: center;
  display: flex;
  position: relative;
  font-family: "NotoSansJP-Bold";
}

.header-wrapper {
  background-image: linear-gradient(to right, #4b6cb7, #182848);
  display: flex;
  align-items: center;
  z-index: 999;
  height: 85px;
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-wrapper.black {
  background: #ffffff;
}

.header-inner {
  width: 100%;
  max-width: 100%;
  backface-visibility: hidden;
  position: static;
}

.header-left {
  display: flex;
}

@media (min-width: 740px) {
  .header-left {
    font-size: 1.6rem;
  }
}

@media (min-width: 740px) {
  .header-left {
    display: block;
    opacity: 1;
  }
}

.header-logo {
  width: 180px;
  height: 60px;
  margin-top: 50px;
  align-items: center;
  margin-left: 20px;
}

@media (min-width: 740px) {
  .header-logo {
    position: relative;
    top: 90px;
  }
}

.header-logo.black path {
  fill: #333;
  transition: fill .3s;
}

.header-nav {
  font-weight: bold;
  font-size: 2.6rem;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 90px 0 0;
  background: #4b6cb7;
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .3s,opacity .3s;
}

@media (min-width: 740px) {
  .header-nav {
    transition: none;
    opacity: 1;
    transform: inherit;
    background: none;
    top: -70px;
    left: 125px;
    height: 100px;
    position: relative;
    width: 85%;
    overflow: hidden;
  }
}

.header-nav.open {
  transform: translateX(0);
  opacity: 1;
  transition: transform .4s,opacity .3s;
}

@media (min-width: 740px) {
  .header-nav.open {
    display: none;
  }
}

.burger-musk {
  display: none;
  height: 200vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  position: static;
}

.header-list {
  font-weight: normal;
  height: 80px;
  font-size: 1rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: "NotoSansJP-Regular";
}

.header-list a {
  font-family: "NotoSansJP-Regular";
  text-decoration: none;
  color: #ffffff;
}

.header-list .second {
  margin-top: 5px;
  font-size: 1rem;
  display: block;
}

@media (min-width: 740px) {
  .header-list {
    display: flex;
    font-size: 1rem;
    height: 22px;
    width: 95%;
    font-family: "NotoSansJP-Regular";
  }
}

@media (min-width: 1040px) {
  .header-list {
    width: 850px;
    max-width: 100%;
    position: static;
  }
}

@media (min-width: 740px) {
  .header-list .header-item a.black {
    color: #333333;
    transform: skewX(-140deg);
  }
}

.header-list .header-item span.black {
  display: block;
  color: #ffffff;
}

@media (min-width: 740px) {
  .header-list .header-item span.black {
    color: #333333;
    border-right: solid 1px #333333;
  }
}

.header-item:last-of-type {
  color: #182848;
}

.header-item {
  margin-bottom: 5px;
  font-family: "NotoSansJP-Regular";
  font-size: 1.6rem;
}

@media (min-width: 740px) {
  .header-item {
    display: block;
    width: 90%;
    margin-top: 40px;
    margin-bottom: 10px;
    border-right: solid 1px #fff;
    transform: skewX(140deg);
  }
}

.header-item a {
  margin-bottom: 50px;
  font-family: "NotoSansJP-Regular";
  font-size: 2rem;
}

@media (min-width: 740px) {
  .header-item a {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0;
    transform: skewX(-140deg);
  }
}

@media (min-width: 1040px) {
  .header-item a {
    font-size: 1.6rem;
  }
}

.header-item :last-of-type {
  padding-bottom: 30px;
}

@media (min-width: 740px) {
  .header-item :last-of-type {
    padding-bottom: 0;
  }
}

.header-item-first a {
  display: block;
  color: #182848;
  margin-bottom: 50px;
  font-family: "NotoSansJP-Regular";
  font-size: 2rem;
}

@media (min-width: 740px) {
  .header-item-first a {
    color: #ffffff;
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0;
    transform: skewX(-140deg);
  }
}

@media (min-width: 1040px) {
  .header-item-first a {
    font-size: 1.6rem;
  }
}

.header-item-first {
  margin-bottom: 50px;
  font-family: "NotoSansJP-Regular";
  font-size: 1.6rem;
}

@media (min-width: 740px) {
  .header-item-first {
    display: block;
    width: 90%;
    margin-top: 40px;
    margin-bottom: 10px;
    border-right: solid 1px #fff;
    transform: skewX(140deg);
  }
}

@media (min-width: 740px) {
  .header-item-first a.black {
    color: #333333;
    transform: skewX(-140deg);
  }
}

.header-item-first span.black {
  display: block;
  color: #ffffff;
}

@media (min-width: 740px) {
  .header-item-first span.black {
    color: #333333;
    border-right: solid 1px #333333;
  }
}

.burger-btn {
  display: block;
  position: relative;
  top: -55px;
  left: 90vw;
  z-index: 5;
}

@media (min-width: 740px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn .bar {
  display: block;
  height: 2px;
  width: 20px;
  background-color: #ffffff;
}

.bar_top {
  margin-bottom: 5px;
}

.bar_mid {
  margin-bottom: 5px;
}

/* ハンバーガーメニューが開いたとき */
.burger-btn.cross {
  z-index: 9999;
}

.burger-btn.cross .bar_top {
  width: 20px;
  transform: rotate(45deg) translate(5px, 5px);
  transition: .3s;
}

.burger-btn.cross .bar_mid {
  opacity: 0;
  transition: .3s;
}

.burger-btn.cross .bar_bottom {
  width: 20px;
  transform: rotate(-45deg) translate(5px, -5px);
  transition: .3s;
}

.burger-btn.black .bar {
  background-color: #333;
  transition: background-color .3s;
}

.burger-btn.black .menu {
  color: #333;
  transition: color .3s;
}

.burger-btn.cross .bar {
  background: #ffffff;
}

body.noscroll {
  overflow: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 2px;
  appearance: none;
}

.main-container {
  width: 85%;
  margin: 0 auto;
  position: absolute;
  z-index: 10;
  top: 159px;
  left: 19px;
}

@media (min-width: 1040px) {
  .main-container {
    left: 200px;
    top: 110px;
  }
}

.main-title {
  text-shadow: 4.2px 4.2px 4px rgba(24, 40, 72, 0.5);
  font-family: "Lato-Black";
  font-weight: bold;
  color: #ffffff;
  font-size: 4.8rem;
  line-height: 58px;
  letter-spacing: 0.96px;
}

@media (min-width: 1040px) {
  .main-title {
    font-size: 9.6rem;
    line-height: 112px;
    letter-spacing: 1.92px;
  }
}

.main-text {
  width: 208px;
  height: 36px;
  margin-top: 14px;
  margin-left: 10px;
  background-color: #ffffff;
  font-family: "NotoSansJP-Bold";
  font-size: 19.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #182848;
  transform: skew(-40deg);
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .main-text {
    height: 64px;
    width: 338px;
  }
}

.main-text-secound {
  font-family: "NotoSansJP-Bold";
  position: relative;
  top: -60px;
  transform: skew(-40deg);
  width: 308px;
  height: 36px;
  margin: 0px 25px 0px 8px;
  background-color: #ffffff;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #182848;
  margin-top: 0;
}

@media (min-width: 1200px) {
  .main-text-secound {
    top: -90px;
    height: 64px;
    width: 488px;
  }
}

.main-item {
  font-family: "NotoSansJP-Bold";
  font-size: 1.95rem;
  font-weight: bold;
  transform: skew(40deg);
  position: relative;
  top: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .main-item {
    font-size: 3.2rem;
  }
}

.main-box-first {
  position: relative;
  z-index: -1;
  transform: skew(-40deg);
  top: -33px;
  width: 208px;
  height: 36px;
  margin: 0px 25px 0px 12px;
  background-color: #182848;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "NotoSansJP-Bold";
}

@media (min-width: 1200px) {
  .main-box-first {
    top: -58px;
    width: 338px;
    height: 64px;
  }
}

.main-box-second {
  z-index: -1;
  position: relative;
  top: -21px;
  transform: skew(-40deg);
  width: 308px;
  height: 36px;
  margin: 0px 25px 0px 10px;
  background-color: #182848;
  margin-top: 0;
}

@media (min-width: 1200px) {
  .main-box-second {
    width: 488px;
    height: 64px;
  }
}

@media (min-width: 740px) {
  .pc-none {
    display: none;
  }
}

.info-wrapper {
  position: relative;
  margin-top: 64px;
  width: 325px;
  height: 28px;
  padding: 14px 18px 14px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #182848;
  background-color: #fff;
  font-family: "NotoSansJP-Bold";
  font-size: 1.4rem;
  line-height: 1;
  color: #191919;
}

.sub-title {
  display: inline-block;
  position: relative;
  color: #fff;
  z-index: 1;
  top: 64px;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Lato-Regular";
  height: 22px;
  width: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #182848;
  transform: scaleY(2.2) perspective(7em) rotateX(50deg);
  transform-origin: bottom left;
}

.main-info {
  text-align-last: left;
}

.sp-none {
  display: none;
}

@media (min-width: 740px) {
  .sp-none {
    display: block;
  }
}

.pc-sub-title {
  display: inline-block;
  color: #fff;
  z-index: 1;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "NotoSansJP-Bold";
  height: 22px;
  width: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info {
  width: 65px;
  height: 20px;
  margin: 0 8px 0 7px;
  padding: 5px 9px 5px;
  background-color: #b8614b;
  width: 47px;
  height: 12px;
  font-family: "NotoSansJP-Regular";
  font-size: 1.2rem;
  text-align: left;
  color: #fff;
  border-radius: 8px;
}

.info-container {
  background-color: #182848;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1040px) {
  .info-container {
    width: 800px;
    max-width: 100%;
    position: relative;
  }
}

@media (min-width: 1200px) {
  .info-container {
    width: 1016px;
    max-width: 100%;
    position: relative;
  }
}

.pc-info-wrapper {
  margin: 0 auto;
  background: #f0f0f0;
  position: relative;
  z-index: 0;
  height: 60px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.pc-info-wrapper {
  content: '';
  display: block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: -3%;
  width: 600px;
  max-width: 100%;
  background-color: #fff;
  transform: skew(-40deg);
  z-index: 1;
  height: 64px;
}

@media (min-width: 740px) {
  .pc-info-wrapper {
    width: 480px;
  }
}

@media (min-width: 1040px) {
  .pc-info-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    left: -2%;
  }
}

@media (min-width: 1200px) {
  .pc-info-wrapper {
    width: 100%;
    max-width: 700px;
    position: relative;
    left: -1%;
  }
}

.pc-main-info {
  text-align: center;
  width: 600px;
  display: flex;
  align-items: center;
  height: 64px;
  transform: skew(40deg);
  font-size: 1.6rem;
  margin-left: 30px;
  position: relative;
}

.pc-info {
  height: 20px;
  margin: 0 8px 0 7px;
  padding: 5px 9px 5px;
  background-color: #b8614b;
  width: 80px;
  height: 12px;
  font-family: "NotoSansJP-Regular";
  font-size: 1.2rem;
  text-align: left;
  color: #fff;
  border-radius: 8px;
  text-align: center;
}

.pc-info-arrow {
  content: "";
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  background: #000;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: translateY(-50%) skew(45deg);
  margin-right: 50px;
}

.slide-img img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 688px;
  object-fit: contain;
  margin-right: 0;
}

.swiper-container {
  position: relative;
  max-width: 100%;
  height: 688;
  overflow: hidden;
  margin-bottom: 0;
  object-fit: cover;
  background-image: linear-gradient(to right, #4b6cb7, #182848);
  margin-right: 0;
}

.slide1 {
  background-size: cover;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-image: url(sp-assets/top-image-1.png);
  margin-right: 0;
}

@media (min-width: 740px) {
  .slide1 {
    background-image: url(sp-assets/pc-top-image-1.png);
    height: 688px;
  }
}

.slide2 {
  background-size: cover;
  width: 1970px;
  max-width: 100%;
  height: 668px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-image: url(sp-assets/top-image-2.png);
  object-fit: cover;
}

@media (min-width: 740px) {
  .slide2 {
    background-image: url(sp-assets/pc-top-image-2.png);
    height: 688px;
  }
}

.slide3 {
  background-size: cover;
  width: 1970px;
  max-width: 100%;
  height: 668px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-image: url(sp-assets/top-image-3.png);
  object-fit: cover;
}

@media (min-width: 740px) {
  .slide3 {
    background-image: url(sp-assets/pc-top-image-3.png);
    height: 688px;
  }
}

.services {
  margin-top: 120px;
}

@media (min-width: 740px) {
  .services-wrapper {
    display: flex;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.services-container {
  margin: 0 auto;
  background: #f0f0f0;
  position: relative;
  z-index: -1;
  height: 730px;
  overflow: hidden;
}

@media (min-width: 740px) {
  .services-container {
    height: 435px;
    display: flex;
  }
}

@media (min-width: 1040px) {
  .services-container {
    overflow: visible;
    width: 100%;
    position: relative;
  }
}

.services-container::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 72%;
  width: 200px;
  background-color: #fff;
  transform: skew(-25deg);
  z-index: -1;
  height: 730px;
}

@media (min-width: 740px) {
  .services-container::before {
    height: 435px;
  }
}

.services-image {
  background-image: url(sp-assets/image-services.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 290px;
  object-fit: cover;
  margin: 0 auto;
}

@media (min-width: 740px) {
  .services-image {
    width: 60%;
    height: 440px;
  }
}

@media (min-width: 1040px) {
  .services-image {
    position: absolute;
    top: 41px;
    width: 620px;
    height: 440px;
  }
}

.services-inner {
  margin-left: 20px;
}

@media (min-width: 740px) {
  .services-inner {
    margin-left: 20px;
    width: 50%;
  }
}

@media (min-width: 1040px) {
  .services-inner {
    margin-left: auto;
    width: 40%;
  }
}

.services-title {
  height: 24px;
  margin: 40px 0 31px 0;
  font-family: "Lato";
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #191919;
}

@media (min-width: 1040px) {
  .services-title {
    font-size: 4.8rem;
  }
}

.sub-contents {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #4b6cb7;
  margin-left: 32px;
  position: relative;
}

.sub-contents::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #4b6cb7;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}

.services-heading {
  margin: 30px 66px 0 3px;
  font-family: "NotoSansJP-Regular";
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  color: #191919;
  line-height: 1.5;
}

@media (min-width: 1040px) {
  .services-heading {
    font-size: 3.2rem;
    width: 379px;
  }
}

.services-text {
  margin-top: 15px;
  width: 95%;
  font-family: "NotoSansJP-Regular";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: justify;
  color: #191919;
}

.services-button {
  width: 256px;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #4b6cb7;
  font-family: "NotoSansJP-Regular";
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  margin-top: 5px;
  position: relative;
}

@media (min-width: 740px) {
  .services-button {
    margin: 0;
    margin-top: 40px;
  }
}

@media (min-width: 1040px) {
  .services-button {
    width: 256px;
    height: 64px;
    bottom: -30px;
    right: 1px;
    z-index: 1;
  }
}

.services-button-text {
  display: inline-block;
  margin-left: 48px;
}

@media (min-width: 1040px) {
  .services-button-text {
    font-size: 1.6rem;
  }
}

.services-arrow::after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

@media (min-width: 1040px) {
  .services-arrow::after {
    right: 30px;
  }
}

.about {
  margin-top: 120px;
}

@media (min-width: 740px) {
  .about-wrapper {
    position: relative;
  }
}

.about-image {
  background-image: url(sp-assets/background-image-about.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 248px;
  object-fit: contain;
  margin: 0 auto;
  display: inline-block;
  margin-top: 30px;
  width: 100%;
}

@media (min-width: 740px) {
  .about-image {
    height: 656px;
    margin: 0 auto;
  }
}

@media (min-width: 1040px) {
  .about-container {
    background: #000;
    width: 700px;
    max-width: 100%;
    z-index: 9999;
    margin: 0 auto;
  }
}

.about-inner {
  margin: 0 auto;
  margin-left: 22px;
  background: #fff;
}

@media (min-width: 740px) {
  .about-inner {
    position: absolute;
    top: 40px;
    left: 20vw;
    width: 430px;
    height: 500px;
    padding-left: 20px;
    margin: 0 auto;
  }
}

@media (min-width: 1040px) {
  .about-inner {
    position: absolute;
    width: 504px;
    height: 576px;
    max-width: 100%;
  }
}

.about-title {
  height: 24px;
  margin: 40px 0 31px 0;
  font-family: "Lato";
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #191919;
}

@media (min-width: 1040px) {
  .about-title {
    margin-left: 38px;
    font-size: 4.8rem;
  }
}

.sp-about-image {
  display: none;
}

@media (min-width: 740px) {
  .sp-about-image {
    display: inline-block;
    background-image: url(sp-assets/image-about-pc.jpg);
    background-position: center;
    background-repeat: no-repeat;
    width: 408px;
    height: 128px;
    margin: 0 auto;
    margin-top: 32px;
  }
}

@media (min-width: 1040px) {
  .sp-about-image {
    margin-left: 38px;
  }
}

.sub-contents {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #4b6cb7;
  margin-left: 32px;
  position: relative;
}

@media (min-width: 1040px) {
  .sub-contents {
    font-size: 2.4rem;
  }
}

.sub-contents::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #4b6cb7;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}

.about-heading {
  margin: 30px 66px 0 3px;
  font-family: "NotoSansJP-Regular";
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  color: #191919;
  line-height: 1.5;
}

.about-text {
  margin-top: 15px;
  width: 95%;
  font-family: "NotoSansJP-Regular";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: justify;
  color: #191919;
}

@media (min-width: 1040px) {
  .about-text {
    margin-left: 35px;
    width: 381px;
    height: 144px;
    line-height: 38px;
  }
}

.about-button {
  width: 256px;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #4b6cb7;
  font-family: "NotoSansJP-Regular";
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}

@media (min-width: 1040px) {
  .about-button {
    width: 256px;
    height: 64px;
    left: -85px;
    z-index: 1;
  }
}

.button-text {
  display: inline-block;
  margin-left: 80px;
}

@media (min-width: 1040px) {
  .button-text {
    font-size: 1.6rem;
  }
}

.about-arrow:after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

@media (min-width: 1040px) {
  .about-arrow:after {
    right: 50px;
  }
}

.works {
  margin: 160px 0;
}

@media (min-width: 740px) {
  .works-flex {
    margin: 0 auto;
    width: 100%;
    margin-right: 20px;
    box-shadow: 0 0 10px 0 rgba(25, 25, 25, 0.25);
    background: #fff;
    margin-left: 20px;
  }
}

@media (min-width: 1040px) {
  .works-flex {
    margin-left: 0;
    margin-right: 32px;
    width: 472px;
    height: 408px;
  }
}

@media (min-width: 1040px) {
  .works-flex-second {
    width: 472px;
  }
}

@media (min-width: 740px) {
  .works-wrapper {
    margin: 0 auto;
    display: flex;
    width: 100%;
  }
}

@media (min-width: 1040px) {
  .works-wrapper {
    width: 984px;
    max-width: 100%;
  }
}

.works-container {
  background-color: #f0f0f0;
  position: relative;
  z-index: -1;
  height: auto;
  overflow: hidden;
}

@media (min-width: 740px) {
  .works-container {
    height: auto;
    margin: 0 auto;
  }
}

.works-container::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -35%;
  background-color: #fff;
  transform: skew(-25deg);
  z-index: -1;
}

@media (min-width: 740px) {
  .works-container::before {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 2000px;
    max-width: 100%;
    background-color: #fff;
    transform: skew(41deg);
    left: -10%;
  }
}

.works-image {
  background-image: url(sp-assets/image-works01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 740px) {
  .works-image {
    height: 240px;
  }
}

.works-category {
  position: absolute;
  width: 64px;
  height: 48px;
  bottom: 0;
  /*画像の左下に配置*/
  left: 0;
  margin: 0;
  /*余計な隙間を除く*/
  color: white;
  /*文字を白に*/
  background: #182848;
  /*背景色*/
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lato";
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 740px) {
  .works-category {
    top: -10px;
    left: -10px;
    width: 56px;
    height: 56px;
  }
}

.works-inner {
  margin-left: 22px;
  margin-bottom: 46px;
}

@media (min-width: 740px) {
  .works-inner {
    width: 626px;
    margin: 0 auto;
  }
}

.works-title {
  height: 24px;
  margin: 40px 0 31px 0;
  font-family: "Lato";
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #191919;
}

@media (min-width: 740px) {
  .works-title {
    margin-top: 0;
    text-align: center;
  }
}

@media (min-width: 1040px) {
  .works-title {
    font-size: 4.8rem;
    margin-bottom: 50px;
  }
}

.sub-contents {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #4b6cb7;
  margin-left: 32px;
  position: relative;
  font-family: "NotoSansJP-Regular";
}

.sub-contents::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #4b6cb7;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}

@media (min-width: 1040px) {
  .sub-contents::before {
    font-size: 2.4rem;
  }
}

.works-heading {
  width: 305px;
  margin: 30px 66px 0 3px;
  font-family: "NotoSansJP-Regular";
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  color: #191919;
  line-height: 1.5;
}

@media (min-width: 740px) {
  .works-heading {
    text-align: center;
    width: 626px;
  }
}

@media (min-width: 1040px) {
  .works-heading {
    width: 700px;
    font-size: 3.2rem;
  }
}

@media (min-width: 740px) {
  .heading-second {
    display: none;
  }
}

@media (min-width: 1040px) {
  .heading-second {
    font-size: 3.2rem;
  }
}

.works-text {
  margin-top: 15px;
  width: 95%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: justify;
  color: #191919;
}

@media (min-width: 740px) {
  .works-text {
    text-align: center;
    width: 626px;
    margin-bottom: 56px;
  }
}

@media (min-width: 1040px) {
  .works-text {
    width: 640px;
    font-size: 1.6rem;
    line-height: 32px;
  }
}

.works-button {
  width: 256px;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #4b6cb7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  margin-top: 40px;
  position: relative;
}

.button-text {
  display: inline-block;
  margin-left: 80px;
}

.works-arrow:after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 22%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

@media (min-width: 1040px) {
  .works-arrow:after {
    right: 40px;
  }
}

.achievement-title {
  margin: 30px 66px 0 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  color: #b8614b;
  line-height: 1.5;
}

.achievement-inner {
  margin: 0 auto;
  margin-left: 22px;
}

.achievement-text {
  margin-top: 22px;
  width: 95%;
  height: 70px;
  font-family: "NotoSansJP";
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: left;
  color: #191919;
}

@media (min-width: 1040px) {
  .achievement-text {
    font-size: 1.6rem;
    line-height: 32px;
  }
}

@media (min-width: 740px) {
  .works-flex-second {
    margin: 0 auto;
    margin-right: 20px;
    width: 100%;
  }
}

@media (min-width: 1040px) {
  .works-flex-second {
    margin-right: 0;
    width: 472px;
    height: 408px;
  }
}

@media (min-width: 740px) {
  .achievement-inner-second {
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 0;
    height: 168px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(25, 25, 25, 0.25);
  }
}

.achievement-inner-second::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 95%;
  width: 150px;
  background-color: #fff;
  transform: skew(-25deg);
  z-index: -1;
  height: auto;
}

@media (min-width: 740px) {
  .achievement-inner-second::before {
    display: none;
  }
}

.works-image-second {
  display: block;
  background-image: url(sp-assets/image-works02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 160px;
  object-fit: contain;
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
}

@media (min-width: 740px) {
  .works-image-second {
    margin-top: 0;
    height: 240px;
  }
}

.achievement-title-second {
  margin: 0 auto;
  margin-top: 25px;
  width: 328px;
  height: 42px;
  margin-left: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  color: #b8614b;
  line-height: 1.5;
}

.achievement-text-second {
  margin: 0 auto;
  margin-top: 15px;
  width: 90%;
  height: 70px;
  margin-left: 22px;
  font-family: "NotoSansJP";
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: left;
  color: #191919;
}

@media (min-width: 1040px) {
  .achievement-text-second {
    font-size: 1.6rem;
    line-height: 32px;
  }
}

.works-button-second {
  width: 256px;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #4b6cb7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
  display: none;
}

@media (min-width: 740px) {
  .works-button-second {
    display: block;
    margin-top: 40px;
  }
}

@media (min-width: 1040px) {
  .works-button-second {
    width: 256px;
    height: 64px;
    z-index: 1;
  }
}

.button-text-second {
  display: inline-block;
  margin-left: 48px;
  padding-top: 13px;
}

@media (min-width: 1040px) {
  .button-text-second {
    padding-top: 25px;
    font-size: 1.6rem;
  }
}

.works-button-none {
  width: 256px;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #4b6cb7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
}

@media (min-width: 740px) {
  .works-button-none {
    display: none;
  }
}

.button-text-none {
  display: inline-block;
  margin-left: 48px;
}

@media (min-width: 740px) {
  .button-text-none {
    display: none;
  }
}

.works-arrow-none:after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 22%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

@media (min-width: 740px) {
  .works-arrow-none:after {
    display: none;
  }
}

@media (min-width: 740px) {
  .recruit-container {
    background: #f0f0f0;
  }
}

@media (min-width: 1040px) {
  .recruit-container {
    height: 702px;
  }
}

.recruit-inner {
  margin: 0 auto;
  width: 328px;
  margin-bottom: 46px;
  margin-left: 22px;
}

@media (min-width: 740px) {
  .recruit-inner {
    margin: 0 auto;
    padding-top: 81px;
  }
}

@media (min-width: 1040px) {
  .recruit-flex {
    width: 1000px;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .recruit-wrapper {
    position: relative;
    top: 30px;
  }
}

@media (min-width: 1040px) {
  .recruit-wrapper-third {
    position: relative;
    top: -30px;
  }
}

.recruit-title {
  height: 24px;
  margin: 0px 0 118px 0;
  font-family: "Lato";
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #191919;
}

@media (min-width: 1040px) {
  .recruit-title {
    font-size: 4.8rem;
  }
}

.sub-contents {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #4b6cb7;
  margin-left: 32px;
  position: relative;
}

@media (min-width: 1040px) {
  .sub-contents {
    font-size: 2.4rem;
  }
}

.recruit-image {
  background-image: url(sp-assets/image-recruit-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 740px) {
  .recruit-image {
    width: 312px;
    height: 240px;
    margin-bottom: 60px;
  }
}

.recruit-image-second {
  background-image: url(sp-assets/image-recruit-2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 740px) {
  .recruit-image-second {
    width: 312px;
    height: 240px;
    margin-bottom: 60px;
  }
}

.recruit-image-third {
  background-image: url(sp-assets/image-recruit-3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 740px) {
  .recruit-image-third {
    width: 312px;
    height: 240px;
    margin-bottom: 60px;
  }
}

.recruit-category {
  width: 256px;
  height: 44px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 740px) {
  .recruit-category {
    z-index: 1;
    position: absolute;
    bottom: -30px;
    left: 56px;
    width: 264px;
    height: 56px;
    opacity: 0.64;
    background-color: #182848;
  }
}

.recruit-text {
  margin-left: 22px;
  font-size: 1.6rem;
  position: relative;
}

.recruit-text-second {
  margin-left: 22px;
  font-size: 1.6rem;
  position: relative;
}

.recruit-text-third {
  margin-left: 22px;
  font-size: 1.6rem;
  position: relative;
}

.recruit-arrow {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  position: absolute;
  right: 45%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

.rucruit-bottom {
  padding-top: 40px;
  height: 220px;
  background-color: #f0f0f0;
  position: relative;
}

.recruit-button {
  width: 256px;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #4b6cb7;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  margin-top: 60px;
  position: relative;
}

@media (min-width: 1040px) {
  .recruit-button {
    width: 256px;
    height: 64px;
    bottom: -10px;
    right: 1px;
    z-index: 1;
    margin-top: 0;
  }
}

.recruit-button-text {
  display: inline-block;
  margin-left: 48px;
}

@media (min-width: 1040px) {
  .recruit-button-text {
    font-size: 1.6rem;
  }
}

.recruit-button-arrow:after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

.contact {
  background-image: url(sp-assets/image-works01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin: 0 auto;
  position: relative;
}

.contact-container {
  margin: 0 auto;
  background-image: url(sp-assets/bckground-image-contact.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  object-fit: contain;
  height: 480px;
  position: relative;
}

.contact-inner {
  margin: 0 auto;
  width: 358px;
  margin-bottom: 46px;
}

@media (min-width: 740px) {
  .contact-inner {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .contact-inner {
    width: 700px;
  }
}

.contact-title {
  height: 24px;
  padding-top: 96px;
  font-family: "Lato";
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  color: #fff;
}

@media (min-width: 740px) {
  .contact-title {
    text-align: center;
  }
}

@media (min-width: 1040px) {
  .contact-title {
    font-size: 4.8rem;
    padding-bottom: 30px;
  }
}

.contact-sub-contents {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin-left: 32px;
  position: relative;
  font-family: "NotoSansJP-Regular";
}

@media (min-width: 1040px) {
  .contact-sub-contents {
    font-size: 2.4rem;
  }
}

.contact-sub-contents::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #ffffff;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}

.contact-text {
  margin-top: 32px;
  width: 340px;
  font-family: "NotoSansJP-Regular";
  font-size: 1.6rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: justify;
  color: #ffffff;
}

@media (min-width: 740px) {
  .contact-text {
    width: 700px;
    text-align: center;
    margin: 0 auto;
    margin-top: 32px;
  }
}

.contact-bottom {
  width: 100%;
  height: 110px;
  position: relative;
  margin: 0 auto;
}

.contact-button {
  width: 100%;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #b8614b;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  top: 40px;
}

@media (min-width: 740px) {
  .contact-button {
    width: 320px;
    margin-right: 40px;
  }
}

@media (min-width: 1040px) {
  .contact-button {
    width: 320px;
    height: 64px;
    bottom: -10px;
    right: 1px;
    z-index: 1;
    margin-top: 0;
  }
}

.contact-logo {
  position: relative;
  right: 90px;
}

@media (min-width: 1040px) {
  .contact-logo {
    right: 20px;
    top: 2px;
  }
}

.contact-button-text {
  display: inline-block;
  margin-left: 108px;
}

@media (min-width: 1040px) {
  .contact-button-text {
    font-size: 1.6rem;
    margin-left: 90px;
  }
}

.contact-button-arrow:after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

@media (min-width: 1040px) {
  .contact-button-arrow:after {
    margin-top: 4px;
    margin-right: 40px;
  }
}

.contact-bottom-second {
  width: 100%;
  height: 220px;
  position: relative;
  margin: 0 auto;
}

.contact-button-second {
  width: 100%;
  height: 44px;
  box-shadow: 0px 2px 4px 0 rgba(24, 40, 72, 0.46);
  background-color: #191919;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.44rem;
  color: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  position: absolute;
}

@media (min-width: 740px) {
  .contact-button-second {
    top: 40px;
    width: 320px;
    margin-left: 40px;
  }
}

@media (min-width: 1040px) {
  .contact-button-second {
    height: 64px;
    bottom: -10px;
    z-index: 1;
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.contact-logo-second {
  position: relative;
  right: 75px;
}

@media (min-width: 1040px) {
  .contact-logo-second {
    top: 2px;
    right: 20px;
  }
}

.contact-button-text-second {
  display: inline-block;
  margin-left: 95px;
}

@media (min-width: 1040px) {
  .contact-button-text-second {
    margin-left: 65px;
  }
}

.contact-button-arrow:after {
  content: "";
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) skew(45deg);
}

@media (min-width: 740px) {
  .contact-flex {
    width: 700px;
    display: flex;
    margin: 0 auto;
  }
}

@media (min-width: 1040px) {
  .contact-flex {
    width: 700px;
    max-width: 100%;
  }
}

.footer-container {
  width: 100%;
  background: #182848;
}

.footer-inner {
  margin-left: 20px;
}

@media (min-width: 740px) {
  .footer-flex {
    margin: 0 auto;
    width: 1000px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.footer-list {
  margin-top: 24px;
  font-size: 1.4rem;
  font-family: "NotoSansJP-Regular";
}

@media (min-width: 740px) {
  .footer-list {
    background: #182848;
    writing-mode: vertical-rl;
    margin-top: 0;
    margin-right: 23px;
  }
}

@media (min-width: 1040px) {
  .footer-list {
    font-size: 1.6rem;
  }
}

.footer-list:first-child {
  margin-top: 0;
  padding-top: 40px;
}

@media (min-width: 740px) {
  .footer-list:first-child {
    padding-top: 0;
  }
}

.footer-link {
  color: #fff;
}

.footer-item {
  font-family: "NotoSansJP-Regular";
}

@media (min-width: 740px) {
  .footer-item {
    display: flex;
    margin-top: 70px;
  }
}

.footer-item li:nth-child(5) {
  margin-top: 64px;
}

@media (min-width: 740px) {
  .footer-item li:nth-child(5) {
    margin-top: 0;
    margin-right: 23px;
  }
}

@media (min-width: 740px) {
  .footer-item li:nth-child(4) {
    margin-right: 78px;
    margin-top: 0;
  }
}

.footer-logo {
  margin-top: 81px;
}

.address-item {
  color: #fff;
  font-size: 1.4rem;
}

@media (min-width: 1040px) {
  .address-item {
    font-size: 1.6rem;
  }
}

.address-list:first-child {
  margin-top: 23px;
}

.address-list {
  margin-top: 16px;
}

.address-list:last-child {
  padding-bottom: 43px;
}

.footer-copy {
  font-family: "NotoSansJP-Regular";
  background: #191919;
  height: 42px;
  display: flex;
  align-items: center;
}

.footer-copy-inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 20px;
}

.copyright {
  color: #ffffff;
  font-size: 1rem;
}
/*# sourceMappingURL=style.css.map */