@charset "UTF-8";
@font-face {
  font-family: "CabinetGrotesk-Variable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/CabinetGrotesk-Variable.woff2") format("woff2"), url("../fonts/CabinetGrotesk-Variable.woff") format("woff"), url("../fonts/CabinetGrotesk-Variable.ttf") format("truetype");
}
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: auto !important;
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: #000001;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
body.is-fixed {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
.loading {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loading__text {
  width: 36.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loading__layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #263e4c;
}
.loading__counter {
  position: absolute;
  right: 6rem;
  bottom: 6rem;
  font-weight: 600;
  font-size: 2rem;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 0.5em;
}
.mt-10 {
  margin-top: 1em;
}
.mt-15 {
  margin-top: 1.5em;
}
.mt-20 {
  margin-top: 2em;
}
.mt-sm {
  margin-top: 3.2rem;
}
.mt-md {
  margin-top: 4.8rem;
}
.mt-lg {
  margin-top: 7.2rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 1em;
}
.mb-15 {
  margin-bottom: 1.5em;
}
.mb-20 {
  margin-bottom: 2em;
}
.mb-sm {
  margin-bottom: 3rem;
}
.mb-md {
  margin-bottom: 5rem;
}
.mb-lg {
  margin-bottom: 10rem;
}

.ms-auto {
  margin-left: auto;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.bg-01 {
  background-color: #f9f9f9;
}
.bg-02 {
  background-color: #2d3c8c;
}
.bg-dark {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bg-dark.is-active {
  background-color: #798389;
  --text-color: #fff;
}
.bg-gray {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.bg-gray.is-active {
  background-color: #eff1f4;
}
.bg-white {
  background-color: #fff;
}

.w-100 {
  width: 100%;
}
.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.w-auto {
  width: auto;
}
.w-sm {
  max-width: 64rem;
}
.w-md {
  max-width: 90rem;
}

.hr-01 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border: none;
  border-top: 1px solid #ccc;
}

* {
  color: var(--text-color, #fff);
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  line-height: 1.875;
}

em, address {
  font-style: normal;
}

.text-serif {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  font-weight: 900;
}
.text-en {
  font-family: "Oswald", sans-serif;
}
.text-unset {
  font-family: initial;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-primary {
  --text-color: #e60012;
}
.text-red {
  color: #e61519;
}
.text-white {
  --text-color: #fff;
}
.text-default {
  --text-color: #41414c;
}
.text-sm {
  font-size: 1.2rem;
}
.text-md {
  font-size: 1.4rem;
}
.text-lg {
  font-size: 2rem;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.ls-0 {
  letter-spacing: 0;
}
.ls-sm {
  letter-spacing: 0.025em;
}
.ls-md {
  letter-spacing: 0.1em;
}
.ls-lg {
  letter-spacing: 0.2em;
}

.sentence-lh2 * {
  line-height: 2;
}

figure, picture {
  margin-bottom: 0;
  display: block;
}

img, iframe {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-border {
  border: 1px solid #ccc;
}
.img-fluid {
  width: var(--width-pc) !important;
}
.img-round {
  overflow: hidden;
  border-radius: 0.8rem;
}

.video {
  width: 100%;
  aspect-ratio: 16/9;
}
.video video {
  width: 100%;
  height: 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

a {
  color: var(--text-color, #fff);
  text-decoration: none;
}
a * {
  color: var(--text-color, #fff);
}
a:not([class]) {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:not([class]):hover {
  opacity: 0.75;
}

[data-link=image] {
  display: block;
  overflow: hidden;
}
[data-link=image] .image {
  display: block;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1;
}
[data-link=image] img, [data-link=image] svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
[data-link=image]:hover {
  opacity: 1 !important;
}
[data-link=image]:hover img, [data-link=image]:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.link-underline {
  text-decoration: underline;
}
.link-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link-external::after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 12"><path d="M2 0h12v10H2Zm11 1H3v8h10Z"/><path d="M9.5 12H0V4.5h1V11h8.5Z"/></svg>');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

ul, ol {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}
ul.space-1 li + li, ol.space-1 li + li {
  margin-top: 0.25em;
}

dl, dt, dd {
  margin-bottom: 0;
}

.list-dot li {
  padding-left: 1em;
  position: relative;
  line-height: 2;
}
.list-dot li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.list-dot li + li {
  margin-top: 1em;
}
.list-circle li {
  margin-left: 1.25em;
  text-indent: -1.25em;
  line-height: 1.875;
}
.list-circle li::before {
  content: "●";
  margin-right: 0.25em;
}
.list-note {
  list-style-type: none;
}
.list-note li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.875;
}
.list-note li::before {
  content: "※";
}
.list-number {
  padding-left: 1.5em;
  list-style-type: decimal;
}
.list-number li {
  line-height: 1.875;
}
.list-numzero {
  counter-reset: count;
}
.list-numzero li {
  margin-left: 1.75em;
  text-indent: -1.75em;
  line-height: 1.875;
}
.list-numzero li::before {
  content: counter(count, decimal-leading-zero) ".";
  margin-right: 0.25em;
  counter-increment: count;
}

.d-grid {
  display: grid;
}
.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.d-block {
  display: block;
}

.gap-sm {
  gap: 1.2rem;
}
.gap-md {
  gap: 1.6rem;
}
.gap-lg {
  gap: 2rem;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .tabOnly {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .text-md-center {
    text-align: center;
  }
  .mx-pc-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .mb-pc-0 {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
  body {
    font-size: 3.2rem;
  }
  .img-fluid {
    width: var(--width-sp) !important;
  }
  .mt-lg {
    margin-top: 6rem !important;
  }
  .mt-md {
    margin-top: 4rem !important;
  }
  .mt-sm {
    margin-top: 3rem !important;
  }
  .mb-lg {
    margin-bottom: 6rem !important;
  }
  .mb-md {
    margin-bottom: 4rem !important;
  }
  .mb-sm {
    margin-bottom: 3rem !important;
  }
  .mx-sp-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .text-sp-center {
    text-align: center;
  }
  .loading__text {
    width: 24rem;
  }
}
.main {
  position: relative;
}
.main__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.main__bg video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.main__block {
  margin-bottom: 14rem;
}
.main__block[class*=bg-] {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.main__block[class*=bg-].py-md {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.main__container {
  max-width: 139.2rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 9.6rem;
  padding-left: 9.6rem;
}
.main__container + .main__container {
  margin-top: 14rem;
}
.main__container.is-full {
  max-width: 100%;
  padding-right: 3rem;
  padding-left: 3rem;
}

.common__contact--btn {
  width: 100%;
  height: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.6rem;
}
.common__contact--btn--icon {
  width: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}
.common__contact--btn--icon svg {
  width: 2.7rem;
}
.common__contact--btn--text {
  letter-spacing: 0;
  font-weight: 700;
}
.common__contact--btn--text span {
  letter-spacing: 0;
  font-size: 2.8rem;
}
.common__headline {
  margin-bottom: 16rem;
}
.common__headline .heading__01 {
  margin-bottom: 0;
}
.common__headline .heading__01--label {
  font-size: 9.6rem;
}
.common__headline .heading__01--main {
  font-size: 2rem;
}
.common__headline--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.common__headline--visual {
  width: 100%;
  max-width: 57.6rem;
  overflow: hidden;
  border-radius: 0.8rem;
  aspect-ratio: 1/0.625;
}
.common__headline--navi {
  margin-top: 4.8rem;
  padding: 3.6rem 5.6rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.common__headline--navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  font-size: 1.4rem;
}
.common__headline--navi a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.common__headline--navi a::before {
  content: "";
  width: 0.6rem;
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  aspect-ratio: 1;
}
.common__headline--navi a:hover {
  opacity: 1;
  --text-color: #e60012;
}
.common__headline--navi .is-current {
  pointer-events: none;
  --text-color: #e60012;
}
.common__recruit {
  position: relative;
  z-index: 2;
}
.common__recruit--column {
  padding-top: 21.6rem;
  padding-bottom: 21.6rem;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.common__recruit--column::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  z-index: -1;
  background-color: rgba(65, 65, 76, 0.2);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.common__recruit--column:hover::before {
  opacity: 1;
}
.common__recruit--catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.common__recruit--catch .text-en {
  font-size: 8.8rem;
  line-height: 1;
}
.common__recruit--catch .text-jp {
  margin-top: 1em;
  letter-spacing: 0.3em;
  font-size: 2.4rem;
  line-height: 1.6;
}
.common__recruit--bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 769px) {
  .common__contact--column {
    display: grid;
    grid-template-columns: 1fr 50.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .common__contact--header .heading__01 {
    margin-bottom: 4.8rem;
  }
  .common__contact--header p {
    font-size: 2rem;
  }
  .common__navi--item .image img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .common__navi--item:hover .image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 7.6rem;
  }
  .main__block {
    margin-bottom: 5.6rem;
  }
  .main__block[class*=bg-] {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
  .main__container {
    padding-right: 3.6rem;
    padding-left: 3.6rem;
  }
  .main__container + .main__container {
    margin-top: 20rem;
  }
  .common__contact--header p {
    font-size: 1.8rem;
  }
  .common__contact--btn {
    height: 10.4rem;
    margin-top: 5.6rem;
  }
  .common__contact--btn--icon {
    width: 4rem;
  }
  .common__contact--btn--text {
    font-size: 1.2rem;
  }
  .common__contact--btn--text span {
    font-size: 2rem;
  }
  .common__headline {
    margin-bottom: 8rem;
  }
  .common__headline .heading__01--label {
    font-size: 4.8rem;
  }
  .common__headline .heading__01--main {
    font-size: 1.4rem;
  }
  .common__headline--column {
    display: block;
  }
  .common__headline--visual {
    margin-top: 8rem;
  }
  .common__headline--navi {
    margin-top: 0;
    padding: 4rem 0;
    border-top: 0;
  }
  .common__headline--navi ul {
    display: grid;
    gap: 0.75em 0;
    grid-template-columns: repeat(2, 1fr);
  }
  .common__headline--navi a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .common__recruit--column {
    padding-top: 10rem;
    padding-bottom: 10rem;
    position: relative;
  }
  .common__recruit--catch .text-en {
    font-weight: 600;
    font-size: 5.6rem;
  }
  .common__recruit--catch .text-jp {
    letter-spacing: 0.15em;
    font-size: 1.6rem;
  }
  .common__recruit .arrow-01 {
    position: absolute;
    right: 0;
    bottom: 2rem;
  }
}
.breadcrumbs {
  margin-top: 4.8rem;
  margin-bottom: 12rem;
  font-size: 1.2rem;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25em 0.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs__inner > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs__inner > span:not(:last-child)::after {
  content: "";
  width: 0.8rem;
  height: 1px;
  margin-top: 2px;
  display: inline-block;
  background-color: #000;
}
.breadcrumbs__inner * {
  letter-spacing: 0;
}
.breadcrumbs__inner .current-item {
  color: rgba(65, 65, 76, 0.5);
}

@media screen and (min-width: 769px) {
  .breadcrumbs .main__container {
    max-width: 100%;
    padding: 0 6.4rem;
  }
  .breadcrumbs + .common__headline {
    margin-top: -1.1em;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 2.8rem;
    margin-bottom: 8rem;
    font-size: 1rem;
  }
}
.btn__01 {
  width: 16rem;
  height: 6.2rem;
  margin-top: 3.6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.btn__01--border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.btn__01--border-mask {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.btn__01:hover .header__menuBtn--border-mask {
  -webkit-transition: -webkit-transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  transition: -webkit-transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  transition: transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  transition: transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1), -webkit-transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn__01[data-status=disabled] {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  pointer-events: none;
  --text-color: #59595a;
}
.btn__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn__grid.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.btn__grid.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.btn-gradient {
  background: linear-gradient(87deg, #5c87ce 4.32%, #5065b8 37.67%, #2d3c8c 81.06%);
}

.link[target=_blank] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.link[target=_blank]::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'><path fill='%23333333' d='M12 6.615C11.8011 6.615 11.6103 6.69402 11.4697 6.83467C11.329 6.97532 11.25 7.16609 11.25 7.365V12.75C11.25 12.9489 11.171 13.1397 11.0303 13.2803C10.8897 13.421 10.6989 13.5 10.5 13.5H2.25C2.05109 13.5 1.86032 13.421 1.71967 13.2803C1.57902 13.1397 1.5 12.9489 1.5 12.75V4.5C1.5 4.30109 1.57902 4.11032 1.71967 3.96967C1.86032 3.82902 2.05109 3.75 2.25 3.75H7.635C7.83391 3.75 8.02468 3.67098 8.16533 3.53033C8.30598 3.38968 8.385 3.19891 8.385 3C8.385 2.80109 8.30598 2.61032 8.16533 2.46967C8.02468 2.32902 7.83391 2.25 7.635 2.25H2.25C1.65326 2.25 1.08097 2.48705 0.65901 2.90901C0.237053 3.33097 0 3.90326 0 4.5V12.75C0 13.3467 0.237053 13.919 0.65901 14.341C1.08097 14.7629 1.65326 15 2.25 15H10.5C11.0967 15 11.669 14.7629 12.091 14.341C12.5129 13.919 12.75 13.3467 12.75 12.75V7.365C12.75 7.16609 12.671 6.97532 12.5303 6.83467C12.3897 6.69402 12.1989 6.615 12 6.615ZM14.94 0.465C14.8639 0.281738 14.7183 0.136106 14.535 0.0599999C14.4448 0.0215692 14.348 0.00118499 14.25 0H9.75C9.55109 0 9.36032 0.0790176 9.21967 0.21967C9.07902 0.360322 9 0.551088 9 0.75C9 0.948912 9.07902 1.13968 9.21967 1.28033C9.36032 1.42098 9.55109 1.5 9.75 1.5H12.4425L4.7175 9.2175C4.6472 9.28722 4.59141 9.37017 4.55333 9.46157C4.51525 9.55296 4.49565 9.65099 4.49565 9.75C4.49565 9.84901 4.51525 9.94704 4.55333 10.0384C4.59141 10.1298 4.6472 10.2128 4.7175 10.2825C4.78722 10.3528 4.87017 10.4086 4.96157 10.4467C5.05296 10.4847 5.15099 10.5043 5.25 10.5043C5.34901 10.5043 5.44704 10.4847 5.53843 10.4467C5.62983 10.4086 5.71278 10.3528 5.7825 10.2825L13.5 2.5575V5.25C13.5 5.44891 13.579 5.63968 13.7197 5.78033C13.8603 5.92098 14.0511 6 14.25 6C14.4489 6 14.6397 5.92098 14.7803 5.78033C14.921 5.63968 15 5.44891 15 5.25V0.75C14.9988 0.651992 14.9784 0.555167 14.94 0.465Z'/></svg>");
}

@media screen and (max-width: 768px) {
  .btn__01 {
    width: 26rem;
    height: 10rem;
    margin-top: 6.4rem;
    font-size: 2.8rem;
  }
}
.heading__01 {
  margin-bottom: 2.6rem;
}
.heading__01:has(.heading__01--main) {
  margin-bottom: 4.8rem;
}
.heading__01 > span {
  display: block;
}
.heading__01--label {
  margin-bottom: 1em;
  font-family: "CabinetGrotesk-Variable", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.heading__01--label::before {
  content: "( ";
}
.heading__01--label::after {
  content: " )";
}
.heading__01--main {
  font-size: 5.4rem;
  line-height: 1.4;
}
.heading__02 {
  margin-bottom: 2em;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .heading__01 {
    margin-bottom: 8rem;
  }
  .heading__01--label {
    font-size: 2.4rem;
  }
  .heading__01--main {
    font-size: 6.4rem;
  }
  .heading__01--text:last-of-type {
    padding-bottom: 0.5em;
  }
}
.js-slider01-control .swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.js-slider01-control .swiper-button {
  height: auto;
  margin: 0;
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
}
.js-slider01-control .swiper-button::after {
  color: #000;
  font-size: 2rem;
}
.js-slider01-control .swiper-pause {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.js-slider01-control .swiper-pause::before, .js-slider01-control .swiper-pause::after {
  content: "";
  width: 0.4rem;
  height: 100%;
  background-color: var(--theme-color, #2d3c8c);
}
.js-slider01-control .swiper-pause.paused::before {
  width: 2rem;
  height: 1rem;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.js-slider01-control .swiper-pause.paused::after {
  display: none;
}

.slider__01--card .pic {
  margin-bottom: 1.6rem;
  display: block;
  overflow: hidden;
  aspect-ratio: 296/400;
}
.slider__01--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__01--card .pic.asp-auto {
  aspect-ratio: auto;
}
.slider__01--card .tag {
  padding: 0 0.8rem;
  display: inline-block;
  border-radius: 0.3rem;
  background-color: var(--theme-color, #2d3c8c);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}
.slider__01--card .tag + .name {
  margin-top: 0.8rem;
}
.slider__01--card .name {
  font-weight: 500;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  white-space: wrap;
  -webkit-line-clamp: 2;
}
.slider__01 .swiper {
  overflow: visible !important;
}
.slider__01 .swiper-wrapper {
  height: auto;
}
.slider__01 .swiper-slide {
  width: 29.6rem;
}
.slider__01--control {
  margin-top: 8rem;
  padding: 2rem 0;
}
.slider__02--card .pic {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/0.5;
}
.slider__02--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__02 .swiper {
  overflow: visible !important;
}
.slider__02 .swiper-wrapper {
  height: auto;
}
.slider__02 .swiper-slide {
  width: 83.2rem;
}
.slider__02--control {
  margin-top: 4rem;
}
.slider__03--card .pic {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/0.68;
}
.slider__03--card .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider__03--card .pic + p {
  margin-top: 2.4rem;
}
.slider__03 .swiper {
  overflow: visible !important;
}
.slider__03 .swiper-wrapper {
  height: auto;
}
.slider__03 .swiper-slide {
  width: 36rem;
}
.slider__03--control {
  margin-top: 10rem;
}

/* Swiperページネーション進捗バー */
.swiper-pagination-progress {
  width: 10rem;
  height: 2px;
  position: relative;
  display: inline-block;
  background-color: #fff;
  vertical-align: middle;
}

.swiper-pagination-progress::after {
  content: "";
  width: var(--swiper-progress, 0%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2d3c8c;
  -webkit-transition: width linear;
  transition: width linear;
}

@-webkit-keyframes swiper-progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes swiper-progress-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .slider__01 {
    position: relative;
  }
  .slider__01 .btn__01 {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .slider__01--control {
    margin-top: 2.5rem;
    padding: 0;
  }
  .slider__01 .btn__01 {
    margin-top: 4rem;
  }
  .slider__02 .swiper-slide {
    width: 100%;
  }
  .slider__02--control {
    margin-top: 3.5rem;
  }
}
input::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
input::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  vertical-align: bottom;
}
textarea::-webkit-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-ms-input-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea::-moz-placeholder {
  color: var(--placeholder-color, #ccc);
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.modal__content {
  width: 100rem;
  max-width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  border-radius: 0.8rem;
  background-color: #fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.modal__content--inner {
  max-height: calc(100vh - 10rem);
  padding: 5.6rem;
  overflow-y: auto;
}
.modal__close {
  width: 4.8rem;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: block;
  border-radius: 0.8rem;
  background-color: #e60012;
  aspect-ratio: 1;
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 50%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.js-modal__trigger:hover {
  cursor: pointer;
}
.js-bg__layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.js-bg__layer.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .modal__content--inner {
    padding: 2rem 2rem 4rem;
  }
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__title {
  width: 6.4rem;
  font-size: 1rem;
  line-height: 1;
}
.header__title img {
  width: 100%;
}
.header__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__naviMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.4rem;
}
.header__naviMenu li {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
}
.header__naviMenu a {
  letter-spacing: 0.5em;
}
.header__naviCart {
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
}
.header__naviLang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.25em 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0;
}
.header__naviLang::after {
  content: "";
  width: 0.3em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  aspect-ratio: 1;
}
.header__copyright {
  font-size: 1.2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
}
.header__menuBtn {
  width: 6.8rem;
  height: 4.6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
  font-size: 1.2rem;
}
.header__menuBtn--border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header__menuBtn--border-mask {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__menuBtn:hover .header__menuBtn--border-mask {
  -webkit-transition: -webkit-transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  transition: -webkit-transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  transition: transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  transition: transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1), -webkit-transform 1700ms cubic-bezier(0.12, 0.86, 0.3, 1);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header .custom-select {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: inline-block;
}
.header .custom-select-trigger {
  width: 10rem;
  padding: 0;
  position: relative;
  display: block;
  background: #333631;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 3rem;
  cursor: pointer;
}
.header .custom-select-trigger::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: calc(50% - 0.6rem);
  left: 0.75rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20252.9%20252.9%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M243.7%2C173.78c5.93-14.63%2C9.2-30.6%2C9.2-47.33s-3.22-32.45-9.05-46.98c-.09-.3-.21-.58-.35-.86C224.6%2C32.54%2C179.25%2C0%2C126.45%2C0S28.2%2C32.61%2C9.34%2C78.77c-.07.15-.14.31-.19.47C3.25%2C93.84%2C0%2C109.77%2C0%2C126.45s3.21%2C32.42%2C9.04%2C46.94c.1.34.24.66.4.97%2C18.92%2C46.04%2C64.24%2C78.54%2C117.01%2C78.54s98.29-32.65%2C117.14-78.84c.04-.09.08-.18.11-.28ZM11.24%2C126.45c0-13.94%2C2.49-27.32%2C7.05-39.7h43.21c-2.15%2C12.44-3.31%2C25.77-3.31%2C39.7s1.16%2C27.26%2C3.31%2C39.7H18.29c-4.56-12.38-7.05-25.75-7.05-39.7ZM69.43%2C126.45c0-13.87%2C1.29-27.26%2C3.63-39.7h47.77v79.39h-47.77c-2.34-12.44-3.63-25.83-3.63-39.7ZM177.38%2C75.51h-45.3V11.83c19.6%2C4.08%2C36.63%2C29.22%2C45.3%2C63.69ZM120.83%2C11.83v63.69h-45.3c8.67-34.46%2C25.7-59.6%2C45.3-63.69ZM120.83%2C177.39v63.69c-19.6-4.08-36.63-29.22-45.3-63.69h45.3ZM132.07%2C241.07v-63.69h45.31c-8.67%2C34.47-25.7%2C59.6-45.31%2C63.69ZM132.07%2C166.15v-79.39h47.77c2.34%2C12.44%2C3.63%2C25.83%2C3.63%2C39.7s-1.29%2C27.26-3.63%2C39.7h-47.77ZM191.4%2C86.75h43.21c4.56%2C12.38%2C7.05%2C25.75%2C7.05%2C39.7s-2.49%2C27.32-7.05%2C39.7h-43.21c2.15-12.44%2C3.31-25.77%2C3.31-39.7s-1.16-27.26-3.31-39.7ZM229.77%2C75.51h-40.63c-5.82-25.12-15.86-45.79-28.57-59.12%2C30.32%2C9.42%2C55.31%2C31.05%2C69.2%2C59.12ZM92.34%2C16.4c-12.71%2C13.32-22.75%2C34-28.57%2C59.12H23.13c13.89-28.06%2C38.88-49.7%2C69.21-59.12ZM23.13%2C177.39h40.63c5.82%2C25.12%2C15.86%2C45.79%2C28.57%2C59.12-30.32-9.42-55.31-31.05-69.21-59.12ZM160.56%2C236.5c12.71-13.32%2C22.76-34%2C28.57-59.12h40.63c-13.89%2C28.06-38.88%2C49.7-69.2%2C59.12Z%22%2F%3E%3C%2Fsvg%3E");
  background-size: cover;
}
.header .custom-select-trigger::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 1rem;
  display: block;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.header .custom-select .custom-options {
  min-width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  pointer-events: none;
}
.header .custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.header .custom-select .custom-option {
  padding: 0;
  position: relative;
  display: block;
  background-color: #40403f;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .custom-select .custom-option:nth-of-type(even) {
  background-color: #333;
}

@media screen and (min-width: 769px) {
  .header__main {
    height: 100vh;
    padding: 3rem 2.4rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header__title {
    margin-right: -0.5em;
  }
  .header__menuBtn {
    position: absolute;
    top: 18rem;
    left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 4rem 3.2rem;
  }
  .header__title {
    width: 20rem;
  }
  .header__navi {
    display: none;
  }
  .header__naviCart {
    display: none;
  }
  .header__naviLang {
    display: none;
  }
  .header__menuBtn {
    width: 11.8rem;
    height: 8rem;
    font-size: 2.2rem;
  }
  .header .custom-select {
    top: 5.6rem;
    right: 18rem;
  }
  .header .custom-select-trigger {
    width: 16rem;
    font-size: 2rem;
    line-height: 4.8rem;
  }
  .header .custom-select-trigger::before {
    width: 2rem;
    height: 2rem;
    top: calc(50% - 1rem);
    left: 1.2rem;
  }
  .header .custom-select-trigger::after {
    width: 0.8rem;
    height: 0.8rem;
    top: calc(50% - 0.4rem);
    right: 1rem;
  }
  .header .custom-select .custom-option {
    font-size: 2rem;
    line-height: 4.8rem;
  }
}
.footer {
  padding: 2rem 3rem;
  font-size: 1.2rem;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6.4rem;
}
.footer__naviList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
}
.footer__lang a {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: 20rem;
    margin-bottom: 1rem;
  }
  .footer__inner {
    position: relative;
    gap: 3.6rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    font-size: 2.4rem;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__title {
    width: 100%;
    position: relative;
  }
  .footer__navi {
    width: 100%;
  }
  .footer__naviList {
    gap: 0.5em 1.25em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__navi--cart {
    position: absolute;
    bottom: 3.6rem;
    left: 0;
    font-size: 2rem;
  }
  .footer__copyright {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 1.8rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer__lang a {
    color: #a6a5a5;
  }
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.bushido__hero {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bushido__heroInner {
  position: relative;
}
.bushido__heroTitle {
  height: 100%;
  position: absolute;
  right: 9.6rem;
  bottom: -10rem;
  z-index: 2;
  letter-spacing: 0.1em;
  font-size: 4rem;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.bushido__heroTitle--inneer {
  position: absolute;
  top: 0;
  right: 0;
}
.bushido__heroTitle--box {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.bushido__heroTitle--box.active {
  opacity: 1;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.bushido__heroTitle--box.slide-out {
  opacity: 0;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.bushido__heroTitle--boxInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bushido__heroTitle span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.2em;
  line-height: 1;
}
.bushido__heroTitle span span {
  display: inline-block;
  opacity: 0;
}
.bushido__heroText {
  display: grid;
  gap: 4.8rem 7.4rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  font-size: 1.4rem;
  grid-auto-flow: column;
}
.bushido__heroText--item p {
  line-height: 2.5714285714;
}
.bushido__heroVisual {
  width: 56rem;
  position: absolute;
  top: calc(50% - 4rem);
  right: 20rem;
  z-index: -1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bushido__heroVisual::before {
  content: "";
  width: 100%;
  height: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 1)), to(rgba(0, 0, 1, 0)));
  background: linear-gradient(180deg, rgb(0, 0, 1) 0%, rgba(0, 0, 1, 0) 100%);
}
.bushido__heroVisual::after {
  content: "";
  width: 100%;
  height: 6.4rem;
  position: absolute;
  top: 50%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.19)), color-stop(30%, rgb(0, 0, 0)), color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.19) 0%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.bushido__heroVisual img {
  width: 100%;
}
.bushido__movie .main__container {
  max-width: 100%;
  padding: 0;
}
.bushido__movie--wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.bushido__movie--wrap video {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: inset(var(--mask-top, 25%) var(--mask-right, 25%) var(--mask-bottom, 25%) var(--mask-left, 25%));
          clip-path: inset(var(--mask-top, 25%) var(--mask-right, 25%) var(--mask-bottom, 25%) var(--mask-left, 25%));
}
.bushido__movie--wrap.mask-revealed video {
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}
.bushido__lead--title {
  width: 19.6rem;
  margin: 0 auto 5.6rem;
}
.bushido__lead--inner {
  position: relative;
  z-index: 2;
}
.bushido__lead--text {
  text-align: center;
  --text-color: #f2f1f1;
}
.bushido__lead--text + .bushido__lead--text {
  margin-top: 20rem;
}
.bushido__lead--text p {
  line-height: 2.6875;
}
.bushido__lead--text p + p {
  margin-top: 10rem;
}
.bushido__lead--image {
  position: absolute;
  z-index: -1;
}
.bushido__lead--image.item01 {
  width: 52.5rem;
  top: 3.6rem;
  right: calc(50% + 12rem);
}
.bushido__lead--image.item02 {
  width: 50.7rem;
  top: 46rem;
  left: calc(50% + 12rem);
  opacity: 0.75;
}
.bushido__productLead {
  padding-top: 20rem;
  position: relative;
  z-index: 2;
}
.bushido__productLead--text {
  --text-color: #eaeaea;
}
.bushido__productLead--text p {
  line-height: 2.375;
}
.bushido__productLead .btn__01 {
  margin-top: 6.4rem;
}
.bushido__productLead--bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.23;
  aspect-ratio: 1200/800;
}
.bushido__productDetail {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.bushido__productDetail + .bushido__productDetail {
  margin-top: 3rem;
}
.bushido__productDetailThumbnail--item {
  background-color: #000;
}
.bushido__productDetailThumbnail--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bushido__productDetailMain {
  background-color: #011532;
}
.bushido__productDetailMain--visual {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #111;
}
.bushido__productDetailMain--visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bushido__productDetailMain--info {
  min-height: 30rem;
  padding: 0 6rem 3rem;
  position: relative;
  z-index: 2;
}
.bushido__productDetailMain--title {
  margin-top: -2rem;
  text-align: center;
}
.bushido__productDetailMain--title .heading__01--label {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
.bushido__productDetailMain--text {
  text-align: center;
  font-size: 1.4rem;
}
.bushido__productDetailMain--note {
  margin-top: 2em;
  text-align: right;
  font-size: 1.2rem;
}
.bushido__productOrder--info {
  max-width: 94rem;
  margin: -5.4rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bushido__productOrder--headlineTitle {
  font-size: 6.8rem;
  line-height: 1;
}
.bushido__productOrder--headline p {
  margin-top: 0.5em;
  font-size: 1.2rem;
}
.bushido__productOrder--price {
  text-align: right;
}
.bushido__productOrder--priceMain {
  font-size: 4.4rem;
  line-height: 1;
}
.bushido__productOrder--priceLabel {
  font-size: 1.2rem;
}
.bushido__productOrder--confirm {
  max-width: 100rem;
  margin: 1.6rem auto 0;
  padding: 2.8rem;
  background-color: #1d1d1d;
}
.bushido__productOrder--confirm dt {
  margin-bottom: 0.5em;
  border-bottom: 1px solid #59595a;
  font-size: 2rem;
}
.bushido__productOrder--confirm dd {
  font-size: 1.2rem;
}
.bushido__productOrder--confirmTitle {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
.bushido__productOrder--confirmTitle::before {
  content: "■";
  margin-right: 0.5em;
}
.bushido__productOrder--confirmTitle:not(:first-child) {
  margin-top: 1em;
}
.bushido__productOrder--doui {
  margin-top: 3.6rem;
  text-align: center;
}
.bushido__productOrder--douiButton {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.75em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bushido__productOrder--douiButton input[type=checkbox] {
  width: 1.25em;
  height: 1.25em;
  border: 1px solid;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.bushido__productOrder--douiButton input[type=checkbox]:checked + .bushido__productOrder--douiButtonText::before {
  opacity: 1;
  visibility: visible;
}
.bushido__productOrder--douiButtonText::before {
  content: "";
  width: 0.5em;
  height: 1em;
  position: absolute;
  top: -0.2em;
  left: 0.1em;
  border-right: 3px solid;
  border-bottom: 3px solid;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.bushido__featuresList {
  overflow: visible !important;
}
.bushido__featuresList .swiper-slide {
  width: 28rem;
}
.bushido__featuresList--navigation {
  margin-bottom: 2rem;
  position: absolute;
  right: 0;
  bottom: 100%;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.8rem;
}
.bushido__featuresList--button {
  width: 5rem;
  height: 0.8rem;
  position: relative;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.bushido__featuresList--button::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.bushido__featuresList--buttonNext {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.bushido__featuresItem {
  text-decoration: underline;
}
.bushido__featuresItem--visual {
  background-color: #212121;
  aspect-ratio: 280/388;
}
.bushido__featuresItem--visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bushido__featuresItem p {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.bushido__newsList {
  border-top: 1px solid;
  font-size: 1.4rem;
}
.bushido__newsItem {
  padding: 3.2rem 0.5em;
  display: grid;
  grid-template-columns: 13.8rem 1fr;
  border-bottom: 1px solid;
}
.bushido__newsItem--content {
  margin-top: 1em;
  display: none;
}
.bushido__news--noresult {
  padding: 2.4rem 0.5em;
  font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
  .bushido__hero::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: radial-gradient(circle 30rem at var(--mouse-x, 50%) var(--mouse-y, 50%), transparent 0%, transparent 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .bushido__productDetail {
    min-height: 200vh;
    padding: 3rem 0;
    display: grid;
    gap: 0 3rem;
    grid-template-columns: 1fr 1fr;
  }
  .bushido__productDetailThumbnail--item + .bushido__productDetailThumbnail--item {
    margin-top: 3rem;
  }
  .bushido__productDetailMain {
    height: calc(100vh - 6rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 36rem;
  }
  .bushido__hero {
    height: auto;
    margin-bottom: 39.6rem;
    overflow: visible;
  }
  .bushido__heroText {
    margin-right: -25%;
    gap: 3.2rem 15rem;
    grid-template-columns: repeat(2, 1fr);
    font-size: 2.4rem;
    opacity: 0.25;
    grid-auto-flow: unset;
  }
  .bushido__heroTitle {
    right: 5rem;
    bottom: -16rem;
    font-size: 5rem;
  }
  .bushido__heroVisual {
    width: 64.3rem;
    top: 23rem;
    right: calc(50% - 40rem);
    -webkit-transform: none;
            transform: none;
  }
  .bushido__heroVisual::after {
    content: none;
  }
  .bushido__movie {
    margin-bottom: 20rem;
  }
  .bushido__movie--wrap {
    aspect-ratio: 750/500;
  }
  .bushido__lead--title {
    width: 23.8rem;
    margin-bottom: 12rem;
  }
  .bushido__lead--text {
    padding: 0 5rem;
  }
  .bushido__lead--text + .bushido__lead--text {
    margin-top: 15rem;
  }
  .bushido__lead--text p {
    line-height: 1.875;
  }
  .bushido__lead--text p + p {
    margin-top: 15rem;
  }
  .bushido__lead--text:first-child {
    padding-top: 41rem;
  }
  .bushido__lead--image.item01 {
    top: 0;
    right: auto;
    left: -2rem;
  }
  .bushido__lead--image.item02 {
    top: 136rem;
    right: -9rem;
    left: auto;
  }
  .bushido__product {
    margin-bottom: 27rem;
  }
  .bushido__productOrder--headlineTitle {
    font-size: 9rem;
  }
  .bushido__productOrder--headline p {
    margin-top: 3rem;
    font-size: 2.2rem;
  }
  .bushido__productOrder--info {
    max-width: 100%;
    margin: -4.5rem auto 0;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bushido__productOrder--priceMain {
    margin-top: 4.8rem;
    font-size: 6rem;
  }
  .bushido__productOrder--priceLabel {
    margin-top: 0.5rem;
    font-size: 2.4rem;
  }
  .bushido__productOrder--confirm {
    margin: 2.8rem auto 0;
    padding: 4.8rem 3.2rem;
  }
  .bushido__productOrder--confirm dt {
    margin-bottom: 4rem;
    padding-bottom: 0.2em;
    font-size: 3rem;
  }
  .bushido__productOrder--confirm dd {
    font-size: 2.4rem;
  }
  .bushido__productOrder--confirmTitle {
    font-size: 2.8rem;
  }
  .bushido__features {
    margin-bottom: 18.8rem;
  }
  .bushido__features .heading__01 {
    margin-bottom: 6.4rem;
  }
  .bushido__featuresItem p {
    margin-top: 4.5rem;
    font-size: 2.8rem;
  }
  .bushido__featuresList .swiper-slide {
    width: 39.6rem;
    margin-right: 3.2rem;
  }
  .bushido__featuresList--navigation {
    margin-bottom: 6.4rem;
  }
  .bushido__newsItem {
    grid-template-columns: 1fr;
  }
  .bushido__newsItem--date {
    margin-bottom: 0.5em;
    font-size: 2.4rem;
  }
  .bushido__newsItem--title {
    margin-bottom: 0.5em;
    font-size: 2.4rem;
  }
  .bushido__newsItem--content {
    font-size: 2.4rem;
  }
  .bushido__news--noresult {
    font-size: 2.4rem;
  }
  .bushido__productLead {
    padding-top: 16rem;
  }
  .bushido__productLead--text p {
    line-height: 1.875;
  }
  .bushido__productLead--text .btn__01 {
    margin-top: 10rem;
  }
  .bushido__productLead--bg {
    width: auto;
    margin: 0 -3.6rem;
    top: 15rem;
    bottom: auto;
  }
  .bushido__productDetail + .bushido__productDetail {
    margin-top: 12rem;
  }
  .bushido__productDetailThumbnail {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bushido__productDetailThumbnail--item {
    width: 37rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .bushido__productDetailMain--info {
    padding: 0 3.2rem 6rem;
  }
  .bushido__productDetailMain--title {
    margin-top: -0.75rem;
  }
  .bushido__productDetailMain--title .heading__01--label {
    font-size: 2.4rem;
  }
  .bushido__productDetailMain--text {
    font-size: 2.8rem;
  }
  .bushido__productDetailMain--note {
    font-size: 2.2rem;
  }
}
[lang=en] *, [lang=fr] *, [lang=es] *, [lang=de] *, [lang=ko] *, [lang=it] *, [lang=zh-CN] *, [lang=zh-TW] * {
  word-break: break-all;
}
[lang=en] body, [lang=fr] body, [lang=es] body, [lang=de] body, [lang=ko] body, [lang=it] body, [lang=zh-CN] body, [lang=zh-TW] body {
  font-family: "CabinetGrotesk-Variable", sans-serif;
}
[lang=en] .text-serif:not([data-stt-ignore]), [lang=fr] .text-serif:not([data-stt-ignore]), [lang=es] .text-serif:not([data-stt-ignore]), [lang=de] .text-serif:not([data-stt-ignore]), [lang=ko] .text-serif:not([data-stt-ignore]), [lang=it] .text-serif:not([data-stt-ignore]), [lang=zh-CN] .text-serif:not([data-stt-ignore]), [lang=zh-TW] .text-serif:not([data-stt-ignore]) {
  font-family: "CabinetGrotesk-Variable", sans-serif;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */