@charset "UTF-8";
/* PCとSPの適用切り替え
--------------------------------- */
/* ホバー用メディアクエリ
--------------------------------- */
/* 画像がない場合に、デフォルト画像を表示
--------------------------------- */
/* メディアクエリ調整関数
--------------------------------- */
/* 画面サイズ
--------------------------------- */
/* rem -> svh変換
--------------------------------- */
/* アニメーション
--------------------------------- */
/* パーツ
--------------------------------- */
/* カラー
--------------------------------- */
/* スクロールバーサイズ
--------------------------------- */
:root {
  --sb-width: 0px;
}

/* リセット
--------------------------------- */
body {
  font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto sans JP", sans-serif;
  color: #333;
  font-weight: 400;
}

body, div, h1, h2, h3, h4, h5, h6, p, ul, li, span, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

img, figure {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

a, a:visited {
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

main {
  position: relative;
}

/* font
--------------------------------- */
.ff-roboto {
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto sans JP", sans-serif;
}

/* ボタン
--------------------------------- */
.btn {
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover {
  opacity: 0.9;
}

/* 設定
--------------------------------- */
@media (min-width: 768px) {
  .link-disable-pc {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .link-disable-sp {
    pointer-events: none;
  }
}
html {
  font-size: 10px;
}

@media (max-width: 1500px) {
  html {
    font-size: calc((100vw - var(--sb-width)) / 150);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc((100vw - var(--sb-width)) / 39);
  }
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .anchor {
    margin-top: max(-4rem, -56px);
    padding-top: min(4rem, 56px);
  }
}
/* pc sp
--------------------------------- */
.dp-pc {
  display: block;
}

.dp-sp {
  display: none;
}

.dp-pc-ib {
  display: inline-block;
}

.dp-pc-im {
  display: block !important;
}

.dp-sp-im {
  display: none !important;
}

@media (max-width: 767px) {
  .dp-pc {
    display: none;
  }
  .dp-pc-ib {
    display: none;
  }
  .dp-sp {
    display: block;
  }
  .dp-pc-im {
    display: none !important;
  }
  .dp-sp-im {
    display: block !important;
  }
}
.dp-n {
  display: none;
}

.dp-n-im {
  display: none !important;
}

/* font
--------------------------------- */
.ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.ff-maru {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* アニメーション
--------------------------------- */
.triger-by-scroll-in {
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 0.5s, transform 0.5s;
}
.triger-by-scroll-in.on {
  opacity: 1;
  transform: translateY(0);
}

/* header
--------------------------------- */
.header {
  z-index: 100001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 42, 42, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.6s ease;
}
.header .header__inner {
  width: 100%;
  max-width: calc(1380px + 3rem);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7.7rem;
}
.header .header__inner .header__logo {
  width: 11rem;
  padding-left: 2rem;
  opacity: 0;
  transition: all 0.4s;
}
.header .header__inner .hamburger {
  display: none;
}
.header .header__inner .header__nav {
  height: 100%;
}
.header .header__inner .header__nav .header__nav-list {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header__inner .header__nav .header__nav-list .header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}
.header .header__inner .header__nav .header__nav-list .header__nav-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0.2rem;
  background-color: #DC000C;
  transition: all 0.5s;
}
.header .header__inner .header__nav .header__nav-list .header__nav-item.active::after {
  width: 100%;
}
.header .header__inner .header__nav .header__nav-list .search-wh {
  display: block;
  width: 1.65rem;
}
.header .header__inner .header__nav .header__nav-list .search-bk {
  display: none;
  width: 1.65rem;
}
.header.colored, .header.hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.header.colored .header__inner .header__logo, .header.hover .header__inner .header__logo {
  opacity: 1;
}
.header.colored .header__inner .header__nav .header__nav-list .header__nav-item, .header.hover .header__inner .header__nav .header__nav-list .header__nav-item {
  color: #333;
}
.header.colored .header__inner .header__nav .header__nav-list .search-wh, .header.hover .header__inner .header__nav .header__nav-list .search-wh {
  display: none;
}
.header.colored .header__inner .header__nav .header__nav-list .search-bk, .header.hover .header__inner .header__nav .header__nav-list .search-bk {
  display: block;
}

@media (max-width: 767px) {
  .header {
    left: unset;
    right: 0;
    justify-content: flex-end;
    width: fit-content;
    background-color: rgba(42, 42, 42, 0);
    backdrop-filter: blur(0);
  }
  .header .header__inner {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-right: 0;
    height: 6.5rem;
  }
  .header .header__inner .header__logo {
    display: none;
  }
  .header .header__inner .hamburger {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.5rem;
    height: 6.5rem;
    padding: 3rem 1.6rem 1.7rem;
    transition: background 0.3s;
  }
  .header .header__inner .hamburger::before {
    position: absolute;
    content: "MENU";
    top: 1rem;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 1rem;
    color: #fff;
  }
  .header .header__inner .hamburger span {
    position: relative;
    width: 100%;
    height: 0.2rem;
    background-color: #fff;
    transition: all 0.3s;
  }
  .header .header__inner .hamburger span::before, .header .header__inner .hamburger span::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 0.2rem;
    background-color: #fff;
    transition: all 0.3s;
  }
  .header .header__inner .hamburger span::before {
    top: 0.9rem;
  }
  .header .header__inner .hamburger span::after {
    bottom: 0.9rem;
  }
  .header .header__inner .hamburger.active span {
    background-color: transparent;
  }
  .header .header__inner .hamburger.active span::before {
    top: 0;
    transform: translate(-50%, 0) rotate(45deg);
  }
  .header .header__inner .hamburger.active span::after {
    bottom: 0;
    transform: translate(-50%, 0) rotate(-45deg);
  }
  .header .header__inner .header__nav {
    z-index: -1;
    position: absolute;
    top: 0;
    right: -100%;
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
  }
  .header .header__inner .header__nav .header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 3rem;
    width: 100%;
  }
  .header.colored, .header.hover {
    background-color: transparent;
  }
  .header.colored .header__inner .hamburger, .header.hover .header__inner .hamburger {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .header.colored .header__inner .hamburger::before, .header.hover .header__inner .hamburger::before {
    color: #333;
  }
  .header.colored .header__inner .hamburger span, .header.hover .header__inner .hamburger span {
    background-color: #333;
  }
  .header.colored .header__inner .hamburger span::before, .header.colored .header__inner .hamburger span::after, .header.hover .header__inner .hamburger span::before, .header.hover .header__inner .hamburger span::after {
    background-color: #333;
  }
  .header.colored .header__inner .hamburger.active span, .header.hover .header__inner .hamburger.active span {
    background-color: transparent;
  }
}
/* headerのスライドダウンメニュー
--------------------------------- */
.header-menu {
  width: 100%;
  z-index: 98;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 100%;
  height: fit-content;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}
.header-menu .header-menu__inner {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15.7rem 10rem 5rem;
}
.header-menu .header-menu__inner .header-menu__close {
  z-index: 10;
  position: absolute;
  content: "";
  top: 13rem;
  right: max(50% - 75rem, 1.5rem);
  width: 5.2rem;
  height: 5.2rem;
  cursor: pointer;
  transition: all 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__close:hover:hover {
    opacity: 0.7;
  }
}
.header-menu .header-menu__inner .header-menu__close::before, .header-menu .header-menu__inner .header-menu__close::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
.header-menu .header-menu__inner .header-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-menu .header-menu__inner .header-menu__list {
  opacity: 0;
  transform: translateY(-1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: all 0.5s ease;
}
.header-menu .header-menu__inner .header-menu__list.active {
  opacity: 1;
  transform: translateY(0);
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer {
  width: 47.5%;
  max-width: calc(650px + 1.5rem - 3.4rem);
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 {
  margin-bottom: 4rem;
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 a {
  font-size: 2rem;
  color: #333;
  background-color: #fff;
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 a .link-circle {
  border-color: #333;
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 a .link-circle::after {
  border-color: #333;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 a:hover:hover {
    color: #fff;
    background-color: transparent !important;
  }
  .header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 a:hover span {
    background-color: transparent !important;
    border-color: #fff;
  }
  .header-menu .header-menu__inner .header-menu__list.header-menu__customer h2 a:hover span::after {
    border-color: #fff;
  }
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer ul {
  display: flex;
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer ul li {
  width: calc(50% - 0.8rem);
}
.header-menu .header-menu__inner .header-menu__list.header-menu__customer ul li div.header-menu__customer-link {
  margin-bottom: 2.4rem;
  padding-bottom: 1.2rem;
}
.header-menu .header-menu__inner .header-menu__list.customer-heading {
  width: 100%;
  max-width: calc(1300px + 3rem);
}
.header-menu .header-menu__inner .header-menu__list.customer-heading h2 a {
  font-size: 2rem;
  color: #fff;
  background-color: transparent;
}
.header-menu .header-menu__inner .header-menu__list.customer-heading h2 a .link-circle {
  border-color: #fff;
}
.header-menu .header-menu__inner .header-menu__list.customer-heading h2 a .link-circle::after {
  border-color: #fff;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__list.customer-heading h2 a:hover:hover {
    color: #333;
    background-color: #fff !important;
  }
  .header-menu .header-menu__inner .header-menu__list.customer-heading h2 a:hover span {
    background-color: transparent !important;
    border-color: #333;
  }
  .header-menu .header-menu__inner .header-menu__list.customer-heading h2 a:hover span::after {
    border-color: #333;
  }
}
.header-menu .header-menu__inner .header-menu__list.customer-individual {
  position: relative;
  margin-right: 5.8rem;
}
.header-menu .header-menu__inner .header-menu__list.customer-individual h2 a {
  font-size: 2rem;
  color: #fff;
  background-color: transparent;
}
.header-menu .header-menu__inner .header-menu__list.customer-individual h2 a .link-circle {
  border-color: #fff;
}
.header-menu .header-menu__inner .header-menu__list.customer-individual h2 a .link-circle::after {
  border-color: #fff;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__list.customer-individual h2 a:hover:hover {
    color: #333;
    background-color: #fff !important;
  }
  .header-menu .header-menu__inner .header-menu__list.customer-individual h2 a:hover span {
    background-color: transparent !important;
    border-color: #333;
  }
  .header-menu .header-menu__inner .header-menu__list.customer-individual h2 a:hover span::after {
    border-color: #333;
  }
}
.header-menu .header-menu__inner .header-menu__list h2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 7rem;
  margin-bottom: 2.5rem;
  border: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__list h2 a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  opacity: 1;
  transition: background 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__list h2 a:hover:hover {
    background-color: #AAAAAA;
  }
  .header-menu .header-menu__inner .header-menu__list h2 a:hover span {
    background-color: #545454;
  }
}
.header-menu .header-menu__inner .header-menu__list h2 span.link-circle {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  width: 3.38rem;
  height: 3.38rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
  bottom: 50%;
  right: 1.8rem;
  transform: translateY(50%);
  width: 1.8rem;
  height: 1.8rem;
}
.header-menu .header-menu__inner .header-menu__list h2 span.link-circle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__list h2 span.link-circle::after {
  transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 767px) {
  .header-menu .header-menu__inner .header-menu__list h2 span.link-circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .header-menu .header-menu__inner .header-menu__list h2 span.link-circle::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
.header-menu .header-menu__inner .header-menu__list > ul {
  display: flex;
  column-gap: 3rem;
}
.header-menu .header-menu__inner .header-menu__list > ul > li {
  width: calc((100% - 9rem) / 4);
  color: #fff;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img {
  position: relative;
  margin-bottom: 4.4rem;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img > a {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 15.4rem;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img > a img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img h4 {
  position: absolute;
  bottom: 1.2rem;
  left: 1.3rem;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.5s;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img span.link-circle {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  width: 3.38rem;
  height: 3.38rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
  bottom: 1.8rem;
  right: 1.5rem;
  transform: none;
  width: 1.8rem;
  height: 1.8rem;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img span.link-circle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img span.link-circle::after {
  transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 767px) {
  .header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img span.link-circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img span.link-circle::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img:hover:hover img {
    transform: scale(1.1);
  }
  .header-menu .header-menu__inner .header-menu__list > ul > li .header-menu__img:hover:hover h4 {
    opacity: 0.7;
  }
}
.header-menu .header-menu__inner .header-menu__list > ul > li > ul > li {
  font-size: 1.6rem;
  line-height: 1;
}
.header-menu .header-menu__inner .header-menu__list > ul > li > ul > li:not(:last-child) {
  margin-bottom: 2.2rem;
}
.header-menu .header-menu__inner .header-menu__list > ul > li > ul > li a {
  transition: all 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__list > ul > li > ul > li a:hover:hover {
    opacity: 0.7;
  }
}
.header-menu .header-menu__inner .header-menu__list > ul > li:last-child > ul > li {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__list > ul > li:last-child > ul > li span.link-circle {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  width: 3.38rem;
  height: 3.38rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
  bottom: 50%;
  right: 1.8rem;
  transform: translateY(50%);
  width: 1.8rem;
  height: 1.8rem;
}
.header-menu .header-menu__inner .header-menu__list > ul > li:last-child > ul > li span.link-circle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__list > ul > li:last-child > ul > li span.link-circle::after {
  transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 767px) {
  .header-menu .header-menu__inner .header-menu__list > ul > li:last-child > ul > li span.link-circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .header-menu .header-menu__inner .header-menu__list > ul > li:last-child > ul > li span.link-circle::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
.header-menu .header-menu__inner .header-menu__style > h2 {
  max-width: calc(1300px + 3rem);
}
.header-menu .header-menu__inner .header-menu__style > ul {
  width: 100%;
  max-width: calc(1300px + 3rem);
}
.header-menu .header-menu__inner .header-menu__style > ul > li {
  width: calc((100% - 9rem) / 4);
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__img > a img {
  height: 100%;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 3.8rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a {
  display: flex;
  height: 4.6rem;
  align-items: flex-end;
  font-size: 1.8rem;
  transition: all 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a:hover:hover {
    opacity: 0.7;
  }
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.hgt20 {
  height: 2.1rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.hgt30 {
  height: 3rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.hgt40 {
  height: 4rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.hgt50 {
  height: 5rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.hgt60 {
  height: 6rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.mt15 {
  margin-top: 1.5rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.mt30 {
  margin-top: 3rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.mt40 {
  margin-top: 4rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.mt50 {
  margin-top: 5rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.mt60 {
  margin-top: 6rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.fw-w {
  flex-wrap: wrap;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a .fs13 {
  font-size: 1.3rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link > a.notice-icon img {
  width: 1.6rem;
  margin-right: 0.5rem;
  margin-bottom: 3rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link span.link-circle {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  width: 3.38rem;
  height: 3.38rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
  bottom: 1.9rem;
  right: 1.5rem;
  transform: none;
  width: 1.8rem;
  height: 1.8rem;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link span.link-circle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link span.link-circle::after {
  transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
}
@media (max-width: 767px) {
  .header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link span.link-circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link span.link-circle::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
.header-menu .header-menu__inner .header-menu__style > ul > li .header-menu__customer-link span.link-square {
  position: absolute;
  content: "";
  bottom: 1.9rem;
  right: 1.5rem;
  transform: none;
  width: 1.54rem;
  height: 1.45rem;
  background: url(../img/icon-link-square.png) no-repeat center center/contain;
}
.header-menu .header-menu__inner .header-menu__search {
  align-items: flex-start;
  width: 100%;
  max-width: calc(1300px + 3rem);
  margin: 0 auto 4rem;
}
.header-menu .header-menu__inner .header-menu__search .search-title {
  display: flex;
  column-gap: 1rem;
}
.header-menu .header-menu__inner .header-menu__search .search-title h3 {
  background-color: transparent;
  cursor: pointer;
}
.header-menu .header-menu__inner .header-menu__search .search-title h3 span {
  display: inline-block;
  margin-bottom: 1rem;
  width: 18rem;
  padding: 1.2rem 1rem;
  font-size: 1.8rem;
  text-align: center;
  border: 0.1rem solid #D5D5D5;
  color: #D5D5D5;
  background-color: transparent;
}
.header-menu .header-menu__inner .header-menu__search .search-title h3.is-active {
  background-color: #D5D5D5;
}
.header-menu .header-menu__inner .header-menu__search .search-title h3.is-active span {
  color: #333;
  background-color: #D5D5D5;
}
.header-menu .header-menu__inner .header-menu__search form {
  box-sizing: border-box;
  position: relative;
  display: none;
  width: 100%;
  margin-top: -1px;
  padding: 3rem;
  background-color: #D5D5D5;
}
.header-menu .header-menu__inner .header-menu__search form.is-active {
  display: inline-block;
}
.header-menu .header-menu__inner .header-menu__search form label.header-search {
  position: relative;
  display: block;
  width: 100%;
}
.header-menu .header-menu__inner .header-menu__search form label.header-search input {
  box-sizing: border-box;
  width: calc(100% - 0rem);
  height: 6.6rem;
  padding: 2rem 18rem 2.1rem 8.25rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  border: 0.1rem solid #fff;
  border-radius: 0.5rem;
}
.header-menu .header-menu__inner .header-menu__search form label.header-search input::placeholder {
  color: rgba(0, 0, 0, 0.2666666667);
}
.header-menu .header-menu__inner .header-menu__search form label.header-search span {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
  width: 1.7rem;
  height: 1.7rem;
}
.header-menu .header-menu__inner .header-menu__search form input[type=submit] {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 18rem;
  height: 6.6rem;
  padding: 2rem 1rem 2.1rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  border: 0.1rem solid #333;
  border-radius: 0 0.5rem 0.5rem 0;
  background-color: #333;
  cursor: pointer;
  transition: all 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .header-menu .header-menu__inner .header-menu__search form input[type=submit]:hover:hover {
    opacity: 0.7;
  }
}

/* フローティングボタン
--------------------------------- */
.floating-btn {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.5s;
}
.floating-btn.is-active {
  transform: translateX(0);
}
.floating-btn a {
  display: block;
  width: 31rem;
  height: 8rem;
  background-color: #fff;
}
.floating-btn a p {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 12.8rem;
  font-size: 2.2rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
.floating-btn a p::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 10.8rem;
  height: 8rem;
  background: url(../img/parts/float-btn.jpg) no-repeat center center/cover;
}

@media (max-width: 767px) {
  .floating-btn a {
    width: 20rem;
    height: 6rem;
  }
  .floating-btn a p {
    padding-left: 11rem;
    font-size: 1.2rem;
  }
  .floating-btn a p::before {
    width: 9.8rem;
    height: 6rem;
  }
}
/* hamburgerのナビメニュー
--------------------------------- */
.hamburger-nav {
  display: none;
}

@media (max-width: 767px) {
  .hamburger-nav {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: -100%;
    display: block;
    width: 100%;
    height: 100svh;
    background-color: rgba(0, 0, 0, 0.3333333333);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: right 0.5s;
  }
  .hamburger-nav.active {
    right: 0;
  }
  .hamburger-nav .hamburger-nav__top-blk {
    height: 22.6rem;
  }
  .hamburger-nav .hamburger-nav__top-blk h2 {
    width: 12rem;
    margin: 3.5rem 2rem 3.5rem;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 35rem;
    margin: 2rem auto;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search label {
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 1.6rem 1rem 1.6rem;
    font-size: 1.8rem;
    color: #fff;
    background-color: transparent;
    border: 0.1rem solid #fff;
    text-align: center;
    transition: all 0.5s;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search label:nth-of-type(1) {
    width: 16rem;
    margin-right: 0.7rem;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search label:nth-of-type(2) {
    width: 18rem;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search label.is-active {
    margin-bottom: 0;
    padding: 1.6rem 1rem 2.8rem;
    color: #333;
    background-color: #D5D5D5;
    border: 0.1rem solid #d5d5d5;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form {
    width: 100%;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form.search-others {
    display: none;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form div {
    width: 100%;
    margin-top: -0.2rem;
    padding: 2rem 1rem;
    background-color: #D5D5D5;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form div input[type=text] {
    position: relative;
    top: -0.1rem;
    box-sizing: border-box;
    width: calc(72% - 0.3rem);
    height: 5rem;
    margin-right: 0.3rem;
    padding: 1.6rem;
    font-size: 1.8rem;
    border: none;
    border-radius: 0.4rem;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form div input[type=text]::placeholder {
    color: rgba(0, 0, 0, 0.2);
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form div input[type=text]:focus {
    outline: none;
  }
  .hamburger-nav .hamburger-nav__top-blk .hamburger-nav__search form div input[type=submit] {
    box-sizing: border-box;
    width: 26%;
    height: 5rem;
    font-size: 1.8rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0.4rem;
  }
  .hamburger-nav .hamburger-nav__outer {
    margin-top: 1rem;
    overflow-y: scroll;
    height: calc(100% - 1rem - 22.6rem - 2.5rem);
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner {
    width: 100%;
    height: fit-content;
    padding: 0 0 5rem;
    color: #FFF;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd {
    display: block;
    margin-bottom: 0;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk {
    width: 100%;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > h3, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > h3,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding: 2.5rem 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 0.1rem solid #707070;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > h3::before, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > h3::after, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a::before, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > h3::before,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > h3::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a::before,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 0.1rem;
    background-color: #fff;
    transition: transform 0.5s;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > h3::after, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > h3::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a::after {
    transform: translateY(-50%) rotate(-270deg);
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > h3.open::after, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a.open::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > h3.open::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a.open::after {
    transform: translateY(-50%) rotate(0);
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > h3 span, .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a span,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > h3 span,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a span {
    display: inline-block;
    margin-left: 1.8rem;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a::before,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a::before {
    content: none;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk > a::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk > a::after {
    right: 2.4rem;
    transform: translateY(-50%) rotate(-45deg);
    width: 1.1rem;
    height: 1.1rem;
    background-color: transparent;
    border-right: 0.15rem solid #fff;
    border-bottom: 0.15rem solid #fff;
    transition: transform 0.5s;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk ul,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk ul {
    background-color: #555;
    display: none;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk ul li,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk ul li {
    position: relative;
    margin-bottom: 0;
    border-bottom: 0.1rem solid #707070;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk ul li.in-list-title a,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk ul li.in-list-title a {
    font-size: 1.6rem;
    background-color: rgba(163, 163, 163, 0.368627451);
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk ul li a,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk ul li a {
    display: block;
    padding: 1.8rem 2rem;
    font-size: 1.6rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk ul li a img.notice-icon,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk ul li a img.notice-icon {
    width: 1.4rem;
    margin-bottom: 0.4rem;
    margin-right: 0.4rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk ul li::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk ul li::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.1rem solid #fff;
    border-bottom: 0.1rem solid #fff;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other {
    margin-top: 6rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul {
    display: block;
    margin-bottom: 6.5rem;
    background-color: transparent;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li {
    display: none;
    border-bottom: none;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li::after,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li::after {
    content: none;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li.hamburger-nav__global,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li.hamburger-nav__global {
    display: block;
    margin-left: 3rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li.hamburger-nav__global a,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other ul li.hamburger-nav__global a {
    padding: 0;
    font-size: 1.8rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other .hamburger-nav__sns,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other .hamburger-nav__sns {
    display: flex;
    justify-content: center;
    column-gap: 4rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other .hamburger-nav__sns li,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other .hamburger-nav__sns li {
    display: flex;
    align-items: center;
    width: 4.4rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__1st li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other .hamburger-nav__sns li a,
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner ul.hamburger-nav__2nd li.hamburger-nav__cat-blk.hamburger-nav__cat-blk-other .hamburger-nav__sns li a {
    padding: 0;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner .hamburger-nav__sp-policy {
    display: block;
    margin-bottom: 2rem;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner .hamburger-nav__sp-policy ul {
    display: flex;
    justify-content: center;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner .hamburger-nav__sp-policy ul li {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner .hamburger-nav__sp-policy ul li:not(:last-child) {
    margin-right: 0.6rem;
    padding-right: 0.6rem;
    border-right: 0.1rem solid #fff;
  }
  .hamburger-nav .hamburger-nav__outer .hamburger-nav__inner .hamburger-nav-copyright {
    text-align: center;
  }
}
/* footer
--------------------------------- */
.footer {
  position: relative;
  padding: 0;
  background-color: #333;
}
.footer::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.footer .footer__inner {
  width: 100%;
  max-width: calc(1380px + 3rem);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(1100px + 3rem);
  padding: 6.6rem 1.5rem 10rem;
  color: #FFF;
}
.footer .footer__inner h2 {
  width: 12rem;
  margin-bottom: 6rem;
}
.footer .footer__inner ul.footer__1st.footer__add {
  margin-bottom: 3rem;
}
.footer .footer__inner ul.footer__1st,
.footer .footer__inner ul.footer__2nd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk {
  width: 23.4rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk h3,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 0.1rem solid #707070;
  transition: opacity 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .footer .footer__inner ul.footer__1st li.footer__cat-blk h3:hover:hover,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk h3:hover:hover {
    opacity: 0.7;
  }
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk ul li,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk ul li {
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  transition: opacity 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .footer .footer__inner ul.footer__1st li.footer__cat-blk ul li:hover:hover,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk ul li:hover:hover {
    opacity: 0.7;
  }
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other {
  margin-top: 6rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul {
  margin-bottom: 7rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul li,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul li {
  font-size: 1.4rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul li.footer__global,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul li.footer__global {
  margin-top: 4rem;
  font-size: 1.8rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other .footer__sns,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other .footer__sns {
  display: flex;
  column-gap: 3.4rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other .footer__sns li,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other .footer__sns li {
  display: flex;
  align-items: center;
  width: 4.2rem;
}
.footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other .footer__sns li img,
.footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other .footer__sns li img {
  width: 100%;
}
.footer .footer__inner .footer__sp-policy {
  display: none;
}
.footer .footer__inner .footer-copyright {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .footer .footer__inner {
    width: 100%;
    padding: 5rem 0 12rem;
    color: #FFF;
  }
  .footer .footer__inner h2 {
    width: 12rem;
    margin: 0 2rem 3.5rem;
  }
  .footer .footer__inner ul.footer__1st.footer__add {
    margin-bottom: 0;
  }
  .footer .footer__inner ul.footer__1st,
  .footer .footer__inner ul.footer__2nd {
    display: block;
    margin-bottom: 0;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk {
    width: 100%;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > h3, .footer .footer__inner ul.footer__1st li.footer__cat-blk > a,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > h3,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a {
    position: relative;
    margin-bottom: 0;
    padding: 2.5rem 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 0.1rem solid #707070;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > h3::before, .footer .footer__inner ul.footer__1st li.footer__cat-blk > h3::after, .footer .footer__inner ul.footer__1st li.footer__cat-blk > a::before, .footer .footer__inner ul.footer__1st li.footer__cat-blk > a::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > h3::before,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > h3::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a::before,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 0.1rem;
    background-color: #fff;
    transition: transform 0.5s;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > h3::after, .footer .footer__inner ul.footer__1st li.footer__cat-blk > a::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > h3::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a::after {
    transform: translateY(-50%) rotate(-270deg);
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > h3.open::after, .footer .footer__inner ul.footer__1st li.footer__cat-blk > a.open::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > h3.open::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a.open::after {
    transform: translateY(-50%) rotate(0);
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > a,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a {
    display: block;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > a::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a::after {
    right: 2.4rem;
    transform: translateY(-50%) rotate(-45deg);
    width: 1.1rem;
    height: 1.1rem;
    border-right: 0.15rem solid #fff;
    border-bottom: 0.15rem solid #fff;
    background-color: transparent;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk > a::before,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk > a::before {
    content: none;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk ul,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk ul {
    background-color: #555;
    display: none;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk ul li,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk ul li {
    position: relative;
    margin-bottom: 0;
    border-bottom: 0.1rem solid #707070;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk ul li a,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk ul li a {
    display: block;
    padding: 1.8rem 2rem;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk ul li::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk ul li::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.8rem;
    height: 0.8rem;
    border-right: 0.1rem solid #fff;
    border-bottom: 0.1rem solid #fff;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other {
    margin-top: 6rem;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4.5rem;
    background-color: transparent;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul:first-child li:not(:last-child),
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul:first-child li:not(:last-child) {
    display: none;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul li,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul li {
    border-bottom: none;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul li::after,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul li::after {
    content: none;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul li.footer__global,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul li.footer__global {
    display: block;
    margin-top: 0;
    margin-left: 0;
    font-size: 1.8rem;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other ul li a,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other ul li a {
    padding: 1rem 1rem;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other .footer__sns,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other .footer__sns {
    justify-content: center;
    column-gap: 4rem;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other .footer__sns li,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other .footer__sns li {
    display: flex;
    align-items: center;
    width: 4.4rem;
  }
  .footer .footer__inner ul.footer__1st li.footer__cat-blk.footer__cat-blk-other .footer__sns li a,
  .footer .footer__inner ul.footer__2nd li.footer__cat-blk.footer__cat-blk-other .footer__sns li a {
    padding: 0;
  }
  .footer .footer__inner .footer__sp-policy {
    display: block;
    margin-bottom: 2rem;
  }
  .footer .footer__inner .footer__sp-policy ul {
    display: flex;
    justify-content: center;
  }
  .footer .footer__inner .footer__sp-policy ul li {
    font-size: 1.2rem;
    font-weight: 400;
  }
  .footer .footer__inner .footer__sp-policy ul li:not(:last-child) {
    margin-right: 0.6rem;
    padding-right: 0.6rem;
    border-right: 0.1rem solid #fff;
  }
  .footer .footer__inner .footer-copyright {
    text-align: center;
  }
}
/* CTA
--------------------------------- */
/* テンプレート
--------------------------------- */
/* mv
--------------------------------- */
.mv {
  z-index: 0;
  position: fixed;
  top: 0;
  width: 100%;
  width: 100%;
  height: 100lvh;
  min-height: 600px;
}
.mv video.mv__movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .mv__inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: calc(1100px + 22rem);
  margin: 0 auto;
  padding: 70rem 1.5rem 8rem 12rem;
}
.mv .mv__inner .mv__heading {
  width: 71.8181818182%;
}
.mv .mv__inner .mv__heading h3 {
  position: relative;
  width: 14rem;
  height: 3.43rem;
  margin-bottom: 4.1rem;
}
.mv .mv__inner .mv__heading h3 img {
  position: absolute;
  transition: all 0.5s;
}
.mv .mv__inner .mv__heading h3 img:nth-child(1) {
  opacity: 1;
}
.mv .mv__inner .mv__heading h3 img:nth-child(2) {
  opacity: 0;
}
.mv .mv__inner .mv__heading h2 {
  margin-bottom: 7rem;
  font-size: 5.3rem;
  font-weight: 500;
  line-height: 1.5094339623;
  letter-spacing: 0.2em;
  color: #fff;
  transition: all 0.5s;
}
.mv .mv__inner .mv__heading .sp_block {
  display: none;
}
@media (max-width: 767px) {
  .mv .mv__inner .mv__heading .sp_block {
    display: block;
  }
}
.mv .mv__inner .mv__heading .fv__inner__title {
  /* font設定 */
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6rem;
  /* css設定 */
  position: absolute;
  top: 50%;
  left: 53%;
  line-height: 6rem;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .mv .mv__inner .mv__heading .fv__inner__title {
    font-size: 2.9rem;
    line-height: 4.5rem;
  }
}
.mv .mv__inner .mv__heading .fv__inner__wrap {
  position: absolute;
  top: 65%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 18rem;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .mv .mv__inner .mv__heading .fv__inner__wrap {
    top: 70%;
  }
}
.mv .mv__inner .mv__heading .mv__scroll-arrow {
  position: absolute;
  bottom: 0;
  left: calc(50% - 48vw);
  padding-bottom: 10rem;
  font-size: 1.4rem;
  color: #fff;
  writing-mode: vertical-rl;
  animation: blink-animation 3s ease-in-out infinite;
}
.mv .mv__inner .mv__heading .mv__scroll-arrow::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.1rem;
  height: 9rem;
  background-color: #fff;
}
@keyframes blink-animation {
  0%, 100% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
}
.mv .mv__deco-text {
  opacity: 0;
  position: absolute;
  top: 11.4rem;
  left: 0;
  display: block;
  writing-mode: vertical-rl;
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7333333333);
  transition: all 0.5s;
}
.mv .mv__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  transition: all 0.5s;
}
.mv.colored .mv__filter {
  background-color: rgba(0, 0, 0, 0.2);
}
.mv.colored .mv__deco-text {
  opacity: 1;
}
.mv.clear .mv__inner .mv__heading h3 img {
  opacity: 0 !important;
}
.mv.clear .mv__inner .mv__heading h2 {
  opacity: 0;
}
.mv.clear .mv__deco-text {
  opacity: 0;
}

@media (min-aspect-ratio: 1/1.2) {
  .mv .mv__inner {
    padding: 60rem 1.5rem 8rem 12rem;
  }
}
@media (min-aspect-ratio: 1/1) {
  .mv .mv__inner {
    padding: 40.50319lvh 11rem 5.3032lvh;
  }
  .mv .mv__inner .mv__heading h3 {
    width: 14rem;
    margin-bottom: 4.07rem;
  }
  .mv .mv__inner .mv__heading h2 {
    margin-bottom: 4.6403lvh;
    font-size: 5.3rem;
  }
}
@media (max-width: 767px) {
  .mv .mv__inner {
    z-index: 2;
    padding: 22.5rem 1.5rem 2rem 4.2rem;
  }
  .mv .mv__inner .mv__heading {
    width: 100%;
  }
  .mv .mv__inner .mv__heading h3 {
    width: 11rem;
    margin-bottom: 2.4rem;
  }
  .mv .mv__inner .mv__heading h2 {
    margin-bottom: 0;
    font-size: 3.3rem;
  }
  .mv .mv__deco-text {
    z-index: 1;
    top: 5rem;
    font-size: 7.2rem;
  }
}
section.bottom-fixed-note {
  z-index: 99;
  position: fixed;
  left: 0;
  bottom: 0;
  transform: translateY(110%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  color: #fff;
  background-color: #333;
  transition: all 0.5s;
  filter: drop-shadow(0.2rem 0.4rem 0.6rem rgba(255, 255, 255, 0.5333333333));
}
section.bottom-fixed-note.is-active {
  transform: translateY(0);
}
section.bottom-fixed-note h4 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5454545455;
  letter-spacing: 0.06em;
}
section.bottom-fixed-note h4::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.1rem solid #fff;
  border-bottom: 0.1rem solid #fff;
  cursor: pointer;
}
section.bottom-fixed-note h4 a {
  display: block;
  padding-right: 2.5rem;
  cursor: pointer;
}
section.bottom-fixed-note h4.notice-item {
  padding-right: 4rem;
  margin-right: 5.5rem;
  border-right: 0.1rem solid #fff;
}
section.bottom-fixed-note h4.notice-item::after {
  right: 4.5rem;
}
section.bottom-fixed-note h4.notice-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 2rem;
  background: url(../img/parts/icon-oshirase.png) no-repeat center/contain;
}
section.bottom-fixed-note h4.notice-important {
  margin-right: 2.5rem;
  padding-right: 2rem;
}
section.bottom-fixed-note .check-boiler-note {
  transition: all 0.5s;
}
section.bottom-fixed-note .check-boiler-note h5 {
  position: relative;
  top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: all 0.5s;
}
section.bottom-fixed-note .check-boiler-note ul {
  position: absolute;
  top: 2.4rem;
  display: flex;
  align-items: center;
  width: max-content;
  opacity: 0;
  transition: all 0.5s;
}
section.bottom-fixed-note .check-boiler-note ul li {
  position: relative;
  margin-right: 1rem;
  padding-right: 1rem;
}
section.bottom-fixed-note .check-boiler-note ul li:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 70%;
  background-color: #fff;
}
section.bottom-fixed-note .check-boiler-note ul li a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (hover: hover) {
  section.bottom-fixed-note:hover {
    height: 7rem;
  }
  section.bottom-fixed-note:hover .check-boiler-note h5 {
    top: -1rem;
  }
  section.bottom-fixed-note:hover .check-boiler-note ul {
    display: flex;
    opacity: 1;
    top: 3.4rem;
  }
}

@media (max-width: 767px) {
  section.bottom-fixed-note {
    z-index: 99;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 7rem;
    color: #fff;
    background-color: #333;
  }
  section.bottom-fixed-note h4 {
    font-size: 2rem;
  }
  section.bottom-fixed-note h4.notice-item {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  section.bottom-fixed-note h4.notice-item::after {
    right: 0;
  }
  section.bottom-fixed-note h4.notice-important {
    display: none;
  }
  section.bottom-fixed-note .check-boiler-note {
    display: none;
  }
}
/* トップセクション
--------------------------------- */
section.top {
  z-index: 11;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100lvh;
  max-width: calc(1100px + 22rem);
}
@media (max-width: 767px) {
  section.top {
    width: 100%;
    height: 100lvh;
  }
}
/* 重要なお知らせ
--------------------------------- */
.info-important {
  position: relative;
  padding: 8.3rem 0 7.6rem;
  background-color: #F5F5F5;
}
.info-important::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F5F5F5;
}
.info-important .inner-blk {
  width: 100%;
  max-width: calc(1200px + 3rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.info-important .inner-blk h2 {
  margin-bottom: 3.1rem;
  font-size: 3.8rem;
  font-weight: 500;
  text-align: center;
}
.info-important .inner-blk ul li {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #C9CACA;
  cursor: pointer;
}
.info-important .inner-blk ul li:first-child {
  border-top: 0.1rem solid #C9CACA;
}
.info-important .inner-blk ul li h3 {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
}
.info-important .inner-blk ul li h3 a {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 5rem;
  font-size: 1.8rem;
}
.info-important .inner-blk ul li h3 a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 3rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.1rem solid #333;
  border-bottom: 0.1rem solid #333;
}

@media (max-width: 767px) {
  .info-important {
    padding: 3.6rem 0 0;
  }
  .info-important::after {
    content: none;
  }
  .info-important .inner-blk {
    padding: 0;
  }
  .info-important .inner-blk h2 {
    font-size: 3.2rem;
  }
  .info-important .inner-blk ul li {
    padding: 1rem 1.5rem;
  }
  .info-important .inner-blk ul li h3 {
    font-size: 1.6rem;
  }
  .info-important .inner-blk ul li h3 a {
    padding-right: 2.5rem;
    font-size: 1.6rem;
  }
  .info-important .inner-blk ul li h3 a::after {
    right: 0.3rem;
  }
}
/* topics
--------------------------------- */
.topics {
  z-index: 9;
  overflow: hidden;
  position: relative;
  padding-top: 14rem;
  padding-bottom: 16rem;
  background-color: #f5f5f5;
}
.topics #custom-cursor {
  z-index: 1000;
  position: absolute;
  width: 12rem;
  height: 12rem;
  pointer-events: none;
  background-image: url("../img/parts-hover-scroll.png");
  background-size: cover;
  display: none; /* デフォルトでは非表示に */
}
.topics h2 {
  position: relative;
  width: 100%;
  max-width: calc(1380px + 3rem);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 5rem;
  font-size: 8rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto sans JP", sans-serif;
}
@media (max-width: 767px) {
  .topics h2 {
    margin-bottom: 1.6rem;
    font-size: 5.2rem;
  }
}
.topics .topics__swiper {
  position: relative;
  margin-left: -3px;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: calc((100% - 7px) / 5) !important;
  height: 54rem;
  transform-origin: right top;
  background-color: #333333;
  transition: width 1s, transform 1s, opacity 0.5s;
  cursor: pointer;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .slide-image {
  overflow: hidden;
  display: block;
  height: 100%;
  transition: height 0.5s;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .slide-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .slide-image img.image-set {
  display: block;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .slide-image img.image-def {
  display: block;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .slide-image img.image-set + img.image-def {
  display: none;
}
@media (hover: hover) and (min-width: 768px) {
  .topics .topics__swiper .swiper-wrapper .swiper-slide:hover .slide-image img {
    transform: scale(1.12);
  }
}
.topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-prev {
  width: calc((100% - 7px) / 5 * 2) !important;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .slide-image {
  height: 37.8rem;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .overlay-text {
  bottom: 18rem;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .overlay-text h3 {
  font-size: 4rem;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .banner-text {
  opacity: 1;
  height: 16.2rem;
  padding: 2.6rem 2.5rem;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .overlay-text {
  position: absolute;
  bottom: 1.8rem;
  left: 2.5rem;
  transition: all 0.5s;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .overlay-text h3 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  transition: all 0.5s;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text {
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  padding: 0 2.5rem;
  background-color: #333333;
  transition: all 0.5s ease;
}
@media (hover: hover) and (min-width: 768px) {
  .topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text:hover {
    opacity: 0.7;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text:hover span.slide-link-icon {
    right: 1.9rem;
  }
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text h5 {
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  border: 0.1rem solid #fff;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text h4 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text span.slide-link-icon {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  width: 3.38rem;
  height: 3.38rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
.topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text span.slide-link-icon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
@media (max-width: 767px) {
  .topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text span.slide-link-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text span.slide-link-icon::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
.topics .topics__swiper-sub {
  display: none;
}
.topics .swiper-pagination {
  position: absolute;
  bottom: 11rem;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  height: fit-content;
}
.topics .swiper-pagination span.swiper-pagination-bullet {
  opacity: 1;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.8rem;
  border-radius: 0;
  border: 0.1rem solid #333;
  background-color: #fff;
}
.topics .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #DC000C;
  border-color: #DC000C;
}
.topics .swiper-button-play {
  position: absolute;
  bottom: 10.2rem;
  left: 50%;
  transform: translateX(16rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  background-color: #fff;
  border: 0.1rem solid #c1c1c2;
  border-radius: 0.4rem;
  cursor: pointer;
}
.topics .swiper-button-play::after {
  position: absolute;
  content: "=";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  font-size: 2.6rem;
  color: #666566;
}
.topics .swiper-button-play.paused::after {
  content: "▶";
  transform: translate(-50%, -50%) rotate(0);
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .topics {
    padding-top: 6rem;
    padding-bottom: 16rem;
  }
  .topics h2 {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .topics .topics__swiper {
    height: 41rem;
    margin-left: -2px;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide {
    position: relative;
    width: 89.7666068223% !important;
    height: 41.1rem;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .slide-image {
    transition: all 0.5s;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 89.7666068223% !important;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .slide-image {
    height: 24.6rem;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .overlay-text {
    top: unset;
    bottom: 5rem;
    opacity: 1;
    display: block;
    transition: none;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .overlay-text h3 {
    font-size: 3.2rem;
    transition: none;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide.swiper-slide-active .banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 16.5rem;
    padding: 1.5rem 2rem;
    opacity: 1;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .overlay-text {
    position: relative;
    top: unset;
    bottom: 5rem;
    left: 2rem;
    display: none;
    opacity: 1;
    transition: none;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .overlay-text h3 {
    font-size: 3.2rem;
    transition: none;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text h5 {
    margin-bottom: 1rem;
    padding: 0.3rem 1rem;
    font-size: 1.6rem;
  }
  .topics .topics__swiper .swiper-wrapper .swiper-slide .banner-text h4 {
    font-size: 1.6rem;
  }
  .topics .topics__swiper-sub {
    display: block;
    margin-top: 1rem;
  }
  .topics .topics__swiper-sub .swiper-wrapper .swiper-slide a img {
    aspect-ratio: 141/118;
  }
  .topics .topics__swiper-sub .swiper-wrapper .swiper-slide .overlay-text h3 {
    margin-top: 0.8rem;
    margin-left: 0.4rem;
    font-size: 1.6rem;
    font-weight: 400;
  }
  .topics .swiper-pagination {
    top: unset;
    bottom: 11rem;
    left: 1.2rem;
    transform: translateX(0);
  }
  .topics .swiper-pagination span.swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 0.8rem;
  }
  .topics .swiper-button-play {
    left: 90%;
    transform: translateX(-50%);
  }
}
/* products
--------------------------------- */
.products {
  z-index: 10;
  position: relative;
  margin-top: -1px;
  padding-bottom: 17.8rem;
  background-color: #f5f5f5;
}
.products .products__inner {
  width: 100%;
  max-width: calc(1380px + 3rem);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.products .products__inner h2 {
  position: relative;
  margin-bottom: 5rem;
  font-size: 8rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto sans JP", sans-serif;
  text-align: right;
}
.products .products__inner h2::before {
  left: unset;
  right: 1rem;
}
@media (max-width: 767px) {
  .products .products__inner h2 {
    margin-bottom: 1.6rem;
    font-size: 5.2rem;
  }
}
.products .products__inner ul.products__tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 3.8rem;
}
.products .products__inner ul.products__tabs li {
  position: relative;
  padding-right: 1.4rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.5s;
}
.products .products__inner ul.products__tabs li::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.7rem;
  height: 0.7rem;
  border-right: 0.1rem solid #333;
  border-bottom: 0.1rem solid #333;
  transition: all 0.5s;
}
.products .products__inner ul.products__tabs li:not(:last-child) {
  margin-right: 6rem;
}
.products .products__inner ul.products__tabs li:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3rem;
  transform: translateY(-50%) rotate(30deg);
  width: 0.1rem;
  height: 3rem;
  background-color: #333;
}
@media (hover: hover) and (min-width: 768px) {
  .products .products__inner ul.products__tabs li:hover {
    opacity: 0.7;
  }
  .products .products__inner ul.products__tabs li:hover::before {
    right: -0.4rem;
  }
}
.products .products__inner .link-item-list {
  display: none;
}
.products .products__inner .products__grid {
  display: grid;
  grid-gap: 2px;
}
.products .products__inner .products__grid .grid-row {
  display: grid;
  grid-gap: 2px;
  grid-template-rows: 48rem;
}
.products .products__inner .products__grid .grid-row.grid-row-1 {
  grid-template-columns: 1fr;
}
.products .products__inner .products__grid .grid-row.grid-row-1 .grid-item .products__grid-contents h3 {
  width: fit-content;
  height: 8.5rem;
}
.products .products__inner .products__grid .grid-row.grid-row-1 .grid-item .products__grid-contents h3 img {
  height: 100%;
  object-fit: contain;
}
.products .products__inner .products__grid .grid-row.grid-row-1 .grid-item .products__grid-hover-contents h3 {
  width: fit-content;
  height: 9rem;
}
.products .products__inner .products__grid .grid-row.grid-row-1 .grid-item .products__grid-hover-contents h3 img {
  height: 100%;
  object-fit: contain;
}
.products .products__inner .products__grid .grid-row.grid-row-2 {
  grid-template-columns: repeat(2, 1fr);
}
.products .products__inner .products__grid .grid-row.grid-row-2 .grid-item .products__grid-contents h3 {
  width: fit-content;
  height: 8.5rem;
}
.products .products__inner .products__grid .grid-row.grid-row-2 .grid-item .products__grid-contents h3 img {
  height: 100%;
  object-fit: contain;
}
.products .products__inner .products__grid .grid-row.grid-row-2 .grid-item .products__grid-hover-contents h3 {
  width: fit-content;
  height: 9rem;
  margin-bottom: 3rem !important;
}
.products .products__inner .products__grid .grid-row.grid-row-2 .grid-item .products__grid-hover-contents h3 img {
  height: 100%;
  width: auto;
}
.products .products__inner .products__grid .grid-row.grid-row-3 {
  grid-template-columns: repeat(3, 1fr);
}
.products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-contents h3 {
  width: fit-content;
  height: 8.5rem;
}
.products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-contents h3 img {
  height: 100%;
  object-fit: contain;
}
.products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-hover-contents h3 {
  width: fit-content;
  height: 9rem;
}
.products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-hover-contents h3 img {
  height: 100%;
  object-fit: contain;
}
.products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-hover-contents p {
  font-size: 2rem !important;
}
.products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-hover-contents .products__grid-links > a:first-child {
  margin-right: 0 !important;
  margin-bottom: 2rem;
}
.products .products__inner .products__grid .grid-row .grid-item {
  overflow: hidden;
  position: relative;
}
.products .products__inner .products__grid .grid-row .grid-item > img {
  width: 100%;
  height: 48rem;
  transition: all 0.5s;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-contents {
  position: absolute;
  bottom: 2.6rem;
  left: 3.4rem;
  width: calc(100% - 6.8rem);
  cursor: pointer;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-contents h4 {
  width: fit-content;
  margin-bottom: 2.3rem;
  padding: 0.4rem 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5333333333);
  border: 0.1rem solid #fff;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn {
  position: absolute;
  bottom: 2.6rem;
  right: 2.5rem;
  width: 3.38rem;
  height: 3.38rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
@media (max-width: 767px) {
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents h3 {
  position: relative;
  bottom: -4rem;
  margin: 9.5rem auto 4.2rem;
  transition: all 0.5s;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents h3.hover {
  bottom: 0;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents > p {
  margin-bottom: 4.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents .products__grid-links a {
  position: relative;
  display: inline-block;
  width: 25rem;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3rem;
  border: 0.1rem solid #fff;
  transition: all 0.5s;
}
.products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents .products__grid-links a:nth-child(1) {
  margin-right: 2.5rem;
}
@media (hover: hover) and (min-width: 768px) {
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents .products__grid-links a:hover {
    color: #333;
    background-color: #fff;
  }
}
@media (hover: hover) and (min-width: 768px) {
  .products .products__inner .products__grid .grid-row .grid-item:hover > img {
    filter: brightness(0.5);
    transform: scale(1.2);
  }
}
.products .products__inner .link-btn {
  width: fit-content;
  margin: 5.8rem auto 0;
}
.products .products__inner .link-btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 1.8rem 8rem 1.9rem;
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  border: 0.1rem solid #333;
  border-radius: 2.7rem;
  transition: all 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .products .products__inner .link-btn a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.products .products__inner .link-btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.products .products__inner .link-btn a::after {
  border-color: #333;
}
@media (hover: hover) and (min-width: 768px) {
  .products .products__inner .link-btn a:hover {
    background-color: #eee;
  }
}

@media (max-width: 767px) {
  .products {
    padding-bottom: 10rem;
  }
  .products .products__inner {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .products .products__inner h2 {
    margin-bottom: 5rem;
    font-size: 8rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 3.2rem;
  }
  .products .products__inner h2::before {
    left: 0;
    right: unset;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .products .products__inner h2 {
    margin-bottom: 1.6rem;
    font-size: 5.2rem;
  }
}
@media (max-width: 767px) {
  .products .products__inner ul.products__tabs {
    display: none;
  }
  .products .products__inner .link-item-list {
    position: relative;
    display: block;
    width: fit-content;
    margin-bottom: 3rem;
    padding-right: 1.6rem;
    font-size: 1.6rem;
  }
  .products .products__inner .link-item-list::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
    width: 0.7rem;
    height: 0.7rem;
    border-right: 0.1rem solid #333;
    border-bottom: 0.1rem solid #333;
  }
  .products .products__inner .products__grid .grid-row {
    grid-template-rows: auto !important;
    grid-template-columns: 1fr !important;
  }
  .products .products__inner .products__grid .grid-row.grid-row-1 .grid-item .products__grid-hover-contents .products__grid-links > a:first-child, .products .products__inner .products__grid .grid-row.grid-row-2 .grid-item .products__grid-hover-contents .products__grid-links > a:first-child, .products .products__inner .products__grid .grid-row.grid-row-3 .grid-item .products__grid-hover-contents .products__grid-links > a:first-child {
    margin-right: auto !important;
  }
  .products .products__inner .products__grid .grid-row .grid-item {
    height: 26rem;
    transition: all 0.5s;
  }
  .products .products__inner .products__grid .grid-row .grid-item > img {
    height: 26rem;
    transition: all 0.5s;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents {
    bottom: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    transition: all 0.5s;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents h4 {
    margin-bottom: 1.3rem;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn {
    position: absolute;
    bottom: 2.6rem;
    right: 2.5rem;
    width: 3.38rem;
    height: 3.38rem;
    border: 0.1rem solid #fff;
    border-radius: 50%;
    transition: all 0.5s;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 0.2rem), -50%) rotate(45deg);
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-contents .products__grid-link-btn::after {
    transform: translate(calc(-50% - 0.1rem), -50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (max-width: 767px) {
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents {
    z-index: -1;
    position: relative;
    opacity: 0;
    transform: translateY(-100%);
    display: block;
    height: 14rem;
    background-color: #333;
    transition: all 0.5s;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents h3 {
    display: none;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents > p {
    display: none;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents .products__grid-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents .products__grid-links a {
    display: block;
    margin: 0 auto;
    background-color: transparent !important;
    font-size: 1.6rem !important;
  }
  .products .products__inner .products__grid .grid-row .grid-item .products__grid-hover-contents .products__grid-links a:nth-child(1) {
    margin-bottom: 1rem !important;
    margin-right: auto !important;
  }
  .products .products__inner .products__grid .grid-row .grid-item.open {
    height: 40rem;
  }
  .products .products__inner .products__grid .grid-row .grid-item.open .products__grid-contents {
    bottom: 15.5rem !important;
  }
  .products .products__inner .products__grid .grid-row .grid-item.open .products__grid-hover-contents {
    z-index: 99;
    opacity: 1;
    transform: translateY(0);
  }
  .products .products__inner .link-btn {
    width: fit-content;
    width: 27.8rem;
    margin: 3rem auto 0;
    padding: 0;
  }
  .products .products__inner .link-btn a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1.8rem 8rem 1.9rem;
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1;
    text-align: center;
    border: 0.1rem solid #333;
    border-radius: 2.7rem;
    transition: all 0.5s;
  }
}
@media (max-width: 767px) and (hover: hover) and (min-width: 768px) {
  .products .products__inner .link-btn a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  .products .products__inner .link-btn a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%) rotate(45deg);
    width: 1rem;
    height: 1rem;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
  }
  .products .products__inner .link-btn a {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.6rem;
  }
}
/* news
--------------------------------- */
.news {
  z-index: 10;
  position: relative;
  margin-top: -1px;
  padding-bottom: 16rem;
  background-color: #f5f5f5;
}
.news .news__inner h2 {
  width: 100%;
  max-width: calc(1380px + 3rem);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(1380px + 3rem);
  padding-right: 0;
  position: relative;
  margin-bottom: 5rem;
  font-size: 8rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto sans JP", sans-serif;
}
@media (max-width: 767px) {
  .news .news__inner h2 {
    margin-bottom: 1.6rem;
    font-size: 5.2rem;
  }
}
.news .news__inner .news__cat-tabs {
  width: 100%;
  max-width: calc(1380px + 3rem);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: calc(1200px + 3rem);
  padding-right: 0;
  display: flex;
  align-items: center;
  column-gap: 4rem;
  margin-bottom: 4rem;
}
.news .news__inner .news__cat-tabs li {
  box-sizing: border-box;
  min-width: 14rem;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  border: 0.1rem solid rgba(51, 51, 51, 0);
  transition: all 0.3s;
}
.news .news__inner .news__cat-tabs li.is-active {
  border-color: #333;
  border-radius: 3rem;
}
.news .news__inner .blk-63 {
  width: 100%;
  max-width: calc(1200px + 3rem);
  margin: 0 auto;
  padding: 0 0;
}
.news .news__inner .blk-63 .blk__inner {
  width: 100%;
}
.news .news__inner .blk-63 .blk__inner ul {
  display: none;
}
.news .news__inner .blk-63 .blk__inner ul.is-active {
  display: block;
}
.news .news__inner .blk-63 .blk__inner ul li {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 1.5rem;
  border-bottom: 0.1rem solid #D0D1D1;
  cursor: pointer;
}
.news .news__inner .blk-63 .blk__inner ul li:first-child {
  border-top: 0.1rem solid #D0D1D1;
}
.news .news__inner .blk-63 .blk__inner ul li .news-left {
  width: 9.1666666667%;
}
.news .news__inner .blk-63 .blk__inner ul li .news-left a {
  display: inline;
  width: 0;
  height: 0;
}
.news .news__inner .blk-63 .blk__inner ul li .news-left img {
  aspect-ratio: 1/1;
}
.news .news__inner .blk-63 .blk__inner ul li .news-left img.image-set {
  display: block;
}
.news .news__inner .blk-63 .blk__inner ul li .news-left img.image-def {
  display: block;
}
.news .news__inner .blk-63 .blk__inner ul li .news-left img.image-set + img.image-def {
  display: none;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right {
  position: relative;
  width: 89.1666666667%;
  padding-right: 9rem;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right .date-cat {
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin-bottom: 1.5rem;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right .date-cat time {
  font-size: 1.6rem;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right .date-cat span {
  padding: 0.1rem 1rem 0.2rem;
  font-size: 1.6rem;
  border: 0.1rem solid #333;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right h3 {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right p {
  font-size: 1.6rem;
}
.news .news__inner .blk-63 .blk__inner ul li .news-right span.link-circle {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 3.4rem;
  height: 3.4rem;
  border: 0.1rem solid #fff;
  border-radius: 50%;
  top: 50%;
  bottom: unset;
  right: 3rem;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
}
.news .news__inner .blk-63 .blk__inner ul li .news-right span.link-circle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
@media (hover: hover) and (min-width: 768px) {
  .news .news__inner .blk-63 .blk__inner ul li {
    transition: all 0.4s;
  }
  .news .news__inner .blk-63 .blk__inner ul li:hover {
    opacity: 0.6;
    opacity: 1;
    background-color: #EFEFEF;
  }
}
.news .news__inner .more-btn {
  max-width: calc(1200px + 3rem);
  margin: 5rem auto 3rem;
  padding: 0 1.5rem;
  text-align: right;
}
.news .news__inner .more-btn > a {
  position: relative;
  padding-right: 18rem;
  font-size: 2.2rem;
  font-weight: 500;
  transition: all 0.5s;
}
.news .news__inner .more-btn > a::before, .news .news__inner .more-btn > a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  height: 0.1rem;
  background-color: #333;
  transition: all 0.5s;
}
.news .news__inner .more-btn > a::before {
  transform: translateY(-50%);
  width: 16rem;
}
.news .news__inner .more-btn > a::after {
  transform: translateY(-50%) rotate(30deg);
  transform-origin: right center;
  width: 1rem;
}
@media (hover: hover) and (min-width: 768px) {
  .news .news__inner .more-btn > a:hover {
    opacity: 0.7;
  }
  .news .news__inner .more-btn > a:hover::before {
    right: -0.4rem;
  }
}
.news .news__inner .link-btn {
  width: fit-content;
  margin: 5.8rem auto 0;
}
.news .news__inner .link-btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 1.8rem 8rem 1.9rem;
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  border: 0.1rem solid #333;
  border-radius: 2.7rem;
  transition: all 0.5s;
}
@media (hover: hover) and (min-width: 768px) {
  .news .news__inner .link-btn a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
.news .news__inner .link-btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
}
.news .news__inner .link-btn a::after {
  border-color: #333;
}
@media (hover: hover) and (min-width: 768px) {
  .news .news__inner .link-btn a:hover {
    background-color: #eee;
  }
}

@media (max-width: 767px) {
  .news {
    padding-bottom: 11.5rem;
  }
  .news .news__inner {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .news .news__inner h2 {
    padding-left: 0;
    margin-bottom: 5rem;
    font-size: 8rem;
    font-weight: 500;
    margin-bottom: 3rem;
  }
  .news .news__inner h2::before {
    left: 0;
    right: unset;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .news .news__inner h2 {
    margin-bottom: 1.6rem;
    font-size: 5.2rem;
  }
}
@media (max-width: 767px) {
  .news .news__inner .news__cat-tabs {
    flex-wrap: wrap;
    column-gap: 0.4rem;
    row-gap: 2rem;
    margin-left: 0;
    margin-bottom: 2rem;
    padding-left: 0;
  }
  .news .news__inner .news__cat-tabs li {
    min-width: 11rem;
    padding: 1rem 1rem;
    font-size: 1.5rem;
    line-height: 1;
  }
  .news .news__inner .blk-63 {
    padding: 0;
  }
  .news .news__inner .blk-63 .blk__inner {
    padding: 0;
  }
  .news .news__inner .blk-63 .blk__inner ul li {
    position: relative;
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-left {
    position: absolute;
    width: 13rem;
    height: 13rem;
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-right {
    position: relative;
    width: 100%;
    padding-right: 0;
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-right .date-cat {
    column-gap: 1rem;
    margin-left: 15rem;
    margin-bottom: 1.5rem;
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-right h3 {
    min-height: 9rem;
    margin-left: 15rem;
    margin-bottom: 1.2rem;
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-right p {
    padding-right: 5rem;
    line-height: 1.75;
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-right span.link-circle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 3.4rem;
    height: 3.4rem;
    border: 0.1rem solid #fff;
    border-radius: 50%;
    top: unset;
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    transform: unset;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .news .news__inner .blk-63 .blk__inner ul li .news-right span.link-circle::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-80%, -50%) rotate(45deg);
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
  }
  .news .news__inner .more-btn {
    margin: 4rem 0 4rem;
    margin-right: 0;
    margin-bottom: 4rem;
  }
  .news .news__inner .more-btn > a {
    padding-right: 9rem;
    font-size: 1.8rem;
  }
  .news .news__inner .more-btn > a::before {
    width: 8rem;
  }
}
@media (max-width: 767px) and (hover: hover) and (min-width: 768px) {
  .news .news__inner .more-btn > a:hover {
    opacity: 0.7;
  }
  .news .news__inner .more-btn > a:hover::before {
    right: -0.4rem;
  }
}
@media (max-width: 767px) {
  .news .news__inner .link-btn {
    width: fit-content;
    width: 27.8rem;
    margin: 4rem auto 0;
    padding: 0;
  }
  .news .news__inner .link-btn a {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1.8rem 8rem 1.9rem;
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1;
    text-align: center;
    border: 0.1rem solid #333;
    border-radius: 2.7rem;
    transition: all 0.5s;
  }
}
@media (max-width: 767px) and (hover: hover) and (min-width: 768px) {
  .news .news__inner .link-btn a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  .news .news__inner .link-btn a::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%) rotate(45deg);
    width: 1rem;
    height: 1rem;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
  }
  .news .news__inner .link-btn a {
    padding: 1.6rem 1rem 1.7rem;
  }
}