@charset "UTF-8";

/* ==========================================================================
   CSS変数定義
   ========================================================================== */

:root {
  /* 基本色 */
  /* --color-base-text-dark: #333;
  --color-base-text-lightshade: #666;
  --color-base-line-dark: #bcc6c8;
  --color-base-line-light: #e0e0e0;
  --color-base-bg-light: #fff;
  --color-base-main-dark: #333;
  --color-base-main-light: #f0f0f0; */
  
  /* アクセント色 */
  --color-base-accent-dark: #00A53C;
  --color-base-accent-light: rgba(0, 165, 60, 0.3);
  --color-base-sub1-dark: #008d32;
  --color-base-sub1-light: #4CAF50;
  --color-base-sub2-dark: #E85298;
  --color-base-sub2-light: #EC407A;
  
  /* フォント */
  --fontfamily-base: 'Noto Sans JP', sans-serif;
  --fontfamily-icon: "Material Symbols Rounded";
  
  /* アイコンフォント設定 */
  --iconfont-wght200-set: "wght" 200;
  --iconfont-wght100-set: "wght" 100;
  
  /* ボーダー半径 */
  --box-radius-small: 8px;
  --box-radius-medium: 16px;
  --box-radius-large: 20px;
  --box-radius-xlarge: 24px;
}
/* ニュースバブル内の店舗名を非表示 */
.shop-name-hidden {
  display: none;
}

/* foot_icons_snsを非表示 */
.aireco .foot_icons_sns{
  display: none;
}
/* ==========================================================================
   基本設定・共通スタイル
   ========================================================================== */

.shop_txt {
  background: var(--color-base-main-light);
  padding: 20px;
  margin: 0 0 40px;
}

.hidden {
  display: none !important;
}

/* フッターナビ非表示 */
.aireco footer .footer-navi{
  display: none!important;
}
/* ==========================================================================
   メインレイアウト・背景
   ========================================================================== */

.aireco #contents-main .search_main {
  background: url(bg_ai.jpg);
  background-size: cover;
}

.aireco #contents-main h2 {
  background: var(--color-base-accent-dark);
  color: #fff;
  /*padding: 20px 25px;*/
  padding: 20px 25px 20px 5px;
  border-radius: var(--box-radius-medium) var(--box-radius-medium) var(--box-radius-medium) 0;
  margin: 20px 0 40px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}

/* h2タイトルのアイコン表示 */
.aireco #contents-main h2::before {
  font-family: var(--fontfamily-icon);
  font-size: 24px;
  font-variation-settings: var(--iconfont-wght200-set);
  display: inline-block;
  margin-right: 8px;
  font-weight: normal;
  vertical-align: middle;
}

.aireco #contents-main h2.short::before { content: "\efbf"; }
.aireco #contents-main h2.family::before { content: "\eb41"; }
.aireco #contents-main h2.gourmet::before { content: "\ea57"; }
.aireco #contents-main h2.quiet::before { content: "\e541"; }
.aireco #contents-main h2.drink::before { content: "\f1f3"; }
.aireco #contents-main h2.gift::before { content: "\ef91"; }
.aireco #contents-main h2.morning::before { content: "\e430"; }
.aireco #contents-main h2.anniversary::before { content: "\ea65"; }
.aireco #contents-main h2.event::before { content: "\ebcc"; }
.aireco #contents-main h2.feature::before { content: "\f454"; }
.aireco #contents-main h2.shopping::before { content: "\f1cc"; }

/* メインタイトル用スタイル */
.aireco #contents-main h2.tti_main {
  background: var(--color-base-accent-dark);
  padding: 10px 23px;
  font-size: 30px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 380px;
  max-width: 550px;
  margin: 0;
}
.aireco #contents-main p.tti_sub {
  text-shadow: 6px 2px 0px #fff;
  color: var(--color-base-text-dark);
  font-size: 40px;
  line-height: 120%;
  font-weight: bold;
  max-width: 550px;
}
.aireco #contents-main p.caption{
  font-size: 16px;
  line-height: 120%;
  color: var(--color-base-text-dark);
}
/* ==========================================================================
   質問ボタンセクション
   ========================================================================== */

