@charset "UTF-8";
/* 本田精密工業株式会社 製品案内スタイル */



/* 製品案内 題名・説明文 --------------------*/
/* 背景 */
.product_top {
  background: url(../images/triangle.svg) top left/40% no-repeat,
              url(../images/product_bg_metal.jpg) center/cover;
  width: 100%;
  padding: 80px 5.33vw 1px;
  /* padding: 80px 5.33vw; */
}
/* 題名 */
.product_title {
  text-align: center;
  font-size: 35px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
/* 英字 */
.product_english {
  color: var(--blue);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 15px 0 50px;
}
/* 説明文 */
.product_body {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 28px;
  max-width: 790px;
  margin: 0 auto;
}


/* 製品案内 一覧 --------------------*/

.product_list_all {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1420px;
  width: 100%;
  margin: 50px auto 70px;
}
/* 製品一覧 文字位置 */
.product_list_all li {
  position: relative;
}
/* 製品一覧 画像3列 */
.product_list_all img {
  width: 340px;
}
/* 製品一覧 画像4列 */
.product_list_all.row_4 img {
  width: 250px;
}

/* 製品一覧 文字 */
.product_list_all p {
  position: absolute;
  bottom: 0.9em;
  left: 50%;
  translate: -50%;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
/* 製品一覧 題名 */
.product_title_small {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  font-size: 25px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
/* 一番上のアキ */
.product_title_small:first-of-type {
  margin-top: 50px;
}
/* 一覧と見出しのアキ */
ul.product_list_all:has(+ p.product_title_small) {
  margin-bottom: 50px !important;
}
/* 見出しと一覧のアキ */
p.product_title_small + ul.product_list_all {
  margin-top: 20px;
}

@media (max-width: 1600px){
  /* 写真3列 */
  .product_list_all,
  .product_title_small {
    max-width: 1060px;
  }
}
@media (max-width: 1120px){
  /* 写真2列 */
  .product_list_all,
  .product_title_small {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .product_top {
    padding: 40px 5.33vw 1px;
    /* padding: 40px 5.33vw; */
  }
  .product_title {
    font-size: 28px;
    letter-spacing: 0.1em;
  }
  .product_english {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin: 12px 0 30px;
  }
  .product_body {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 25px;
  }
  .product_list_all,
  .product_title_small {
    justify-content: center;
    margin: 25px auto 30px;
    padding: 0 5.33vw;
  }
}

/* 製品案内 リンク --------------------*/

.submenu.opened {
  position: static;
  background-color: transparent;
  height: auto;
  visibility: visible;
  overflow: initial;
  margin: 70px 0 45px;
  padding: 0 5.33vw;
}
/* 現在のページ リンクしない */
.submenu.opened a.current_p {
  pointer-events: none;
  /* font-weight: 700; */
}
/* 現在のページ 枠線つける */
.submenu.opened a.current_p img {
  border: 2px solid var(--orange);
}
/* 現在のページ 矢印消す */
.submenu.opened a.current_p::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .submenu.opened {
    display: flex;
    flex-wrap: wrap;
    margin: 55px 0;
  }
  .submenu.opened .hover_blue_text {
    display: block;
  }
  .submenu.opened li a {
    color: var(--black);
    padding: 0;
  }
}