/*========================================*\
 # LAYOUT: ページ構造
\*========================================*/
.all {
  position: relative;
}
.background {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fef3ed;
  background: url("../img/sanrio_background.svg");
  background-size: 35vw 35vw;
  background-repeat: repeat;
  z-index: -1;
}


@media (max-width: 1000px) {
  .background {
    background-size: 50vw 50vw; 
  }
}

@media (max-width: 600px) {
  .background {
    background-image: none !important;
    background: none !important;/
    background-color: #fef3ed !important; 
  }
}

.column {
  position: relative;
  display: flex;
  overflow: visible;
  z-index: 1;
  justify-content: center;
}
.leftside, .rightside {
  position: sticky;
  overflow: clip;
  top: 0;
  left: 0;
  width: calc(50% - 300px);
  z-index: 32;
}
.center {
  position: relative;
  overflow: hidden;
  width: 600px;
  z-index: 50;
  filter: drop-shadow(0 0 20px #996666);
  border-radius: var(--spacing-lg);
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #3676a0; 
  background: url("../img/sanrio_brick.svg");
  background-size: clamp(15px, 15vw, 65px);
  background-repeat: repeat;
}
/*========================================*\
 # COMPONENT: 左右のカラム
\*========================================*/
.top_grid_wrap, .top_buttons_wrap {
  /* 読み込み時は透明 */
  visibility: hidden;
}
/* 左カラム内 */
.left_nav_img, .right_btn_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.right_btn_img {
  min-width: 300px;
}
.left_title_02 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}
.left_title_02 img {
  width: 100%;
  height: auto;
  display: inline-block;
}
/* 固定グリッド（左） */
.top_grid_wrap {
  position: fixed;
  width: 28vw;
  min-width: 280px;
}
.top_grid_wrap.centered {
  transform: translateY(-50%);
}
.top_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
  justify-items: center;
  box-sizing: border-box;
}
/* グリッドアイテムの配置 */
.a {
  grid-column: 1 / 3;
  grid-row: 1;
}
.b {
  grid-column: 3 / 5;
  grid-row: 1;
}
.c {
  grid-column: 5 / 7;
  grid-row: 1;
}
.d {
  grid-column: 1 / 4;
  grid-row: 2;
}
.e {
  grid-column: 4 / 7;
  grid-row: 2;
}
/* グリッドアイテムのインタラクション */
.top_grid > div {
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}
.top_grid > div:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}
/* ---------------------------- */
/* ホバーエフェクト用CSS（左側ブラッシュアップ版） */
/* ---------------------------- */
.nav_img a {
  display: block;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}
