.index-title-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  ;
}

.index-title {
  font-size: var(--fz40);
  color: var(--cl-title);
  font-weight: bold;
  line-height: 1;
}

.index-title__icon {
  padding-left: 50px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: var(--fz40);

}

.index-title__icon-info {

  background-image: url(../images/common/icon-info.svg);

}

.index-title__icon-about {
  background-image: url(../images/common/icon-info.svg);
}

.index-title__icon-product {
  background-image: url(../images/common/icon-product.svg);
  background-size: 25px;
}

.index-title__icon-works {
  background-image: url(../images/common/icon-works.svg);
}

.index-title__icon-career {
  padding-left: 50px;
  background-image: url(../images/common/icon-career.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: var(--fz40);
}

.index-title__icon-contact {
  background-image: url(../images/common/icon-contact.svg);
}

.index-mv {
  background-color: var(--cl-bg-secondary);
  background-image: url(../images/common/bg08_.png);
  background-size: cover;
  background-position: left top;
  display: flex;
  text-align: center;
}

.index-mv__content {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  margin-top: -40px;
  margin-bottom: 100px;
}

.index-mv__title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  text-align: left;
  font-size: clamp(var(--fz32), 6vw, var(--fz72));
  font-style: italic;
  color: var(--cl-text-accent);
  font-weight: bold;
  /*
  text-shadow
  X: 水平方向（右が +、左が -）
  Y: 垂直方向（下が +、上が -）
  ぼかし: 影のにじみ具合（0 にするとくっきり）
  カラー: 影の色 
  */
  text-shadow:
    -1px -1px 0 var(--cl-bg-accent02),
    1px -1px 0 var(--cl-bg-accent02),
    -1px 1px 0 var(--cl-bg-accent02),
    1px 1px 0 var(--cl-bg-accent02);
}

.index-mv__img {

  border-top-left-radius: 300px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 300px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  overflow: hidden;
  aspect-ratio: 1335/500;
  min-height: 400px;
  max-width: 100%;
  object-fit: cover;

}

.index-mv__img img {
  min-height: 400px;
}

.index-mv__sp-img {
  max-width: 100%;
  object-fit: cover;
  max-height: 400px;
}

.index-mv__char {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 14%;
  min-width: 100px;
}



.index-news__list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 21vw;
}

.index-news__item {
  width: 28vw;
}

.index-news__item:hover {
  opacity: 0.7;
}

.index-news__content {
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--cl-bg-secondary);
  border-radius: 50px;
  margin-top: -50px;
}

.index-news__btn {
  display: block !important;
}

.index-news__char {
  position: absolute;
  bottom: 0;
  left: 70px;
  width: 14vw;
  min-width: 50px;
  max-width: 200px;
}

.index-about {
  /* background-image : url(../images/common/bg-idea02.png); */
  /* background-color: white;
  background: linear-gradient(90deg,rgba(70, 176, 35, 1) 0%, rgba(70, 176, 35, 1) 50%, rgba(248, 182, 0, 1) 100%); */
  padding-top: 40px;
  padding-bottom: 40px;
  padding-top: 30px;
  padding-bottom: 30px;

}

.index-about__contents {
  display: flex;
  justify-content: space-between;
  gap: 20px;

}

.index-about__article {
  min-width: 400px;
  border-radius: 20px;
  padding: 20px;
}

.index-about__text {
  position: relative;

  border-radius: 20px;
}

.index-about__text p {
  white-space: nowrap;
  text-overflow: clip;
  z-index: 1;
  font-size: var(--fz24);
}



.index-about__img {
  width: 100%;
  position: relative;
  aspect-ratio: 3/2;
}

.index-about__img img {
  position: absolute;
  object-position: 30% 60%;
  border-top-left-radius: 300px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 300px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  width: calc(100% - 30px);
  height: calc(100% - 60px);
  margin: 30px 0;
}

.index-about__img img::after{
  position: absolute;
  width: calc(100% - 30px);
  height: 100%;
  border-top-left-radius: 300px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 300px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  top: 0;
  left: 30px;
  background: var(--cl-bg-linear-gradient);
  z-index: 1;
}

.index-about__btns {
  /* position: absolute; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.index-about__btns .btn {
  width: 250px;
}


.index-product {
  padding-top: 30px;
  padding-bottom: 30px;
}

.index-product__content {
  isolation: isolate
}

.index-product__card {
  position: relative;
  background-color: var(--cl-bg-primary);
  backdrop-filter: blur(25px);
}

.index-product:hover {
  opacity: 1;
}

/* .index-product__card:hover::before {
  opacity: 0.3;
} */

.index-product__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  /* クリックなどをブロックしない */
}

.index-product__decoration {
  max-width: 300px;
  width: 21vw
}

.index-product .card {
  color: var(--cl-text-accent);
  max-width: 100%;
  overflow: hidden;
  flex: 1;

}

.index-product__card img {
  aspect-ratio: 489/251;
}

.index-product__card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.index-product__decoration img {
  aspect-ratio: 570/165;
}

.index-product__content {
  padding: 40px 0;
}

.index-product__content .big-card01 {
  margin-bottom: 20px;
}

/* .index-works .inner {
  padding-bottom: 100px;
} */

.index-works {
  position: relative;
}

.index-works .index-title-content {
  margin-bottom: 40px;
}

.index-works__card-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.index-works__card {
  width: 100%;
}



.index-works__card-list .card {
  flex: 1;
}

.index-works__card .icon {
  margin-bottom: 10px;
}



.index-works__card-img img {
  aspect-ratio: 400/250;
}

.index-works__bg {
  position: relative;
  z-index: -1;
  margin-top: -100px;
}


