@charset "UTF-8";

/* ============================
   TOMOWL - MENU ページ
   ============================ */

/* ---------- Menu Section ---------- */
.menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  background-color: #f5f3ee;
}

/* ---------- Menu Intro ---------- */
.menu-intro {
  padding-bottom: 24px;
}

/* ---------- Menu Category ---------- */
.menu-category {
  width: 100%;
  margin-top: 48px;
}

.menu-category:first-of-type {
  margin-top: 32px;
}

.menu-category-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333a3a;
  letter-spacing: 1.6px;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 6px 0;
  border-bottom: 0.5px solid #ca9c00;
}

/* ---------- Menu Row ---------- */
.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
}

.menu-row:first-of-type {
  padding-top: 18px;
}

/* ---------- Menu Text ---------- */
.menu-name {
  font-size: 1.2rem;
  letter-spacing: 0.72px;
  line-height: 1.8;
  flex: 1;
}

.menu-price {
  width: 104px;
  flex-shrink: 0;
  font-size: 1.2rem;
  letter-spacing: 0.72px;
  line-height: 1.8;
  display: grid;
  grid-template-columns: 1fr 8px;
  align-items: baseline;
}

.menu-price__value {
  text-align: right;
}

.menu-price__suffix {
  display: block;
  width: 8px;
  text-align: left;
}

.menu-note-inline {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.72px;
  line-height: 1.8;
  text-align: center;
}

/* ---------- Menu Note ---------- */
.menu-note {
  padding: 24px 0;
}

/* ============================
   TOMOWL MEMBER
   ============================ */

.member-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  background-color: #f5f3ee;
}

.member-note {
  padding-top: 12px;
}

/* ============================
   Charge Cards
   ============================ */

.charge-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 18px;
  width: 100%;
}

.charge-card {
  background-color: #f9f8f5;
  border-radius: 30px;
  box-shadow: 1px 4px 16px rgba(0, 0, 0, 0.1);
  padding: 18px 24px;
}

.charge-card__amount {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #333a3a;
  letter-spacing: 0.72px;
  line-height: 1.8;
}

.charge-card__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.charge-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.charge-card__row--border {
  border-bottom: 1px solid #ca9c00;
}

.charge-card__label,
.charge-card__value {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #333a3a;
  letter-spacing: 0.72px;
  line-height: 1.8;
}

.charge-card__value {
  text-align: right;
}
@media screen and (min-width: 760px) and (max-width: 1199px) {
  .menu-section,
  .member-section {
    padding-left: 6%;
    padding-right: 6%;
  }
}