body {
  background-color: #fff;
  margin: 0;
}

h1, p {
  margin: 0;
}

.red_btn_normal {
  display: flex;
  height: 38px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  align-self: stretch;
  border-radius: 4px;
  cursor: pointer;
  background: #C50B2F;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.red_btn_normal span {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}
.red_btn_normal:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header:has(.has_mega_menu:hover) {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header:has(.has_mega_menu:hover) .nav_pc__menu > li > a {
  color: #111;
}
.header:has(.has_mega_menu:hover) .is-not-scrolled {
  opacity: 0;
}
.header:has(.has_mega_menu:hover) .is-scrolled {
  opacity: 1;
}

.nav_pc {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  padding-right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav_pc__right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 80px;
}
.nav_pc__logo a {
  display: flex;
  align-items: center;
  position: relative;
}
.nav_pc__logo a .is-not-scrolled {
  opacity: 1;
}
.nav_pc__logo a .is-scrolled {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.nav_pc__logo img {
  width: 278px;
  height: auto;
  transition: opacity 0.3s ease;
  display: block;
  color: #fff;
}
.nav_pc__menu {
  display: flex;
  align-items: center;
  gap: 80px;
  list-style: none;
}
.nav_pc__menu > li {
  position: relative;
}
.nav_pc__menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  text-decoration: none;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  transition: 0.35s ease;
  color: #fff;
}
.nav_pc__menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #d7002a;
  transition: 0.35s ease;
}
.nav_pc__menu > li:hover > a {
  color: #d7002a;
}
.nav_pc__inquiry_btn {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 80px;
  gap: 8px;
  background: #C50B2F;
  cursor: pointer;
  transition: 0.35s ease;
  text-decoration: none;
}
.nav_pc__inquiry_btn svg {
  width: 22px;
  height: auto;
}
.nav_pc__inquiry_btn svg path {
  transition: 0.35s ease;
}
.nav_pc__inquiry_btn span {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
}
.nav_pc__inquiry_btn:hover {
  background: #b60024;
}
.nav_pc__contact_btn {
  width: 200px;
  height: 80px;
  background: #002452;
  cursor: pointer;
  transition: 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  font-family: "Noto Sans JP";
  font-feature-settings: "palt" on;
}
.nav_pc__contact_btn svg {
  width: 22px;
  height: auto;
}
.nav_pc__contact_btn svg path {
  transition: 0.35s ease;
}
.nav_pc__contact_btn span {
  color: #fff;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.nav_pc__contact_btn svg path {
  stroke: #fff;
}
.nav_pc__contact_btn_group {
  display: flex;
  align-items: center;
}
.nav_pc__contact_btn:hover {
  background: #00132c;
}

.has_mega_menu:hover > a {
  color: #d7002a !important;
}
.has_mega_menu:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  width: -webkit-fill-available;
}
.has_mega_menu:hover .mega_menu > a {
  color: #d7002a;
}

.mega_menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s ease;
  z-index: 100;
}
.mega_menu ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
}
.mega_menu ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-family: "Noto Sans JP";
  transition: 0.3s ease;
}
.mega_menu ul li a:hover {
  color: #d7002a;
}

.mega_menu_products {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-left: 40px;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}
.mega_menu_products a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #666;
  text-decoration: none;
  transition: 0.35s ease;
}
.mega_menu_products a:hover {
  transform: translateY(-4px);
}
.mega_menu_products a img {
  width: 120px;
  height: 70px;
  object-fit: cover;
}
.mega_menu_products a span {
  color: rgba(17, 17, 17, 0.6);
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.28px;
}

