@charset "UTF-8";
h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text-color);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
}
h2 span.en {
  padding-bottom: 16px;
  display: block;
  background-image: var(--Gradation01);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 2.4rem;
  line-height: 1.2;
}
h3 {
  color: var(--text-color);
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
  }
  h2 span.en {
    padding-bottom: 14px;
    font-size: 1.4rem;
  }
}

#globalHeader {
  display: none;
}

/*---------------------------------
    #mv
--------------------------------*/
#mv {
  position: relative;
}
#mv img {
  width: 100%;
}
#mv .mv-copy {
  display: none;

  color: #fff;
  font-size: 5.0rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: absolute;
  left: 4%;
  bottom: 12%;
  filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
}
#mv .mv-copy span {
  color: #e43636;
  text-shadow: 0px 0px 6px #FFF;
  letter-spacing: -0.02em;
}
.scroll_down {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
}
.scroll_down span {
  padding-bottom: 110px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  position: absolute;
  right: 40px;
  bottom: 0;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
}
.scroll_down span::before {
  content: '';
  display: block;
  width: 2px;
  height: 100px;
  background: #ddd;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
}
.scroll_down span::after {
  content: '';
  display: block;
  width: 2px;
  height: 100px;
  background: #959595;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  z-index: 2;
}

#type01 span::after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 767px) {
  #mv .slick-initialized .slick-slide {
    display: flex;
    justify-content: center;
  }
  #mv img {
    width: auto;
    height: 100vh;
  }
  #mv .mv-copy {
    font-size: 7vw;
  }
  .scroll_down span {
    padding-bottom: 54px;
    writing-mode: horizontal-tb;
    right: 50%;
    transform: translateX(50%);
    font-size: 1.2rem;
  }
  .scroll_down span::before {
    height: 40px; 
  }
  .scroll_down span::after {
    height: 40px;
  }
}

/*---------------------------------
    #news
--------------------------------*/
#news {
  padding: 120px 0;
}
#news .flex {
  justify-content: space-between;
  position: relative;
}
#news .news-title {
  width: 25%;
  min-height: 140px;
}
#news .news-li {
  width: 75%;
  border-top: solid 1px rgba(51, 51, 51, 0.2);
}
#news .news-li li {
  width: 100%;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}
#news .news-li .date {
  color: #909090;
  font-family: "Work Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
#news .news-li a {
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.5;
}
#news .btn-more {
  position: absolute;
  left: 0;
  bottom: 0;
}
#news .btn-more a {
  background: none;
  padding: 0;
  box-shadow: none;
  text-decoration: underline;
}
#news .btn-more a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1020px) {
  #news .news-li a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  #news {
    padding: 90px 0;
  }
  #news .flex {
    flex-direction: column;
    padding-bottom: 70px;
  }
  #news .news-title {
    width: 100%;
    min-height: auto;
    margin-bottom: 50px;
  }
  #news .news-li {
    width: 100%;
  }
  #news .news-li li {
    padding: 16px 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #news .news-li .date {
    font-size: 1.3rem;
  }
  #news .btn-more {
    left: 50%;
    transform: translate(-50%);
  }
  #news .btn-more a {
    justify-content: center;
  }
}

/*---------------------------------
    #about
--------------------------------*/
#about {
  padding: 200px 0 300px;
  background: linear-gradient(180deg, rgba(182, 204, 247, 0) 0%, rgba(158, 186, 243, 0.11) 4.95%, rgba(134, 167, 232, 0.5) 11.97%, #8BA9E6 19.67%, #5D7CBC 35.4%);
  color: #fff;
  position: relative;
}
#about::before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  background: url(../img/home/about-bg.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#about .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
#about h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}
#about h2 span {
  background-image: linear-gradient(0deg, #fff 0%, #fff 100%);;
}
#about p {
  text-align: center;
  line-height: 1.9;
}

