/* Cafe Page - カフェ固有スタイルのみ
   共通パーツは marine.css / top.css / company.css を直接読み込み */

/* ========================================
   Concept テキスト折り返し上書き + ヒーロー下余白
   ======================================== */
.cafe-page .marine-concept {
  padding-top: 110px;
}

.cafe-concept-text {
  white-space: normal;
}

.cafe-concept-text .marine-concept-title {
  font-size: 24px;
  line-height: 34.5px;
  letter-spacing: 1.8px;
}

.cafe-concept-text .marine-concept-desc {
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.075em;
}

/* ========================================
   Menu Section
   ======================================== */
.cafe-menu {
  background-color: #fff;
  padding: 100px 0 110px;
}

.cafe-menu-lead-title {
  font-family: var(--font-serif-jp);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 34.5px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 20px;
}

.cafe-menu-lead-desc {
  font-family: var(--font-sans-jp);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 32px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 80px;
}

.cafe-menu-category {
  max-width: 848px;
  margin: 0 auto 80px;
}

.cafe-menu-category:last-child {
  margin-bottom: 0;
}

.cafe-menu-category .page-section-title {
  text-align: center;
  margin-bottom: 10px;
}

.cafe-menu-category .page-section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.cafe-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 848px;
  margin-left: auto;
  margin-right: auto;
}

.cafe-menu-item {
  padding: 25px 0 15px 0;
  border-bottom: 1px solid #707070;
}

.cafe-menu-item-name {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-serif-jp);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 29px;
  color: var(--color-text);
}

.cafe-menu-item-name::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  background-color: #1CB0AB;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cafe-menu-item-variants {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.125px;
  line-height: 32px;
  color: var(--color-text);
  margin-left: 25px;
}

/* ========================================
   Scrolling Banner
   ======================================== */
.cafe-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 737;
  overflow: hidden;
  background-image: url('../img/cafe/banner.jpg');
  background-size: cover;
  background-position: center;
}

.cafe-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 1;
  pointer-events: none;
}

.cafe-banner-heading {
  font-family: var(--font-serif);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 7.5px;
  color: transparent;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  bottom: 29px;
  left: 0;
  width: 100%;
  height: 135px;
  margin: 0;
  padding: 0;
  z-index: 2;
}

.cafe-banner-heading::before {
  content: 'FIVE ONE CAFE  BY  VINGTQUATRE   FIVE ONE CAFE  BY  VINGTQUATRE   FIVE ONE CAFE  BY  VINGTQUATRE   ';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.9);
  animation: scroll-text 29s linear infinite;
}

/* ========================================
   Shop Info - company.css の .company-info を上書き
   ======================================== */
.cafe-info {
  padding-top: 100px;
}

/* ========================================
   Responsive - Tablet (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .cafe-banner-heading {
    font-size: 70px;
    bottom: 25px;
  }
}

/* ========================================
   Responsive - SP (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .cafe-page .marine-concept {
    padding-top: 60px;
  }

  .cafe-concept-text .marine-concept-title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.5px;
  }

  .cafe-menu {
    padding: 60px 0 40px;
  }

  .cafe-menu-lead-title {
    font-size: 18px;
    letter-spacing: 1.2px;
    line-height: 30px;
  }

  .cafe-menu-lead-desc {
    text-align: left;
    margin-bottom: 50px;
  }

  .cafe-menu-category {
    max-width: 100%;
    margin-bottom: 48px;
  }

  .cafe-menu-category .page-section-subtitle {
    margin-bottom: 30px;
  }

  .cafe-menu-item {
    padding: 20px 0 12px 0;
  }

  .cafe-menu-item-name {
    font-size: 17px;
    gap: 12px;
  }

  .cafe-menu-item-variants {
    font-size: 13px;
    margin-left: 21px;
  }

  .cafe-banner {
    aspect-ratio: 375 / 300;
  }

  .cafe-banner-heading {
    font-size: 36px;
    bottom: 12px;
    height: 49px;
  }

  .cafe-info {
    padding-top: 60px;
  }
}
