@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #8CBD3D;
  --color-blue: #0081C2;
  --color-bgGray: #F2F2F2;

  --futura: "futura-pt", sans-serif;
}

/*================================================
 *  mainVisual
 ================================================*/
#mainVisual {
  position: relative;
}

#mainVisual .mv__recruit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36%;
  background: rgb(140, 189, 61);
  background: linear-gradient(90deg, rgba(140, 189, 61, 1) 20%, rgba(0, 162, 170, 1) 100%);
  padding: 0.8vw;
  color: var(--color-white);
  text-align: center;
}

#mainVisual .mv__recruit>a>img {
  width: 24%;
  border-radius: 0.8vw;
  border: 1px solid var(--color-white);
}

#mainVisual .mv__recruit h2 {
  color: var(--color-white);
  font-size: 1.153em;
  border: 1px solid var(--color-white);
  padding: 0 1em;
  display: grid;
  place-content: center;
  border-radius: 0.8vw;
}

#mainVisual .mv__recruit h2 span {
  font-size: 2.26em;
  margin-bottom: 0.5em;
  color: var(--color-white);
}

/* close */
#mainVisual .mv__recruit>div {
  position: absolute;
  width: 10%;
  top: 0;
  right: 0;
  margin-top: -10%;
  cursor: pointer;
  opacity: 1;
  transition: .4s;
}

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

/*================================================
* topNews
================================================*/
#topNews {
  padding: 7vw 0 6.25vw;
}

#topNews .inner {
  width: 94%;
}

#topNews .topNews__inner {
  width: 64%;
}

#topNews ul li {
  margin-bottom: 1em;
}

#topNews ul li a {
  display: block;
  line-height: 1.75;
  padding: 1.5em 11% 1.5em 1.5em;
  border: 1px solid #DEDBDB;
  border-radius: 1em;
  position: relative;
}

#topNews ul li a:hover {
  opacity: 1;
}

#topNews ul li a::before {
  position: absolute;
  content: "";
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/news_arrow.png);
  width: 2.3em;
  height: 0;
  padding-bottom: 2.3em;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  transition: .4s;
}

#topNews ul li a:hover::before {
  right: 0.5em;
}

#topNews ul li a span {
  display: block;
  color: var(--color-blue);
  margin-bottom: 1em;
}

@media screen and (max-width:767px) {
  #topNews {
    padding: 10vw 0;
  }

  #topNews .inner {
    width: 100%;
  }

  #topNews .topNews__inner {
    width: 100%;
    margin-top: 8%;
  }

  #topNews ul li a span {
    margin-bottom: 0.2em;
  }

  #topNews ul li a {
    padding: 1.5em 20% 1.5em 1.5em;
  }

  #topNews ul li a::before {
    width: 2em;
    padding-bottom: 2em;
    right: 1.5em;
  }
}

/*================================================
* topWho
================================================*/
#topWho {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8vw 0;
}

#topWho::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: url(../images/top_dot.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
}

#topWho .inner {
  width: 90.8%;
  margin-left: auto;
}

#topWho .topWho__txt {
  width: 47.7%;
  position: relative;
}

#topWho .topWho__txt::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/top_who_logo.png);
  width: 51.1%;
  height: 0;
  padding-bottom: 50%;
  top: 0;
  right: 0;
}

#topWho h2 span:first-of-type {
  line-height: 0.9;
}

.topWho__txt--inner {
  width: 88.46%;
  margin: 14.4% 0 0 auto;
}

#topWho .topWho__txt p {
  margin: 14.4% 0 7.6%;
  line-height: 2.23;
}

#topWho .topWho__img {
  width: 46.2%;
  position: relative;
}

#topWho .topWho__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 3em);
  border: 1px solid var(--color-white);
  top: 1em;
  left: 0;
}

#topWho .topWho__img img {
  width: 97%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}


@media screen and (max-width:767px) {
  #topWho {
    padding: 10vw 0;
  }

  #topWho::before {
    content: unset;
  }

  #topWho .inner {
    width: 82%;
    margin: 0 auto;
  }

  #topWho .topWho__txt {
    width: 100%;
  }

  #topWho .topWho__txt::before {
    width: 44.3vw;
    padding-bottom: 43.5vw;
  }

  .topWho__txt--inner {
    width: 100%;
    margin: 0;
  }

  #topWho .topWho__txt p {
    margin: 10% 0 7.6%;
  }

  #topWho .topWho__img {
    width: 100%;
    margin-top: 10%;
  }

  #topWho .topWho__img img {
    width: 100%;
  }

  #topWho .topWho__img::before {
    content: none;
  }
}