/* 画像全般の基本設定*/
.nav_img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 1.3, 0.5, 1.1), opacity 0.35s ease-out, filter 0.3s ease;
}
/* メイン画像（手前） */
.left_nav_img {
  position: relative;
  z-index: 10;
  border-radius: 35px;
  overflow: hidden;
  transform-origin: center center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.nav_img a:hover .left_nav_img {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 12px 15px rgba(0, 0, 0, 0.15)) brightness(1.05);
}
.d a:hover .left_nav_img, .e a:hover .left_nav_img {
  transform: translateY(-8px) scale(1.05);
}
/* 隠れた画像（奥） */
.left_nav_img_back, .left_nav_img_back_02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  z-index: 5;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav_img a:hover .left_nav_img_back {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(-165px) scale(1.0);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
}
.nav_img a:hover .left_nav_img_back_02 {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(155px) scale(1.0);
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.2));
}
/* 各クラスの幅指定 */
.a .left_nav_img_back, .b .left_nav_img_back, .c .left_nav_img_back {
  width: 75%;
}
.d .left_nav_img_back_02 {
  width: 70%;
}
.nav_img a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%) scale(0.6);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 50%;
}
.nav_img a:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
/* 固定ボタン（右） */
.top_buttons_wrap {
  position: fixed;
  width: 18vw;
  min-width: 300px;
}
.top_buttons_wrap.centered {
  transform: translateY(-50%);
}
.top_buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.top_buttons > div {
  position: relative;
  cursor: pointer;
}
.right_btn_img {
  display: block;
  transition: transform 0.25s cubic-bezier(0.25, 1.3, 0.5, 1.1), filter 0.25s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.right_btn_img:hover {
  transform: translateY(4px) ;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15)) brightness(1.05);
}
.right_btn_img:active {
  transform: translateY(10px) scale(0.96);
  transition: transform 0.1s;
}
.top_buttons > div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%; 
  height: 130%;
  transform: translate(-50%, -50%) scale(0.6);

  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 50%;
}
.top_buttons > div:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: pulseWhite 2s infinite;
}
@keyframes pulseWhite {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
}
/*========================================*\
 # COMPONENT: 中央カラム
\*========================================*/
/*========================================*\
 # COMPONENT: ヘッダー
\*========================================*/
header {
  position: relative;
  background-color: #3676a0;
  height: calc(4%);
  min-height: 375px;
}
.tentroof_01 {
  width: min(600px);
}
.logo {
  width: min(500px);
  position: absolute;
  right: 0;
  left: 0;
  top: calc(30%);
  margin: 0 auto;
}
.header_img01 {
  width: min(550px);
  position: absolute;
  right: 0;
  left: 0;
  top: calc(60%);
  margin: 0 auto;
}
/* メイン画像フレーム */
.main_img {
  display: block;
  position: relative;
  right: 0;
  left: 0;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  width: min(600px);
  overflow: hidden;
}
.main_img01 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
}
/* ヘッダー装飾画像 */
.top_img01 {
  width: 15%;
  position: absolute;
  left: calc(10%);
  top: calc(70%);
}
.top_img02 {
  width: 16%;
  position: absolute;
  right: calc(9%);
  top: calc(70%);
}
.top_img03 {
  width: 20%;
  position: absolute;
  right: calc(10%);
  top: calc(12%);
}
.main_img_frame01 {
  position: absolute;
  z-index: 4;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
}
.main_img_under {
  background-color: #3676a0;
  z-index: 3;
  height: 25px;
  text-align: end;
}
.main_img_under img {
  width: 50%;
  padding-right: 5%;
}
/*========================================*\
 # COMPONENT: コンテンツ
\*========================================*/
.contents_01 {
  width: min(600px);
  position: relative;
}
/* 2026年2月中旬発売（ピンク） */
.contents_01_title {
  text-align: center;
  margin: 0 auto;
  padding-top: calc(3%);
  color: #e65f80;
  font-size: var(--fs-large);
  font-family: var(--font-family-rounded);
  font-weight: 600;
}
.contents_01_title::before, .contents_01_title::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.contents_01_title::before {
  content: url('../img/contents_01_title_before.svg');
  margin-right: 5%;
}
.contents_01_title::after {
  content: url('../img/contents_01_title_after.svg');
  margin-left: 5%;
}
/* 公式オンラインショップでは
2026年2月12日午前10時より販売（ブルー） */
.contents_02_title {
  text-align: center;
  margin: 0 auto;
  padding-top: calc(3%);
  color: #3676a0;
  font-size: var(--fs-medium);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.8;
}
.pendant_light_01, .pendant_light_02 {
  position: absolute;
  width: 12%;
}
.pendant_light_01 {
  left: 5%;
}
.pendant_light_02 {
  right: 5%;
}
/*========================================*\
 # COMPONENT: トップテキストボックス
\*========================================*/
.top_text {
  position: relative;
  background-color: var(--color-background-brick);
  border-radius: var(--spacing-lg);
  width: 70%;
  margin: 0 auto;
  margin-top: 50px;
  box-shadow: 4px 4px 0px rgba(150, 75, 0, 0.25);
}
.top_text p {
  text-align: center;
  padding: 10% 5% 8%;
  color: var(--color-text-brown);
  font-size: var(--fs-medium);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  line-height: 1.6;
}
/* テキストボックス内の装飾 */
.top_text_sweets_01 {
  position: absolute;
  width: 20%;
}
.top_text_sweets_02 {
  position: absolute;
  width: 14%;
}
.top_text_sweets_01 {
  left: 4%;
  top: 36%;
}
.top_text_sweets_02 {
  right: 8%;
  bottom: 50%;
}

