@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600&display=swap");
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  background-origin: border-box;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 0;
}

html {
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type="file"])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type="file"]) {
  cursor: auto;
}

:where(input[type="file"])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }

  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type="file"])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  text-align: center;
  user-select: none;
}
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  text-align: center;
  user-select: none;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
  cursor: not-allowed;
}

::-moz-selection {
  background: #f7f7f7;
  color: #333;
}

::selection {
  background: #f7f7f7;
  color: #333;
}

::-moz-selection {
  background: #f7f7f7;
  color: #333;
}

:root, html, body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans", "Koburina Gothic W3 JIS2004", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 62.5%;
  letter-spacing: 0.05em;
  line-height: 180%;
  width: 100%;
}

body {
  background: #131313;
  color: #f0f0f0;
  font-size: 14px;
  font-size: 1.4rem;
}

main > *:nth-child(odd):not(.topBtn) {
  background: #333;
}

a {
  color: #f0f0f0;
  position: relative;
  text-decoration: none;
  transition: all 0.5s ease;
}
a img {
  transition: all 0.8s ease-out;
}
a img:hover {
  opacity: 0.7;
}

li {
  list-style: none;
}

.js-show-b {
  -webkit-transform: translate(0, 4rem);
  opacity: 0;
  transform: translate(0, 4rem);
  transition: all 1000ms;
}
.js-show-b.is-show-b {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}

.js-show-l {
  -webkit-transform: translate(-4rem, 0);
  opacity: 0;
  transform: translate(-4rem, 0);
  transition: all 1000ms;
}
.js-show-l.is-show-l {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}

.js-show-r {
  -webkit-transform: translate(4rem, 0);
  opacity: 0;
  transform: translate(4rem, 0);
  transition: all 1000ms;
}
.js-show-r.is-show-r {
  -webkit-transform: translate(0, 0);
  opacity: 1;
  transform: translate(0, 0);
}

.l-content {
  display: flex;
  flex: 0 1 1520;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1520;
}
@media only screen and (max-width: 640px) {
  .l-content {
    flex-direction: column;
  }
}

.l-main {
  flex: 0 2 auto;
  margin: 0 20px;
  max-width: 865px;
}

.l-sub {
  flex: 0 0 275px;
  margin: 0 20px;
  margin-left: 40px;
}
@media only screen and (max-width: 640px) {
  .l-sub {
    flex: 1 1 100%;
    margin: 10px;
  }
}

.l-column {
  flex: 0 1 1520px;
  margin: 0 auto;
  max-width: 1520px;
  padding: 0 4.1666666667vw;
}
@media only screen and (max-width: 640px) {
  .l-column {
    padding: 0 3.6rem;
  }
}
@media only screen and (max-width: 640px) {
  .l-column {
    flex: 0 1 auto;
    width: auto;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .l-column {
    padding: 0 5rem;
    width: auto;
  }
}

.l-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .l-row {
    flex-direction: column;
  }
}

.l-halfColumn {
  flex: 1 0 0px;
  margin-right: 40px;
}
.l-halfColumn:nth-child(even) {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .l-halfColumn {
    display: block;
    flex: 1 1 100%;
    margin-right: 0;
    max-width: none;
  }
}

.l-quaterColumn {
  flex: 1 0 0px;
  margin-right: 40px;
}
.l-quaterColumn:nth-child(4n) {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .l-quaterColumn {
    flex: 1 1 100%;
    margin: 0;
    max-width: none;
  }
}

.l-tripartitionColumn {
  flex: 1 0 0px;
}
@media only screen and (max-width: 640px) {
  .l-tripartitionColumn {
    flex: 1 1 100%;
    margin: 0;
    max-width: none;
  }
}
.l-tripartitionColumn:last-child {
  margin-right: 0;
}

.l-halfTile {
  display: flex;
  flex: 1 1 50%;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  .l-halfTile {
    flex-basis: 100%;
  }
}

.l-fitImg {
  max-height: 100%;
  max-width: 100%;
}

