/**
 * フロントページ V2 スタイル
 * トップページ新デザイン用CSS
 *
 * @package Boulangerie_Atsushi_Child
 */

/* =============================================
   基本スタイル（トップページ用）
   ============================================= */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   ティザーオーバーレイ
   ============================================= */
.teaser-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 1.2s ease;
}

.teaser-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.teaser-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teaser-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.teaser-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--color-brown);
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7);
  opacity: 0;
  white-space: nowrap;
  animation: fadeInLine 2s ease forwards;
}

.teaser-line-1 {
  right: calc(50% - 350px);
  animation-delay: 0.8s;
}

.teaser-line-2 {
  left: calc(50% - 350px);
  animation-delay: 3s;
}

@keyframes fadeInLine {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.teaser-illust {
  opacity: 0;
  animation: fadeInIllust 1s ease forwards;
}

.teaser-illust img {
  max-width: 550px;
  width: 90vw;
  height: auto;
}

@keyframes fadeInIllust {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.teaser-skip {
  position: absolute;
  bottom: 80px;
  font-size: 12px;
  color: var(--color-gray-soft);
  opacity: 0;
  animation: fadeInSkip 0.5s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInSkip {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.teaser-logo {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 2.5s ease;
  z-index: 20;
}

.teaser-logo.show {
  opacity: 1;
}

.teaser-logo img {
  max-width: 300px;
  width: 60vw;
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(30%) saturate(1200%) hue-rotate(350deg) brightness(95%) contrast(90%);
}

.teaser-text.fade-out,
.teaser-illust.fade-out {
  opacity: 0 !important;
  transition: opacity 0.8s ease;
}

/* =============================================
   メインコンテンツ（トップページ用）
   ============================================= */
/* 詳細度を高めて強制適用 */
body .site-main {
  opacity: 0 !important;
  transition: opacity 2s ease !important;
}

body .site-main.show {
  opacity: 1 !important;
  transition: opacity 2s ease !important;
  transition-delay: 0s !important;
  /* フェードイン開始遅延なし */
}

/* =============================================
   1. ヒーローセクション（フルスクリーン）
   ============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-cream, #fef2e0);
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 単一画像スライド用オーバーレイ */
.hero-slide:not(.hero-slide-split)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* 2分割スライド */
.hero-slide-split {
  display: flex;
  align-items: stretch;
  /* gap, background はインラインスタイルで設定 */
}

.hero-slide-split .split-left,
.hero-slide-split .split-right {
  /* flex はインラインスタイルで設定（幅の比率） */
  flex: 1;
  overflow: hidden;
  position: relative;
}

.hero-slide-split .split-left img,
.hero-slide-split .split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transform-origin はインラインスタイルで object-position と同じ値を設定 */
}

/* 2分割画像用オーバーレイ（各画像の上にかける） */
.hero-slide-split .split-left::after,
.hero-slide-split .split-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

/* タグライン用コンテナ（背景なし） */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hero-tagline {
  font-family: var(--font-mincho);
  font-size: 28px;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.15em;
  font-weight: 400;
  text-align: center;
}

.hero-scrolldown {
  position: absolute;
  bottom: 40px;
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

.hero-scrolldown::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--color-white);
  margin: 15px auto 0;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.8;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

/* =============================================
   2. 2分割セクション（金賞 & 米粉）
   ============================================= */
.dual-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px;
}

.feature-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-panel:hover img {
  transform: scale(1.05);
}

.feature-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.1) 60%,
      transparent 100%);
  z-index: 1;
}

.feature-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold) 0%, #f5d780 50%, var(--color-gold) 100%);
  color: var(--color-white);
  font-size: 13px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.feature-title {
  font-family: var(--font-base);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-desc {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.feature-link {
  font-family: var(--font-base);
  display: inline-block;
  border: 1px solid #fff;
  color: var(--color-white);
  padding: 10px 25px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.feature-link:hover {
  background: var(--color-white);
  color: var(--color-brown);
}

/* =============================================
   3. ストーリーセクション
   ============================================= */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  background: var(--color-white);
}

.story-image {
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}

.story-label {
  font-size: 13px;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}

.story-title {
  font-family: var(--font-base);
  font-size: 26px;
  color: var(--color-brown);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(127, 63, 32, 0.2);
}

.story-text {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--color-gray-dark);
  line-height: 2;
  margin-bottom: 30px;
}

.story-icons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.story-icon {
  text-align: center;
  background: var(--color-cream);
  padding: 25px 20px;
  border-radius: 12px;
  min-width: 110px;
}

.story-icon .icon {
  display: block;
  font-size: 36px;
  margin-bottom: 10px;
}

.story-icon .label {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-brown);
  white-space: nowrap;
}