/*================================================
* btnSection
================================================*/
#btnSection ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#btnSection ul li a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 21.9vw;
  color: var(--color-white);
  position: relative;
}

#btnSection.btnSection01 ul li:first-child a {
  background: url(../images/btn_img01.jpg) no-repeat center/cover;
}

#btnSection.btnSection01 ul li:nth-child(2) a {
  background: url(../images/btn_img02.jpg) no-repeat center/cover;
}

#btnSection ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

#btnSection.btnSection01 ul li:first-child a::before {
  background: #4EA866;
}

#btnSection.btnSection01 ul li:nth-child(2) a::before {
  background: #0081C2;
}

#btnSection ul li a span {
  position: relative;
  font-size: 1.77em;
  padding-right: 2.86em;
}

#btnSection ul li a span::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/btn_arrow.png);
  width: 1.86em;
  height: 0;
  padding-bottom: 1.86em;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .4s;
}

#btnSection ul li a:hover {
  opacity: 1;
}

#btnSection ul li a:hover span::before {
  right: -0.5em;
}

/* btnSection02 */
#btnSection.btnSection02 ul li:first-child a {
  background: url(../images/btn_img03.jpg) no-repeat center/cover;
}

#btnSection.btnSection02 ul li:nth-child(2) a {
  background: url(../images/btn_img04.jpg) no-repeat center/cover;
}

#btnSection.btnSection02 ul li:first-child a::before {
  background: #0081C2;
}

#btnSection.btnSection02 ul li:nth-child(2) a::before {
  background: #4EA866;
}

@media screen and (max-width:767px) {
  #btnSection ul {
    grid-template-columns: 1fr;
  }

  #btnSection ul li a {
    height: 43.8vw;
  }

  #btnSection ul li a span {
    font-size: 1.533em;
  }

}

/*================================================
* tv
================================================*/
#tv {
  padding: 8vw 0;
}

#tv a {
  display: block;
  width: 87.7%;
  margin: 4.6% auto 0;
}

@media screen and (max-width:767px) {
  #tv {
    padding: 10vw 0;
  }

  #tv a {
    width: 100%;
    margin: 10% auto 0;
  }
}

/*================================================
* topWorks
================================================*/
#topWorks {
  padding: 8vw 0;
  background: var(--color-bgGray);
}

#topWorks::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: url(../images/top_dot.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
}

.topWorks__inner {
  width: 88%;
  margin: 6vw auto 4vw;
  position: relative;
}

.topWorks__inner .topWorks_swiper .swiper-slide {
  width: 23.33vw;
  margin: 0 0.4vw;
}

.topWorks__inner .topWorks_swiper .swiper-slide img {
  height: 17vw;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.topWorks__inner .topWorks_swiper .swiper-slide p {
  width: calc(100% - 2em);
  margin: 1em auto 0;
}

.topWorks__inner .topWorks_swiper .swiper-slide p span {
  display: block;
  color: var(--color-blue);
}


/* arrow */
.topWorks__inner .swiper-button-next-works,
.topWorks__inner .swiper-button-prev-works {
  width: 2.3em;
  height: 2.3em;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
}

.topWorks__inner .swiper-button-next-works {
  right: -5.25vw;
}

.topWorks__inner .swiper-button-prev-works {
  left: -5.25vw;
}

.topWorks__inner .swiper-button-next-works::after,
.topWorks__inner .swiper-button-prev-works::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.topWorks__inner .swiper-button-next-works::after {
  background-image: url(../images/next.png);
}

.topWorks__inner .swiper-button-prev-works::after {
  background-image: url(../images/prev.png);
}

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

  #topWorks::before {
    content: unset;
  }

  .topWorks__inner {
    width: 62.33vw;
    margin: 6vw auto 4vw;
    position: relative;
    min-width: 230px;
  }

  .topWorks__inner .topWorks_swiper .swiper-slide {
    width: 62.33vw;
    margin: 0;
    min-width: 230px;
  }

  .topWorks__inner .topWorks_swiper .swiper-slide img {
    height: 45.16vw;
  }

  .topWorks__inner .swiper-button-next-works,
  .topWorks__inner .swiper-button-prev-works {
    top: 40%;
    width: 2.6em;
    height: 2.6em;
  }

  .topWorks__inner .swiper-button-prev-works {
    left: -9.25vw;
  }

  .topWorks__inner .swiper-button-next-works {
    right: -9.25vw;
  }
}

/*================================================
* products
================================================*/
#topProducts {
  padding: 8vw 0;
}

.topProducts__inner {
  width: 88%;
  margin: 6% auto;
  position: relative;
}