#contents-main .question {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

#contents-main .question .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0 auto;
}
#contents-main .question .text {
  margin: 10px 0 0;
  font-size: 12px;
}

#contents-main .caution p{
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
}

#contents-main .question .btn-fixed-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 110px;
  height: 110px;
  padding: 18px 10px 10px;
  border: none;
  border-radius: var(--box-radius-large);
  background-color: #fff;
  color: var(--color-base-text-dark);
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 120%;
  font-weight: normal;
}

/* アイコン（疑似要素） */
#contents-main .question .btn-fixed-text::before {
  font-family: var(--fontfamily-icon);
  font-size: 34px;
  font-variation-settings: var(--iconfont-wght100-set);
  display: block;
  line-height: 1;
  color: var(--color-base-accent-dark);
  font-weight: normal;
}
.pc #contents-main .question .btn-fixed-text::before{
  font-size: 40px;
}

#contents-main .question .btn-fixed-text.short::before { content: "\efbf"; }
#contents-main .question .btn-fixed-text.family::before { content: "\eb41"; }
#contents-main .question .btn-fixed-text.gourmet::before { content: "\ea57";}
#contents-main .question .btn-fixed-text.quiet::before { content: "\e541";}
#contents-main .question .btn-fixed-text.drink::before { content: "\f1f3";}
#contents-main .question .btn-fixed-text.gift::before { content: "\ef91";}
#contents-main .question .btn-fixed-text.morning::before { content: "\e430"; }
#contents-main .question .btn-fixed-text.anniversary::before { content: "\ea65"; }
#contents-main .question .btn-fixed-text.event::before { content: "\ebcc"; }
#contents-main .question .btn-fixed-text.feature::before { content: "\f454"; }
#contents-main .question .btn-fixed-text.shopping::before { content: "\f1cc"; }

/* ホバー時 */
#contents-main .question .btn-fixed-text:hover {
  background: var(--color-base-accent-dark);
  color: #fff;
}

#contents-main .question .btn-fixed-text:hover::before {
  color: #fff;
}

/* 選択中 */
#contents-main .question .btn-fixed-text.selected,
#contents-main .question .btn-fixed-text[data-selected="true"] {
  background-color: var(--color-base-sub1-dark);
  color: #fff;
  border-color: var(--color-base-sub1-dark);
}

/* ==========================================================================
   ショップブロック表示
   ========================================================================== */

.shopBlock,
.eventBlock {
  background: #fff;
  border-radius: 0 var(--box-radius-xlarge) var(--box-radius-xlarge) 0;
  padding: 12px 20px 30px;
  margin-bottom: 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  border: 2px solid var(--color-base-accent-dark);
}


.shopBlock.show,
.eventBlock.show {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールアニメーション用 */
.shopBlock.anim-box.popup,
.eventBlock.anim-box.popup {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

.shopBlock.anim-box.popup.is-animated,
.eventBlock.anim-box.popup.is-animated {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* popupアニメーション用スタイル */
.anim-box.popup {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
}

.anim-box.popup.is-animated {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#contents-main h2.shop-section,
#contents-main h3.shop-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#contents-main h2.shop-section.show,
#contents-main h3.shop-section.show {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 50px;
}
#contents-main h3.shop-section.show.news{
  margin-bottom: 16px;
}

/* h3タイトルのスタイル */
#contents-main h3.shop-section{
  margin: 30px 24px 0;
  background: transparent;
  text-align: center;
  position: relative;
  font-size: 18px;
}
#contents-main h3.shop-section::before,
#contents-main h3.shop-section::after{
  position: absolute;
  content: "";
  width: 50px;
  height: 80px;
  bottom: 10px;
}
#contents-main h3.shop-section::before{
  background: url(fig_line01.png);
  background-repeat: no-repeat;
  left: 0;
}
#contents-main h3.shop-section::after{
  background: url(fig_line02.png);
  background-repeat: no-repeat;
  right: -12px;
}