/* =============================================
   4. メニューセクション
   ============================================= */
.menu-section {
  padding: 100px 60px;
  background-color: var(--color-cream);
  position: relative;
}

.menu-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 800px;
  background-image: radial-gradient(#D48646 0.5px, transparent 0.5px),
    radial-gradient(#D48646 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  mask-image: linear-gradient(to bottom, transparent 20%, black 80%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 20%, black 80%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: var(--font-base);
  font-size: 32px;
  color: var(--color-brown);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(127, 63, 32, 0.2);
  display: inline-block;
}

.section-subtitle {
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-gray-medium);
  letter-spacing: 0.05em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.1);
}

.menu-card-info {
  padding: 25px;
  text-align: center;
}

.menu-card-info h4 {
  font-family: var(--font-base);
  font-size: 18px;
  color: var(--color-brown);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(127, 63, 32, 0.2);
  font-weight: 500;
}

.menu-card-info p {
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--color-gray-medium);
}

.section-footer {
  text-align: center;
  margin-top: 50px;
}

/* =============================================
   5. NEWSセクション
   ============================================= */
.news-section {
  padding: 80px 60px;
  background: var(--color-cream);
  position: relative;
}

.news-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background-image: radial-gradient(#D48646 0.5px, transparent 0.5px),
    radial-gradient(#D48646 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: none;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(127, 63, 32, 0.2);
}

.news-item {
  border-bottom: 1px solid rgba(127, 63, 32, 0.2);
}

.news-link {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  transition: background 0.3s;
}

.news-link:hover {
  background: rgba(255, 255, 255, 0.5);
}

.news-date {
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-gray-medium);
  margin-right: 30px;
  white-space: nowrap;
}

.news-title {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--color-text);
}

.no-news {
  text-align: center;
  padding: 40px;
  color: var(--color-gray-medium);
}

/* =============================================
   6. SHOP INFOセクション
   ============================================= */
.shopinfo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.shopinfo-content {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shopinfo-title {
  font-family: var(--font-base);
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(254, 242, 224, 0.3);
  font-weight: 400;
  display: inline-block;
}

.shopinfo-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px 30px;
  margin-bottom: 40px;
}

.shopinfo-list dt {
  font-family: var(--font-base);
  font-weight: 500;
  opacity: 0.8;
}

.shopinfo-list dd {
  font-family: var(--font-mincho);
  margin: 0;
}

.shopinfo-list a {
  color: var(--color-cream);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.shopinfo-list a:hover {
  border-bottom-color: var(--color-cream);
}

.shopinfo-link {
  font-family: var(--font-base);
  display: inline-block;
  border: 1px solid rgba(254, 242, 224, 0.3);
  color: var(--color-cream);
  padding: 12px 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.shopinfo-link:hover {
  background: var(--color-cream);
  color: var(--color-brown);
}

.shopinfo-map {
  min-height: 400px;
}

.shopinfo-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  /* スクロール奪い防止 */
}

.shopinfo-map:hover iframe {
  pointer-events: auto;
  /* ホバー時のみ操作可能 */
}

/* =============================================
   ボタン追加スタイル（トップページ用）
   ============================================= */
.btn-text .arrow {
  margin-left: 5px;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 1024px) {

  .menu-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .right-sidebar-nav {
    display: none;
  }

  .site-main {
    margin-right: 0;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .dual-feature {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 60vh;
    padding: 40px 30px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding: 60px 20px;
  }

  .story-icons {
    gap: 10px;
    justify-content: space-between;
  }

  .story-icon {
    min-width: 100px;
    padding: 20px 15px;
  }

  .menu-section,
  .news-section {
    padding: 60px 20px;
  }

  .menu-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .shopinfo-section {
    grid-template-columns: 1fr;
  }

  .shopinfo-content {
    padding: 60px 30px;
  }

  .teaser-line {
    font-size: 18px;
  }

  .teaser-line-1 {
    right: calc(50% - 180px);
  }

  .teaser-line-2 {
    left: calc(50% - 180px);
  }

  .teaser-illust img {
    max-width: 300px;
  }

  /* モバイル用地図スタイル調整 */
  .shopinfo-map {
    background: var(--color-brown);
    padding: 0 20px 60px;
    min-height: auto;
  }

  .shopinfo-map iframe {
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
}

/* .site-mainのスクロールを無効化（ページ全体でスクロールさせる） */
.site-main {
  overflow: visible !important;
}


/* =============================================
   SNSリンクセクション
   ============================================= */
.sns-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--color-cream);
}

.sns-lead {
  font-family: var(--font-mincho);
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.sns-links {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.sns-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px 35px;
  background: var(--color-white);
  border-radius: 16px;
  text-decoration: none;
  color: var(--color-brown);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 140px;
}

.sns-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(127, 63, 32, 0.15);
}

.sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sns-instagram .sns-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--color-white);
}