/* index-career */
.index-career {
  background: linear-gradient(-177.6deg, var(--cl-bg-primary) 20.64%, var(--cl-text-accent) 95%);
  padding-top: 40px;
  padding-bottom: 40px;
}

.index-career .index-title {
  color: var(--cl-text-accent)
}

.index-career__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* コンテンツ幅とpaddingは適宜変更 */
  background-color: transparent;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;

}

.index-career__text {
  width: 50%;
  /* 全体幅に対するテキスト領域の割合 */
  display: flex;
  flex-direction: column;
  line-height: 1.8;
  letter-spacing: 0.1em;
  /* align-items: flex-end; */
}

.text__container {
  position: relative;
  font-size: var(--fz32);
  /* テキストのフォントサイズ */
  font-weight: bold;
  width: 100%;
  height: 50px;
  /* テキスト1行あたりの高さ指定 */
}

.text-dummy::before {
  position: absolute;

  top: 0;
  left: 0;
  z-index: 2;
  color: var(--cl-bg-accent02);
  /* 重ねた部分の文字色となる */
  white-space: nowrap;
  /* テキストの改行禁止 */
}

.text-dummy.dummy1::before {
  content: "私たちは再生可能エネルギーを通じて、";
  /* 重ねる対象のテキスト入力 */

}

.text-dummy.dummy2::before {
  content: "持続可能な未来の実現を目指しています。";
  /* 重ねる対象のテキスト入力 */
}

.text-dummy.dummy3::before {
  content: "ともに挑戦し、成長できる仲間を";
  /* 重ねる対象のテキスト入力 */
}

.text-dummy.dummy4::before {
  content: "お待ちしております。";
  /* 重ねる対象のテキスト入力 */
}

.text-main {
  position: relative;
  z-index: 3;
  display: block;
  overflow: hidden;
  /* この指定ではみ出した元テキストを非表示化 */
  width: 100%;
  height: 100%;
}

.text-main__inner {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cl-text-accent);
  /* 重ならない部分のテキスト色 */
  white-space: nowrap;
  /* テキストの改行禁止 */
}

.index-career__bg {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 50px;
  margin-right: auto;
  max-width: 700px;
}

.index-career__bg img {
  aspect-ratio: 10/6;
}

.index-career__mobile-text {
  display: none;
  color: var(--cl-text-accent);
  font-size: var(--fz32);
  /* テキストのフォントサイズ */
  font-weight: bold;
  width: 100%;
}




@media screen and (max-width: 1000px) {
  .index-mv__img {
  border-top-left-radius: 150px;
  /* 左上 */
  border-top-right-radius: 50px;
  /* 右上 */
  border-bottom-right-radius: 150px;
  /* 右下 */
  border-bottom-left-radius: 50px;
  /* 左下 */
  }
  .index-about__contents {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .index-about__btns {
    /* position: absolute; */
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
  }

  .index-about__btns .btn {
    width: auto;
  }

  .index-about__article {
    text-align: center;
    border-radius: 50px;
    min-width: auto;
    width: 100%;
  }

  .index-about__text {
    display: inline-block;
    text-align: left;
  }

  .index-about__text p {
    font-size: var(--fz24);
    white-space: wrap;
    text-overflow: clip;
  }


  .index-product .card {
    width: 80%;
  }

  .index-product__card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .index-career__content {
    flex-direction: column;
    align-items: center;
  }

  .index-career__article {
    position: static;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }


  .index-career__article h3 {
    font-size: 4vw;
    margin-top: 20px;
    width: 100%;
  }

  .index-career__article .btn-arrow {
    position: static;
    margin-top: 30px;
  }

  .index-career__img {
    width: 100%;
  }
}

@media(max-width: 768px) {
  .index-about__img {
    width: 100%;
    position: relative;
    min-height: 70vh;
    max-height: 70vh;

  }






  .index-works__card-list {
    flex-direction: column;
    align-items: center;
  }

  .index-career .btn-arrow {
    margin-top: 30px;
  }

  .index-career__wrapper {
    display: block;
  }

  .index-career__text,
  .index-career__bg {
    width: 100%;
    margin-top: 30px;
  }

  .text-dummy {
    display: none;
  }

  .text__container {
    height: auto;
    display: none;
  }

  .text-main__inner {
    position: static;
    white-space: wrap;
  }

  .index-career__mobile-text {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .mv__wrapper {
    padding-top: 20px;
  }
  .index-product .card {
    width: 100%;
    max-width: 400px;
  }

  .index-mv__title {
    left: 10px;
    bottom: 10px;
  }

  .index-mv__char {
    top: 50%;
	right: 0;
    bottom: auto;
  }

  .index-mv__img {
    margin-top: 10px;
  }

  .index-title {
    font-size: var(--fz32);
  }

  .index-title__icon {
    background-size: var(--fz32);
    padding-left: var(--fz40);
  }

  .index-title_icon-product {
    background-size: var(--fz20);
    padding-left: var(--fz40);
  }


  .index-news__list {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 100px;
  }

  .index-news__item {
    width: 100%;
  }

  .btn-sp {
    display: inline-block;
  }

  .index-news__content .btn-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }

  .index-news__char {
    left: 20px;
    width: 20vw;
    min-width: 50px;
  }

  .index-about__article {
    margin-bottom: 20px;
  }

  .index-product .card {
    max-width: 400px;
    width: 100%;
  }



}

@media screen and (max-width: 400px) {
  .index-about__text p {
    display: inline;
  }
}

@media screen and (max-width: 350px) {
  .index-mv__title {
    font-size: var(--fz24);
  }
}