@charset "UTF-8";

/* =========================================================================
   Service View Toggle (切り替えボタン)
   ========================================================================= */
.service-view-toggle {
  display: flex;
  gap: 0.5rem;
  background: #f4f4f2;
  padding: 0.4rem;
  border-radius: 8px;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.view-toggle-btn {
  background: transparent;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--light);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.view-toggle-btn:hover {
  color: var(--ink);
}

.view-toggle-btn.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* =========================================================================
   Service Table View (料金一覧コンテナ)
   ========================================================================= */
.service-table-wrapper {
  width: 100%;
}

.service-app-table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  text-align: left;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.group-row .group-title-cell {
  background: #f4f4f2;
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.service-app-table .data-row td {
  padding: 1rem 0.2rem;
  border-bottom: 1px dashed #eee;
  line-height: 1.5;
  vertical-align: top;
}

.service-app-table tr:last-child td {
  border-bottom: none;
}

.service-name-cell {
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 0.8rem; 
}

.service-price-cell {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--light) !important;
  text-align: right;
  white-space: nowrap;
  width: 1%;
}