.mega_menu_inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  width: -webkit-fill-available;
  justify-content: flex-end;
  padding: 32px;
  padding-right: 163px;
}
.mega_menu_inner > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mega_menu_inner > a span {
  color: rgba(17, 17, 17, 0.6);
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.28px;
}
.mega_menu_inner > a:hover span {
  color: #d7002a;
}
.nav_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.nav_sp__hamburger {
  width: 20px;
  height: 22px;
  left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-left: 20px;
  margin-right: 20px;
}
.nav_sp__hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.35s ease;
}
.nav_sp__hamburger.is-active span {
  border-radius: 1px;
  background: #002452;
}
.nav_sp__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav_sp__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav_sp__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav_sp__logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_sp__logo img {
  width: 200px;
  height: auto;
  display: block;
}
.nav_sp__logo .is-not-scrolled {
  opacity: 1;
}
.nav_sp__logo .is-scrolled {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.nav_sp__contact_btn_group {
  display: flex;
  align-items: center;
}
.nav_sp__mail {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C50B2F;
  text-decoration: none;
  transition: 0.35s ease;
  flex-direction: column;
  gap: 4px;
}
.nav_sp__mail span {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
.nav_sp__mail:hover {
  background: #b80025;
}
.nav_sp__mail svg {
  width: 21px;
  height: auto;
}
.nav_sp__contact_btn {
  width: 50px;
  height: 50px;
  background: #002452;
  cursor: pointer;
  transition: 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  flex-direction: column;
  gap: 4px;
}
.nav_sp__contact_btn svg {
  width: 20px;
  height: 20px;
}
.nav_sp__contact_btn svg path {
  transition: 0.35s ease;
}
.nav_sp__contact_btn:hover {
  background: #00132c;
}

.sp_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  z-index: 999;
}
.sp_menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sp_menu__inner {
  padding: 82px 0px 0px;
}
.sp_menu__company_btn_box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.sp_menu__company_btn_box .sp_menu__company_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 58px;
  background: #3D46A2;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 38.4px */
  letter-spacing: 1.92px;
}
.sp_menu__list {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.sp_menu__list > li {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.sp_menu__list > li > a {
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  color: #111;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}
.sp_menu__list > li ul {
  list-style: none;
  padding: 0;
  padding-left: 24px;
  padding-right: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sp_menu__list > li ul > li {
  border-bottom: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.sp_menu__list > li ul > li svg {
  width: 4px;
  height: 7px;
}
.sp_menu__list > li ul > li svg path {
  stroke: #111111;
  stroke-opacity: 0.6;
  stroke-width: 0.857143;
}
.sp_menu__list > li ul > li a {
  color: #111111;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.6);
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.28px;
  transition: 0.3s ease;
}
.sp_menu__list > li ul > li:hover a {
  color: #d7002a;
}
.sp_menu__list > li .sp_menu__products {
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.sp_menu__list > li .sp_menu__products a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #666;
  text-decoration: none;
  transition: 0.35s ease;
}
.sp_menu__list > li .sp_menu__products a:hover {
  transform: translateY(-4px);
}
.sp_menu__list > li .sp_menu__products a img {
  width: 98px;
  aspect-ratio: 98/57;
  height: auto;
  display: block;
  object-fit: cover;
}
.sp_menu__list > li:last-child {
  border-bottom: none;
}

body.menu-open {
  overflow: hidden;
}

.nav_pc__logo {
  position: relative;
}
.nav_pc__logo img {
  transition: opacity 0.3s ease;
}
.nav_pc__logo .is-scrolled {
  opacity: 0;
}
.nav_pc__logo .is-not-scrolled {
  opacity: 1;
}

.header.is-scrolled .nav_pc__menu > li > a,
.header:has(.has_mega_menu:hover) .nav_pc__menu > li > a {
  color: #111;
}
.header.is-scrolled .nav_pc__logo .is-scrolled,
.header:has(.has_mega_menu:hover) .nav_pc__logo .is-scrolled {
  opacity: 1;
}
.header.is-scrolled .nav_pc__logo .is-not-scrolled,
.header:has(.has_mega_menu:hover) .nav_pc__logo .is-not-scrolled {
  opacity: 0;
}

@media screen and (max-width: 1350px) {
  .nav_pc__menu {
    gap: 45px;
  }
}
@media screen and (max-width: 1250px) {
  .nav_pc__menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .nav_pc {
    display: none;
  }
  .nav_sp {
    display: flex;
    padding: 0;
  }
  .is-scrolled .nav_sp {
    background: rgb(255, 255, 255);
  }
  .is-scrolled .nav_sp .nav_sp__hamburger span {
    background: #111;
  }
  .is-scrolled .nav_sp__logo .is-scrolled {
    opacity: 1;
  }
  .is-scrolled .nav_sp__logo .is-not-scrolled {
    opacity: 0;
  }
  body.menu-open .nav_sp {
    background: #fff;
  }
  body.menu-open .nav_sp__logo .is-scrolled {
    opacity: 1;
  }
  body.menu-open .nav_sp__logo .is-not-scrolled {
    opacity: 0;
  }
}
@media screen and (max-width: 400px) {
  .nav_sp__hamburger {
    min-width: 20px;
  }
  .nav_sp__logo a {
    width: 97%;
  }
  .nav_sp__logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .sp_menu__list > li .sp_menu__products {
    padding-left: 0;
    padding-right: 0;
    width: 95%;
    align-self: center;
    justify-content: center;
  }
  .sp_menu__list > li .sp_menu__products a img {
    width: 100%;
    max-width: 98px;
  }
  .sp_menu__list > li .sp_menu__products a {
    gap: 8px;
  }
}
.page_mv {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.page_mv__bg {
  position: absolute;
  inset: 0;
}
.page_mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_mv__overlay {
  position: absolute;
  inset: 0;
}
.page_mv__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.page_mv__title_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.page_mv__en {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 1.12px;
}
.page_mv__jp {
  color: #FFF;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 45.6px */
  letter-spacing: 3.8px;
}
.page_mv__breadcrumb {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  gap: 32px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  height: 60px;
  padding-left: 40px;
  padding-right: 40px;
}
.page_mv__breadcrumb a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
}

.access_mv .page_mv__bg {
  background: #00163B;
}

.title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.title span {
  color: #111;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 1.12px;
}
.title h2 {
  color: #111;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 51.2px */
  letter-spacing: 2.56px;
  margin: 0;
}

.line_box {
  display: flex;
  flex-direction: column;
}
.line_box__line_top {
  width: 1.5px;
  height: 25px;
  background: #002452;
}
.line_box__line_bottom {
  width: 1.5px;
  height: 25px;
  background: #C50B2F;
}

@media screen and (max-width: 1024px) {
  .page_mv__title_box {
    gap: 12px;
  }
  .page_mv__jp {
    font-size: 30px;
    line-height: 120%; /* 36px */
    letter-spacing: 3px;
  }
  .page_mv__en {
    font-size: 12px;
    line-height: 100%; /* 12px */
    letter-spacing: 0.96px;
  }
  .page_mv__breadcrumb {
    height: 46px;
    padding-left: 16px;
    gap: 16px;
  }
  .page_mv__breadcrumb a {
    font-size: 11px;
    line-height: normal;
    letter-spacing: 1.1px;
  }
  .page_mv__breadcrumb a > svg {
    width: 11px;
    height: 11px;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 880px) {
  .title {
    gap: 12px;
  }
  .title span {
    font-size: 12px;
    line-height: 100%; /* 12px */
    letter-spacing: 0.96px;
  }
  .title h2 {
    font-size: 24px;
    line-height: 160%; /* 38.4px */
    letter-spacing: 1.92px;
  }
  .line_box__line_top {
    height: 20px;
  }
  .line_box__line_bottom {
    height: 20px;
  }
}
footer {
  background: #25262A;
  position: relative;
}
footer .footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
footer .footer_inner .footer_content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
footer .footer_inner .footer_content .footer_content__logo {
  max-width: 225px;
  align-self: baseline;
  display: flex;
}
footer .footer_inner .footer_content .footer_content__logo img {
  width: 100%;
  height: auto;
  display: block;
}
footer .footer_inner .footer_content .footer_content__logo img.is-pc {
  display: block;
}
footer .footer_inner .footer_content .footer_content__logo img.is-sp {
  display: none;
}
footer .footer_inner .footer_content .footer_content__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 712px;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__title {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__title_a {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  text-decoration: none;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__title_a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style-type: none;
  margin: 0;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__list li {
  display: flex;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__list li a {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  text-decoration: none;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item .footer_content__info__item__list li:hover {
  opacity: 0.5;
  transition: 0.3s;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__copyright {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
footer .footer_inner .footer_content .footer_content__info .footer_content__info__copyright span {
  color: rgba(255, 255, 255, 0.6);
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.88px;
}

.footer_content__info__item__contact {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #FFF;
  width: 150px;
  height: 34px;
  justify-content: center;
}
.footer_content__info__item__contact span {
  color: #FFF;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.88px;
}
.footer_content__info__item__contact:hover {
  opacity: 0.5;
  transition: 0.3s;
}

@media screen and (max-width: 880px) {
  footer .footer_inner .footer_content .footer_content__info {
    max-width: unset;
    gap: 64px;
  }
  footer .footer_inner .footer_content .footer_content__info .footer_content__info__copyright {
    justify-content: unset;
  }
  footer .footer_inner .footer_content {
    flex-direction: column;
    gap: 88px;
    align-items: center;
  }
  footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box .footer_content__info__item {
    gap: 24px;
  }
  footer .footer_inner .footer_content .footer_content__info .footer_content__info__item__box {
    flex-direction: column;
    gap: 48px;
  }
  footer .footer_inner {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 48px;
  }
  footer .footer_inner .footer_content .footer_content__logo {
    max-width: 120px;
  }
  footer .footer_inner .footer_content .footer_content__logo img.is-sp {
    display: block;
  }
  footer .footer_inner .footer_content .footer_content__logo img.is-pc {
    display: none;
  }
}
.lineup {
  padding: 120px 0;
  overflow: visible;
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}
.lineup__head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lineup__head .lineup__sub {
  display: block;
  color: #111;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 1.12px;
}
.lineup__head h2 {
  color: #111;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 57.6px */
  letter-spacing: 2.88px;
  margin: 0;
}
.lineup__head p {
  color: #111;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: 1.44px;
}
.lineup__head p br {
  display: none;
}
.lineup__line_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.lineup__line_box__inner {
  display: flex;
  flex-direction: column;
}
.lineup__line_box__line_top {
  width: 1.5px;
  height: 25px;
  background: #002452;
}
.lineup__line_box__line_bottom {
  width: 1.5px;
  height: 25px;
  background: #C50B2F;
}

.lineup-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: #002452;
  flex-direction: column;
  align-items: center;
  display: flex;
  padding: 16px;
  gap: 32px;
  min-height: 371px;
}
.lineup-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  max-width: 80px;
  object-fit: cover;
}
.lineup-card .bg_imgbox {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  aspect-ratio: 372/200;
}
.lineup-card .bg_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: unset;
}
.lineup-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.lineup-card__title img {
  width: 100%;
  display: block;
  aspect-ratio: 4/4;
  max-width: 80px;
  object-fit: cover;
}
.lineup-card__title h3 {
  color: #FFF;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}
.lineup-card__content {
  flex: 1;
  padding: 24px;
  background: rgba(255, 255, 255, 0.15);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.lineup-card__content p {
  color: #FFF;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  letter-spacing: 1.12px;
}
.lineup-card__content .card_arrow_tobo {
  width: 100%;
  display: block;
  aspect-ratio: 4/4;
  max-width: 15px;
  object-fit: cover;
}

.lineupSwiper .swiper-slide {
  display: flex;
  height: auto;
}

.lineup-card {
  flex: 1;
}

@media screen and (max-width: 880px) {
  .lineup {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .lineup__sub {
    font-size: 12px;
  }
  .lineup__head h2 {
    font-size: 24px;
    line-height: 160%; /* 38.4px */
    letter-spacing: 1.92px;
  }
  .lineup__head p {
    font-size: 14px;
    line-height: 160%; /* 22.4px */
    letter-spacing: 1.12px;
  }
  .lineup__head p br {
    display: block;
  }
  .lineup__line_box__line_top,
  .lineup__line_box__line_bottom {
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .lineup {
    width: 100%;
    overflow: visible;
  }
  .lineup__head {
    padding: 0 24px;
  }
  .lineupSwiper {
    padding: 0 24px;
  }
  .lineupSwiper .swiper-slide {
    transition: 0.35s ease;
  }
  .lineupSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
  .lineup-card__content {
    padding: 18px;
  }
  .lineup-card__content h3 {
    font-size: 24px;
  }
  .lineup-card__content p {
    font-size: 13px;
  }
}
html {
  scroll-behavior: smooth;
}

.shape-product {
  overflow: hidden;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}
.shape-product__head {
  text-align: center;
  margin-bottom: 32px;
}
.shape-product__head img {
  width: 80px;
  margin-bottom: 10px;
}
.shape-product__head h2 {
  color: #111;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 30px */
  letter-spacing: 12px;
  margin: 0;
}

.shape-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;
  align-self: center;
}
.shape-tabs::-webkit-scrollbar {
  display: none;
}
.shape-tabs::-webkit-scrollbar-track {
  background: transparent;
}
.shape-tabs::-webkit-scrollbar-thumb {
  background: transparent;
}

.shape-tab {
  min-width: 128px;
  height: 52px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.shape-tab.is-active {
  background: #C8102E;
  color: #fff;
  border-color: #C8102E;
}
.shape-tab:hover {
  background: #C8102E;
  color: #fff;
}

.shape-panel {
  background: #f7f7f7;
  display: grid;
  gap: 40px;
  padding: 40px;
}

.shape-panel__img img {
  width: 100%;
  display: block;
}

.shape-panel__content h3 {
  font-size: 32px;
  margin-bottom: 24px;
}
.shape-panel__content p {
  color: #111;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 1.44px;
}

.shape-usage {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.shape-usage__label {
  background: #666;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
}

.shape-usage__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shape-usage__list span {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 13px;
}

.shape-panel .shape-panel__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.shape-panel .shape-panel__inner .shape-panel__img {
  max-width: 360px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shape-panel .shape-panel__inner .shape-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shape-panel .shape-panel__inner .shape-panel__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shape-panel .shape-panel__inner .shape-panel__content h3 {
  margin: 0;
  color: #111;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: 1.92px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.shape-panel .shape-panel__inner .shape-panel__content .shape-panel__content__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.shape-panel .shape-panel__inner .shape-panel__content .shape-panel__content__desc p {
  font-size: 18px;
}
.shape-panel .shape-panel__inner .shape-panel__content .shape-panel__content__desc a {
  color: #002452;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1.44px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shape-panel .shape-panel__inner .shape-panel__content .shape-panel__content__desc a:hover {
  color: #C50B2F;
}
.shape-panel .shape-panel__inner .shape-tag {
  display: flex;
  gap: 10px;
  align-items: center;
}
.shape-panel .shape-panel__inner .shape-tag .shape-tag__label {
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  min-width: max-content;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  height: 22px;
  padding: 0 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: center;
  color: #FFF;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: 1.12px;
}
.shape-panel .shape-panel__inner .shape-tag .shape-tag__value {
  color: #111;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4; /* 32.4px */
  letter-spacing: 1.44px;
}

.shape-panel {
  display: grid;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

.shape-panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

@media screen and (max-width: 1280px) {
  .shape-tabs {
    align-self: unset;
  }
}
@media screen and (max-width: 1024px) {
  .shape-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .shape-tab {
    flex-shrink: 0;
  }
  .shape-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .shape-panel__content h3 {
    font-size: 26px;
  }
  .shape-usage {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 880px) {
  .shape-product {
    width: 87.203%;
  }
  .shape-panel .shape-panel__inner {
    gap: 24px;
    flex-direction: column;
  }
  .shape-panel .shape-panel__inner .shape-panel__img {
    max-width: unset;
  }
  .shape-panel .shape-panel__inner .shape-panel__content h3 {
    text-align: center;
    padding-bottom: 16px;
    font-size: 20px;
  }
  .shape-panel__content p {
    font-size: 16px;
  }
  .shape-panel .shape-panel__inner .shape-panel__content {
    gap: 16px;
  }
  .shape-panel .shape-panel__inner .shape-panel__content .shape-tag__value {
    font-size: 16px;
  }
  .shape-panel {
    padding: 16px;
  }
}
.related_video {
  margin-bottom: 160px;
}
.related_video__inner {
  max-width: 900px;
  margin: 0 auto;
  width: 95%;
}
.related_video__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.related_video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related_video__thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 880px) {
  .related_video {
    margin-bottom: 128px;
  }
  .related_video__inner {
    width: 87.204%;
  }
}
#cboxOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99998;
}

#colorbox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#colorbox.show {
  opacity: 1;
}

#cboxContent {
  background: transparent;
  overflow: visible;
}

#cboxLoadedContent {
  margin: 0;
  overflow: visible !important;
}

#cboxLoadedContent > div,
#cboxLoadedContent video {
  width: 100%;
  height: 100%;
}

#cboxClose {
  position: absolute;
  top: 0;
  right: -30px;
  background: url(../images/close.svg) no-repeat center center;
  width: 29px;
  height: 29px;
  border: none;
  cursor: pointer;
}

#cboxClose:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

/* contact form 7 normal style start */
.wpcf7 .screen-reader-response {
  display: none;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #FD3F4A;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.36px;
  margin-top: 4px;
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
  max-width: 348px;
}

.wpcf7 form div {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 396px;
  gap: 7px;
}

.wpcf7 form div p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* margin-top: 16px; */
  margin: 0;
}

.wpcf7 form div p label {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #111;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 14.4px */
  letter-spacing: 0.96px;
}

.wpcf7 form div p label .required {
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  border: 1px solid #FD3F4A;
  color: #FD3F4A;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 11px */
  letter-spacing: 0.33px;
}

.wpcf7 form div p label .n_required {
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  border: 1px solid #919191;
  color: #919191;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 11px */
  letter-spacing: 0.33px;
}

.wpcf7 form div p br {
  display: none;
}

.wpcf7 form div p .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

.wpcf7 form div p .wpcf7-form-control-wrap input {
  display: flex;
  height: 42px;
  padding: 0px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 3px;
  border: 1px solid #D9E7F2;
  background: #FFF;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.48px;
}

.wpcf7 form .namaediv p {
  display: flex;
  width: 100%;
  max-width: 380px;
  flex-direction: row;
  width: 98%;
  margin-top: 8px;
}

.wpcf7 form .namaediv p .wpcf7-form-control-wrap {
  display: flex;
  width: 50%;
}

.wpcf7 form .pridiv {
  display: flex;
  align-items: center;
}

.wpcf7 form .pridiv p .wpcf7-form-control-wrap input {
  height: unset;
}

.wpcf7 form .pridiv p label {
  justify-content: center;
}

.wpcf7 form .pridiv p label span {
  color: #111;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: 0.96px;
}

.wpcf7 form .pridiv p label span a {
  color: #0091E1;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  letter-spacing: 0.36px;
  text-decoration-line: underline;
}

.wpcf7 form .pridiv p {
  margin: 0;
}

.wpcf7 form .priinfodiv p span {
  color: #313131;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 16.5px */
  letter-spacing: 0.33px;
}

.wpcf7 form .priinfodiv p span a {
  color: #0091E1;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.33px;
  text-decoration-line: underline;
  cursor: pointer;
}

.wpcf7 form .btndiv {
  display: flex;
  justify-content: center;
  width: 100%;
}

.wpcf7 form .btndiv p {
  align-items: center;
  margin: 0;
}

.wpcf7 form div p .wpcf7-form-control-wrap textarea {
  border-radius: 3px;
  border: 1px solid #D9E7F2;
  background: #FFF;
  resize: none;
  display: flex;
  height: 90px;
  padding: 12px;
}

.wpcf7 form .btndiv p input[type=submit] {
  border: 0;
  cursor: pointer;
  display: flex;
  max-width: 280px;
  width: 95%;
  height: 60px;
  padding-bottom: 3.087px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  background: #002452;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 134%; /* 26.8px */
  letter-spacing: 0.6px;
}

.wpcf7 form .btndiv p input[type=submit]:disabled {
  border-radius: 8px;
  background: #E7E7E7;
  box-shadow: 0px 0px 0px 0px #5897C0;
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.9);
  color: #FFF;
  text-align: center;
  cursor: default;
}

.wpcf7 form .btndiv p input[type=submit]:hover {
  opacity: 0.5;
  cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 0;
}

/* contact form 7 normal style end  */
.input_group_names_type2 {
  display: flex;
  flex-direction: row !important;
}

.input_group_names_type2 .input_group {
  display: flex;
  width: 49%;
}

.wpcf7 form .input_group:not(.privacy) .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 5px 5px 0;
}

.wpcf7 form .wpcf7-radio .wpcf7-list-item input,
.wpcf7 form .input_group:not(.privacy) .wpcf7-checkbox .wpcf7-list-item input {
  display: none;
}

.wpcf7 form .wpcf7-radio .wpcf7-list-item:has(:checked),
.wpcf7 form .input_group:not(.privacy) .wpcf7-checkbox .wpcf7-list-item:has(:checked) {
  background-color: rgba(255, 255, 0, 0.2);
}

.select_infors_chk input[type=checkbox], .select_infors_chk input[type=checkbox] {
  display: none !important;
}

.wpcf7 form div p .wpcf7-form-control-wrap .wpcf7-exclusive-checkbox {
  width: 100%;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.select_infors_chk .wpcf7-list-item {
  margin: 0;
  border-radius: 5px;
  border: 1px solid rgba(49, 49, 49, 0.4);
  background: #FFF;
  height: 30px;
  display: flex;
  align-items: center;
}

.select_infors_chk .wpcf7-list-item:has(:checked) {
  background-color: rgba(255, 255, 0, 0.2);
}

.select_infors_chk .wpcf7-list-item label {
  display: flex;
  width: 100%;
  padding: 9px;
  font-weight: 400;
}

/*# sourceMappingURL=style.css.map */