@media screen and (max-width: 1020px) {
}
@media screen and (max-width: 767px) {
  #about {
    padding: 100px 0;
  }
  #about p {
    margin-bottom: 20px;
  }
  #about p br {
    display: none;
  }
}

/*---------------------------------
    #service
--------------------------------*/
#service {
  padding: 160px 0 260px;
}
#service .block01 {
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#service h2 .small {
  padding-bottom: 28px;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
#service .btn-wrap {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#service .point {
  margin-top: 180px;
  display: flex;
}
#service .point li {
  padding: 50px 0;
  width: 260px;
  height: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  border: solid 1px var(--Primary);
  border-radius: 50%;
  line-height: 1.4;
}
#service .point li:nth-child(2),#service .point li:nth-child(3){
  margin-left: -65px;
}
#service .point li:nth-child(2) {
  margin-top: -156px;
}
#service .point li img {
  width: auto;
  height: 54px;
}
#service .point li p {
  font-size: 1.7rem;
  text-align: center;
}
#service .point strong {
  font-size: 2.7rem;
  font-weight: 400;
}
#service .point .red {
  padding-bottom: 2px;
  border-bottom: solid 1px var(--Primary);
  color: var(--Primary);
}

#service .block02 {
  padding-top: 60px;
  border-top: solid 1px #DBDBDB;
}
#service .works-top {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#service .works-top .btn-more a {
  background: none;
  padding: 0;
  box-shadow: none;
  text-decoration: underline;
}
#service .works-top .btn-more a:hover {
  text-decoration: none;
}
#service .works ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
#service .works li {
  width: 23%;
}
#service .works li a {
  width: 100%;
  text-decoration: none;
}
#service .works li .img {
  position: relative;
  overflow: hidden;
}
#service .works li .img::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 68.13%, rgba(0, 0, 0, 0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#service .works li .img img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  /*
  width: 100%;
  height: auto;
  */
  transition: all .4s;
}
#service .works li a:hover .img img {
  opacity: 1;
  transform: scale(1.08);
}
#service .works li .img p {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: right;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}
#service .works .category {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  position: relative;
}
#service .works .category::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/common/allow-right-red.svg) no-repeat center/contain;
	transition: all .3s;
}
#service .works .category span {
  color: var(--text-color);
  font-size: 2.0rem;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s;
}
#service .works a:hover .category span {
  color: var(--Primary);
}
#service .works .category span::after {
  content: '';
  width: 100%;
  height: 1px;
  background-image: linear-gradient(290.36deg, #D6000F 8.51%, #F02D3A 91.49%);
  position: absolute;
  left: 0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

#service .works a:hover .category span::after {
  transform: scale(1, 1); 
}

@media screen and (max-width: 1020px) {
  #service {
    padding: 160px 0 240px;
  }
  #service .block01 {
    display: block;
  }
  #service h2 {
    flex-direction: row;
    gap: 90px;
  }
  #service .btn-wrap {
    flex-direction: row;
    margin: 30px 0 0 264px;
  }
  #service .point {
    margin: 200px auto 0;
    justify-content: center;
  }
  #service .works {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
  #service .works ul {
    min-width: 860px;
    gap: 20px;
    justify-content: flex-start;
  }
  #service .works li {
    min-width: 230px;
  }
  #service .works .category span {
    font-size: 1.7rem;
    letter-spacing: 0.01em;
  }
}
@media screen and (max-width: 767px) {
  #service {
    padding: 100px 0 140px;
  }
  #service h2 {
    flex-direction: column;
    gap: 0;
  }
  #service .btn-wrap {
    margin: 32px 0 0;
    gap: 16px;
    flex-wrap: wrap;
  }
  #service .block01 {
    margin-bottom: 60px;
  }
  #service .point {
    margin-top: 40vw;
  }
  #service .point li {
    width: 42vw;
    height: 42vw;
    padding: 7vw 0;
    flex-shrink: 0;
    gap: 4px;
  }
  #service .point li img {
    height: 11vw;
  }
  #service .point li p {
    font-size: 3vw;
  }
  #service .point strong {
    font-size: 4.2vw;
  }
  #service .point li:nth-child(2), #service .point li:nth-child(3) {
    margin-left: -16vw;
  }
  #service .point li:nth-child(2) {
    margin-top: -30vw;
  }
  #service .block02 {
    padding-top: 40px;
  }
  #service .works ul {
    min-width: 840px;
  }
  #service .works li {
    min-width: 200px;
  }
  #service .works li .img p {
    font-size: 1.3rem;
  }
  #service .works .category {
    margin-top: 8px;
  }
  #service .works .category span {
    font-size: 1.6rem;
  }
}

