/*========================================*\
 # CONFIG: 共通設定
\*========================================*/ :root {
  /* Colors */
  --color-maincontent: #f7f5f0; /* 中央の背景色 */
  --color-background: #383639; /* PC時、左右の余白部分の背景色 */
  --color-text-honbun: #777; /* 共通の文字色*/
  /* Font */
  --font-family-base: 'M PLUS Rounded 1c', sans-serif; /* htmlのhead内link下2つも書き換え */
  /* Font Sizes */
  --fs-base: clamp(14px, 2vw, 18px);
  --fs-small: clamp(11px, 3.3vw, 20px);
  --fs-medium: clamp(12px, 3.3vw, 20px);
  --fs-large: clamp(18px, 5vw, 32px);
  --fs-ptitle: clamp(16px, 4vw, 26px);
  --fs-order: clamp(16px, 3vw, 20px);
  --fs-price: clamp(14px, 3.8vw, 24px); /* 商品価格の文字サイズ */
  /* Spacing */
  --spacing-lg: 30px;
  --spacing-md: 20px;
  --spacing-sm: 10px;
  /* Transition & Animation */
  --transition-speed: 0.2s;
  --animation-sway-duration: 2s;
  --animation-sway-timing: ease-in-out;
  /* 冒頭箇所の色諸々 */
  --color-top-text-background: #231815; /* 中央の冒頭の説明文の背景色 */
  --color-top-text-01: #fff; /* 冒頭の説明文の文字色*/
  --color-line-up-background: #777777; /* 中央のLINEUPの説明文の背景色 */
  --color-flavor-background: #d0d1d1; /* 中央のプティーゴーフルの説明文の背景色 */
  --color-petit-gaufres-text-background: #fff; /* 中央のプティーゴーフルの説明文の文字の背景色  */
  /* 商品の背景色 */
  --color-primary-01: #777777;
  --color-primary-02: #a587b0;
  --color-primary-03: linear-gradient(to bottom, #595757 60%, #a587b0 100%);
  --color-primary-04: #fff;
  --color-primary-05: #fff;
  /* 商品の見出し文の背景色 */
  --color-heading_bg-01: #914b84;
  --color-heading_bg-02: #914b84;
  --color-heading_bg-03: #914b84;
  --color-heading_bg-04: #fff;
  --color-heading_bg-05: #fff;
  /* 商品の見出し文の文字色 */
  --color-heading_text-01: #fff;
  --color-heading_text-02: #fff;
  --color-heading_text-03: #fff;
  --color-heading_text-04: #fff;
  --color-heading_text-05: #fff;
  /*商品タイトルの文字色 */
  --color-title-01: #fff;
  --color-title-02: #7c042e;
  --color-title-03: #fff;
  --color-title-04: #fff;
  --color-title-05: #fff;
  /* 商品の地の説明文の文字色 */
  --color-text-01: #fff;
  --color-text-02: #fff;
  --color-text-03: #fff;
  --color-text-04: #fff;
  --color-text-05: #fff;
  /* 商品の購入ボタンの背景色 */
  --color-secondary-01: #bf1443;
  --color-secondary-02: #bf1443;
  --color-secondary-03: #ed6c00;
  --color-secondary-04: #58b7b4;
  --color-secondary-05: #58b7b4;
  /* 商品の購入ボタンの文字色 */
  --color-secondary-text-01: #fff;
  --color-secondary-text-02: #fff;
  --color-secondary-text-03: #fff;
  --color-secondary-text-04: #000;
  --color-secondary-text-05: #000;
  /* シェア&店舗購入ページ */
  --color-footer: #666464;
  /* シェア&店舗購入ページ */
  --color-share-text: #fff; /* \お気に入りをシェアの文字色 */
  --color-share-background: #666464; /* シェア&店舗購入ページの背景色 */
  --color-shop-btn-background: #914b84; /* 店舗&ECのボタン色 */
  --color-shop-btn-text: #fff; /* 店舗&ECのボタンの文字色 */
}
/*========================================*\
 # BASE: 基本設定
\*========================================*/
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: clip;
}
/* ----------------------------------
 *  TOP画像
 * ---------------------------------- */
.top-visual {
  width: 100%; /* 画面の端から端まで一杯に広げる */
  max-width: 100%;
  overflow: hidden;
  z-index: 10;
}
.top-img {
  width: 100%;
  height: auto;
  display: block;
}
/* ----------------------------------
 *  メインコンテンツ
 * ---------------------------------- */
.main_wrapper {
  position: relative;
  font-family: var(--font-family-base);
  color: var(--color-text-honbun);
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  isolation: isolate;
}
.bg-fixed {
  position: fixed;
  inset: 0;
  background: url("../img/back_image.svg") repeat-y top center;
  background-size: 100% auto;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .main_wrapper {
    background-size: 50vw 50vw;
  }
}
@media (max-width: 600px) {
  .main_wrapper {
    background-image: none !important;
    background: none !important;/ background-color: #fef3ed !important;
  }
}
.main-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  box-shadow:
    -10px 0 15px -10px rgba(0, 0, 0, .25), 10px 0 15px -10px rgba(0, 0, 0, .25);
}
a {
  cursor: pointer;
  text-decoration: none;
}
.main_wrapper p {
  font-size: 20px;
  line-height: 1.4;
}
sp-br {
  display: none;
}
section {
  display: block;
  unicode-bidi: isolate;
}
html {
  scroll-behavior: smooth;
}
/*========================================*\
 #MEDIA QUERIES:　レスポンシブ対応
\*========================================*/
@media screen and (max-width: 599px) {
  .sp-br {
    display: block;
  }
  .main_wrapper p {
    font-size: var(--fs-small);
  }
}
/*========================================*\
 #TOPBTN
\*========================================*/
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 9999;
}
.btn_top {
  width: 100px;
  display: block;
}
#scrollTopBtn:hover {
  opacity: 0.5;
}
#scrollTopBtn.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px); /* 隠れているときは少し下に下げておく */
}
@media screen and (max-width: 599px) {
  .btn_top {
    width: 65px;
    display: block;
  }
}
/*========================================*\
 # フェードアップ
\*========================================*/
.fade-up {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition:
    opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.fade-bounce {
  opacity: 0;
  transform: translateY(20px) scale(.92);
  transform-origin: center bottom;
}
.fade-bounce.show {
  animation-name: popIn;
  animation-duration: .7s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: forwards;
}
.scale-in {
  will-change: opacity, transform;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scale-in.show {
  opacity: 1;
  transform: scale(1);
}
@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.97);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fade-right {
  opacity: 0;
}
.fade-right.show {
  animation-name: rightIn;
  animation-duration: .8s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-fill-mode: forwards;
}
@keyframes rightIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-left {
  opacity: 0;
}
.fade-left.show {
  animation-name: leftIn;
  animation-duration: .8s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-fill-mode: forwards;
}
@keyframes leftIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-bottom {
  opacity: 0;
}
.fade-bottom.show {
  animation-name: bottomIn;
  animation-duration: .8s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-fill-mode: forwards;
}
@keyframes bottomIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.delay-1 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.15s;
  animation-delay: 0.15s;
}
.delay-3 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.45s;
  animation-delay: 0.45s;
}
.delay-5 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}
.delay-6 {
  transition-delay: 0.85s;
  animation-delay: 0.85s;
}