.topProducts__inner .topProducts_swiper .swiper-slide {
  height: auto;
}

.topProducts__inner .topProducts_swiper .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  background: #EDEDED;
  height: 100%;
}

.topProducts__inner .topProducts_swiper .swiper-slide a ul {
  background: #EDEDED;
  width: 27vw;
  line-height: 1.7;
  padding: 3% 0.5% 3% 3%;
}

.topProducts__inner .topProducts_swiper .swiper-slide a ul li:first-child {
  color: var(--color-blue);
}

.topProducts__inner .topProducts_swiper .swiper-slide a img {
  width: 44vw;
  min-height: 17vw;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

/* arrow */
.topProducts__inner .swiper-button-next-products,
.topProducts__inner .swiper-button-prev-products {
  width: 2.3em;
  height: 2.3em;
  top: 60%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
}

.topProducts__inner .swiper-button-next-products {
  right: -5.25vw;
}

.topProducts__inner .swiper-button-prev-products {
  left: -5.25vw;
}

.topProducts__inner .swiper-button-next-products::after,
.topProducts__inner .swiper-button-prev-products::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.topProducts__inner .swiper-button-next-products::after {
  background-image: url(../images/next.png);
}

.topProducts__inner .swiper-button-prev-products::after {
  background-image: url(../images/prev.png);
}

@media screen and (max-width:767px) {
  #topProducts {
    padding: 10vw 0;
  }

  .topProducts__inner {
    width: 62.33vw;
    margin: 6% auto;
    position: relative;
    min-width: 240px;
  }

  .topProducts__inner .topProducts_swiper .swiper-slide a {
    background: var(--color-white);
    display: block;
  }

  .topProducts__inner .topProducts_swiper .swiper-slide a ul {
    background: var(--color-white);
    width: 100%;
    padding: 3%;
  }

  .topProducts__inner .topProducts_swiper .swiper-slide a img {
    width: 100%;
    min-height: auto;
    height: 45.16vw;
  }

  /* arrow */
  .topProducts__inner .swiper-button-next-products,
  .topProducts__inner .swiper-button-prev-products {
    width: 2.6em;
    height: 2.6em;
    top: 30%;
  }

  .topProducts__inner .swiper-button-next-products {
    right: -9.25vw;
  }

  .topProducts__inner .swiper-button-prev-products {
    left: -9.25vw;
  }
}

/*================================================
* topRecruit
================================================*/
#topRecruit {
  padding: 7vw 0;
}

#topRecruit::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-bgGray);
}

#topRecruit::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  background: url(../images/top_dot.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
}

#topRecruit a {
  position: relative;
  z-index: 1;
  background: rgb(140, 189, 61);
  background: linear-gradient(90deg, rgba(140, 189, 61, 1) 20%, rgba(0, 162, 170, 1) 100%);
  padding: 1.25vw 8.75vw 1.25vw 1.25vw;
}

#topRecruit a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/btn_arrow.png);
  width: 3.58em;
  height: 0;
  padding-bottom: 3.58em;
  top: 50%;
  right: 3em;
  transform: translateY(-50%);
}

#topRecruit a>div {
  width: 39.6%;
  border: 1px solid var(--color-white);
  border-radius: 1.125vw;
  display: flex;
  align-items: center;
  padding-left: 3.5%;
}

#topRecruit a h2.hd {
  padding: 1.11em 0 0 0;

}

#topRecruit a h2.hd span:nth-of-type(2) {
  -webkit-writing-mode: inherit;
  -ms-writing-mode: inherit;
  writing-mode: inherit;
  top: 0;
  padding-bottom: 0;
  padding-right: calc(6.25vw + 1em);
}

#topRecruit a h2.hd span:nth-of-type(2)::before {
  position: absolute;
  content: "";
  width: 6.25vw;
  height: 1px;
  bottom: auto;
  top: 50%;
  left: auto;
  right: 0;
  transform: translateY(-50%);
}

#topRecruit a img {
  width: 17.5%;
  border: 1px solid var(--color-white);
  border-radius: 1.125vw;
  margin-left: 2%;
}

@media screen and (max-width:767px) {
  #topRecruit {
    display: none;
  }
}

#mainVisual {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面いっぱいに広げる */
  overflow: hidden;
}

#mainVisual video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

@media screen and (max-width:767px) {
	#mainVisual{
	  height: 26vh; 
	}
}

#tv {
  text-align: center;
}

#tv video {
  max-width: 800px;
  height: auto;
  display: block;
	width: 87.7%;
    margin: 4.6% auto 0;
}