.shopBlock .floor-label,
.eventBlock .floor-label {
  position: absolute;
  top: -33px;
  left: -2px;
  background: var(--color-base-accent-dark);
  color: #fff;
  padding: 4px 12px 6px;
  border-radius: var(--box-radius-small) var(--box-radius-small) 0 0;
  font-size: 16px;
  font-weight: bold;
  min-width: 80px;
  max-width: 200px;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#contents-main .eventBlock .floor-label{
  width: auto;
  padding: 4px 16px 6px;
}

.shopBlock .shop-name,
.eventBlock .shop-name {
  color: var(--color-base-accent-dark);
  font-size: 18px;
  font-weight: bold;
}

.shopBlock .shop-category,
.eventBlock .shop-category {
  color: var(--color-base-text-dark);
  font-size: 14px;
  display: block;
}

.shopImage,
.eventBlock .shopImage {
  text-align: center;
  margin: 10px 0 20px;
  position: relative;
}

.shopImage img,
.eventBlock .shopImage img {
  width: 100%;
  height: auto;
  height: 225px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--box-radius-medium) var(--box-radius-medium) var(--box-radius-medium) 0;
  /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);*/
}

.shopContent,
.eventBlock .shopContent {
  text-align: left;
}

.shopContent .description,
.eventBlock .shopContent .description {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}

.shopContent .business-hours,
.eventBlock .shopContent .business-hours {
  color: #666;
  font-size: 14px;
  padding: 0 0 1px 28px;
  position: relative;
}

.shopContent .business-hours,
.eventBlock .shopContent .business-hours,
.eventBlock .shopContent .business-place {
  color: #666;
  font-size: 14px;
  padding: 0 0 1px 28px;
  position: relative;
  line-height: 120%;
  margin-top: 5px;
}

.shopContent .business-hours::before,
.eventBlock .shopContent .business-hours::before {
  content: "\e8b5";
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  font-variation-settings: "wght" 400;
  font-weight: normal;
  position: absolute;
  top: calc(50% - 8px);
  left: -3px;
  color: var(--color-base-accent-dark);
}

.eventBlock .shopContent .business-place::before {
  content: "\e0c8";
  font-family: "Material Symbols Rounded";
  font-size: 25px;
  font-variation-settings: "wght" 300;
  font-weight: normal;
  margin: 0 5px 0 0;
  position: absolute;
  top: calc(50% - 8px);
  left: -5px;
}

.shopFlags {
  position: relative;
}

.shopFlags .tag {
  background: #fff;
  color: #E85298;
  padding: 6px 10px 9px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #EC407A;
  margin-right: 8px;
  display: inline-block;
  position: absolute;
  bottom: -12px;
  right: -35px;
  line-height: 1;
}
.shopFlags .tag:nth-child(2){
  bottom: 26px;
}
.shopFlags .tag:nth-child(3){
  bottom: 64px;
}

.shopBlock .more-btn,
.eventBlock .more-btn {
  position: absolute;
  bottom: -8px;
  right: -7px;
  background: var(--color-base-accent-dark);
  color: #fff;
  padding: 2px 22px 6px;
  border-radius: 14px 14px 14px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.2s;
}

.shopBlock .more-btn:hover,
.eventBlock .more-btn:hover {
  background: var(--color-base-sub1-dark);
}

/* ==========================================================================
   吹き出し（Bubble）表示
   ========================================================================== */
#bubble-wrapper{
  background: #fff;
  border-radius: 10px 10px 10px 0;
  padding: 20px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 2px solid var(--color-base-accent-dark);
}
#bubble-wrapper,
#news-bubble-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 20px;
}
#news-bubble-wrapper {
    margin: 0 0 -16px;
}

/* 基本bubbleスタイル */
.bubble {
  border-bottom: 1px solid var(--color-base-accent-dark);
  padding: 18px 0;
  margin: 0 24px;
  display: block;
  max-width: 90%;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  font-family: var(--fontfamily-base);
  text-align: justify;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}

.bubble.show {
  opacity: 1;
  transform: translateY(0);
}

/* bubble-wrapper内のみ新方式適用 */
#bubble-wrapper .bubble {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#bubble-wrapper .bubble.show {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* 最初の要素用クラス */
#bubble-wrapper .bubble.bubble-first {
  padding-top: 0;
}

/* 最後の要素用クラス */
#bubble-wrapper .bubble.bubble-last {
  border-bottom: none;
  padding-bottom: 0;
}

/* 単独要素用クラス（最初かつ最後） */
#bubble-wrapper .bubble.bubble-single {
  border-bottom: none;
  padding: 0;
}

/* センテンス区切り用スタイル */
.bubble .sentence {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.bubble.show .sentence {
  opacity: 1;
  transform: translateY(0);
}

.bubble .sentence:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* 段階的表示用の遅延 */
.bubble.show .sentence:nth-child(1) { transition-delay: 0.1s; }
.bubble.show .sentence:nth-child(2) { transition-delay: 0.2s; }
.bubble.show .sentence:nth-child(3) { transition-delay: 0.3s; }
.bubble.show .sentence:nth-child(4) { transition-delay: 0.4s; }
.bubble.show .sentence:nth-child(5) { transition-delay: 0.5s; }

.news-bubble {
  background: #fff;
  border-radius: 20px;
  padding: 12px 24px 26px 20px;
  margin: 0;
  display: inline-block;
  position: relative;
  max-width: 90%;
  font-size: 15px;
  line-height: 150%;
  animation: newsBubblePopup 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-family: 'Noto Sans JP', sans-serif;
  border: 2px solid var(--color-base-accent-dark);
  text-align: justify;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}

@keyframes newsBubblePopup {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ==========================================================================
   ローディング表示
   ========================================================================== */

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  opacity: 0;
  animation: fadeInOverlay 0.3s ease-in-out forwards;
  z-index: 500;
}

.loading-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  border: 3px solid var(--color-base-accent-dark);
  width: 50vw;
  max-width: 300px;
  min-width: 200px;
  aspect-ratio: 1/1.6;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: scale(0.8);
  animation: fadeInCard 0.6s ease-out 0.1s forwards;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.loading-card .loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  -webkit-mask: conic-gradient(from 15deg, #0000, #000);
  animation: l26 1s infinite steps(12);
}

.loading-card .loader,
.loading-card .loader:before,
.loading-card .loader:after {
  background:
    radial-gradient(closest-side at 50% 12.5%,
     #fff 96%, #0000) 50% 0/20% 80% repeat-y,
    radial-gradient(closest-side at 12.5% 50%,
     #fff 96%, #0000) 0 50%/80% 20% repeat-x;
}

.loading-card .loader:before,
.loading-card .loader:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}

.loading-card .loader:after {
  transform: rotate(60deg);
}

.loading-card .progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.loading-card .progress-circle {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(0, 165, 60, 0.2),
    0 0 0 4px var(--color-base-accent-dark);
}
.loading-card .progress-water {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--color-base-sub1-light) 0%, var(--color-base-accent-dark) 50%, var(--color-base-sub1-dark) 100%);
  border-radius: 0 0 105px 105px;
  transition: height 0.4s ease;
  overflow: hidden;
}

.loading-card .progress-water::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 200%;
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.4) 0px,
    rgba(255,255,255,0.2) 10px,
    rgba(255,255,255,0.4) 20px
  );
  animation: waveSlide 4s linear infinite;
  opacity: 0.3;
}

@keyframes waveSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.loading-card .progress-text {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  z-index: 10;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.7),
    0 0 10px rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
}

.loading-card .loading-text {
  color: var(--color-base-accent-dark);
  font-size: 18px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  text-align: center;
}

.loading-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e3f2fd;
  border: 1px solid #2196f3;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e3f2fd;
  border-top: 2px solid #2196f3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}




/* ==========================================================================
   Swiper（スライダー）
   ========================================================================== */


