@charset "UTF-8";
/*///////////////////////////////////////////////////////
    製品サイト共通設定・スタイル上書き用
///////////////////////////////////////////////////////*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*///////////////////////////////////////////////////////
    変数設定
///////////////////////////////////////////////////////*/
/* custom style */
/*///////////////////////////////////////////////////////
    mixin設定
///////////////////////////////////////////////////////*/
#contents {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
}

.en_redHot {
  font-family: "Red Hat Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

body:not(.en) .zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.component-header .component-header--container .component-header--inner .component-header--nav {
  max-width: 78%;
}

.checkbox {
  position: relative;
  z-index: 1;
}
.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 0;
  height: 0;
}
.checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.checkbox label {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: start;
  line-height: 1;
}
.checkbox label::before, .checkbox label::after {
  box-sizing: border-box;
  content: "";
  flex: 0 0 1.5rem;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background: #F4F4F4;
  border-radius: 0.2rem;
  border: 1px solid #CECECE;
}
.checkbox label::after {
  opacity: 0;
  position: absolute;
  flex: 0 0 0.9rem;
  width: 0.9rem;
  top: 0.3rem;
  left: 0.3rem;
  background: #191919;
  border: none;
  transition: opacity 0.1s;
}

.selectBox {
  position: relative;
  z-index: 1;
}
.selectBox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.6em;
  aspect-ratio: 1/1;
  border: 1px solid #191919;
  border-color: transparent transparent #191919 #191919;
  transform: translateY(-75%) rotate(-45deg);
}
.selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contents {
  padding-top: 6.6rem;
  word-break: break-word;
}
.contents .contents-head {
  padding-top: 1.5rem;
}
.contents .contents-head .page-head--inner {
  padding: 0;
  text-align: left;
}
.contents .contents-head .page-head--inner .page-head--ttl-en {
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  font-weight: 700;
}
.contents .contents-head .page-head--inner .page-head--ttl-ja {
  font-family: "Zen Kaku Gothic New", serif;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
}

@media screen and (min-width: 961px) {
  .contents {
    padding-top: 10rem;
  }
  .contents .inner {
    width: 116.6rem;
  }
  .contents .contents-head {
    margin-bottom: 4.4rem;
    padding-top: 2.5rem;
  }
  .contents .contents-head .page-head--inner {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    gap: 2rem;
    font-size: 1rem;
  }
  .contents .contents-head .page-head--inner .page-head--ttl-en {
    line-height: 0.85;
    font-size: 4.2em;
  }
  .contents .contents-head .page-head--inner .page-head--ttl-ja {
    line-height: 1;
    font-size: 1.6em;
    transform: translateY(-0.25em);
  }
}
.link-btn {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.link-btn .link {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 0.4rem;
  column-gap: 0.4rem;
  min-width: 25rem;
  height: 5rem;
  padding: 0 2.4rem;
  line-height: 1;
  color: #fff;
  font-size: 1.3rem;
  background: #191919;
  border-radius: 2px;
}
.link-btn .link .icon {
  width: 1em;
  transform: translateY(-15%);
}

@media screen and (min-width: 961px) {
  .link-btn {
    gap: 3.6rem;
  }
  .link-btn .link {
    min-width: 26rem;
    height: 6rem;
    font-size: 1.4rem;
  }
}
/* //////////////////////////////////////////////////

ページャーの設定

////////////////////////////////////////////////// */
.wheel_pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.wheel_pager .item {
  width: 2.8rem;
  height: 2.8rem;
}
.wheel_pager .item a, .wheel_pager .item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.wheel_pager .item:not(.side) {
  font-family: "Montserrat", "Zen Kaku Gothic New", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.wheel_pager .item:not(.side) a, .wheel_pager .item:not(.side) span {
  border: 1px solid #191919;
  border-radius: 50%;
}
.wheel_pager .active a, .wheel_pager .active span {
  color: #fff;
  background: #191919;
}

/* //////////////////////////////////////////////////

ローダーの設定

////////////////////////////////////////////////// */
.w-loader {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
}
.w-loader.is-active {
  display: flex;
}
.w-loader .w-loader--icon {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
}

@keyframes mulShdSpin {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}