.sns-creema .sns-icon {
  background: #ff6b35;
  color: var(--color-white);
}

.sns-rebake .sns-icon {
  background: #8B4513;
  color: var(--color-white);
}

.sns-name {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .sns-section {
    padding: 60px 20px;
  }

  .sns-links {
    gap: 15px;
  }

  .sns-link {
    padding: 20px 25px;
    min-width: 100px;
  }

  .sns-icon {
    width: 48px;
    height: 48px;
  }

  .sns-name {
    font-size: 12px;
  }
}

/* SNSリンク（SHOP INFO内） */
.shopinfo-sns {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  /* 少し狭めて一体感を出す */
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(254, 242, 224, 0.3);
}

.shopinfo-sns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-base);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 100px;
  /* アイコン基準で等間隔にするため固定幅 */
}

.shopinfo-sns a:hover {
  opacity: 1;
}

/* サービス名にホバー時アンダーライン */
.shopinfo-sns a > span:last-child {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.shopinfo-sns a:hover > span:last-child {
  border-bottom-color: currentColor;
}

.shopinfo-sns .sns-logo {
  width: 64px;
  /* 48px -> 64px にサイズアップ */
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  /* 少し角丸を大きく */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* 存在感を出すために影を追加 */
}

.shopinfo-sns .sns-label {
  font-size: 11px;
  min-height: 1.5em;
  /* ラベルがない場合も高さを確保 */
  display: block;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  font-feature-settings: "palt";
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* =============================================
   レイアウト調整：サイドバー追随（Sticky）
   ============================================= */
@media (min-width: 1024px) {

  /* トップページもstyle.cssと同じレイアウト方式を使用（サイドバーはfixed、bodyにmargin-right） */
  /* body の margin-right: 224px は style.css から継承 */

  /* メインコンテンツ */
  body.page-template-page-home-preview .site-main {
    width: auto !important;
    max-width: none !important;
    opacity: 0;
    /* 初期状態は非表示（アニメーション用 - style.cssの継承） */
  }

  /* アニメーション状態の維持（JSでshowクラスが付与される） */
  body.page-template-page-home-preview .site-main.show {
    opacity: 1 !important;
  }
}

/* =============================================
   SHOP INFO ヘッダー（タイトル + リンク横並び）
   ============================================= */
.shopinfo-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(254, 242, 224, 0.3);
}

.shopinfo-header .shopinfo-title {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* 詳しい店舗情報リンク（枠なしテキスト） */
.shopinfo-more-link {
  font-family: var(--font-base);
  color: var(--color-cream);
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.shopinfo-more-link:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}

/* お問い合わせボタン（白枠・ベージュ文字） */
.btn-contact-cta {
  display: inline-block;
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(254, 242, 224, 0.5);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 12px 30px;
  margin-top: 0;
  transition: all 0.3s ease;
}

.btn-contact-cta:hover {
  background: rgba(254, 242, 224, 0.1);
  border-color: var(--color-cream);
}

/* =============================================
   モバイル専用カレンダーセクション
   PC版では非表示。モバイル版スタイルは style-calendar-mobile.css に分離
   ============================================= */
.calendar-section-mobile {
  display: none;
}