/*========================================*\
 # COMPONENT: PETITES GAUFRES
\*========================================*/
.petites_gaufres_logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(10%);
}
.petites_gaufres_logo-container p {
  text-align: center;
  margin: 0 auto;
  padding-top: calc(3%);
  color: #3676a0;
  font-size: var(--fs-large);
  font-family: var(--font-family-rounded);
  font-weight: 1000;
}
.petites_gaufres_logo {
  margin: 0 auto;
  width: 90%;
  height: auto;
  padding-top: calc(3%);
}
.petites_gaufres_explanation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 2vw;
  gap: var(--spacing-md);
}
.petites_gaufres_explanation img {
  width: 250px;
}
.petites_gaufres_explanation p {
  margin: 0 auto;
  color: var(--color-text-brown);
  font-size: var(--fs-small);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.2;
}
.petites_gaufres_flavor {
  display: flex;
  align-items: center;
  justify-content: center;
}
.petites_gaufres_flavor img {
  width: 95%;
  margin-bottom: 40px;
}
/*========================================*\
 # COMPONENT: ボトムテキストボックス
\*========================================*/
.bottom_text {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-top: 0px;
}
.bottom_text p {
  text-align: center;
  padding: 0% 5% 15%;
  color: var(--color-text-brown);
  font-size: var(--fs-medium);
  font-family: var(--font-family-base);
  font-weight: 600;
  line-height: 1.2;
}
/*========================================*\
 # COMPONENT: 商品紹介 (共通CSS)
\*========================================*/
.can_main_img {
  position: relative;
  right: 0;
  left: 0;
  aspect-ratio: 3 / 2;
  margin: 15px auto 0px;
}
.can_explanation {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.can_design_img {
  width: 50%;
  margin-top: 15px;
  margin-bottom: 5px;
}
/* ご購入はこちら　のボタン（共通） */
.shop_now_wrapper, .shop_now_wrapper_02 {
  position: relative;
  width: 280px;
  transition: all 0.1s ease-out;
}
.shop_now_wrapper_02 {
  margin: 0 auto;
}
.shop_now_wrapper:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}
.shop_now_wrapper_02:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}
.shop_now {
  display: flex;
  margin: 0 auto;
  background-color: var(--color-primary-pink);
  border-radius: var(--spacing-sm);
  box-shadow: 4px 4px 0px rgba(150, 75, 0, 0.45);
  height: 80px;
  align-items: center; /* 縦方向中央 */
  justify-content: center;
  padding: 0 2vw 0;
}
.shop_now_flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0px 25px 0px;
}
.shop_now p {
  text-align: center;
  color: var(--color-text-white);
  font-size: var(--fs-order);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.2;
}
/* リボン説明文（共通） */
.explanation_ribbon {
  background-image: url("../img/ribbon_pink_background.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 15px;
  box-sizing: border-box;
  /* コンテンツの中央寄せ */
  display: flex;
  align-items: center;
  justify-content: center;
  /* コンテンツのパディング */
  padding: 10px 15px 15px 15px;
}
.ribbon_blue {
  background-image: url("../img/ribbon_blue_background.svg");
}
.ribbon_orange {
  background-image: url("../img/ribbon_orange_background.svg");
}
.explanation_ribbon p {
  text-align: center;
  margin-top: 15px;
  color: var(--color-text-white);
  font-size: var(--fs-small);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.4;
}
/* 価格表示 */
.explanation_price {
  text-align: center;
  color: var(--color-text-brown);
  font-size: var(--fs-medium);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.4;
  padding-bottom: var(--spacing-lg);
}
.price_title {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: var(--fs-ptitle);
}
.price_title_pink {
  color: #e8707b;
}
.price_title_blue {
  color: #527aa3;
}
.price_title_orange {
  color: #e2881f;
}
.price_title_red {
  color: #d64d4d;
}
.price_title_green {
  color: #009075;
}
.price_margin {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 24px;
}
/*ご購入はこちらボタン内の矢印 */
.arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.arrow::after {
  content: '\2192';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 24px;
  font-weight: bold;
}
/*========================================*\
 # COMPONENT: マイメロディ & クロミ
\*========================================*/
.mymelody_kuromi_contents {
  background-color: #fbe3e2;
}
.pink_can_img01 {
  width: 20%;
  position: absolute;
  left: calc(8%);
  top: calc(10%);
}
.pink_can_img02 {
  width: 10%;
  position: absolute;
  left: calc(6%);
  top: calc(37%);
}
.pink_can_img03 {
  width: 6%;
  position: absolute;
  right: calc(8%);
  top: calc(35%);
}
.pink_can_img04 {
  width: 33%;
  position: absolute;
  right: calc(5%);
  bottom: calc(20%);
}
.pink_can_img05 {
  width: 13%;
  position: absolute;
  right: calc(16%);
  bottom: calc(6%);
}
.pink_can_explanation_img01 {
  width: 18%;
  position: absolute;
  left: calc(4%);
  top: calc(10%);
}
.pink_can_explanation_img02 {
  width: 18%;
  position: absolute;
  right: calc(3%);
  top: calc(40%);
}
.pink_can_explanation_img03 {
  width: 22%;
  position: absolute;
  left: calc(5%);
  bottom: calc(10%);
}
.pink_can_explanation_img04 {
  width: 7%;
  position: absolute;
  left: calc(10%);
  top: calc(42%);
}
.pink_can_explanation_img05 {
  width: 8%;
  position: absolute;
  right: calc(13%);
  top: calc(11%);
}
.pink_can_explanation_img06 {
  width: 8%;
  position: absolute;
  right: calc(16%);
  bottom: calc(11%);
}
/* 丸背景＋角丸矢印 */
.arrow_pink::after {
  color: var(--color-primary-pink);
}
.kuromi_01 img {
  margin-top: 5px;
  width: 68px; /*画像の幅*/
}
.mymelody_01 img {
  width: 59px; /*画像の幅*/
}
/*========================================*\
 # COMPONENT: ハローキティ & タイニーチャム
\*========================================*/
.hellokitty_tinychum_contents {
  background-color: #d5e3e3;
}
.blue_can_img01 {
  width: 13%;
  position: absolute;
  left: calc(11%);
  top: calc(10%);
}
.blue_can_img02 {
  width: 10%;
  position: absolute;
  left: calc(7%);
  top: calc(35%);
}
.blue_can_img03 {
  width: 8%;
  position: absolute;
  right: calc(7%);
  top: calc(35%);
}
.blue_can_img04 {
  width: 33%;
  position: absolute;
  right: calc(5%);
  bottom: calc(20%);
}
.blue_can_img05 {
  width: 14%;
  position: absolute;
  right: calc(15%);
  bottom: calc(9%);
}
.blue_can_explanation_img01 {
  width: 18%;
  position: absolute;
  left: calc(4%);
  top: calc(10%);
}
.blue_can_explanation_img02 {
  width: 18%;
  position: absolute;
  right: calc(3%);
  top: calc(40%);
}
.blue_can_explanation_img03 {
  width: 22%;
  position: absolute;
  left: calc(5%);
  bottom: calc(10%);
}
.blue_can_explanation_img04 {
  width: 8%;
  position: absolute;
  left: calc(9%);
  top: calc(40%);
}
.blue_can_explanation_img05 {
  width: 12%;
  position: absolute;
  right: calc(13%);
  top: calc(11%);
}
.blue_can_explanation_img06 {
  width: 8%;
  position: absolute;
  right: calc(14%);
  bottom: calc(12%);
}
.shop_now_blue {
  background-color: #527aa3;
}
/* 丸背景＋角丸矢印 */
.arrow_blue::after {
  color: var(--color-secondary-blue);
}
.hellokitty_01 img {
  width: 70px;
}
.tinychum_01 img {
  width: 60px;
  margin-top: 40px;
}
/*========================================*\
 # COMPONENT: ポムポムプリン & シナモロール
\*========================================*/
.pompompurin_cinamoroll_contents {
  background-color: #fce9a0;
}
.orange_can_img01 {
  width: 20%;
  position: absolute;
  left: calc(8%);
  top: calc(10%);
}
.orange_can_img02 {
  width: 13%;
  position: absolute;
  left: calc(9%);
  top: calc(34%);
}
.orange_can_img03 {
  width: 7%;
  position: absolute;
  right: calc(7%);
  top: calc(32%);
}
.orange_can_img04 {
  width: 33%;
  position: absolute;
  right: calc(5%);
  bottom: calc(20%);
}
.orange_can_img05 {
  width: 13%;
  position: absolute;
  right: calc(15%);
  bottom: calc(8%);
}
.orange_can_explanation_img01 {
  width: 18%;
  position: absolute;
  left: calc(4%);
  top: calc(10%);
}
.orange_can_explanation_img02 {
  width: 18%;
  position: absolute;
  right: calc(3%);
  top: calc(40%);
}
.orange_can_explanation_img03 {
  width: 22%;
  position: absolute;
  left: calc(5%);
  bottom: calc(10%);
}
.orange_can_explanation_img04 {
  width: 13%;
  position: absolute;
  left: calc(7%);
  top: calc(40%);
}
.orange_can_explanation_img05 {
  width: 12%;
  position: absolute;
  right: calc(14%);
  top: calc(6%);
}
.orange_can_explanation_img06 {
  width: 8%;
  position: absolute;
  right: calc(15%);
  bottom: calc(9%);
}
.shop_now_orange {
  background-color: #e2881f;
}
/* 丸背景＋角丸矢印 */
.arrow_orange::after {
  color: var(--color-accent-orange);
}
.pompompurin_01 img {
  width: 98px;
  margin-top: 10px;
}
.cinamoroll_01 img {
  width: 97px;
  margin-top: 25px;
}
/* 3入　2入 */
.shop_now_red {
  background-color: #d64d4d;
}
.shop_now_green {
  background-color: #009075;
}
.can_design_img_02 {
  width: 55%;
  margin: 30px 0px 20px 0px
}
.can_design_img_03 {
  width: 90%;
  margin: 30px 0px 20px 0px
}
/* 丸背景＋角丸矢印 */
.arrow_red::after {
  color: #d64d4d;
}
/* 丸背景＋角丸矢印 */
.arrow_green::after {
  color: #009075;
}
/*========================================*\
  COMPONENT:シェア&ショップインフォメーション
\*========================================*/
/* シェアする */
.share_contents {
  width: 95%;
  margin: 0 auto;
}
.share_contents_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
  margin: var(--spacing-md) 0;
}
/* X&LINE*/
.share_text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-brown);
  font-size: var(--fs-large);
  font-family: var(--font-family-rounded);
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.2;
  margin-top: 30px;
}
.x_grid, .line_grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  justify-items: start;
  align-items: center;
  column-gap: var(--spacing-sm);
  transition: all 0.1s ease-out;
  background-color: #FFFFFF;
  border-radius: var(--spacing-sm);
  height: 70px;
  width: 200px;
  box-shadow: 4px 4px 0px rgba(150, 75, 0, 0.45);
  transition: all 0.1s ease-out;
}
.x_grid div:first-child {
  justify-self: center;
  align-self: center;
}
.line_grid div:first-child {
  justify-self: center;
  align-self: center;
}
.x_grid:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}
.line_grid:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}
.x_grid img {
  width: 30px;
}
.line_grid img {
  width: 40px;
}
.x_grid p, .line_grid p {
  flex: 1;
  color: var(--color-text-brown);
  font-size: var(--fs-medium);
  font-family: var(--font-family-rounded);
  ;
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.2;
}
/*店舗紹介&オンラインショップ*/
.shop_info p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-brown);
  font-size: var(--fs-large);
  font-family: var(--font-family-rounded);
  ;
  font-weight: 600;
  word-spacing: 0.15em;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 10px;
}
.shop_grid, .online_shop_grid {
  display: grid;
  grid-template-columns: 2fr 5fr;
  justify-items: start;
  align-items: center;
  column-gap: var(--spacing-sm);
  transition: all 0.1s ease-out;
  margin: 0 auto;
  border-radius: var(--spacing-sm);
  width: 75%;
  height: 100px;
  box-shadow: 4px 4px 0px rgba(150, 75, 0, 0.45);
}
.shop_grid:active, .online_shop_grid:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}
/* 色違い */
.shop_grid {
  background-color: var(--color-text-brown);
}
.online_shop_grid {
  background-color: var(--color-accent-orange);
}
.shop_grid p, .online_shop_grid p {
  color: var(--color-text-white);
  font-size: 32px;
  font-family: var(--font-family-rounded);
  font-weight: 400;
  word-spacing: 0.15em;
  line-height: 1.2;
}
.shop_grid div:first-child, .online_shop_grid div:first-child {
  justify-self: center;
  align-self: center;
}
.shop_img {
  width: 50px;
}
.shop_img_02 {
  width: 70px;
}
.showcase {
  display: flex;
  justify-content: center;
  align-items: center;
}
.showcase img {
  margin: 0 auto 10%;
  padding-top: calc(10%);
  width: 85%;
  height: auto;
}
.kobefugetsudo_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kobefugetsudo_logo img {
  margin: 0 auto 10%;
  width: 70%;
  height: auto;
}
.footer_copy {
  margin: 0 auto 30px;
  text-align: center;
}
/*========================================*\
 #MEDIA QUERIES:　レスポンシブ対応
\*========================================*/
@media screen and (max-width: 1400px) {
  .top_grid_wrap {
    display: none;
  }
  .top_buttons_wrap {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  /* 中央カラム*/
  .center {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
  }
  /* ヘッダー*/
  header {
    height: 70vw;
    min-height: 255px;
  }
  .tentroof_01 {
    width: 100vw;
  }
  .logo {
    width: 90vw;
  }
  .header_img01 {
    width: 90vw;
  }
  .main_img {
    position: relative;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: min(100vw, 599px);
  }
  .contents_01 {
    width: 100vw;
  }
  /* Top Text */
  .top_text {
    width: 80%;
    margin-top: 40px;
  }
  .petites_gaufres_explanation img {
    width: 165px;
  }
  .shop_now_wrapper, .shop_now_wrapper_02 {
    position: relative;
    width: 20vw;
    min-width: 200px;
  }
  /* 矢印 */
  .arrow_pink::after, .arrow_blue::after, .arrow_orange::after, .arrow_red::after, .arrow_green::after {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .shop_now_flex {
    margin: 0 10px 0;
  }
  .price_title {
    margin-top: 15px;
  }
  .price_margin {
    font-size: 18px;
  }
  /* キャラクター画像 */
  .kuromi_01 img {
    width: 14vw;
  }
  .mymelody_01 img {
    width: 12vw;
  }
  .hellokitty_01 img {
    width: 15vw;
  }
  .tinychum_01 img {
    width: 12vw;
    margin-top: 11vw;
  }
  .margin_ps {
    margin: 0px 0px 0px;
  }
  .pompompurin_01 img {
    width: 20vw;
    margin-top: 2vw;
  }
  .cinamoroll_01 img {
    width: 19.5vw;
    margin-top: 9vw;
  }
  .x_grid, .line_grid {
    height: 60px;
    width: 35vw;
  }
  .shop_grid, .online_shop_grid {
    grid-template-columns: 2fr 4fr;
  }
  .shop_grid, .online_shop_grid {
    width: 80%;
    column-gap: 10px;
  }
  .shop_grid p, .online_shop_grid p {
    font-size: 24px;
  }
}
/* ======================================== *\
 # ANIMATION: 共通キーフレーム
\* ======================================== */
/* 1. 画像用：*/
@keyframes spring-jump {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 2. 生地用： */
@keyframes gaufres-jump {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  30% {
    transform: translateY(-12px) rotate(-2deg);
  }
  60% {
    transform: translateY(2px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
/* 3. キャラクター用： */
@keyframes chara-spring-jump {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  30% {
    transform: translateY(-10px) rotate(3deg);
  }
  50% {
    transform: translateY(3px) rotate(-1deg);
  }
  75% {
    transform: translateY(-2px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
/* ======================================== *\
 # COMPONENT: ホバー演出の設定
\* ======================================== */
  .kuromi_01 img, .mymelody_01 img, .hellokitty_01 img, .tinychum_01 img, .pompompurin_01 img, .cinamoroll_01 img, .x_grid, .line_grid, .shop_grid, .online_shop_grid, .shop_now_wrapper, .shop_now_wrapper_02 {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
 .kuromi_01 img, .mymelody_01 img, .hellokitty_01 img, .tinychum_01 img, .pompompurin_01 img, .cinamoroll_01 img {
  display: inline-block;
}

.kuromi_01:hover img, .mymelody_01:hover img, .hellokitty_01:hover img, .tinychum_01:hover img, .pompompurin_01:hover img, .cinamoroll_01:hover img {
      will-change: transform;
  animation: chara-spring-jump 0.4s ease-out;
 
}
.shop_now_wrapper, .shop_now_wrapper_02, .x_grid, .line_grid, .shop_grid, .online_shop_grid {
  transition: transform 0.25s cubic-bezier(0.2, 1, 0.3, 1), filter 0.25s ease;
}
.shop_now_wrapper:hover, .shop_now_wrapper_02:hover, .x_grid:hover, .line_grid:hover, .shop_grid:hover, .online_shop_grid:hover {
      will-change: transform;
  transform: translateY(4px);
  filter: brightness(1.02);
  animation: none !important;
}
.scroll_item:hover img {
  transform: translateY(5px);
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.1));
}
.shop_now_wrapper:active, .shop_now_wrapper_02:active, .x_grid:active, .line_grid:active, .shop_grid:active, .online_shop_grid:active {
  transform: translateY(10px) scale(0.96) !important;
  transition: transform 0.1s;
}