.swiper-cards .swiper-slide{
    border-radius: 20px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
}

.aireco #contents-main .swiper {
  width: 80%;
  max-width: 600px;
  margin: auto;
}

.aireco #contents-main .newsItem {
  background: #fff;
  /*border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 3px solid #fff;*/
  position: relative;
}
.aireco #contents-main .newsItem::before {
  content: "";
  position: absolute;
  border: 3px solid #fff;
  border-radius: 12px;
  pointer-events: none;
  z-index: 10;
}
.aireco #contents-main .swiper-wrapper{
  padding: 0 0 30px;
  margin: 0 0 30px;
}
.aireco #contents-main .swiper-slide .newsItem .image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.aireco #contents-main .swiper-slide .newsItem .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aireco #contents-main .swiper-slide .newsItem .textContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 16px 12px;
  color: #fff;
  font-size: 15px;
  line-height: 150%;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.4); 
  box-sizing: border-box;
  border-radius: 0 0 12px 12px;
}

.aireco #contents-main .swiper-slide .newsItem .textContent p{
    border-bottom: 1px solid #FFF;
    margin-bottom: 3px;
    padding-bottom: 8px;
    line-height: 130%;
}

.aireco #contents-main .swiper-slide .newsItem .textContent h5{
    display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
}


.aireco #contents-main .swiper-slide .newsItem .textContent a{
    color: #fff;
    display: none;
}
/* Swiperナビゲーションボタンスタイル・位置調整 */
.aireco #contents-main .swiper-button-next,
.aireco #contents-main .swiper-button-prev {
  top: 30%;
  bottom: 10px;
  width: 30px;
  height: 30px;
  margin-top: 0;
}

.aireco #contents-main .swiper-button-next {
  right: -44px;
}

.aireco #contents-main .swiper-button-prev {
  left: -44px;
}

.aireco #contents-main .swiper-button-next:after,
.aireco #contents-main .swiper-rtl .swiper-button-prev:after {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-base-accent-dark);
}

.aireco #contents-main .swiper-button-prev:after,
.aireco #contents-main .swiper-rtl .swiper-button-next:after {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-base-accent-dark);
}
.aireco #contents-main .newsDesc{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Swiperページネーション */
.aireco #contents-main .swiper-pagination {
  bottom: 0px;
}

.aireco #contents-main .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #D6D6D6;
  opacity: 1;
  margin: 0 4px;
}

.aireco #contents-main .swiper-pagination-bullet-active {
  background: var(--color-base-accent-dark);
  transform: scale(1.2);
}

/* ==========================================================================
   コンテンツ表示（ボイス・イベント）
   ========================================================================== */

.voiceItem {
  margin-bottom: 1.5em;
}

.voice_message {
  font-size: 1.1em;
}

.voice_meta {
  font-size: 0.9em;
  color: #666;
}
#contents-main h3.shop-section.voice {
  margin: 30px 0 0px;
  box-sizing: border-box;
  width: 100%;
  min-width: auto;
}
#contents-main h2.shop-section.show.event{
  margin-bottom: 20px;
}

.eventItem {
  margin-bottom: 1.5em;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
}

.eventItem .image {
  width: 250px;
  margin-right: 10px;
}

.eventItem img {
  max-width: 100%;
  height: auto;
}

.eventItem .detail {
  width: calc(100% - 300px);
}

.event_meta {
  font-size: 0.85em;
  color: #666;
}
#contents-main h3.shop-section.event{
  margin: 20px 30px 50px 30px;
}
#contents-main #event-bubble-wrapper .bubble:last-of-type{
  margin: 10px 0 80px;
}

/* ==========================================================================
   アニメーション定義
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bubblePopup {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

@keyframes fadeInCard {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
}

/* PC時のfadeOutアニメーション調整 */
body.pc.aireco .loading-overlay.fade-out {
  animation: fadeOutPC 0.4s ease-in-out forwards;
}

@keyframes fadeOutPC {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}