.sectionLabel {
  align-items: center;
  color: #E4EDF2;
  display: flex;
  flex: 1 1 auto;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  justify-content: center;
  line-height: 1;
  padding-bottom: 80px;
  padding-top: 20px;
}
@media only screen and (max-width: 640px) {
  .sectionLabel {
    font-size: 3rem;
    padding: 0 2rem 2.5rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .sectionLabel {
    font-size: 3.5rem;
    padding: 0 2rem 4rem;
  }
}

.logo {
  display: inline-block;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 45px;
  font-weight: lighter;
  font-weight: 300;
  padding: 10px 0;
}
@media only screen and (max-width: 640px) {
  .logo {
    font-size: 30px;
  }
}

.articleLabelL {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .articleLabelL {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .articleLabelL {
    font-size: 3.5rem;
  }
}

.articleLabelM {
  color: #aaa;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5em;
  text-align: center;
  z-index: 50;
}
@media only screen and (max-width: 640px) {
  .articleLabelM {
    line-height: 1.5em;
  }
}

.articleLabelS {
  color: #aaa;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 1.4rem;
  margin: 0.5rem 0 0;
}

.articleTxt {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8em;
}
@media only screen and (max-width: 640px) {
  .articleTxt {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }
}

.linkButton {
  color: #333;
  display: inline-block;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1em;
  position: relative;
  text-align: center;
  transition: 0.3s;
  z-index: 2;
}
.linkButton::after {
  background: #151515;
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
}
.linkButton:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
.linkButton:hover {
  color: #f0f0f0;
}
.linkButton:hover:before {
  -webkit-transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left top;
}

.topBtn {
  -webkit-transform-origin: left center;
  -webkit-transform: rotate(135deg);
  border: 0.2rem solid;
  border-color: transparent transparent #f0f0f0 #f0f0f0;
  bottom: 1.5rem;
  font-size: 9px;
  height: 2rem;
  position: fixed;
  right: 1.5rem;
  transform: rotate(135deg);
  transform-origin: left center;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  width: 2rem;
}
@media only screen and (min-width: 1024px) {
  .topBtn {
    bottom: 3rem;
    right: 3rem;
  }
}
.topBtn:hover:before {
  opacity: 0.8;
}

@media only screen and (min-width: 1024px) {
  .nonePc {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  .noneSp {
    display: none;
  }
}

@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .noneTl {
    display: none;
  }
}

.BtnArr {
  background: #151515;
  border: 1px solid #fff;
  color: #fff;
  color: #fff;
  display: block;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  position: relative;
  text-align: left;
  width: 200px;
}
.BtnArr__arr {
  background-color: #fff;
  bottom: 1em;
  height: 1px;
  position: absolute;
  right: 24px;
  transition: all 0.5s ease;
  width: 35px;
}
.BtnArr__arr:before {
  -webkit-transform: rotate(40deg);
  background-color: #fff;
  bottom: 3px;
  content: "";
  height: 1px;
  position: absolute;
  right: -1px;
  transform: rotate(40deg);
  transition: all 0.5s ease;
  width: 10px;
}
.BtnArr__wrap {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  height: 100%;
  letter-spacing: 0.08em;
  line-height: 3em;
  padding-left: 18px;
  position: relative;
  text-transform: capitalize;
  width: 100%;
  z-index: 1;
}
.BtnArr:hover .BtnArr__arr, .BtnArr:hover .BtnArr__arr:before {
  -webkit-transform: translateX(1rem);
  background-color: #fff;
  transform: translateX(1rem);
  transition: all 0.5s ease;
}
.BtnArr:hover .BtnArr__arr:before {
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

.linkUnderline {
  color: #151515;
  display: inline-block;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  padding: 0 1px;
  position: relative;
  text-decoration: none;
  transition: color ease 0.3s;
}
.linkUnderline::before, .linkUnderline::after {
  background-color: #ccc;
  content: "";
  height: 0.1rem;
  position: absolute;
}
.linkUnderline::before {
  bottom: -0.1rem;
  left: 0;
  transition: width ease 0.4s;
  width: 0%;
}
.linkUnderline::after {
  bottom: -0.1rem;
  left: 0;
  transition: all ease 0.6s;
  width: 100%;
}
.linkUnderline:hover::before {
  background-color: #ddd;
  width: 100%;
}
.linkUnderline:hover::after {
  background-color: #ddd;
  left: 100%;
  transition: all ease 0.2s;
  width: 0%;
}

.link {
  position: relative;
  transition: 0.3s;
}
.link::after {
  background-color: #E4EDF2;
  bottom: 0.5em;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  width: 100%;
}
.link:hover::after {
  bottom: -5px;
  opacity: 1;
}

/*--------------------------------------------------------------------------
   OPENIG
---------------------------------------------------------------------------*/
.Opening {
  -webkit-animation: Opening 4s ease-in-out both;
  animation: Opening 4s ease-in-out both;
  color: #f0f0f0;
  position: relative;
  z-index: 9999;
}
.Opening__layer {
  -webkit-animation: HiddenLayer 1s 3s ease-in-out both;
  animation: HiddenLayer 1s 3s ease-in-out both;
  background: #131313;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9998;
}
.Opening__logoArea {
  -webkit-transform: translate(-50%, -50%);
  -webkit-animation: logo 3s ease-in-out both;
  animation: logo 3s ease-in-out both;
  left: 50%;
  opacity: 0;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
@media only screen and (max-width: 640px) {
  .Opening__logoArea {
    padding: 0 4rem;
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Opening__logoArea {
    padding: 0 4rem;
    width: 100%;
  }
}
.Opening__logoWrap {
  -webkit-transform: translateY(0);
  text-align: center;
  transform: translateY(0);
}
.Opening__logo {
  margin: 0 auto 8rem;
  width: 12.3958333333vw;
}
.Opening__logo svg {
  fill: #f0f0f0;
  color: transparent;
}
@media only screen and (max-width: 640px) {
  .Opening__logo {
    width: 60%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Opening__logo {
    width: 30%;
  }
}
.Opening__ttl {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 640px) {
  .Opening__ttl {
    font-size: 3.2rem;
  }
}
.Opening__subttl {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}

@-webkit-keyframes Opening {
  100% {
    visibility: hidden;
  }
}

@keyframes Opening {
  100% {
    visibility: hidden;
  }
}
@-webkit-keyframes HiddenLayer {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes HiddenLayer {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes logo {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logo {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* header */
.Header__logo {
  left: 3rem;
  position: fixed;
  top: 3rem;
  width: 8rem;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .Header__logo {
    left: 1rem;
    position: absolute;
    top: 1rem;
  }
}

.Footer {
  background: #131313;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-weight: 600;
}
@media only screen and (max-width: 640px) {
  .Footer {
    margin: 0 1rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Footer {
    padding: 0 3rem;
  }
}
.Footer__copy {
  font-size: 1.2rem;
  padding: 2rem 0;
  text-align: center;
}

.Section {
  margin: 0 auto;
  padding: 20rem 0;
}
@media only screen and (max-width: 640px) {
  .Section {
    overflow: hidden;
    padding: 8rem 0;
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Section {
    overflow: hidden;
    padding: 16rem 0;
    width: 100%;
  }
}

/*--------------------------------------------------------------------------
   メニュー
---------------------------------------------------------------------------*/
/* ------------------------------------------------ drawer menu */
.drawer-menu {
  background: #333;
  box-sizing: border-box;
  height: 100%;
  opacity: 0;
  padding: 0 5rem;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  transition: all 0.5s;
  visibility: hidden;
  width: 0;
}
.drawer-menu__ttl {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  padding: 0 0 3rem;
}
.drawer-menu__body {
  margin: 8rem auto;
  opacity: 0;
  padding: 1rem 0;
  text-align: left;
}
.drawer-menu__border::before {
  background: #f0f0f0;
  content: "";
  display: block;
  height: 0.1rem;
  margin: 3rem 0 1.5rem 2rem;
  width: 5rem;
}
.drawer-menu__hpLink a {
  color: #f0f0f0;
  display: block;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.5rem 0 0 2rem;
  position: relative;
}
.drawer-menu__hpLink a:hover {
  opacity: 0.6;
}

/* ------------------------------------------------ checkbox */
.check {
  display: none;
}

/* ------------------------------------------------ menu button */
.menu-btn {
  cursor: pointer;
  display: block;
  display: block;
  font-size: 10px;
  height: 30px;
  position: fixed;
  right: 4rem;
  text-align: center;
  top: 3rem;
  width: 30px;
  z-index: 10;
}
@media only screen and (max-width: 640px) {
  .menu-btn {
    right: 10px;
    top: 10px;
  }
}
.menu-btn__text {
  bottom: -15px;
  color: #000;
  display: block;
  left: 0;
  margin: auto;
  opacity: 1;
  position: absolute;
  right: 0;
  transition: all 0.5s;
  visibility: visible;
}
@media only screen and (min-width: 1024px) {
  .menu-btn:hover .menu-btn__text {
    color: #999;
  }
}

.bar {
  -webkit-transform-origin: left top;
  background: #f0f0f0;
  display: block;
  height: 0.1rem;
  left: 0;
  position: absolute;
  top: 0;
  transform-origin: left top;
  transition: all 0.5s;
  width: 4rem;
}
@media only screen and (max-width: 640px) {
  .bar {
    width: 3rem;
  }
}
.bar.middle {
  opacity: 1;
  top: 10px;
}
.bar.bottom {
  -webkit-transform-origin: left bottom;
  top: 10px;
  transform-origin: left bottom;
}

.close-menu {
  background: rgba(0, 0, 0, 0);
  cursor: url(../images/cross.svg), auto;
  height: 100vh;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition-delay: 0s;
  transition-duration: 0.3s;
  transition-property: all;
  visibility: hidden;
  width: 100%;
}

/* ------------------------------------------------ checked */
.check:checked ~ .drawer-menu {
  -webkit-transform: none;
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
  visibility: visible;
  width: 40rem;
  z-index: 5;
}
@media only screen and (max-width: 640px) {
  .check:checked ~ .drawer-menu {
    width: 90%;
  }
}
.check:checked ~ .drawer-menu .drawer-menu__body {
  opacity: 1;
}

.check:checked ~ .drawer-menu .drawer-menu__inner {
  opacity: 1;
  transition: all 0.5s 0.5s;
  visibility: visible;
}

.check:checked ~ .contents {
  transition-delay: 0s;
}

.check:checked ~ .menu-btn .menu-btn__text {
  opacity: 0;
  visibility: hidden;
}

.check:checked ~ .menu-btn .bar.top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 35px;
}

.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
  -webkit-transform: rotate(-45deg);
  top: 23px;
  transform: rotate(-45deg);
  width: 35px;
}

.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition-delay: 0.3s;
  transition-duration: 1s;
  visibility: visible;
  z-index: 3;
}

#androidBrowser_alert {
  background: rgba(21, 21, 21, 0.8);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#androidBrowser_alert div.wrap {
  background: #313131;
  left: 50%;
  margin-left: -160px;
  margin-top: -150px;
  max-width: 320px;
  position: fixed;
  top: 50%;
}

#androidBrowser_alert div.con {
  border: solid 1px #fff;
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  padding: 20px;
}

#androidBrowser_alert a.go2chrome {
  background: #2492c8;
  color: #f0f0f0;
  display: block;
  padding: 5px;
  text-align: center;
}

.Hero {
  color: #f0f0f0;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  position: relative;
}
.Hero__inner {
  background: var(--bg-img) 50% 70%/cover;
  position: relative;
}
.Hero__inner::before {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.Hero__inner::after {
  aspect-ratio: var(--bg-aspect-ratio);
  background: var(--bg-img) no-repeat center center/auto auto;
  background-size: contain;
  content: "";
  display: block;
  height: clamp(80rem, 50vh, 100rem);
  margin: 0 auto;
  position: inherit;
  width: 100vw;
  z-index: 1;
}
@media only screen and (max-width: 1920px) {
  .Hero__inner::after {
    height: clamp(50rem, 50vh, 100rem);
  }
}
@media only screen and (max-width: 640px) {
  .Hero__inner {
    aspect-ratio: var(--bg-aspect-ratio);
    height: auto;
  }
  .Hero__inner::before {
    display: none;
  }
  .Hero__inner::after {
    display: none;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Hero__inner {
    aspect-ratio: var(--bg-aspect-ratio);
    height: auto;
  }
  .Hero__inner::before {
    display: none;
  }
  .Hero__inner::after {
    display: none;
  }
}
.Hero__logoWrap {
  -webkit-transform: translateY(10rem);
  position: relative;
  transform: translateY(10rem);
}
@media only screen and (max-width: 640px) {
  .Hero__logoWrap {
    margin: 3rem auto;
  }
}
.Hero__logo {
  margin: 0 auto 20%;
  width: clamp(35rem, calc( 390 / 1920 * 100vw), 40rem);
}
.Hero__logo svg {
  fill: #f0f0f0;
}
@media only screen and (max-width: 640px) {
  .Hero__logo {
    margin: 0 auto 6rem;
    width: 60%;
  }
}
.Hero__ttl {
  font-size: clamp(3.5rem, 2vw, 5.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 0 3.2rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .Hero__ttl {
    font-size: 3.2rem;
    margin: 0 0 2rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Hero__ttl {
    font-size: 4.8rem;
  }
}
.Hero__subttl {
  font-size: 1vw;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .Hero__subttl {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Hero__subttl {
    font-size: 2.5rem;
  }
}
.Hero .swiper-container {
  width: 50%;
  z-index: -9999;
}
@media only screen and (max-width: 640px) {
  .Hero .swiper-container {
    height: 50%;
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Hero .swiper-container {
    height: 100%;
  }
}
.Hero .swiper-container2 {
  height: 100vh;
  width: 50%;
  z-index: -9999;
}
@media only screen and (max-width: 640px) {
  .Hero .swiper-container2 {
    height: 50%;
    width: 100%;
  }
}
.Hero .swiper-wrapper {
  overflow: hidden;
}
.Hero .swiper-inner {
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
}
.Item {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  padding: 10rem 0 20rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .Item {
    padding: 8rem 0;
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .Item__inner {
    width: 100%;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__inner {
    width: 100%;
  }
}
.Item__grid {
  -ms-grid-columns: 57.8947368421% 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "areaA areaB" "areaC areaB" "areaD areaD";
  grid-template-columns: 57.8947368421% 1fr;
}
@media only screen and (max-width: 640px) {
  .Item__grid {
    -ms-grid-columns: 1fr;
    grid-template-areas: "areaA" "areaB" "areaC" "areaD";
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__grid {
    -ms-grid-columns: 1fr;
    grid-template-areas: "areaA" "areaB" "areaC" "areaD";
    grid-template-columns: 1fr;
  }
}
.Item__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  grid-area: areaA;
  line-height: 1.6;
  margin: 0 0 4rem;
}
@media only screen and (max-width: 640px) {
  .Item__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    font-size: 1.8rem;
    grid-area: areaB;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    font-size: 3.2rem;
    grid-area: areaB;
    margin: 0 0 8rem;
  }
}
.Item__txt {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  font-size: 1.6rem;
  grid-area: areaC;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .Item__txt {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    font-size: 1.6rem;
    grid-area: areaD;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__txt {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    font-size: 1.6rem;
    grid-area: areaD;
  }
}
.Item__logoWrap {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: areaB;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .Item__logoWrap {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    flex-direction: row;
    grid-area: areaA;
    justify-content: flex-start;
    margin: 0 0 6rem 0;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__logoWrap {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    flex-direction: row;
    grid-area: areaA;
    justify-content: flex-start;
    margin: 0 0 6rem 0;
  }
}
.Item__logos {
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 640px) {
  .Item__logos {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__logos {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.Item__logo {
  width: 18rem;
}
@media only screen and (max-width: 640px) {
  .Item__logo {
    width: 13rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__logo {
    width: 16rem;
  }
}
.Item__logo + .Item__logo {
  margin: 0 0 0 4.8rem;
  width: 19rem;
}
@media only screen and (max-width: 640px) {
  .Item__logo + .Item__logo {
    margin: 0 0 0 2rem;
    width: 12rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__logo + .Item__logo {
    margin: 0 0 0 4rem;
    width: 15rem;
  }
}
.Item__imageWrap {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: areaD;
  margin: 20rem 0 0;
}
@media only screen and (max-width: 640px) {
  .Item__imageWrap {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: areaC;
    margin: 0 0 6rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__imageWrap {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: areaC;
    margin: 0 0 6rem;
  }
  @media only screen and (max-width: 640px){
  .Item__title {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .Item__title {
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  .Item__title {
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  .Item__txt {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  .Item__txt {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .Item__txt {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .Item__logoWrap {
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  .Item__logoWrap {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .Item__logoWrap {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .Item__imageWrap {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .Item__imageWrap {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  .Item__imageWrap {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  }
  @media only screen and (min-width: 640px) and (max-width: 1024px){
  .Item__title {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .Item__title {
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  .Item__title {
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  .Item__txt {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  .Item__txt {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .Item__txt {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .Item__logoWrap {
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  .Item__logoWrap {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .Item__logoWrap {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .Item__imageWrap {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  .Item__imageWrap {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  .Item__imageWrap {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
  }
  }
}
.Item__image {
  margin: 0 auto 10rem;
  width: 66.3157894737%;
}
@media only screen and (max-width: 640px) {
  .Item__image {
    margin: 0 0 5rem;
    width: auto;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Item__image {
    margin: 0 0 5rem;
    width: auto;
  }
}
.Item__credit {
  text-align: center;
}
.Item__credit:not(:last-of-type) {
  margin: 0 0 2rem;
}
.Item__credit a {
  color: #f0f0f0;
  font-size: 1.6rem;
}

.Point__block {
  -ms-grid-columns: 49.4736842105% 9.4736842105% 41.0526315789%;
  -webkit-column-gap: 9.4736842105%;
  -moz-column-gap: 9.4736842105%;
  column-gap: 9.4736842105%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 49.4736842105% 41.0526315789%;
  margin: 0 0 20rem;
}
.Point__block:last-of-type {
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .Point__block {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 0 8rem;
    position: relative;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__block {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 0 16rem;
    position: relative;
  }
}
.Point__block:nth-of-type(odd) {
  -ms-grid-columns: 41.0526315789% 49.4736842105%;
  grid-template-columns: 41.0526315789% 49.4736842105%;
}
.Point__block:nth-of-type(odd) .Point__titleArea {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media only screen and (max-width: 640px) {
  .Point__block:nth-of-type(odd) .Point__titleArea {
    -webkit-transform: rotate(90deg) translate(100%, 0);
    -webkit-transform-origin: right top;
    left: auto;
    right: 0;
    transform: rotate(90deg) translate(100%, 0);
    transform-origin: right top;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__block:nth-of-type(odd) .Point__titleArea {
    -webkit-transform: rotate(90deg) translate(100%, 0);
    -webkit-transform-origin: right top;
    left: auto;
    right: 0;
    transform: rotate(90deg) translate(100%, 0);
    transform-origin: right top;
  }
}
.Point__block:nth-of-type(odd) .Point__txt {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
.Point__block:nth-of-type(odd) .Point__imageArea {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
@media only screen and (max-width: 640px) {
  .Point__block:nth-of-type(odd) .Point__imageArea {
    padding: 0 4rem 0 0;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__block:nth-of-type(odd) .Point__imageArea {
    padding: 0 6.4rem 0 0;
  }
}
.Point__titleArea {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  align-items: flex-end;
  display: flex;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 640px) {
  .Point__titleArea {
    -webkit-transform: rotate(90deg) translateY(-100%);
    -webkit-transform-origin: left top;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: left top;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__titleArea {
    -webkit-transform: rotate(90deg) translateY(-100%);
    -webkit-transform-origin: left top;
    left: 0;
    position: absolute;
    top: 0;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: left top;
  }
}
.Point__title {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
}
@media only screen and (max-width: 640px) {
  .Point__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__title {
    font-size: 3.2rem;
  }
}
.Point__title span {
  font-weight: 300;
}
.Point__title:after {
  background: #f0f0f0;
  content: "";
  display: block;
  height: 0.2rem;
  margin: 5rem 0;
  width: 14rem;
}
@media only screen and (max-width: 640px) {
  .Point__title:after {
    display: none;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__title:after {
    display: none;
  }
}
.Point__txt {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  font-size: 1.8rem;
  grid-column: 2/3;
  grid-row: 2/3;
  line-height: 1.8;
}
@media only screen and (max-width: 640px) {
  .Point__txt {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__txt {
    font-size: 1.6rem;
    line-height: 2.2;
  }
}
.Point__imageArea {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  grid-row: 1/3;
}
@media only screen and (max-width: 640px) {
  .Point__imageArea {
    flex: 0 0 auto;
    margin: 0 0 4rem;
    padding: 0 0 0 4rem;
    width: auto;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__imageArea {
    flex: 0 0 auto;
    margin: 0 0 4rem;
    padding: 0 0 0 6.4rem;
    width: auto;
  }
}
.Point__headImg {
  flex: 0 0 56.8421052632%;
  padding: 0 2rem 0 0;
  width: 56.8421052632%;
}
@media only screen and (max-width: 640px) {
  .Point__headImg {
    flex: 0 0 calc(100% - 4rem);
    margin: 0 0 3rem;
    padding: 0;
    width: calc(100% - 4rem);
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__headImg {
    flex: 0 0 100%;
    margin: 0 0 3rem;
    padding: 0;
    width: 100%;
  }
}
.Point__explanation {
  flex: 0 0 41.0526315789%;
  width: 41.0526315789%;
}
@media only screen and (max-width: 640px) {
  .Point__explanation {
    flex: 0 0 calc(100% - 4rem);
    margin: 0 0 1rem;
    width: calc(100% - 4rem);
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Point__explanation {
    flex: 0 0 100%;
    margin: 0 0 1rem;
    width: 100%;
  }
}
.Point__ttl {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 2rem;
}
.Point__ul {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 640px) {
  .Point__ul {
    justify-content: space-evenly;
  }
}
.Point__li {
  flex: 0 0 32.6315789474%;
  margin: 0 0 10rem;
  width: 32.6315789474%;
}
@media only screen and (max-width: 640px) {
  .Point__li {
    flex: 0 0 calc(50% - 1.5rem);
    margin: 0 0 5rem;
    width: calc(50% - 1.5rem);
  }
}
.Point__num {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin: 3rem 0 2.5rem;
}
.Point__dl {
  background: #f0f0f0;
  border-radius: 0.2rem;
  font-size: 1.2rem;
  margin: 2rem 0 0;
  padding: 1rem;
}
.Point__dt {
  font-weight: 600;
}
.Point__dd {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.Point__dd:last-child {
  margin: 0;
}

/*--------------------
  Style
--------------------*/
.Style {
  display: -ms-grid;
  display: grid;
}
.Style__block {
  margin: 0 auto 30rem;
  position: relative;
  width: 66.3157894737%;
}
.Style__block:last-of-type {
  margin: 0 auto;
}
@media only screen and (max-width: 640px) {
  .Style__block {
    margin: 0 auto 11.6rem;
    width: auto;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Style__block {
    margin: 0 auto 16rem;
    width: auto;
  }
}
.Style__title {
  -webkit-transform: rotate(90deg) translate(0, 100%);
  -webkit-transform-origin: left top 0;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  left: 0;
  position: absolute;
  top: 0;
  transform: rotate(90deg) translate(0, 100%);
  transform-origin: left top 0;
}
@media only screen and (max-width: 640px) {
  .Style__title {
    -webkit-transform: rotate(0) translate(0, 0);
    font-size: 2rem;
    margin: 0 0 3rem;
    position: inherit;
    transform: rotate(0) translate(0, 0);
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Style__title {
    -webkit-transform: rotate(0) translate(0, 0);
    font-size: 3.2rem;
    margin: 0 0 3rem;
    position: inherit;
    transform: rotate(0) translate(0, 0);
  }
}
.Style__creditArea {
  margin: 30px 0 0;
}
.Style__creditItem {
  font-family: Helvetica;
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0 0 8px;
}
@media only screen and (max-width: 640px) {
  .Style__creditItem {
    font-size: 1.4rem;
  }
}
.Style__creditItem a {
  color: #f0f0f0;
}
.Style .swiper-pagination {
  margin: 2rem 0 0;
  position: initial;
  text-align: right;
}
@media only screen and (max-width: 640px) {
  .Style .swiper-pagination {
    text-align: center;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Style .swiper-pagination {
    text-align: center;
  }
}
.Style .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  align-items: center;
  background: inherit;
  display: inline-flex;
  font-family: Helvetica;
  font-weight: bold;
  height: 30px;
  justify-content: center;
  margin: 0 4px;
  opacity: 1;
  width: 30px;
}
.Style .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #aaa;
  color: #f0f0f0;
}

.Shoplist {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-weight: 600;
}
.Shoplist__ttl {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0 auto 5rem;
}
@media only screen and (max-width: 640px) {
  .Shoplist__ttl {
    margin: 0 0 5rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Shoplist__ttl {
    margin: 0 3rem 5rem;
  }
}
.Shoplist__inner {
  justify-content: center;
}
.Shoplist__block {
  align-items: center;
  border-top: 1px solid #ccc;
  margin: 0 auto 5rem;
  padding: 5rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .Shoplist__block {
    margin: 0 0 5rem;
    width: auto;
  }
  .Shoplist__block:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Shoplist__block {
    margin: 0 auto 10rem;
    width: 90%;
  }
}
.Shoplist__block:last-of-type {
  border-bottom: 1px solid #ccc;
  padding: 5rem 0;
}
.Shoplist__overview {
  flex: 0 0 calc(50% - 2rem);
  width: calc(50% - 2rem);
}
@media only screen and (max-width: 640px) {
  .Shoplist__overview {
    flex: 0 0 100%;
    width: 100%;
  }
}
.Shoplist__imgArea {
  flex: 0 0 calc(50% - 0.5rem);
  width: calc(50% - 0.5rem);
}
@media only screen and (max-width: 640px) {
  .Shoplist__imgArea {
    flex: 0 0 100%;
    margin: 3rem 0 0;
    width: 100%;
  }
}
.Shoplist__shopName {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 1.8rem;
  line-height: 1em;
  padding-bottom: 0.5rem;
}
.Shoplist__shopKana {
  font-size: 1rem;
}
@media only screen and (max-width: 640px) {
  .Shoplist__shopKana {
    display: block;
    margin: 0.5rem 0 0 0;
  }
}
.Shoplist__shopinfo {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  margin: 2rem auto 1.5rem;
}
.Shoplist__shopinfo dt {
  align-items: center;
  color: #aaa;
  display: flex;
  flex: 0 0 8rem;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  margin: 0.5rem 0 0 0;
  max-width: 8rem;
}
.Shoplist__shopinfo dd {
  flex: 0 0 calc(100% - 8rem);
  line-height: 1.4;
  margin: 0.5rem 0 0 0;
  width: calc(100% - 8rem);
}
.Shoplist__map {
  font-style: italic;
  margin-left: 0.5rem;
}
.Shoplist__sns ul {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 20px;
}
.Shoplist__sns li {
  margin-right: 10px;
  width: 1.8rem;
}
.Shoplist__sns li svg {
  fill: #f0f0f0;
}
.Shoplist a {
  color: #f0f0f0;
}
.Shoplist a:hover {
  opacity: 0.7;
}

.Archive {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
}
.Archive__title {
  margin: 0 0 8rem;
}
.Archive__ul {
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: flex-start;
}
.Archive__li {
  flex: 0 0 23.1578947368%;
  margin: 0 2.4561403509% 3rem 0;
  width: 23.1578947368%;
}
.Archive__li:nth-of-type(4n) {
  margin: 0 0 10rem 0;
}
@media only screen and (max-width: 640px) {
  .Archive__li {
    flex: 0 0 auto;
    margin: 0 0 8rem;
    width: auto;
  }
  .Archive__li:nth-of-type(4n) {
    margin: 0 0 8rem;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Archive__li {
    flex: 0 0 48.4210526316%;
    margin: 0 3.1578947368% 8rem 0;
    width: 48.4210526316%;
  }
  .Archive__li:nth-of-type(2n) {
    margin: 0 0 8rem 0;
  }
}
.Archive__brand {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0;
}
.Archive__itemName {
  margin: 0 0 1rem 0;
}
.Archive__date {
  color: #aaa;
  font-size: 1.2rem;
}

.Brand__logo {
  margin: 0 auto 8rem;
  width: 30rem;
}
@media only screen and (max-width: 640px) {
  .Brand__logo {
    margin: 0 auto 4rem;
    width: 20rem;
  }
}
.Brand__desc {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 auto 2rem;
  width: 49.4736842105%;
}
@media only screen and (max-width: 640px) {
  .Brand__desc {
    margin: 0 0 2rem;
    width: auto;
  }
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
  .Brand__desc {
    margin: 0 auto 2rem;
    width: auto;
  }
}
.Brand__btn {
  margin: 6rem auto 0;
  text-align: center;
}
.Brand__btn a {
  color: #f0f0f0;
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.Video__head {
  margin: 0 0 5rem;
}
.Video__body {
  margin: 0 auto 40px;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.Video__frame {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.Media {
  font-family: "Helvetica Neue", "Open Sans", sans-serif;
}
.Media__body {
  border-top: 0.1rem solid #eee;
  padding: 5rem 0 0;
}
.Media__body dt {
  font-size: 2.4rem;
  font-weight: 600;
}
.Media__body dd {
  border-bottom: 0.2rem solid #eee;
  font-size: 1.6rem;
  margin: 2rem 0 5rem;
  padding: 0 0 5rem;
}
.Media__link {
  color: #f0f0f0;
  font-size: 1.4rem;
  margin-top: 2rem;
}

/**
 * Swiper 5.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2019
 */
@font-face {
  font-family: "swiper-icons";
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  width: 100%;
  z-index: 1;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-slide {
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  /* For Firefox */
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  z-index: 10;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  left: auto;
  right: 10px;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: $color-wht;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  -webkit-transform: translate3d(0, 0, 0);
  position: absolute;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: 300ms opacity;
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  position: relative;
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  background: #000;
  border-radius: 100%;
  display: inline-block;
  height: 8px;
  opacity: 0.2;
  width: 8px;
}

button.swiper-pagination-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  -webkit-transform: translate3d(0px, -50%, 0);
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateY(-50%);
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateX(-50%);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform: scale(0);
  -webkit-transform-origin: left top;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 4px;
  left: 0;
  top: 0;
  width: 100%;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 100%;
  left: 0;
  top: 0;
  width: 4px;
}

.swiper-pagination-white {
  --swiper-pagination-color: $color-wht;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
}

.swiper-container-horizontal > .swiper-scrollbar {
  bottom: 3px;
  height: 5px;
  left: 1%;
  position: absolute;
  width: 98%;
  z-index: 50;
}

.swiper-container-vertical > .swiper-scrollbar {
  height: 98%;
  position: absolute;
  right: 3px;
  top: 1%;
  width: 5px;
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  -o-object-fit: contain;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  -webkit-transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: $color-wht;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow {
  -webkit-filter: blur(50px);
  background: #000;
  bottom: 0px;
  filter: blur(50px);
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}

.img-max {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

.u-mt10px {
  margin-top: 10px;
}

.u-mt20px {
  margin-top: 20px;
}

.u-mt30px {
  margin-top: 30px;
}

.u-mt60px {
  margin-top: 60px;
}

.u-mb100px {
  margin-bottom: 100px;
}

.u-crWht {
  color: #f0f0f0;
}

.u-clGry {
  background: #f7f7f7;
}