@charset "UTF-8";
/* ============================================ */
/* index
/* ============================================ */
/* ===== main ===== */
#main {
  position: relative;
  overflow: hidden;
}

/* ===== first-view ===== */
#first-view {
  position: relative;
  overflow: hidden;
}
#first-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 80px;
  background: var(--color-white);
  z-index: 1;
}
#first-view .object01 {
  z-index: 1;
}
#first-view .slider {
  width: 80%;
  margin: 0 0 0 auto;
}
#first-view .slider .slider-item {
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: url() no-repeat center;
  background-size: cover;
}
#first-view .slider .img01 {
  background-image: url(../img/index/first-view_slider01.jpg);
}
#first-view .slider .img02 {
  background-image: url(../img/index/first-view_slider02.jpg);
}
#first-view .slider .img03 {
  background-image: url(../img/index/first-view_slider03.jpg);
}
#first-view .top-catch {
  position: absolute;
  left: 0;
  top: 80px;
  display: flex;
  align-items: center;
  padding: 0 0 0 100px;
  height: calc(100% - 250px);
  color: var(--color-white);
  font-size: 45px;
  font-size: 2.8125rem;
  font-family: var(--fontfamily-shippori);
  line-height: 1.8;
  white-space: nowrap;
  z-index: 2;
}

@media screen and (max-width: 1400px) {
  #first-view .top-catch {
    padding: 0 0 0 80px;
    font-size: 3vw;
  }
}
@media screen and (max-width: 1024px) {
  #first-view::before {
    display: none;
  }
  #first-view .slider .slider-item {
    height: 700px;
  }
  #first-view .top-catch {
    height: calc(100% - 310px);
  }
}
@media screen and (max-width: 768px) {
  #first-view .slider .slider-item {
    height: 560px;
  }
  #first-view .top-catch {
    top: 60px;
    height: calc(100% - 280px);
    padding: 0 0 0 50px;
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 600px) {
  #first-view {
    height: auto;
    min-height: 100vh;
  }
  #first-view .object01 {
    clip-path: polygon(0 0, 100% 0, 100% calc(100vh + 150px), 0 calc(100vh + 150px));
  }
  #first-view .slider {
    position: absolute;
    top: 50vh;
    right: 0;
    width: 110%;
    margin: 0;
    z-index: 2;
    clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  #first-view .slider .slider-item {
    height: 50vh;
  }
  #first-view .top-catch {
    padding: 0 0 0 10%;
    margin: 0 0 50vh;
    height: calc(50vh - 60px);
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 320px) {
  #first-view .top-catch {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
/* ===== 背景 ===== */
.bg-wrap {
  position: relative;
  padding: 150px 0 120px;
}
.bg-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 40%;
  background: var(--color-lightgray);
  z-index: -2;
}