/* スマホ時のfadeOutアニメーション調整 */
body:not(.pc).aireco .loading-overlay.fade-out {
  animation: fadeOutSP 0.4s ease-in-out forwards;
}

@keyframes fadeOutSP {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}

@keyframes fadeInContent {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes l26 {
  100% { transform: rotate(1turn); }
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
    opacity: 1;
  }
}

@keyframes loading {
  0%   { left: -100%; width: 100%; }
  50%  { left: 25%; width: 50%; }
  100% { left: 100%; width: 0%; }
}

/* アニメーション適用クラス */
.fade-out {
  animation: fadeOut 0.4s ease-in-out forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeInContent 0.6s ease-out forwards;
}
/* ==========================================================================
   pc対応
   ========================================================================== */
@media screen and (min-width: 1250px) {
  .pc.aireco .plan_wrap{
    display: flex;
    gap: 0px;
    padding: 40px 60px;
  }
  .pc.aireco .plan_wrap section{
    width: calc(100% / 2 - 0px);
  }
  .pc.aireco .plan_wrap section.answer{

  }

  /* PC表示時のスマホモックアップビュー */
  body.pc.aireco #summary {
    max-width: 390px;
    height: 640px;
    /*max-height: calc(100vh - 200px);*/
    background-color: rgba(255, 255, 255, 0.75);
    border: 10px solid #333;
    border-radius: 26px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 30px 0;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    backdrop-filter: blur(12px);
  }

  /* PC環境でのスクロールバー非表示 */
  body.pc.aireco #summary::-webkit-scrollbar {
    display: none;
  }

  /* PC表示時のloading-overlay位置調整 */
  body.pc.aireco .plan_wrap {
    position: relative;
  }

  body.pc.aireco .loading-overlay {
    position: absolute;
    top: -8%;
    right: 5px;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
  }

  body.pc.aireco .loading-card {
    width: 30vw;
    max-width: 200px;
    min-width: 150px;
  }

  body.pc.aireco #contents-main h3.shop-section{
    margin: 20px 0 50px;
  }
  body.pc.aireco #contents-main h3.shop-section.news,
  body.pc.aireco #contents-main h3.shop-section.voice {
    margin: 0;
    min-width: auto;
    width: 100%;
  }

  /* #summary初期表示用画像（PC環境のみ） */
  body.pc.aireco #summary-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 35px);
    text-align: center;
  }
  body.pc.aireco #summary-placeholder img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
  }

  /* コンテンツ表示時に初期画像を非表示（PC環境のみ） */
  body.pc.aireco #summary.has-content #summary-placeholder {
    display: none;
  }

  body.pc.aireco #contents-main .answer h2{
      margin: 20px 0;
  }
  body.pc.aireco #contents-main .answer h2::before {
      font-size: 42px;
      position: relative;
    top: -3px;
  }

  body.pc.aireco #other-plans-section{
      display: none!important;
  }
}

/* 1440px以下でloading-overlayの位置調整 */
@media screen and (max-width: 1440px) and (min-width: 1250px) {
  body.pc.aireco .loading-overlay {
    top: -12%;
  }
}

/* スマホ表示時は通常表示 */
body:not(.pc).aireco #summary {
  /* モックアップスタイルをリセット */
  flex: none;
  max-width: none;
  height: auto;
  max-height: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow-y: visible;
  overscroll-behavior: auto;
  padding: 0;
  box-sizing: content-box;
}

/* スマホ環境では初期画像を非表示 */
body:not(.pc) #summary-placeholder {
  display: none;
}

/* 1250px以下で#summary-placeholder imgを非表示 */
@media screen and (max-width: 1250px) {
  #summary-placeholder img {
    display: none;
  }
}

/* 1250px以下でタブレット用padding（スマホには効かない） */
@media screen and (max-width: 1250px) and (min-width: 768px) {
  .aireco #contents-main .search_main {
    padding: 50px 200px;
  }
  
  /* ボタン押下で.questionを非表示 */
  .question.hidden {
    display: none;
  }
  .aireco #contents-main .search_main{
    background: url(bg_ai.jpg);
    background-size: contain;
  }
  #contents-main h3.shop-section{
    font-size: 20px;
    line-height: 1.2;
  }
  .search_main .weather-display{
    background: transparent;
    margin: -18px 0 0;
  }
}

