@charset "UTF-8";

/*================================================
 *  mainVisual
 ================================================*/
#mainVisual {
  height: 47.5vw;
  /* max-height: 912px; */
  /* min-height: 500px; */
  padding: 0;
}


#mainVisual::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 47.5vw;
  /* max-height: 912px; */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-p);
}


.mainVisual_inner {
  /* max-width: 1920px; */
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.mainVisual_inner::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/mv_mask.png);
  width: 67.39vw;
  height: 47.5vw;
  /* max-width: 1294px;
  max-height: 912px; */
  top: 0;
  left: 0;
  z-index: 2;
}


.mv_swiper .swiper-slide {
  height: 47.5vw;
  /* max-height: 912px; */
  /* min-height: 500px; */
  width: 100%;
}

.mv_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.mv_catch {
  max-width: 75.4rem;
  width: 40vw;
  position: absolute;
  bottom: 13%;
  left: 7%;
  z-index: 3;
}

@media screen and (max-width:767px) {
  #mainVisual {
    /* height: 152.6vw; */
    height: 109vw;
    overflow: hidden;
    max-height: unset;
  }

  #mainVisual::after {
    max-height: unset;
  }

  .mainVisual_inner::before {
    background-image: url(../images/mv_mask_sp.png);
    width: 100vw;
    /* height: 152.6vw; */
    height: 110vw;
    /* left: -18vw; */
    max-height: unset;
  }

  .mv_swiper .swiper-slide {
    /* height: 152.6vw; */
    height: 110vw;
    max-height: unset;
  }


  .mv_catch {
    width: 80vw;
    bottom: 4vw;
    left: 4vw;
  }

}

/*================================================
 * service
================================================*/
#service {
  overflow-x: hidden;
  padding-bottom: 10rem;
}

.service_list {
  display: grid;
  /* gap: 6rem 6%; */
  gap: 4rem 3%;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}

.service_list li {
  background: var(--color-bg-p);
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
}

.service_list li a {
  padding: 5rem 10%;
}

.service_list li::before {
  position: absolute;
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--color-primary-b);
  border-radius: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: var(--al04s);
}

.service_list li.hover::before {
  transform: translate(-50%, -50%) rotate(2deg);
}

/* .service_list li:first-child */
.service_list li:first-child {
  grid-column: span 2;
}

.service_list li:first-child a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5rem 5%;
}

.service_list li:first-child a img:not(.s_icon img) {
  border-radius: 1rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  object-fit: cover;
  width: 43%;
}

.service_list li:first-child a .service_txt {
  width: calc(100% - (43% + 5rem));
}


.service_list li a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_bg.png);
  width: 4rem;
  height: 4rem;
  bottom: 4rem;
  right: 4rem;
  transition: var(--al04s);
}

.service_list li a:hover::before {
  background-image: url(/_wp/wp-content/uploads/2025/06/arrow.png);
}

.service_list li:first-child a::before {
  right: auto;
  left: calc(100% - (43% + 10rem));
}

/* icon */
.service_list li .s_icon {
  width: 3.5rem;
  height: 3.5rem;
  display: block;
}

/* .service_list li .icon_service01 {
  background-image: url(../images/icon_service01.png);
}

.service_list li .icon_service02 {
  background-image: url(../images/icon_service02.png);
}

.service_list li .icon_service03 {
  background-image: url(../images/icon_service03.png);
}

.service_list li .icon_service04 {
  background-image: url(../images/icon_service04.png);
}

.service_list li .icon_service05 {
  background-image: url(../images/icon_service05.png);
} */

.service_list li h3 {
  font-size: var(--fs24);
  margin: 0.5rem 0 1.66em;
}

.service_list li p {
  margin-bottom: 2.5em;
  line-height: 2;
}

@media screen and (max-width:767px) {
  .service_list {
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .service_list li a,
  .service_list li:first-child a {
    padding: 3rem 5%;
  }

  /* .service_list li:first-child */
  .service_list li:first-child {
    grid-column: span 1;
    flex-wrap: wrap;
  }

  .service_list li:first-child a img:not(.s_icon img) {
    width: 100%;
  }

  .service_list li:first-child a .service_txt {
    width: 100%;
  }

  .service_list li a::before {
    bottom: 2rem;
    right: 5%;
  }

  .service_list li:first-child a {
    padding-bottom: 7rem;
  }

  .service_list li:first-child a::before {
    /* bottom: auto; */
    right: 5%;
    left: auto;
  }
}

/*================================================
 *  product
================================================*/
#product {
  background: var(--color-bg-p);
  border-radius: 4rem;
}