@media screen and (max-width: 768px) {
  .bg-wrap {
    padding: 100px 0 160px;
  }
  .bg-wrap::after {
    height: 58%;
  }
}
/* ===== topics（first-view内） ===== */
#topics {
  position: absolute;
  left: 70px;
  bottom: 55px;
  margin: 0 70px 0 0;
  z-index: 2;
}
#topics .section-title {
  margin: 0;
  color: var(--color-white);
}
#topics .section-title::after {
  display: none;
}
#topics .section-title .en {
  font-size: 40px;
  font-size: 2.5rem;
}
#topics .section-title .ja {
  font-size: 16px;
  font-size: 1rem;
}
#topics .topics-contents {
  display: flex;
  align-items: center;
  padding: 1.5em;
  font-weight: 500;
  background: var(--color-white);
  border-radius: 5px;
}
#topics .topics-contents .topics-item {
  display: flex;
  align-items: center;
  margin: 0 1em 0 0;
}
#topics .topics-contents .topics-item .date {
  margin: 0 1em 0 0;
}
#topics .topics-contents .link-line {
  color: var(--color-black);
}
#topics .topics-contents .view-all {
  display: block;
  color: var(--color-red);
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: var(--fontfamily-en);
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  #topics .topics-contents {
    flex-direction: column;
    align-items: flex-start;
  }
  #topics .topics-contents .topics-item {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 1em;
  }
  #topics .topics-contents .topics-item .date {
    margin: 0 0 0.5em;
  }
  #topics .topics-contents .view-all {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #topics {
    left: 50px;
    bottom: 35px;
    margin: 0 50px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #topics {
    position: relative;
    left: auto;
    bottom: auto;
    width: 80%;
    margin: calc(100vh + 30px) auto 0;
  }
  #topics .section-title {
    margin: 0;
    color: var(--color-white);
  }
  #topics .section-title::after {
    display: none;
  }
  #topics .section-title .en {
    font-size: 32px;
    font-size: 2rem;
  }
}
/* ===== section共通 ===== */
.section-title {
  position: relative;
  width: fit-content;
  margin: 0 0 50px;
  white-space: nowrap;
}
.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  height: 2px;
  background: var(--color-red);
}
.section-title .en {
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 600;
  font-family: var(--fontfamily-en);
  margin: 0 0.3em 0 0;
}
.section-title .ja {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
.section-title.left::after {
  right: 0;
}
.section-title.right {
  margin: 0 0 50px auto;
}
.section-title.right::after {
  left: 0;
}

@media screen and (min-width: 1601px) {
  .section-title::after {
    width: calc(100% + 100vw - 1000px);
  }
}
@media screen and (max-width: 1600px) {
  .section-title::after {
    width: calc(100% + 100vw - 10%);
  }
}
@media screen and (max-width: 768px) {
  .section-title .en {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 600px) {
  .section-title {
    padding: 0 0 10px;
    margin: 0 0 30px;
  }
  .section-title .en,
.section-title .ja {
    display: block;
  }
  .section-title .en {
    font-size: 40px;
    font-size: 2.5rem;
    margin: 0;
  }
  .section-title .ja {
    font-size: 16px;
    font-size: 1rem;
    margin: -0.5em 0 0;
  }
  .section-title.left {
    text-align: right;
  }
}
/* ===== company ===== */
#company {
  margin: 0 0 180px;
}
#company .text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}
#company .flex-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 50px 0 0;
}
#company .img {
  width: 60%;
  height: 340px;
  border-radius: 5px;
  overflow: hidden;
}
#company .img::before {
  background-image: url(../img/index/company.jpg);
}
#company .link {
  width: 35%;
  padding: 0 0 30px;
}
#company .link .link-item + .link-item {
  margin: 10px 0 0;
}

@media screen and (max-width: 768px) {
  #company {
    margin: 0 0 120px;
  }
  #company .flex-wrap {
    flex-direction: column;
    align-items: center;
  }
  #company .text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #company .img {
    width: 100vw;
    height: 340px;
    border-radius: 0;
  }
  #company .link {
    width: 100%;
    padding: 0;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #company {
    margin: 0 0 80px;
  }
  #company .flex-wrap {
    margin: 30px 0 0;
  }
  #company .img {
    width: 100vw;
    height: 240px;
  }
}
/* ===== service ===== */
#service {
  margin: 0 0 180px;
}
#service .our-service {
  position: relative;
  display: block;
  width: 100%;
  height: 420px;
}
#service .our-service .text {
  position: absolute;
  left: 0;
  top: 50%;
  width: 50%;
  max-width: 420px;
  transform: translate(0, -50%);
  z-index: 1;
}
#service .our-service .text .en-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  font-family: var(--fontfamily-en);
  text-align: center;
}
#service .our-service .text .ja-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1em;
}
#service .our-service .text .box {
  background: var(--color-white);
  border-radius: 5px;
  padding: 40px 50px 70px;
}
#service .our-service .text .box p {
  line-height: 2;
}
#service .our-service .text .box .icon-circle {
  top: auto;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 0) scale(1);
}
#service .our-service .img {
  position: absolute;
  left: 200px;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(100px 0%, 100% 0%, calc(100% - 100px) 100%, 0% 100%);
}
#service .our-service .img::before {
  background-image: url(../img/index/our-service.jpg);
  background-position: center 35%;
}
#service .link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 680px;
  margin: 80px auto 0;
}
#service .link .link-item {
  width: 47%;
}
#service .link .link-item .img {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
}
#service .link .link-item .link-title {
  margin: 0.5em 0 0;
}
#service .link .link-item.contract-style .img::before {
  background-image: url(../img/index/contract-style.jpg);
}
#service .link .link-item.flow-contract .img::before {
  background-image: url(../img/index/flow-contract.jpg);
}

