@charset "UTF-8";


/* ---------------------------------------------------------------- */
/* #region Variable  */
/* ---------------------------------------------------------------- */

:root {
  --font-NotoSansJP: "Noto Sans JP", sans-serif;
  --font-HankenGrotesk: "Hanken Grotesk", sans-serif;
  --color-white: #fff;
  --color-offWhite: #fbfcfe;
  --color-black: #000;
  --color-offBlack: #2A2727;
  --color-gold: #B8996B;
  --color-blueGray: #f0f2fb;
}

/* #endregion Variable  */


/* ---------------------------------------------------------------- */
/* #region Reset  */
/* ---------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

:where(body) {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  /* margin-top: 0; */
  margin: 0;
  overflow-wrap: break-word;
}

:where(ul) {
  /* margin-top: 0; */
  margin: 0;
}

:where(input, button, textarea, select) {
  /* margin-top: 0; */
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
}

:where(textarea) {
  resize: vertical;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

/* #endregion Reset */


/* ---------------------------------------------------------------- */
/* #region Base Styles  */
/* ---------------------------------------------------------------- */
body {
  background-color: var(--color-offWhite);
  color: var(--color-text);
}

::-moz-selection {
  color: var(--color-offWhite);
  background-color: var(--color-gold);
}

::selection {
  color: var(--color-offWhite);
  background-color: var(--color-gold);
}

/* :focus {
  outline-color: ;
} */

/* a {
  color: ;
  text-decoration: none;
  &:hover {
    color: ;
  }
} */

/* ul {
  padding-left: 1.8em;
  & > li {
    &::marker {
      font-size: 0.8em;
    }
  }
} */

/* #endregion Base Styles */


/* ---------------------------------------------------------------- */
/* #region Layout  */
/* ---------------------------------------------------------------- */

/* ラッパー */
.c-wrap {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* レイヤー */
.c-modal {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.c-header {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.c-lightLeak {
  pointer-events: none;
  mix-blend-mode: screen;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.c-loading {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-offBlack);
}
.c-main {
  position: relative;
  z-index: 0;
}
.c-footer {
  position: relative;
  z-index: 0;
  background-color: var(--color-offWhite);
}
.c-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;  
  width: 100%;
  height: 100vh;
}
/* レイヤー - アニメーション */
.c-loading {
  opacity: 1;
  transition: opacity 0.3s 0.3s linear;
}
html[data-state-load="complete"] .c-loading {
  pointer-events: none;
  opacity: 0;
}

.c-header {
  opacity: 0;
  transition: opacity 0.3s 0.3s linear;
}
html[data-state-load="complete"] .c-header {
  opacity: 1;
}

.c-bg {
  transition: background-color 0.5s ease-out;
}
html[data-state-bg="gray"] .c-bg {
  background-color: var(--color-blueGray);
}
html[data-state-bg="black"] .c-bg {
  background-color: var(--color-offBlack);
}


/* 外コンテナ */
.c-outer {
  display: flex;
  align-items: center;
  flex-direction: column;

  padding-left: 16px;
  padding-right: 16px;
  @media (min-width: 769px) {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.c-outer--onlyPc {
  padding-left: 0;
  padding-right: 0;
  @media (min-width: 769px) {
    padding-left: 60px;
    padding-right: 60px;
  }
}


/* 中コンテナ */
.c-inner {
  width: 100%;
  @media (min-width: 769px) {
    max-width: 1100px;
  }
}
.c-inner--lg {
  @media (min-width: 769px) {
    max-width: 1320px;
  }
}
.c-inner--sm {
  @media (min-width: 769px) {
    max-width: 879px;
  }
}

/* #endregion Layout */


/* ---------------------------------------------------------------- */
/* #region Utilities  */
/* ---------------------------------------------------------------- */

/* sp/pc 表示切り替え */
.c-onlySp {
  display: block;
  @media (min-width: 769px) {
    display: none;
  }
}
.c-onlyPc {
  display: none;
  @media (min-width: 769px) {
    display: block;
  }
}

/* スクリーンリーダーのみ */
.c-onlySr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

/* 遷移 アニメーション */
.c-tran {
  opacity: 0;
  transition: opacity 2.2s 0.5s ease-out;
}
html[data-state-load="complete"] .c-tran {
  opacity: 1;
}

/* フェード アニメーション */
.c-fade {
  opacity: 1;
  transition: opacity 0.3s linear;
}
.c-fade:hover {
  opacity: 0.7;
}

/* フェードアップ アニメーション */
.c-fadeUp {
  opacity: 0;
  translate: 0 50px;
  transition:
    translate 1s,
    opacity 1s;
}

[data-inview="true"].c-fadeUp {
  opacity: 1;
  translate: 0 0px;
}

/* 色変化ズーム アニメーション */
.c-brightZoom {
  filter: brightness(0.5) contrast(1.5);
  scale: 1.1;
}

[data-inview="true"].c-brightZoom {
  animation-name: c-brightZoom;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  animation-fill-mode: ease-out;
}

@keyframes c-brightZoom {
  0% {
    scale: 1.1;
    filter: brightness(0.6) contrast(1.5);
  }
  100% {
    filter: brightness(1) contrast(1);
    scale: 1;
  }
}

/* グラデーション入り アニメーション */
.c-gradIn {
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-mask-position: 200% 0%;
          mask-position: 200% 0%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;

  /* background-image: linear-gradient(
    90deg,
    currentColor 0%,
    currentColor 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0%;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}

[data-inview="true"].c-gradIn,
.c-gradIn.active {
  animation-name: c-gradIn;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

@keyframes c-gradIn {
  0% {
    -webkit-mask-position: 200% 0%;
            mask-position: 200% 0%;
  }
  100% {
    -webkit-mask-position: 0% 0%;
            mask-position: 0% 0%;
  }
}

/* #endregion Utilities */


/* ---------------------------------------------------------------- */
/* #region Components  */

/* ボタン */
.c-button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding-top: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-left: 24px;

  border-radius: 100px;
  border: 1px solid;
  @media (min-width: 769px) {
  }
}
.c-button__text {
  flex: 1 1 auto;
  font-feature-settings: "palt" on;
  font-family: var(--font-NotoSansJP);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  @media (min-width: 769px) {
  }
}
.c-button__icon {
  flex: 0 0 40px;
  @media (min-width: 769px) {
  }
}
.c-button__circle {
  fill: var(--color-gold);
  @media (min-width: 769px) {
  }
}
.c-button__arrow {
  fill: var(--color-white);
  @media (min-width: 769px) {
  }
}
/* ボタン - アニメーション */
.c-button {
  background-color: var(--color-white);
  border-color: var(--color-white);
  transition:
    background-color 0.3s linear,
    border-color 0.3s linear
  ;
}
.c-button__text {
  color: var(--color-offBlack);
  transition:
    color 0.3s linear
  ;
}
.c-button:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}
.c-button:hover .c-button__text {
  color: var(--color-white);
}


/* スピナーボタン */
.c-spinnerButton {
  all: unset;
  cursor: pointer;

  position: relative;
  padding: 10px 32px;
  border-radius: 100px;
  background: var(--color-offBlack);
  line-height: 0;
  @media (min-width: 769px) {
  }
}
/* 既存スタイルのリセット */
.c-spinnerButton::after{
  display: none !important;
}
.c-spinnerButton__text {
  color: var(--color-white);
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.c-spinnerButton__icon{
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 32px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-spinnerButton__icon::after{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--color-gold);
}
/* スピナーボタン - アニメーション */
.c-spinnerButton {
  opacity: 1;
  transition: opacity 0.3s linear;
}
.c-spinnerButton:hover {
  opacity: 0.8;
}
.c-spinnerButton__icon{
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
.c-spinnerButton.loading .c-spinnerButton__icon {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.c-spinnerButton.loading .c-spinnerButton__icon::after {
  animation: c-spinnerButton-loading 0.8s linear infinite;  
}
@keyframes c-spinnerButton-loading {
  100% {
    rotate: 360deg;
  }
}


/* アイコン付きリンク */
.c-iconLink {
  display: flex;
  gap: 16px;
  align-items: center;
  text-decoration: none;
}
.c-iconLink__text {
  color: var(--color-offBlack);
  font-family: var(--font-NotoSansJP);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.c-iconLink__icon {
}
.c-iconLink__circle {
}
.c-iconLink__arrow {
}
/* アイコン付きリンク - アニメーション */
.c-iconLink__circle {
  fill: var(--color-gold);
  stroke: var(--color-gold);
  transition:
    fill 0.3s linear,
    stroke 0.3s linear;
}
.c-iconLink__arrow {
  fill: var(--color-white);
  transition:
    fill 0.3s linear
  ;
}
 
.c-iconLink:hover .c-iconLink__circle {
  fill: transparent;
}
.c-iconLink:hover .c-iconLink__arrow {
  fill: var(--color-gold);
}


/* ラインナップカード */
.c-lineupCard {
  display: inline-block;
  @media (min-width: 769px) {
  }
}
.c-lineupCard__img {
  width: 100%;
  margin-bottom: 16px;
  @media (min-width: 769px) {
    margin-bottom: 24px;
  }
}
.c-lineupCard__img > img {
  width: 100%;
  height: 100%;
}
.c-lineupCard__en {
  color: var(--color-offBlack);
  text-align: center;
  font-family: var(--font-HankenGrotesk);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.51px;
  margin-bottom: 8px;
  @media (min-width: 769px) {
  }
}
.c-lineupCard__ja {
  color: var(--color-offBlack);
  text-align: center;
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  @media (min-width: 769px) {
  }
}


/* プロダクトカード */
.c-productCard {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  @media (min-width: 769px) {
  }
}
.c-productCard__link {
  display: inline-block;
}
.c-productCard__image {
  margin-bottom: 16px;
  @media (min-width: 769px) {
  }
}
.c-productCard__image > img {
  width: 100%;
  height: 100%;
  @media (min-width: 769px) {
  }
}
.c-productCard__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  background-color: var(--color-offBlack);
  display: inline-flex;
  justify-content: center;
  align-items: center;

  color: var(--color-white);
  text-align: center;
  font-family: var(--font-HankenGrotesk);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;

  @media (min-width: 769px) {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.8px;
  }
}
.c-productCard__name {
  color: var(--color-offBlack);
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 2px;
  @media (min-width: 769px) {
  }
}
.c-productCard__taste {
  color: var(--color-offBlack);
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  @media (min-width: 769px) {
  }
}
.c-productCard__amount {
  color: var(--color-offBlack);
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 4px;
  @media (min-width: 769px) {
  }
}
.c-productCard__name span {
  display: block;
  color: var(--color-offBlack);
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}
.c-productCard__price {
  color: var(--color-offBlack);
  font-family: var(--font-HankenGrotesk);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.51px;
  @media (min-width: 769px) {
  }
}

.c-productCard__note {
  color: var(--color-offBlack);
  font-family: var(--font-NotoSansJP);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  @media (min-width: 769px) {
  }
}
.c-productCard__cart {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  @media (min-width: 769px) {
  }
}


/* 画像カード */
.c-imageCard {
  line-height: 0;
  position: relative;
  display: block;
  @media (min-width: 769px) {
  }
}
.c-imageCard__image {
  width: 100%;
  aspect-ratio: 195/210;
  @media (min-width: 769px) {
    aspect-ratio: 720/388;
  }
}
.c-imageCard__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  @media (min-width: 769px) {
  }
}
.c-imageCard__text {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;

  color: var(--color-white);
  text-align: center;
  font-family: var(--font-HankenGrotesk);
  /* font-size: 18px; */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* letter-spacing: 0.54px; */

  font-size: 4.615385vw;
  letter-spacing: 0.138462vw;
  @media (min-width: 769px) {
    font-size: 1.25vw;
    letter-spacing: 0.0375vw;
  }
}

/* 画像カード - Lサイズ*/
.c-imageCard--l .c-imageCard__image {
  aspect-ratio: 390/210;
  @media (min-width: 769px) {
    aspect-ratio: 1440/388;
  }
}


/* 画像ナビゲーションエリア */
.c-imgNav {
  @media (min-width: 769px) {
  }
}
.c-imgNav__full {
  @media (min-width: 769px) {
  }
}
.c-imgNav__col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  @media (min-width: 769px) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-imgNav__item {
  @media (min-width: 769px) {
  }
}


/* フッターナビ */
.c-footerNav {
  @media (min-width: 769px) {
  }
}
.c-footerNav__navList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  @media (min-width: 769px) {
    margin-bottom: 80px;
  }
}
.c-footerNav__navItem {
  text-decoration: none;
  color: var(--color-offBlack);
  font-family: var(--font-HankenGrotesk);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  @media (min-width: 769px) {
    color: var(--color-offBlack);
    font-family: var(--font-HankenGrotesk);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
  }
}
.c-footerNav__shareList {
  display: flex;
  justify-content: center;
  gap: 40px;
  @media (min-width: 769px) {
  }
}
.c-footerNav__shareItem {
  @media (min-width: 769px) {
  }
}


/* フッターサブナビ */
.c-footerSubNav {
  opacity: 0.5;
  color: var(--color-offBlack);
  text-align: center;
  font-family: var(--font-NotoSansJP);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;

  display: flex;
  flex-direction: column;
  gap: 8px;
  @media (min-width: 769px) {
    flex-direction: row;
    gap: 48px;
  }
}
.c-footerSubNav__item {
  text-decoration: none;
  color: var(--color-offBlack);
  font-family: var(--font-HankenGrotesk);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  @media (min-width: 769px) {
  }
}


/* フッターエリア */
.c-footer {
  padding-top: 80px;
  padding-bottom: 40px;
  @media (min-width: 769px) {
    padding-top: 101px;
    padding-bottom: 61px;
  }
}
.c-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  @media (min-width: 769px) {
    flex-direction: row;
    justify-content: space-between;
    padding-right: 26px;
    padding-bottom: 56px;
  }
}
.c-footer__bottom {
  border-top: 1px solid #00000014;
  padding-top: 40px;
  @media (min-width: 769px) {
    display: flex;
    justify-content: space-between;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.c-footer__logo {
  margin-bottom: 80px;
  @media (min-width: 769px) {
    margin-bottom: 0;
  }
}
.c-footer__nav {
  max-width: 184px;
  @media (min-width: 769px) {
    max-width: auto;
  }
}
.c-footer__subNav {
  margin-bottom: 40px;
  @media (min-width: 769px) {
    margin-bottom: 0;
  }
}

.c-footer__copyright {
  color: var(--color-offBlack);
  font-family: var(--font-HankenGrotesk);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: center;
  @media (min-width: 769px) {
    color: var(--color-offBlack);
    font-family: var(--font-HankenGrotesk);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.6px;
    text-align: left;
  }
}


/* スクロールスライダー(jsコンポーネント) */
.c-scrollSlider {
  width: 100%;
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__scroller {
  overflow: auto;
  scrollbar-width: none; /* Firefox用 */
  -ms-overflow-style: none; /* IE & Edge旧バージョン用 */
  display: flex;
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__scroller::-webkit-scrollbar {
  display: none; /* Chrome / Safari用 */
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__slide {
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__slide img {
  width: 100%;
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;

  margin-top: 32px;
  @media (min-width: 769px) {
    margin-top: 32px;
  }
}
.c-scrollSlider__prev,
.c-scrollSlider__next {
  width: 32px;
  height: 32px;
  cursor: pointer;
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__icon {
} 
.c-scrollSlider__track {
  position: relative;
  background-color: rgb(189, 189, 189);
  height: 2px;
  width: 136px;
  @media (min-width: 769px) {
  }
}
.c-scrollSlider__thumb {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-offBlack);
  width: 30%;
  height: 100%;
  @media (min-width: 769px) {
  }
}

/* スクロールスライダー - グリッド */
.c-scrollSlider--3 .c-scrollSlider__scroller {
  gap: 16px;
  padding-left: 16px; /*jsでpadding-leftの値は利用します*/
  padding-right: 16px;
  @media (min-width: 769px) {
    gap: 40px;
    padding-left: 0px; /*jsでpadding-leftの値は利用します*/
    padding-right: 0px;
  }
}
.c-scrollSlider--3 .c-scrollSlider__slide {
  flex: 0 0 150px;
  @media (min-width: 769px) {
    flex: 0 0 254px;
  }
}

.c-scrollSlider--5 .c-scrollSlider__scroller {
  gap: 16px;
  padding-left: 16px; /*jsでpadding-leftの値は利用します*/
  padding-right: 16px;
  @media (min-width: 769px) {
    gap: 40px;
    padding-left: 0px; /*jsでpadding-leftの値は利用します*/
    padding-right: 0px;
  }
}
.c-scrollSlider--5 .c-scrollSlider__slide {
  flex: 0 0 150px;
  @media (min-width: 769px) {
    flex: 0 0 171px;
  }
}


/* スクロールスライダー - 状態&アニメーション */
.c-scrollSlider__scroller {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-scrollSlider__scroller:active {
  cursor: grabbing;
}


.c-scrollSlider--inactive .c-scrollSlider__scroller {
  cursor: auto;
  justify-content: center;
  @media (min-width: 769px) {
    justify-content: center;
  }
}
.c-scrollSlider--inactive .c-scrollSlider__scroller:active {
  cursor: auto;
}
.c-scrollSlider--inactive .c-scrollSlider__nav {
  display: none;
  @media (min-width: 769px) {
    display: none;
  }
}

 
.c-scrollSlider__icon circle {
  stroke: var(--color-offBlack);
  fill: transparent;
  transition: fill 0.3s linear;
}
.c-scrollSlider__icon path {
  fill: var(--color-offBlack);
  transition: fill 0.3s linear;
}
.c-scrollSlider__icon:hover circle {
  fill: var(--color-offBlack);
}
.c-scrollSlider__icon:hover path {
  fill: var(--color-white);
}


.c-scrollSlider__prev, .c-scrollSlider__next {
  opacity: 1;
}
[data-scrollslider-disabled="true"]:where(.c-scrollSlider__prev, .c-scrollSlider__next) {
  opacity: 0.2;
  pointer-events: none;
}


/* ローディングロゴ */
.c-loadingLogo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-loadingLogo__img {
  fill: var(--color-white);
  width: 200px;
  height: auto;
}

/* #endregion Components */