/* ==========================================================================
   スマートフォン対応
   ========================================================================== */

.sp.aireco #contents-main .search_main {
  background: url(bg_ai.jpg);
  background-size: contain;
  /*background-attachment: fixed;*/
  background-position: center top;
  min-height: 100vh;
  min-width: none;
}

.sp .contents-inner {
  padding: 20px 20px 30px;
}

.sp #contents-main .question {
  padding: 0;
  gap: 0;
}
.sp.aireco #contents-main h2{
  border-radius: 8px;
  margin: 0px 0 25px;
}
.sp.aireco #contents-main h2::before{
  font-size: 12vw;
  /*margin: 0 3px 3px 0;*/
}
.sp #contents-main .question .row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 0 0 20px;
}
.sp.aireco #contents-main h2.tti_main,
.sp.aireco #contents-main p.tti_sub,
.sp.aireco #contents-main p.caption{
  margin: 0 0 20px;
}
.sp .search_main .text{
  margin: 0 0 8px;
  padding: 0;
  text-align: center;
}
.sp .timeText{
  margin: 0 0 5px;
}

.sp #contents-main .question .btn-fixed-text {
  width: calc((100% - 20px) / 3);
  height: calc((100% - 20px) / 3);
  aspect-ratio: 1;
  max-width: 110px;
  max-height: 110px;
  min-width: 85px;
  min-height: 85px;
  font-size: clamp(12px, 2.5vw, 14px);
  border-radius: 16px;
  flex: 0 0 calc((100% - 20px) / 3);
}

.sp #contents-main .question .btn-fixed-text .material-symbols-outlined {
  font-size: 23px;
  margin-bottom: 6px;
}
.sp.aireco #contents-main h2.tti_main{
  width: 100%;
  font-size: 24px;
}
.sp.aireco #contents-main p.tti_sub{
  font-size: 36px;
}
.sp.aireco #contents-main p.caption {
  font-size: 18px;
  text-align: center;
  line-height: 140%;
}

/* ボイス用Swiperスタイル */
.aireco #contents-main .voiceWrap{
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: 10px;
}
.aireco #contents-main .swiper.voice-slider{
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 10px;
}
.aireco #contents-main .voiceWrap .swiper-button-next,
.aireco #contents-main .voiceWrap .swiper-button-prev {
  position: absolute;
  top: 33%;
  width: 40px;
  height: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aireco #contents-main .voiceWrap .swiper-button-next {
  right: -20px;
}

.aireco #contents-main .voiceWrap .swiper-button-prev {
  left: -20px;
}

.aireco #contents-main .voiceWrap .swiper-button-next:after,
.aireco #contents-main .voiceWrap .swiper-button-prev:after,
.aireco #contents-main .voiceWrap .voice-swiper-button-next:after,
.aireco #contents-main .voiceWrap .voice-swiper-button-prev:after {
  font-size: 20px;
  color: var(--color-base-accent-dark);
  font-weight: bold;
}
/* ニュース用Swiperボタンスタイル */
.aireco #contents-main .news-swiper .news-swiper-button-next,
.aireco #contents-main .news-swiper .news-swiper-button-prev {
  position: absolute;
  top: 33%;
  width: 40px;
  height: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aireco #contents-main .news-swiper .news-swiper-button-next {
  right: -50px;
}

.aireco #contents-main .news-swiper .news-swiper-button-prev {
  left: -50px;
}

.aireco #contents-main .news-swiper .news-swiper-button-next:after,
.aireco #contents-main .news-swiper .news-swiper-button-prev:after {
  font-size: 25px;
  color: var(--color-base-accent-dark);
  font-weight: bold;
}
/* ボイス用Swiperボタンスタイル（既存の拡張） */
.aireco #contents-main .voiceWrap .voice-swiper-button-next,
.aireco #contents-main .voiceWrap .voice-swiper-button-prev {
  position: absolute;
  top: 33%;
  width: 40px;
  height: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aireco #contents-main .voiceWrap .voice-swiper-button-next {
  right: -20px;
}