@media (hover: hover) {
  #service .our-service:hover .text .box .icon-circle {
    transform: translate(-50%, 0) scale(3);
    background: var(--color-red) url(../img/common/icon_arrow_wh.svg) no-repeat center;
    background-size: 60%;
  }
}
@media (hover: none) {
  #service .our-service .text .box .icon-circle {
    transform: translate(-50%, 0) scale(3);
    background: var(--color-red) url(../img/common/icon_arrow_wh.svg) no-repeat center;
    background-size: 60%;
  }
}
@media screen and (max-width: 1024px) {
  #service .our-service .text .box {
    padding: 40px 40px 70px;
  }
}
@media screen and (max-width: 768px) {
  #service {
    margin: 0 0 120px;
  }
  #service .our-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  #service .our-service .text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    transform: translate(0, 0);
    margin: 0 0 40px;
  }
  #service .our-service .img {
    position: relative;
    left: auto;
    top: auto;
    width: 110vw;
    height: 320px;
  }
}
@media screen and (max-width: 600px) {
  #service {
    margin: 0 0 80px;
  }
  #service .our-service .text .en-title {
    font-size: 26px;
    font-size: 1.625rem;
    margin: 0 0 0.5em;
  }
  #service .our-service .text .box {
    padding: 30px 7.5% 70px;
  }
  #service .our-service .img {
    height: 220px;
  }
  #service .link {
    flex-direction: column;
    align-items: center;
    margin: 60px auto 0;
  }
  #service .link .link-item {
    width: 100%;
  }
  #service .link .link-item + .link-item {
    margin: 30px 0 0;
  }
}
/* ===== employees-recruit ===== */
#employees-recruit .link {
  display: flex;
  justify-content: space-between;
}
#employees-recruit .link .link-item {
  width: 47%;
}
#employees-recruit .link .recruit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#employees-recruit .link .recruit::before {
  background-image: url(../img/index/recruit.png);
  border-radius: 5px;
}
#employees-recruit .link .recruit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: hsla(0deg, 0%, 0%, 0.5);
  mix-blend-mode: multiply;
  border-radius: 5px;
  opacity: 0;
  transition: var(--transition);
}
#employees-recruit .link .recruit .en-title {
  position: absolute;
  top: -1.5em;
  width: 100%;
  font-size: 32px;
  font-size: 2rem;
  font-family: var(--fontfamily-en);
  font-weight: 300;
  text-align: center;
  overflow: auto;
}
#employees-recruit .link .recruit .link-title {
  position: relative;
  display: flex;
  align-items: first baseline;
  color: var(--color-white);
  font-size: 26px;
  font-size: 1.625rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}
#employees-recruit .link .recruit .link-title .icon-blank {
  width: 20px;
  height: 20px;
}

@media (hover: hover) {
  #employees-recruit .link .recruit:hover::after {
    opacity: 1;
  }
  #employees-recruit .link .recruit:hover .link-title {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #employees-recruit .link {
    display: block;
  }
  #employees-recruit .link .link-item {
    width: 100%;
  }
  #employees-recruit .link .recruit {
    height: 400px;
    margin: 80px 0 0;
  }
  #employees-recruit .link .recruit .en-title {
    top: -1.8em;
  }
  #employees-recruit .link .recruit .link-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  #employees-recruit .link .recruit {
    height: 220px;
    margin: 60px 0 0;
  }
  #employees-recruit .link .recruit .en-title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

/*# sourceMappingURL=index.css.map */
