@charset "UTF-8";
.hero {
  position: relative;
  overflow: hidden;
  --overlay-opacity: 0.2;
}
.hero__bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-in-out;
}
.hero__bg__pc {
  display: block;
}
@media screen and (max-width: 520px) {
  .hero__bg__pc {
    display: none;
  }
}
.hero__bg__sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .hero__bg__sp {
    display: block;
  }
}
.hero__bg .swiper-slide-active img {
  transform: scale(1.05);
}
.hero__bg .swiper-slide {
  opacity: 0;
}
.hero__bg .swiper-slide:first-child {
  opacity: 1;
}
.hero__bg .swiper-pagination {
  top: 50%;
  bottom: inherit;
  left: auto;
  right: 2%;
  transform: translateY(-50%);
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 0.875rem;
}
.hero__bg .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  opacity: 0.5;
  border-radius: inherit;
}
.hero__bg .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media screen and (max-width: 1300px) {
  .hero__bg .swiper-pagination {
    row-gap: 0.75rem;
  }
  .hero__bg .swiper-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 520px) {
  .hero__bg .swiper-pagination {
    top: auto;
    bottom: 4%;
    right: 4%;
    transform: none;
    row-gap: 0.75rem;
  }
  .hero__bg .swiper-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.hero__overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 42, 78, var(--overlay-opacity));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 5;
  transition: background 0.2s linear;
}
.hero__logo {
  z-index: 1001;
  position: absolute;
  top: 1.5%;
  left: 2%;
}
.hero__logo img {
  height: clamp(2rem, 2.5vw, 2.5rem);
}
.hero__inner {
  position: relative;
  height: 100vh;
  z-index: 10;
  transition: opacity 1s ease;
}
.hero__inner.is-hidden {
  opacity: 0;
}
.hero__inner__content {
  position: absolute;
  width: 92%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__inner__content__title span, .hero__inner__content__text span {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.hero__inner__content__title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.5;
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
}
.hero__inner__content__title span {
  opacity: 0;
  display: inline-block;
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.hero__inner__content__title span.show {
  opacity: 1;
}
.hero__inner__content__text {
  position: relative;
  width: fit-content;
  margin-top: clamp(1.25rem, 2vw, 2rem);
  padding-top: clamp(1.25rem, 2vw, 2rem);
  font-size: clamp(1.5rem, 2.25vw, 2.25rem);
  line-height: 1.75;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
}
.hero__inner__content__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s ease;
}
.hero__inner__content__text.show-border::before {
  width: 100%;
}
.hero__inner__content__text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero__inner__content__text span.show {
  opacity: 1;
  transform: translateY(0);
}
.hero__concept {
  position: relative;
  margin: 10rem auto 50vh;
  width: 92%;
  z-index: 10;
}
.hero__concept__title {
  margin-bottom: clamp(2.25rem, 3.5vw, 3.5rem);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  transition: opacity 1s ease;
}
.hero__concept__text {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.hero__concept__text p {
  font-size: clamp(0.875rem, 1.125vw, 1.125rem);
  line-height: 2.2;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 960px) {
  .hero__logo {
    top: 1.25%;
  }
  .hero__inner__content__title {
    font-size: 2.5rem;
  }
  .hero__inner__content__text {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    font-size: 1.75rem;
  }
  .hero__concept__title {
    margin-bottom: 4rem;
    font-size: 2.75rem;
  }
  .hero__concept__text {
    row-gap: 3rem;
  }
  .hero__concept__text p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 520px) {
  .hero__logo {
    top: 1.25%;
    left: 4%;
  }
  .hero__logo img {
    height: 1.75rem;
  }
  .hero__inner__content {
    top: 40%;
    transform: translate(-50%, -40%);
  }
  .hero__inner__content__title {
    font-size: 2rem;
    line-height: 1.7;
  }
  .hero__inner__content__text {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    font-size: 1.375rem;
    line-height: 2;
  }
  .hero__concept__title {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
  .hero__concept__text {
    row-gap: 1.75rem;
  }
  .hero__concept__text p {
    font-size: 0.875rem;
  }
}
.feature_title {
  position: relative;
}
.feature_title.feature_title01 {
  background: url("/product/hyr/assets/img/top/feature_title_back01.webp") no-repeat center/cover;
}
.feature_title.feature_title01 .feature_title__inner {
  padding: 20rem 0 clamp(6rem, 9vw, 10rem);
}
.feature_title.feature_title02 {
  background: url("/product/hyr/assets/img/top/feature_title_back02.webp") no-repeat center/cover;
}
.feature_title.feature_title02 .feature_title__inner {
  padding: clamp(6rem, 9vw, 10rem) 0;
}
.feature_title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.feature_title__inner {
  position: relative;
  max-width: 1600px;
  width: 92%;
  margin: 0 auto;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}
.feature_title__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature_title__inner__heading {
  display: flex;
  align-items: center;
}
.feature_title__inner__heading__num {
  padding: clamp(1rem, 2vw, 2rem);
  border-right: 2px solid #fff;
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  text-align: center;
}
.feature_title__inner__heading__num p {
  color: #fff;
}
.feature_title__inner__heading__num p:nth-child(1) {
  margin-bottom: clamp(0.75rem, 1.25vw, 1.25rem);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}
.feature_title__inner__heading__num p:nth-child(2) {
  font-size: clamp(3.5rem, 4.5vw, 4.5rem);
}
.feature_title__inner__heading__text {
  margin-left: clamp(1rem, 2vw, 2rem);
}
.feature_title__inner__heading__text p {
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
}
.feature_title__inner__heading__text p:nth-child(1) {
  margin-bottom: clamp(1.25rem, 1.5vw, 1.5rem);
  font-size: clamp(1.25rem, 1.75vw, 1.625rem);
}
.feature_title__inner__heading__text p:nth-child(2) {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 2;
  text-align: justify;
}
.feature_title__inner__list {
  width: 100%;
  background-color: #fff;
  margin-top: clamp(2.25rem, 3vw, 3rem);
  padding: clamp(1rem, 1.5vw, 1.5rem) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature_title__inner__list li:nth-child(2) {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.feature_title__inner__list li a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: clamp(0.75rem, 1vw, 1rem) 0;
}
.feature_title__inner__list li a p {
  text-align: center;
}
.feature_title__inner__list li a p:nth-child(1) {
  margin-bottom: clamp(0.875rem, 1vw, 1rem);
  font-size: clamp(0.75rem, 0.75vw, 0.875rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #aaa;
}
.feature_title__inner__list li a p:nth-child(2) {
  font-size: clamp(1.25rem, 1.5vw, 1.6rem);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
  font-weight: 500;
}
.feature_title__inner__list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  width: clamp(1rem, 1.5vw, 1.5rem);
  aspect-ratio: 23/13;
  background: url(/product/hyr/assets/img/top/feature_title_list_arrow.svg) no-repeat center;
}

@media screen and (max-width: 960px) {
  .feature_title.feature_title01 .feature_title__inner {
    padding: 12rem 0 6rem;
  }
  .feature_title__inner__heading__num p:nth-child(1) {
    font-size: 0.875rem;
  }
  .feature_title__inner__heading__num p:nth-child(2) {
    font-size: 3rem;
  }
  .feature_title__inner__heading__text p:nth-child(1) {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
  .feature_title__inner__heading__text p:nth-child(2) {
    font-size: 0.75rem;
  }
  .feature_title__inner__list {
    margin-top: 2rem;
  }
  .feature_title__inner__list li a p:nth-child(1) {
    margin-bottom: 0.75rem;
    font-size: 0.625rem;
  }
  .feature_title__inner__list li a p:nth-child(2) {
    font-size: 1rem;
  }
  .feature_title__inner__list li a::after {
    right: 4%;
    width: 0.75rem;
  }
}
@media screen and (max-width: 520px) {
  .feature_title.feature_title01 .feature_title__inner {
    padding: 10rem 0 5rem;
  }
  .feature_title.feature_title02 .feature_title__inner {
    padding: 6rem 0 5rem;
  }
  .feature_title__inner__heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature_title__inner__heading__num {
    margin-bottom: 1.5rem;
    padding: 0 1rem 0 0;
    border-right: none;
  }
  .feature_title__inner__heading__num p {
    text-align: left;
  }
  .feature_title__inner__heading__num p:nth-child(1) {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  .feature_title__inner__heading__num p:nth-child(2) {
    font-size: 2.5rem;
  }
  .feature_title__inner__heading__text {
    margin-left: 0;
  }
  .feature_title__inner__heading__text p:nth-child(1) {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  .feature_title__inner__list {
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .feature_title__inner__list li:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .feature_title__inner__list li a {
    padding: 1.125rem 0;
  }
  .feature_title__inner__list li a p:nth-child(1) {
    margin-bottom: 0.5rem;
  }
  .feature_title__inner__list li a p:nth-child(2) {
    font-size: 1rem;
  }
  .feature_title__inner__list li a::after {
    right: 8%;
    width: 0.875rem;
  }
}
.feature_content01 {
  position: relative;
  background-color: #fff;
  width: 100%;
}
.feature_content01__item {
  width: 100%;
  padding-top: clamp(6rem, 8vw, 8rem);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.feature_content01__item:nth-child(2) {
  flex-direction: row-reverse;
}
.feature_content01__item:nth-child(3) {
  padding-bottom: clamp(6rem, 8vw, 8rem);
  margin-bottom: 0;
}
.feature_content01__item__text {
  box-sizing: border-box;
  width: 42%;
  padding: 0 clamp(1rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature_content01__item__text p:nth-child(1) {
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-size: clamp(2rem, 2.75vw, 2.75rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  color: #333;
}
.feature_content01__item__text p:nth-child(2) {
  font-size: clamp(0.875rem, 1.125vw, 1.125rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #aaa;
}
.feature_content01__item__text p:nth-child(3) {
  position: relative;
  margin-top: clamp(1.625rem, 2.5vw, 2.5rem);
  padding-top: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(2rem, 2.5vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: 2.2;
  font-weight: 400;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
}
.feature_content01__item__text p:nth-child(3)::before, .feature_content01__item__text p:nth-child(3)::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
}
.feature_content01__item__text p:nth-child(3)::before {
  width: 100%;
  background-color: #ccc;
}
.feature_content01__item__text p:nth-child(3)::after {
  width: 10vw;
  background-color: #888;
}
@media screen and (max-width: 1300px) {
  .feature_content01__item__text p:nth-child(3)::before {
    height: 2px;
  }
  .feature_content01__item__text p:nth-child(3)::after {
    height: 2px;
  }
}
.feature_content01__item__text a {
  display: block;
  box-sizing: border-box;
  width: clamp(1rem, 100%, 25rem);
  padding: clamp(1.125rem, 1.5vw, 1.5rem) 0;
  background-color: #fff;
  border: #999 2px solid;
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-weight: 500;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #333;
  transition: 0.3s;
}
.feature_content01__item__text a:hover {
  border: #666 2px solid;
  background-color: #666;
  color: #fff;
}
.feature_content01__item__img {
  width: 58%;
}
.feature_content01__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .feature_content01__item {
    padding-top: 5rem;
  }
  .feature_content01__item:nth-child(3) {
    padding-bottom: 5rem;
  }
  .feature_content01__item__text {
    width: 45%;
    padding: 0 1.5rem;
  }
  .feature_content01__item__text p:nth-child(1) {
    margin-bottom: 0.5rem;
    font-size: 1.625rem;
  }
  .feature_content01__item__text p:nth-child(2) {
    font-size: 0.75rem;
  }
  .feature_content01__item__text p:nth-child(3) {
    margin-top: 1.375rem;
    padding-top: 1.125rem;
    margin-bottom: 1.5rem;
    font-size: 0.6875rem;
  }
  .feature_content01__item__text a {
    width: 12.5rem;
    padding: 0.875rem 0;
    border: #999 1px solid;
    font-size: 0.6875rem;
  }
  .feature_content01__item__img {
    width: 55%;
  }
}
@media screen and (max-width: 520px) {
  .feature_content01__item {
    flex-direction: column-reverse;
    row-gap: 1.5rem;
  }
  .feature_content01__item:nth-child(2) {
    flex-direction: column-reverse;
  }
  .feature_content01__item__text {
    width: 92%;
    padding: 0;
  }
  .feature_content01__item__text p:nth-child(1) {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
  }
  .feature_content01__item__text p:nth-child(2) {
    font-size: 0.75rem;
  }
  .feature_content01__item__text p:nth-child(3) {
    font-size: 0.75rem;
  }
  .feature_content01__item__text a {
    width: 100%;
    padding: 1.25rem 0;
    font-size: 0.75rem;
  }
  .feature_content01__item__img {
    width: 92%;
  }
}
.feature_content02 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  display: flex;
}
.feature_content02__img {
  position: sticky;
  box-sizing: border-box;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
  width: 62%;
  padding: 0 5%;
  display: flex;
  align-items: center;
}
.feature_content02__img > div {
  width: 100%;
}
.feature_content02__img > div p {
  margin-bottom: clamp(2rem, 3vw, 3rem);
  font-size: clamp(1.5rem, 2.25vw, 2.25rem);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
  font-weight: 500;
}
.feature_content02__img > div > div {
  text-align: center;
}
.feature_content02__img > div > div img {
  width: 100%;
  max-width: 55rem;
  margin: 0 auto;
  object-fit: cover;
}
.feature_content02__text {
  width: 38%;
  padding: clamp(1rem, 12vw, 12rem) 5% clamp(1rem, 8vw, 8rem);
  background-color: #eee;
}
.feature_content02__text ul li {
  margin-bottom: clamp(2.5rem, 3.5vw, 3.5rem);
}
.feature_content02__text__num {
  position: relative;
}
.feature_content02__text__num p {
  position: relative;
  width: fit-content;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  padding-right: clamp(0.5rem, 1vw, 1rem);
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  color: #aaa;
  background-color: #eee;
  z-index: 1;
}
.feature_content02__text__num::before, .feature_content02__text__num::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 2px;
}
.feature_content02__text__num::before {
  width: 100%;
  background-color: #ccc;
}
.feature_content02__text__num::after {
  width: clamp(1rem, 10vw, 10rem);
  background-color: #888;
}
@media screen and (max-width: 520px) {
  .feature_content02__text__num::after {
    width: 4rem;
  }
}
.feature_content02__text__desc p:nth-child(1) {
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-size: clamp(1rem, 1.375vw, 1.375rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.feature_content02__text__desc p:nth-child(2) {
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: 2.2;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.feature_content02__text a {
  display: inline-block;
  width: 100%;
  padding: clamp(1rem, 1.5vw, 1.5rem) 0;
  background-color: #454545;
  font-size: clamp(0.75rem, 1.125vw, 1.125rem);
  font-weight: 500;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.feature_content02__text a:hover {
  background-color: #aaa;
  color: #333;
}

@media screen and (max-width: 960px) {
  .feature_content02 {
    min-height: auto;
    flex-direction: column;
  }
  .feature_content02__img {
    position: relative;
    height: auto;
    width: 92%;
    margin: 0 auto;
    padding: 5rem 0 3rem;
  }
  .feature_content02__img > div p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .feature_content02__img > div > div img {
    width: 35rem;
  }
  .feature_content02__text {
    width: 100%;
    padding: 3rem 0 5rem;
  }
  .feature_content02__text ul {
    width: 92%;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
  }
  .feature_content02__text ul li {
    margin-bottom: 0;
  }
  .feature_content02__text__num p {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
  }
  .feature_content02__text__desc p:nth-child(1) {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
  .feature_content02__text__desc p:nth-child(2) {
    font-size: 0.75rem;
    line-height: 2;
  }
  .feature_content02__text a {
    display: block;
    width: 20rem;
    margin: 0 auto;
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 520px) {
  .feature_content02__img {
    padding: 3rem 0 2rem;
  }
  .feature_content02__img > div p {
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
  }
  .feature_content02__img > div > div img {
    width: 100%;
  }
  .feature_content02__text {
    padding: 2rem 0 5rem;
  }
  .feature_content02__text ul {
    margin: 0 auto 2rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.625rem;
  }
  .feature_content02__text__num p {
    margin-bottom: 0.875rem;
  }
  .feature_content02__text__desc p:nth-child(1) {
    margin-bottom: 0.75rem;
  }
  .feature_content02__text__desc p:nth-child(2) {
    line-height: 1.75;
  }
  .feature_content02__text a {
    width: 92%;
  }
}
.gallery {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: url("/product/hyr/assets/img/top/gallery_back.webp") no-repeat center/cover;
  z-index: 100;
}
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  mix-blend-mode: multiply;
}
.gallery__inner {
  position: relative;
  max-width: 1600px;
  width: 92%;
  margin: 0 auto;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}
.gallery__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery__inner__subtitle {
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  color: #fff;
}
.gallery__inner__title {
  margin-bottom: clamp(2rem, 3vw, 3rem);
  font-size: clamp(1.75rem, 2.25vw, 2.25rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  color: #fff;
}
.gallery__inner__text {
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: 2.2;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .gallery {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 520px) {
  .gallery {
    background: url("/product/hyr/assets/img/top/gallery_back.webp") no-repeat right center/cover;
  }
  .gallery::before {
    background: rgba(0, 0, 0, 0.6);
  }
}
.gallery_list {
  position: relative;
  width: 100%;
  padding: 4vw 0 10vw;
  background-color: #fff;
}
.gallery_list__inner__img {
  width: 100%;
}
.gallery_list__inner__img img {
  width: 100%;
}
.gallery_list__inner__text {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 1vw);
  padding: 0.5vw 0 1vw 1vw;
  margin: 0 0 0 auto;
}
.gallery_list__inner__text p {
  margin-bottom: 0.3vw;
  font-size: clamp(0.875rem, 1.0625vw, 1.0625rem);
  line-height: 2;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
}
.gallery_list__inner__text span {
  display: block;
  width: fit-content;
  background-color: #888;
  padding: 0.25rem clamp(0.5rem, 0.75vw, 0.75rem) 0.375rem;
  font-size: clamp(0.625rem, 0.875vw, 0.875rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #fff;
}
.gallery_list__inner__text::before, .gallery_list__inner__text::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
}
.gallery_list__inner__text::before {
  top: calc(-3vw - 1px);
  height: 3vw;
  background-color: #fff;
}
.gallery_list__inner__text::after {
  top: -1px;
  height: 100%;
  background-color: #666;
}

@media screen and (max-width: 960px) {
  .gallery_list__inner__text {
    width: 100%;
    padding: 0.5rem 0 0;
    margin: 0;
  }
  .gallery_list__inner__text p {
    margin-bottom: 0.5rem;
  }
  .gallery_list__inner__text span {
    padding: 0.25rem 0.5rem;
  }
  .gallery_list__inner__text::before {
    display: none;
  }
  .gallery_list__inner__text::after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .gallery_list {
    padding: 1.5rem 0 4rem;
  }
}
.product {
  position: relative;
  width: 100%;
  padding: 10vw 0;
  background: linear-gradient(to right, #444, #222);
}
.product h3 {
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.product__inner {
  max-width: calc(50% + 630px);
  width: 96%;
  margin: 0 0 0 auto;
}
.product__inner ul {
  display: grid;
  row-gap: clamp(3rem, 5vw, 5rem);
}
.product__inner ul li {
  position: relative;
  width: 100%;
  transition: 0.3s;
}
.product__inner ul li:nth-child(1) {
  background: url("/product/hyr/assets/img/top/product_back01-pc.webp") no-repeat center/cover;
}
.product__inner ul li:nth-child(2) {
  background: url("/product/hyr/assets/img/top/product_back02-pc.webp") no-repeat center/cover;
}
.product__inner ul li:nth-child(3) {
  background: url("/product/hyr/assets/img/top/product_back03-pc.webp") no-repeat center/cover;
}
.product__inner ul li:hover {
  opacity: 0.8;
}
.product__inner ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.product__inner ul li a {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1590/600;
  display: flex;
  align-items: center;
}
.product__inner ul li a p {
  margin-left: clamp(3.75rem, 5vw, 5rem);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.product__inner ul li a p:nth-child(1) {
  margin-bottom: 0.25rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.3;
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
}
.product__inner ul li a p:nth-child(2) {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  font-size: clamp(0.875rem, 1.125vw, 1.125rem);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
}
.product__inner ul li a p:nth-child(3) {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.75;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
}
.product__inner ul li a p:nth-child(4) {
  width: fit-content;
  background: rgba(75, 75, 75, 0.8);
  padding: clamp(0.625rem, 0.875vw, 0.875rem) clamp(1.5rem, 2.5vw, 2.5rem) clamp(0.75rem, 1vw, 1rem);
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-family: "Zen Old Mincho", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro", "Yu Mincho", "游明朝", serif;
  text-align: justify;
}

@media screen and (max-width: 960px) {
  .product {
    padding: 6rem 0;
  }
  .product h3 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
  .product__inner {
    width: 92%;
    margin: 0 auto 0;
  }
  .product__inner ul {
    row-gap: 3rem;
  }
  .product__inner ul li a {
    aspect-ratio: 1590/700;
  }
  .product__inner ul li a p {
    margin-left: 2rem;
  }
  .product__inner ul li a p:nth-child(1) {
    font-size: 1.375rem;
  }
  .product__inner ul li a p:nth-child(2) {
    font-size: 0.75rem;
  }
  .product__inner ul li a p:nth-child(3) {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 520px) {
  .product {
    padding: 4rem 0;
  }
  .product h3 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
  .product__inner ul {
    row-gap: 2.5rem;
  }
  .product__inner ul li:nth-child(1) {
    background: url("/product/hyr/assets/img/top/product_back01-sp.webp") no-repeat center/cover;
  }
  .product__inner ul li:nth-child(1) a {
    aspect-ratio: 960/900;
  }
  .product__inner ul li:nth-child(2) {
    background: url("/product/hyr/assets/img/top/product_back02-sp.webp") no-repeat center/cover;
  }
  .product__inner ul li:nth-child(2) a {
    aspect-ratio: 1/1;
  }
  .product__inner ul li:nth-child(3) {
    background: url("/product/hyr/assets/img/top/product_back03-sp.webp") no-repeat center/cover;
  }
  .product__inner ul li:nth-child(3) a {
    aspect-ratio: 1/1;
  }
  .product__inner ul li a {
    position: relative;
  }
  .product__inner ul li a p {
    margin-left: 0;
    position: absolute;
  }
  .product__inner ul li a p:nth-child(1) {
    margin-bottom: 0;
    bottom: 24%;
    left: 4%;
    font-size: 1.5rem;
  }
  .product__inner ul li a p:nth-child(2) {
    margin-bottom: 0;
    bottom: 20%;
    left: 4%;
    font-size: 0.75rem;
  }
  .product__inner ul li a p:nth-child(3) {
    margin-bottom: 0;
    bottom: 5%;
    left: 4%;
    font-size: 0.625rem;
  }
  .product__inner ul li a p:nth-child(4) {
    bottom: 5%;
    right: 4%;
    padding: 0.375rem 1.25rem 0.75rem;
    font-size: 0.875rem;
  }
}