.aireco #contents-main .voiceWrap .voice-swiper-button-prev {
  left: -20px;
}
.aireco #contents-main .voice-slider .swiper-slide {
  height: auto;
}
.aireco #contents-main .voice-slider .voiceCard {
  background: #fff;
  padding: 0 20px;
  border-radius: 16px 16px 16px 0;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
  min-height: 140px;
  display: flex;
  align-items: center;
}

.aireco #contents-main .voice-slider .voiceContent {
  text-align: left;
}

.aireco #contents-main .voice-slider .voice_message {
  color: #333;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 72px;
  word-break: break-all;
  overflow-wrap: break-word;
}

.aireco #contents-main .voice-slider .voice_meta {
  color: #666;
  font-size: 12px;
  margin-bottom: 3px;
}

.aireco #contents-main .voice-slider .voice_meta strong {
  color: #333;
  font-weight: bold;
}

.aireco #contents-main .voice-slider a.voice_shopName {
  color: var(--color-base-accent-dark);
  text-decoration: none;
  position: relative;
  display: block;
  padding: 0 0 0 18px;
  line-height: 120%;
}

.aireco #contents-main .voice-slider a.voice_shopName::before{
  content: "\e0c8";
  font-family: "Material Symbols Rounded";
  font-size: 20px;
  font-variation-settings: "wght" 300;
  font-weight: normal;
  margin: 0 5px 0 0;
  position: absolute;
  top: 2px;
  left: -5px;
}

.aireco #contents-main .voice-slider .swiper{
  margin: 0 40px;
  box-sizing: content-box;
  overflow: hidden;
}

.aireco #contents-main .voice-slider .swiper-wrapper {
  padding: 0;
  margin-bottom: 20px;
}

/* specialLinkボタンスタイル */
.specialLink {
  text-align: center;
  margin: 30px 0;
}

.specialLink a {
  display: inline-block;
  background: var(--color-base-accent-dark);
  color: #fff;
  padding: 12px 24px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: background 0.2s;
  width: 220px;
  text-align: center;
  border: 2px solid #fff;
  position: relative;
  padding-right: 30px;
}

.specialLink a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.specialLink a:hover {
  background: var(--color-base-sub1-dark);
}

/* specialLink.listクラス用スタイル */
.specialLink.list a {
  background: #fff;
  color: var(--color-base-accent-dark);
  border: 2px solid var(--color-base-accent-dark);
}

.specialLink.list a::after {
  border-left-color: var(--color-base-accent-dark);
}

.specialLink.list a:hover {
  background: var(--color-base-accent-dark);
  color: #fff;
  border: 2px solid var(--color-base-accent-dark);
}

.specialLink.list a:hover::after {
  border-left-color: #fff;
}



/* =============================================================================
   天気表示スタイル
   ============================================================================= */
.search_main .weather-display {
    display: flex;
    align-items: center;
    padding: 0 12px 12px;
    margin: -5px 0 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.2;
    background: #fff;
}
.search_main .weather-icon {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search_main .weather-icon img{
  width: 18px;
}
.search_main .weather-display p{
  width: 100%;
  text-align: left;
  margin: 0;
}

.sp .search_main .weather-display{
  margin: 0 0 14px;
  background: transparent;
  font-size: 15px;
}



/* アニメーション */
.weather-display {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.weather-display.weather-initial {
  opacity: 0;
  transform: translateY(20px);
}

/* 1250px以下でタブレット用padding（スマホには効かない） */
@media screen and (max-width: 1250px) and (min-width: 768px) {
  .search_main .weather-display{
    background: transparent;
    margin: -18px 0 0;
  }
  .shopImage img, .eventBlock .shopImage img {
    height: 300px;
  }
}