/*---------------------------------
    #factory
--------------------------------*/
#factory {
  padding: 0 0 140px;
  background: #454545;
}
#factory .flex {
  align-items: flex-start;
  justify-content: space-between;
}
#factory .factory-img {
  margin-top: -7%;
  width: 49%;
}
#factory .right {
  margin-top: 90px;
  width: 45%;
}
#factory h2 {
  margin-bottom: 50px;
  color: #fff;
}
#factory h2 span.en {
  background-image: linear-gradient(290.36deg, #FAD3D6 32.45%, #FFFFFF 91.49%);
}
#factory .link a:hover {
  text-decoration: none;
}
#factory .link a::after {
  content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/common/allow-right-red.svg) no-repeat center/contain;
	transition: all .3s;
}
#factory .link a:hover::after {
	transform: translateX(2px);
}
#factory .link a.camera {
  padding: 10px 50px 10px 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
}
#factory .link a.camera::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
}
#factory .link a.camera span {
  transition: all .3s;
}
#factory .link a.camera:hover span {
  opacity: 0.8;
}
#factory .link ul {
  margin-top: 30px;
  list-style: none;
  border-top: solid 1px rgba(255, 255, 255, 0.4);
}
#factory .link li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
#factory .link li a {
  padding: 26px 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: all .3s;
}
#factory .link li a:hover {
  color: var(--Primary);
}

@media screen and (max-width: 1020px) {

}
@media screen and (max-width: 767px) {
  #factory {
    padding: 0 0 100px;
  }
  #factory .flex {
    display: block;
  }
  #factory .factory-img {
    margin-top: -10%;
    margin-left: -20px;
    width: 80%;
  }
  #factory .right {
    margin-top: 40px;
    width: 100%;
  }
  #factory h2 {
    margin-bottom: 40px;
  }
  #factory .link a.camera {
    font-size: 1.5rem;
    min-height: 62px;
    padding: 10px 40px 10px 10px;
  }
  #factory .link li a {
    padding: 22px 16px;
    font-size: 1.5rem;
  }
}

/*---------------------------------
    #recruit
--------------------------------*/
#recruit {
  padding: 140px 0;
}
#recruit .recruit-box {
  padding: 65px 75px;
  background: url(../img/home/recruit.jpg) no-repeat right/cover;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
#recruit .recruit-box::before {
  content: '';
  display: block;
  width: 67.2%;
  height: 100%;
  background: linear-gradient(275.84deg, rgba(31, 75, 168, 0) 2.11%, rgba(31, 75, 168, 0.8) 58.12%, rgba(214, 0, 15, 0.9) 124.09%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
#recruit .recruit-box > div {
  position: relative;
  z-index: 1;
}
#recruit h2 {
  margin-bottom: 42px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.5;
}
#recruit .text p {
  margin-bottom: 40px;
  color: #fff;
  line-height: 1.8;
}