#product::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary-b);
  top: -2rem;
  left: 0;
  border-radius: 4rem;
  z-index: -1;
}

.product_list {
  display: grid;
  gap: 4rem 3%;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}

.product_list li {
  position: relative;
}

.product_list li::before {
  position: absolute;
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--color-primary-b);
  border-radius: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--al04s);
}

.product_list li.hover::before {
  transform: translate(-50%, -50%) rotate(2deg);
}

.product_list li a {
  background: var(--color-white);
  padding: 4rem 1.5rem 6rem;
  border-radius: 1rem;
  height: 100%;
  position: relative;
}

.product_list h3 {
  font-size: var(--fs20);
  color: var(--color-primary-p);
  position: relative;
  padding-right: 6rem;
}

.product_list li a::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/c-arrow_bg.png);
  width: 4rem;
  height: 4rem;
  bottom: 0;
  right: 5%;
  transform: translateY(-50%);
  transition: var(--al04s);
}

.product_list li a:hover::after {
  background-image: url(../images/c-arrow_b.png);
}




.product_list img {
  max-width: 30rem;
  display: block;
  margin: 2rem auto;
  border-radius: 0.5rem;
}

.product_list .c-label {
  margin-bottom: 1rem;
}

.product_list a p {
  min-height: 10rem;
}

@media screen and (max-width:767px) {
  #product {
    border-radius: 2rem 2rem 0 0;
  }

  #product::before {
    border-radius: 2rem 2rem 0 0;
  }

  .product_list {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
  }

  .product_list a p {
    min-height: unset;
  }
}




/*================================================
 * topCompany
================================================*/
#topCompany::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/company_bg.png);
  width: 4620px;
  height: 1620px;
  top: -16%;
  left: 35%;
  transform: translateX(-50%);
  z-index: -1;
}

#topCompany h3 {
  color: var(--color-primary-p);
  font-size: var(--fs24);
  margin: 2em 0 1.66em;
}



.topCompany_inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.company_img01 {
  width: 35%;
  display: block;
}

.company_txt {
  width: 55%;
  margin-top: -17%;
}

.company_txt p {
  font-size: var(--fs18);
  margin-bottom: 1.5rem;
}

.company_txt ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 6rem;
}

.company_txt ul a {
  color: var(--color-primary-p);
  font-size: var(--fs18);
  border: 1px solid;
  border-radius: 10000000000px;
  padding: 10px 20px 7px;
  line-height: 1;
  align-items: center;
  text-decoration: unset;
}

.company_txt ul a i {
  margin-left: 1em;
}

.company_txt ul a:hover {
  color: var(--color-primary-b);
}

.company_img02 {
  width: 36%;
  display: block;
  margin: 0 auto 3rem;
}

.company_img03 {
  width: 33%;
  margin-left: auto;
  margin-top: 6rem;
  display: block;
}




@media screen and (max-width:767px) {
  #topCompany::before {
    width: 3000px;
    height: 974px;
    top: 24%;
    left: 90%;
  }

  .topCompany_inner {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .company_img01 {
    width: 70%;
  }

  .company_txt {
    width: 100%;
    margin-top: -15%;
  }

  .company_txt ul {
    gap: 2rem 1rem;
    /* flex-direction: column; */
    align-items: start;
  }

  .company_txt ul li {
    /* min-width: calc(50% - 1rem); */
  }

  .company_txt ul a {
    position: relative;
    padding: 1.5rem 4rem 1.5rem 2rem;
  }

  .company_txt ul a i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }

  .company_img02 {
    margin-right: 4rem;
    margin-bottom: 2rem;
  }

  .company_img03 {
    width: 60%;
    margin-top: 2rem;
  }

}

/*================================================
 * group
================================================*/
#group .wrap {
  position: relative;
  padding-top: clamp(1rem, 6%, 12rem);
}

#group .group_img {
  position: absolute;
  width: 62.33%;
  top: 0;
  right: 0;
  z-index: -1;
}

#group h3 {
  color: var(--color-primary-p);
  font-size: var(--fs24);
  margin: 2em 0 1.66em;
}

#group p {
  margin-top: 1.5em;
  font-size: var(--fs18);
}

#group p:first-of-type {
  width: 52%;
}

#group p:nth-of-type(2) {
  width: 62%;
}

@media screen and (max-width:767px) {
  #group .wrap {
    padding-top: 0;
  }

  #group .group_img {
    position: static;
    width: 100%;
    margin-top: 2rem;
  }

  #group p:first-of-type {
    width: 100%;
  }

  #group p:nth-of-type(2) {
    width: 100%;
  }
}

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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

/*================================================
 * 
================================================*/


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