@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__inner {
  width: 96%;
  height: clamp(4rem, 6vw, 6rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner__menu {
  width: 3rem;
  height: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.header__inner__menu span {
  display: block;
  height: 2px;
  background-color: #666;
  border-radius: 2px;
  transition: 0.3s;
  transform-origin: center;
}
.header__inner__menu.open span:nth-child(1) {
  transform: translateY(9px) rotate(20deg);
}
.header__inner__menu.open span:nth-child(2) {
  opacity: 0;
}
.header__inner__menu.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-20deg);
}
@media screen and (max-width: 1500px) {
  .header__inner__menu {
    width: 2.5rem;
    height: 1rem;
    margin-bottom: 0.625rem;
  }
  .header__inner__menu.open span:nth-child(1) {
    transform: translateY(7px) rotate(20deg);
  }
  .header__inner__menu.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-20deg);
  }
}
@media screen and (max-width: 1200px) {
  .header__inner__menu {
    width: 2rem;
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 960px) {
  .header__inner {
    height: 6rem;
  }
  .header__inner__menu {
    width: 2.5rem;
    height: 1rem;
    margin-bottom: 0.75rem;
  }
  .header__inner__menu.open span:nth-child(1) {
    transform: translateY(7px) rotate(20deg);
  }
  .header__inner__menu.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-20deg);
  }
}
@media screen and (max-width: 520px) {
  .header__inner {
    height: 4.5rem;
  }
  .header__inner__logo img {
    height: 2.25rem;
  }
  .header__inner__menu {
    width: 2rem;
    margin-bottom: 0.75rem;
  }
}
.fullscreen_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 999;
}
.fullscreen_menu.active {
  opacity: 1;
  pointer-events: auto;
}
.fullscreen_menu__img {
  width: 50%;
  height: 100vh;
  background: url("/product/hyr/assets/img/common/fullscreenmenu_back.webp") no-repeat center/cover;
}
.fullscreen_menu__content {
  position: relative;
  box-sizing: border-box;
  padding: 0 4%;
  width: 50%;
  height: 100vh;
  background: url("/product/hyr/assets/img/common/fullscreenmenu_content_back.webp") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen_menu__content__nav {
  width: 100%;
  margin-bottom: clamp(4rem, 6vw, 6rem);
}
.fullscreen_menu__content__nav > ul {
  margin-bottom: clamp(1.25rem, 3vw, 3rem);
}
@media screen and (max-width: 1300px) {
  .fullscreen_menu__content__nav > ul {
    margin-bottom: 1.5rem;
  }
}
.fullscreen_menu__content__nav > ul li {
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
}
.fullscreen_menu__content__nav > ul > li {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  font-size: clamp(1rem, 1.75vw, 1.75rem);
}
@media screen and (max-width: 1300px) {
  .fullscreen_menu__content__nav > ul > li {
    margin-bottom: 1.5rem;
  }
}
.fullscreen_menu__content__nav > ul > li:nth-child(5) {
  margin-bottom: clamp(1.5rem, 2.25vw, 2.25rem);
}
.fullscreen_menu__content__nav > ul > ul li {
  position: relative;
  box-sizing: border-box;
  margin-bottom: clamp(1rem, 1.75vw, 1.75rem);
  font-size: clamp(0.75rem, 1.25vw, 1.25rem);
  padding-left: 1.5rem;
}
.fullscreen_menu__content__nav > ul > ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1px;
  background-color: #333;
}
.fullscreen_menu__content__nav__cv {
  display: flex;
  justify-content: space-between;
}
.fullscreen_menu__content__nav__cv a {
  display: block;
  width: 48%;
  padding: clamp(0.75rem, 1.25vw, 1.25rem) 0;
  background-color: #fff;
  border: 1px solid #666;
  text-align: center;
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  transition: 0.3s;
}
.fullscreen_menu__content__nav__cv a:hover {
  background-color: #666;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .fullscreen_menu__content__nav__cv a {
    width: 47%;
  }
}
.fullscreen_menu__content__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(3rem, 5vw, 5rem);
  background-color: #454545;
  box-sizing: border-box;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fullscreen_menu__content__bottom__sns {
  display: flex;
  column-gap: clamp(0.5rem, 1vw, 1rem);
}
.fullscreen_menu__content__bottom__sns img {
  height: clamp(1rem, 1.5vw, 1.5rem);
}
.fullscreen_menu__content__bottom__link {
  display: flex;
  column-gap: clamp(1rem, 2vw, 2rem);
}
.fullscreen_menu__content__bottom__link a {
  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;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .fullscreen_menu__img {
    display: none;
  }
  .fullscreen_menu__content {
    padding: 0 8%;
    width: 100%;
  }
  .fullscreen_menu__content__nav {
    margin-bottom: 4rem;
  }
  .fullscreen_menu__content__nav > ul {
    margin-bottom: 4rem;
  }
  .fullscreen_menu__content__nav > ul > li {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
  }
  .fullscreen_menu__content__nav > ul > li:nth-child(5) {
    margin-bottom: 2rem;
  }
  .fullscreen_menu__content__nav > ul > ul li {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
  .fullscreen_menu__content__nav__cv a {
    padding: 1.25rem 0;
    font-size: 1rem;
  }
  .fullscreen_menu__content__bottom {
    height: 4rem;
  }
  .fullscreen_menu__content__bottom__sns {
    column-gap: 1rem;
  }
  .fullscreen_menu__content__bottom__sns img {
    height: 1.25rem;
  }
  .fullscreen_menu__content__bottom__link {
    column-gap: 1.5rem;
  }
  .fullscreen_menu__content__bottom__link a {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 520px) {
  .fullscreen_menu__content__nav {
    margin-bottom: 1.5rem;
  }
  .fullscreen_menu__content__nav > ul {
    margin-bottom: 2rem;
  }
  .fullscreen_menu__content__nav > ul > li {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  .fullscreen_menu__content__nav > ul > li:nth-child(5) {
    margin-bottom: 1.25rem;
  }
  .fullscreen_menu__content__nav > ul > ul li {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }
  .fullscreen_menu__content__nav__cv {
    flex-direction: column;
    row-gap: 1rem;
  }
  .fullscreen_menu__content__nav__cv a {
    width: 100%;
    padding: 1rem 0;
    font-size: 0.875rem;
  }
  .fullscreen_menu__content__bottom {
    height: 4rem;
    flex-direction: column;
    justify-content: center;
    row-gap: 0.75rem;
  }
  .fullscreen_menu__content__bottom__sns {
    column-gap: 1rem;
  }
  .fullscreen_menu__content__bottom__sns img {
    height: 1rem;
  }
  .fullscreen_menu__content__bottom__link {
    column-gap: 1.5rem;
  }
  .fullscreen_menu__content__bottom__link a {
    font-size: 0.625rem;
  }
}
.common_contents {
  position: relative;
  padding: 10vw 0;
  background-color: #fff;
}
.common_contents__heading {
  position: relative;
  max-width: 1600px;
  width: 92%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #999;
  padding-bottom: clamp(1.5rem, 2.25vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 2.25vw, 2.25rem);
}
.common_contents__heading__title {
  padding: 1rem 0;
  border-right: 2px solid #999;
  padding-right: clamp(1.5rem, 2.25vw, 2.25rem);
  margin-right: clamp(1.5rem, 2.25vw, 2.25rem);
}
.common_contents__heading__title p:nth-child(1) {
  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;
}
.common_contents__heading__title p:nth-child(2) {
  font-size: clamp(1.625rem, 2.25vw, 2.25rem);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
}
.common_contents__heading__text {
  font-size: clamp(0.875rem, 1vw, 1.25rem);
  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;
}

@media screen and (max-width: 520px) {
  .common_contents {
    padding: 4rem 0;
  }
  .common_contents__heading {
    flex-direction: column;
    align-items: start;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .common_contents__heading__title {
    padding: 0;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
  .common_contents__heading__title p:nth-child(1) {
    margin-bottom: 0.625rem;
  }
  .common_contents__heading__title p:nth-child(2) {
    font-size: 1.5rem;
  }
  .common_contents__heading__text {
    display: none;
  }
}
.useful_content_inner__img {
  width: 100%;
}
.useful_content_inner__img img {
  width: 100%;
}
.useful_content_inner__text p {
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.useful_content_inner__text p:nth-child(1) {
  margin: clamp(0.875rem, 1.125vw, 1.125rem) 0 clamp(0.75rem, 0.8vw, 1rem);
  font-size: clamp(1.125rem, 1.375vw, 1.375rem);
}
.useful_content_inner__text p:nth-child(2) {
  font-size: clamp(0.75rem, 0.875vw, 0.875rem);
  line-height: 2;
  text-align: justify;
}

@media screen and (max-width: 520px) {
  .useful_content_inner__text p {
    font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .useful_content_inner__text p:nth-child(1) {
    margin: 0.875rem 0 0.75rem;
    font-size: 1.125rem;
  }
  .useful_content_inner__text p:nth-child(2) {
    font-size: 0.75rem;
  }
}
.conversion {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.conversion__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conversion__inner:nth-child(1) {
  background: url("/product/hyr/assets/img/common/conversion_showroom_back.webp") no-repeat center/cover;
}
.conversion__inner:nth-child(2) {
  background: url("/product/hyr/assets/img/common/conversion_catalog_back.webp") no-repeat center/cover;
}
.conversion__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.conversion__inner__text {
  position: relative;
  max-width: 760px;
  width: 92%;
  padding: clamp(7.5rem, 10vw, 11.25rem) 0;
}
.conversion__inner__text p {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.conversion__inner__text p:nth-child(1) {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
}
.conversion__inner__text p:nth-child(2) {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  font-size: clamp(1.5rem, 1.75vw, 2rem);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
}
.conversion__inner__text p:nth-child(3) {
  margin-bottom: clamp(2.25rem, 4vw, 4rem);
  font-size: clamp(0.75rem, 0.75vw, 0.875rem);
  line-height: 2.5;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.conversion__inner__text__btn {
  position: relative;
  display: flex;
  column-gap: 2rem;
  width: fit-content;
}
.conversion__inner__text__btn a {
  position: relative;
  display: block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(2.25rem, 3vw, 3rem) clamp(0.75rem, 1vw, 1rem) 0;
  border-bottom: 1px solid #fff;
  font-size: clamp(0.75rem, 0.875vw, 1rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
}
.conversion__inner__text__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 30%;
  aspect-ratio: 23/13;
  background: url(/product/hyr/assets/img/common/conversion_arrow.svg) no-repeat center;
}

@media screen and (max-width: 960px) {
  .conversion {
    background-color: #fff;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.125rem;
  }
  .conversion__inner__text p:nth-child(2) {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 520px) {
  .conversion__inner__text {
    padding: 5rem 0;
  }
  .conversion__inner__text p:nth-child(2) {
    font-size: 1.375rem;
  }
  .conversion__inner__text p:nth-child(3) br {
    display: none;
  }
  .conversion__inner__text__btn {
    width: 100%;
    column-gap: 1rem;
  }
  .conversion__inner__text__btn a {
    font-size: 0.75rem;
  }
}
.magazine_content_inner__img {
  width: 100%;
}
.magazine_content_inner__img img {
  width: 100%;
}
.magazine_content_inner__text p {
  margin-top: clamp(0.375rem, 0.5vw, 0.5rem);
  font-size: clamp(0.75rem, 1vw, 1rem);
  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;
}

@media screen and (max-width: 520px) {
  .magazine_content_inner__text p {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }
}
.footer {
  position: relative;
  display: flex;
}
.footer__left {
  position: relative;
  width: 40%;
  height: auto;
  aspect-ratio: 840/680;
  background: url("/product/hyr/assets/img/common/footer_back.webp") no-repeat center/cover;
}
.footer__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.footer__left__inner {
  position: relative;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(3rem, 5vw, 5rem);
}
.footer__left__inner__title {
  position: relative;
}
.footer__left__inner__title p {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.footer__left__inner__title p:nth-child(1) {
  margin-bottom: clamp(1rem, 2vw, 2rem);
  font-size: clamp(1rem, 1.375vw, 1.375rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
}
.footer__left__inner__title p:nth-child(2) {
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  line-height: 1.75;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
}
.footer__left__inner__copyright {
  position: absolute;
  bottom: clamp(1rem, 2vw, 2rem);
  left: 0;
  font-size: clamp(0.625rem, 0.875vw, 0.875rem);
  color: #fff;
}
.footer__right {
  position: relative;
  width: 60%;
  background-color: #454545;
}
.footer__right__inner {
  box-sizing: border-box;
  position: relative;
  width: 93.3333333333%;
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(3rem, 5vw, 5rem);
}
.footer__right__inner__tasp {
  display: none;
}
.footer__right__inner__nav {
  display: flex;
  column-gap: clamp(2rem, 3vw, 3rem);
}
.footer__right__inner__nav__list p {
  margin-bottom: clamp(0.875rem, 1.25vw, 1.25rem);
  padding-bottom: clamp(0.625rem, 0.75vw, 0.75rem);
  border-bottom: 1px solid #999;
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #999;
}
.footer__right__inner__nav__list ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.footer__right__inner__nav__list ul a {
  display: block;
  font-size: clamp(0.625rem, 0.875vw, 0.875em);
  color: #ddd;
  font-family: "Noto Sans JP", "Source Han Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.footer__right__inner__nav__list:nth-child(2) ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(0.75rem, 1.5vw, 1.5rem);
}
.footer__right__inner__bottom {
  width: 100%;
  position: absolute;
  bottom: clamp(1rem, 2vw, 2rem);
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__right__inner__bottom__sns {
  display: flex;
  column-gap: clamp(0.5rem, 1.25vw, 10rem);
}
.footer__right__inner__bottom__sns a img {
  height: clamp(1rem, 1.5vw, 1.5rem);
}
.footer__right__inner__bottom__top {
  display: block;
  position: relative;
  padding-right: clamp(1rem, 1.625vw, 10rem);
  font-size: clamp(0.75rem, 0.875vw, 10rem);
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  color: #fff;
}
.footer__right__inner__bottom__top::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(0.75rem, 0.875vw, 0.875rem);
  height: auto;
  aspect-ratio: 1/1;
  background: url(/product/hyr/assets/img/common/footer_top_arrow.svg) no-repeat center;
}

@media screen and (max-width: 960px) {
  .footer {
    flex-direction: column;
  }
  .footer__left {
    display: none;
  }
  .footer__right {
    width: 100%;
  }
  .footer__right__inner {
    width: 92%;
    padding-bottom: 7rem;
  }
  .footer__right__inner__tasp {
    display: block;
  }
  .footer__right__inner__tasp p {
    color: #fff;
  }
  .footer__right__inner__tasp p:nth-child(1) {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  }
  .footer__right__inner__tasp p:nth-child(2) {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.75;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝体", "MS PMincho", "MS 明朝", serif;
  }
  .footer__right__inner__nav {
    column-gap: inherit;
    justify-content: space-between;
  }
  .footer__right__inner__nav__list p {
    margin-bottom: 1.125rem;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
  }
  .footer__right__inner__nav__list ul {
    row-gap: 1rem;
  }
  .footer__right__inner__nav__list ul a {
    font-size: 0.75rem;
  }
  .footer__right__inner__nav__list:nth-child(2) ul {
    column-gap: 1.5rem;
  }
  .footer__right__inner__bottom__sns {
    column-gap: 1.25rem;
  }
  .footer__right__inner__bottom__sns a img {
    height: 1.25rem;
  }
  .footer__right__inner__bottom__top {
    padding-right: 1.5rem;
    font-size: 0.875em;
  }
  .footer__right__inner__bottom__top::after {
    width: 0.875rem;
  }
}
@media screen and (max-width: 520px) {
  .footer__right__inner {
    padding-top: 4rem;
  }
  .footer__right__inner__tasp p:nth-child(1) {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .footer__right__inner__tasp p:nth-child(2) {
    margin-bottom: 2rem;
  }
  .footer__right__inner__nav {
    flex-direction: column;
  }
  .footer__right__inner__nav__list p {
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .footer__right__inner__nav__list p::after {
    content: "＋";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .footer__right__inner__nav__list ul a {
    font-size: 0.875rem;
  }
  .footer__right__inner__nav__list:nth-child(2) ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__right__inner__nav__list:nth-child(1) p {
    border-top: 1px solid #999;
  }
  .footer__right__inner__nav__list ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, border 0.5s ease;
  }
  .footer__right__inner__nav__list.active p {
    border-bottom: none;
  }
  .footer__right__inner__nav__list.active p::after {
    content: "－";
  }
  .footer__right__inner__nav__list.active ul {
    max-height: 500px;
    padding: 0 0 2rem;
    border-bottom: 1px solid #999;
  }
  .footer__right__inner__bottom__sns {
    column-gap: 1rem;
  }
  .footer__right__inner__bottom__sns a img {
    height: 1.125rem;
  }
  .footer__right__inner__bottom__top {
    padding-right: 1.75rem;
    font-size: 0.875em;
  }
  .footer__right__inner__bottom__top::after {
    width: 0.875rem;
  }
}
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, a, span {
  color: #333;
}

h1, h3 {
  font-family: "trajan-pro-3", "Times New Roman", Times, "Georgia", serif;
  font-weight: 600;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 520px) {
  .pc-only {
    display: none;
  }
}
.index100 {
  z-index: 100;
}

.common_swiper {
  max-width: calc(50% + 800px);
  width: 96%;
  margin: 0 0 0 auto;
}
.common_swiper .swiper-wrapper {
  padding-bottom: 3.5vw;
}
.common_swiper__nav {
  position: relative;
  max-width: 1600px;
  width: calc(100vw - 8%);
  height: 3.5vw;
}
.common_swiper__nav .swiper-pagination-progressbar {
  top: 50%;
  bottom: inherit;
  transform: translateY(-50%);
  background: #ddd;
  height: 4px;
  width: calc(100% - 9vw);
}
.common_swiper__nav .swiper-pagination-progressbar-fill {
  background: #888;
}
.common_swiper__nav .swiper-button-prev, .common_swiper__nav .swiper-button-next {
  margin: 0;
  top: 0;
  bottom: inherit;
  width: 3.5vw;
  height: 3.5vw;
  background-color: #454545;
}
.common_swiper__nav .swiper-button-prev::before, .common_swiper__nav .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 1.2vw;
  height: auto;
  aspect-ratio: 26/15;
  background: url(/product/hyr/assets/img/top/swiper_button_arrow.svg) no-repeat center;
}
.common_swiper__nav .swiper-button-prev::after, .common_swiper__nav .swiper-button-next::after {
  display: none;
}
.common_swiper__nav .swiper-button-prev {
  left: inherit;
  right: 4.5vw;
  transform: rotate(180deg);
}
.common_swiper__nav .swiper-button-next {
  right: 0;
}

@media screen and (max-width: 960px) {
  .common_swiper {
    width: 92%;
    margin: 0 auto;
  }
  .common_swiper .swiper-wrapper {
    padding-bottom: 1.5rem;
  }
  .common_swiper__nav {
    width: 100%;
    height: 3rem;
  }
  .common_swiper__nav .swiper-pagination-progressbar {
    width: calc(100% - 8rem);
  }
  .common_swiper__nav .swiper-button-prev, .common_swiper__nav .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }
  .common_swiper__nav .swiper-button-prev::before, .common_swiper__nav .swiper-button-next::before {
    width: 1rem;
  }
  .common_swiper__nav .swiper-button-prev {
    right: 4rem;
  }
}
@media screen and (max-width: 520px) {
  .common_swiper {
    margin: 0 auto 2rem;
  }
  .common_swiper .swiper-wrapper {
    padding-bottom: 1.25rem;
  }
  .common_swiper__nav {
    height: 2.5rem;
  }
  .common_swiper__nav .swiper-pagination-progressbar {
    width: calc(100% - 7rem);
    height: 3px;
  }
  .common_swiper__nav .swiper-button-prev, .common_swiper__nav .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
  .common_swiper__nav .swiper-button-prev {
    right: 3.5rem;
  }
}
.common_btn {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: clamp(20rem, 25vw, 28rem);
  margin: clamp(3rem, 4vw, 4rem) auto 0;
  padding: clamp(1.25rem, 1.5vw, 1.5rem) 0;
  background-color: #fff;
  border: 2px solid #999;
  font-size: clamp(0.875rem, 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;
}
.common_btn:hover {
  border: #666 2px solid;
  background-color: #666;
  color: #fff;
}

@media screen and (max-width: 520px) {
  .common_btn {
    border: 1px solid #999;
  }
}
@media screen and (max-width: 520px) {
  .common_btn {
    box-sizing: border-box;
    width: 92%;
    margin-top: 2rem;
    font-size: 0.75rem;
  }
}