@media screen and (max-width: 1020px) {
  #recruit .recruit-box {
    padding: 40px 40px 60%;
    background: url(../img/home/recruit_sp.png) no-repeat center bottom/100% auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  #recruit .recruit-box::before {
    background: linear-gradient(0deg, rgba(31, 75, 168, 0.02) -0.09%, rgba(31, 75, 168, 0.1) 49.74%, #1F4BA8 68.19%, #D6000F 127.86%);
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }
}
@media screen and (max-width: 767px) {
  #recruit {
    padding: 100px 0;
  }
  #recruit .recruit-box {
    padding: 28px 28px 65%;
  }
  #recruit .recruit-box::before {
    background:linear-gradient(0deg, rgba(31, 75, 168, 0.02) -35.08%, rgba(31, 75, 168, 0.3) 24.92%, #1F4BA8 50.15%, #D6000F 127.86%);
  }
  #recruit h2 {
    margin-bottom: 20px;
    font-size: 2.0rem;
    line-height: 1.7;
  }
  #recruit .text p {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }
  #recruit .text p br {
    display: none;
  }
}

/*---------------------------------
    #page-btm
--------------------------------*/
#page-btm {
  padding: 0 20px;
  background-color: var(--Primary);
}
#page-btm h2 {
  padding-right: 140px;
  color: #fff;
  font-size: 4.2rem;
  border-right: solid 1px #fff;
  align-items: start;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
#page-btm h2 span.en {
  padding-bottom: 0;
  background-image: linear-gradient(290.36deg, #FAD3D6 32.45%, #FFFFFF 91.49%);
}
#page-btm section {
  padding: 80px 0;
}
#page-btm #contact {
  margin: 0 auto;
  max-width: 1240px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 40px;
}
#page-btm #contact .btm {
  width: 100%;
  display: flex;
  justify-content: center;
}
#page-btm #contact .tel p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2.0rem;
  font-weight: 600;
}
#page-btm #contact .tel img {
  width: 40px;
}
#page-btm #contact .tel a {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.2;
  transition: all .3s;
}
#page-btm #contact .tel a:hover {
  text-decoration: none;
  opacity: 0.8;
}
#page-btm #contact .form a {
  padding: 16px 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: solid 1px #fff;
  border-radius: 10vw;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
  transition: all .3s;
}
#page-btm #contact .form a:hover {
  opacity: 0.8;
  text-decoration: none;
}
#page-btm #contact .form a img {
  width: 40px;
  opacity: 1 !important;
}
@media screen and (max-width: 1020px) {
  #page-btm section {
    padding: 40px 0;
  }
  #page-btm h2 {
    font-size: 4.2vw;
  }
  #page-btm h2 span.en {
    font-size: 2.4vw;
  }
  #page-btm #contact {
    gap: 4.0vw;
  }
  #page-btm #contact .tel p {
    font-size: 2vw;
  }
  #page-btm #contact .tel a {
    font-size: 4.8vw;
  }
  #page-btm #contact .form a {
    padding: 16px 32px;
    font-size: 2vw;
  }
}
@media screen and (max-width: 767px) {
  #page-btm {
    display: block;
  }
  #page-btm section {
    padding: 28px 0;
    width: 100%;
  }
  #page-btm h2 {
    padding: 0 20px 20px;
    border-right: none;
    border-bottom: solid 1px #fff;
    font-size: 2.4rem;
    align-items: center;
  }
  #page-btm h2 span.en {
    font-size: 1.4rem;
  }
  #page-btm #contact {
    flex-direction: column;
    gap: 24px;
  }
  #page-btm #contact .btm {
    text-align: center;
    gap: 12px;
  }
  #page-btm #contact .tel img {
    width: 24px;
  }
  #page-btm #contact .tel p {
    font-size: 1.5rem;
    gap: 4px;
  }
  #page-btm #contact .tel a {
    font-size: 2.4rem;
  }
  #page-btm #contact .form a {
    padding: 10px 20px;
    font-size: 1.5rem;
    gap: 10px;
  }
  #page-btm #contact .form a img {
    width: 24px;
  }
}

/*---------------------------------
    #mv
--------------------------------*/

@media screen and (max-width: 767px) {
}