@charset "UTF-8";
:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

body {
  background-color: #ffffff;
}
@media (min-width: 576px) {
  body {
    background-color: white;
    background-image: url("../images/logo_smileandtable_gray.svg");
    background-repeat: repeat;
    background-size: 120px auto;
    background-position: 0 0;
    background-attachment: fixed;
    min-height: 100vh;
  }
}

@media (min-width: 576px) {
  html, body {
    background-color: white;
    background-image: url("../images/logo_smileandtable_gray.svg");
    background-repeat: repeat;
    background-size: 120px auto;
    background-position: 0 0;
    background-attachment: fixed;
  }

  .st-lp-main {
    background-color: transparent !important;
  }
}
.st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
}
.st-loading-container .st-loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid #f1f5f9;
  border-top: 2px solid var(--st-green-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}
.st-loading-container .st-loading-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--st-text-primary);
  margin: 0;
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .st-loading-container {
    min-height: 50vh;
    padding: 1.5rem;
  }
  .st-loading-container .st-loading-spinner {
    width: 28px;
    height: 28px;
    margin-bottom: 0.75rem;
  }
  .st-loading-container .st-loading-text {
    font-size: 0.85rem;
  }
}
.st-splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  /* ✅ 本番用：不透明背景に復元 */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.st-splash-screen.st-splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.st-splash-screen .st-splash-logo {
  width: 600px !important;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: st-splash-logo-fade-in 1.2s ease-out 0.3s forwards;
}
.st-splash-screen .st-splash-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes st-splash-logo-fade-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .st-splash-screen .st-splash-logo {
    width: 300px !important;
  }
}
@media (max-width: 375px) {
  .st-splash-screen .st-splash-logo {
    width: 200px !important;
  }
}
.st-tooltip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.st-tooltip-overlay.show {
  opacity: 1;
  visibility: visible;
}

.st-tooltip {
  background: white;
  border-radius: 12px;
  padding: 20px 20px 40px 20px;
  width: 80%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: scale(0.9);
  transition: all 0.3s ease;
  margin: 0 auto;
  box-sizing: border-box;
}
.st-tooltip-overlay.show .st-tooltip {
  transform: scale(1);
}
@media (max-width: 375px) {
  .st-tooltip {
    padding: 16px 14px 20px 14px;
    border-radius: 8px;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
  }
}

.st-tooltip-title {
  font-size: 18px;
  font-weight: var(--st-font-weight-medium);
  color: var(--st-green-primary);
  margin: 0 0 12px 0;
  padding: 40px 20px 0 20px;
  line-height: 1.3;
}
@media (max-width: 375px) {
  .st-tooltip-title {
    font-size: 15px;
    margin-bottom: 10px;
    padding: 36px 14px 0 14px;
  }
}

.st-tooltip-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border: none;
  background: var(--st-green-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 10;
}
.st-tooltip-close:hover {
  background: var(--st-green-primary);
  opacity: 0.8;
  transform: scale(1.1);
}
.st-tooltip-close:active {
  background: var(--st-green-primary);
  opacity: 0.7;
  transform: scale(0.9);
}
.st-tooltip-close .material-symbols-outlined {
  font-size: 16px;
  color: white;
  font-weight: bold;
}
@media (max-width: 375px) {
  .st-tooltip-close {
    top: 10px;
    right: 10px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
  }
  .st-tooltip-close .material-symbols-outlined {
    font-size: 14px;
  }
}

.st-tooltip-slides {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  min-height: 1px;
}
@media (max-width: 375px) {
  .st-tooltip-slides {
    margin-bottom: 16px;
  }
}

.st-tooltip-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  min-height: 1px;
}
.st-tooltip-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.st-tooltip-slide.prev {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}
.st-tooltip-slide.next {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.st-tooltip-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: var(--st-font-weight-normal);
  color: #333;
  margin: 0;
  padding: 0 20px 20px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.st-tooltip-slide.active .st-tooltip-text {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 375px) {
  .st-tooltip-text {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 16px 16px 16px;
  }
}

.st-tooltip-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 375px) {
  .st-tooltip-dots {
    gap: 6px;
  }
}
@media (pointer: coarse) {
  .st-tooltip-dots {
    gap: 6px;
  }
}
@media (pointer: coarse) and (max-width: 375px) {
  .st-tooltip-dots {
    gap: 6px;
  }
}

.st-tooltip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
  position: relative;
  overflow: hidden;
}
.st-tooltip-dot.active {
  background: var(--st-green-primary);
  transform: scale(1.3);
}
.st-tooltip-dot:hover:not(.active) {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
.st-tooltip-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.st-tooltip-dot:active::before {
  width: 20px;
  height: 20px;
}
@media (max-width: 375px) {
  .st-tooltip-dot {
    width: 6px;
    height: 6px;
  }
}

@media (pointer: coarse) {
  .st-tooltip-close {
    min-width: 24px;
    min-height: 24px;
  }

  .st-tooltip-dot {
    min-width: 12px;
    min-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .st-tooltip-dot::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
  }
  .st-tooltip-dot.active::after {
    background: var(--st-green-primary);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }
}
@media (pointer: coarse) and (max-width: 375px) {
  .st-tooltip-dot {
    min-width: 6px;
    min-height: 6px;
  }
  .st-tooltip-dot::after {
    width: 6px;
    height: 6px;
  }
}
@media (pointer: coarse) and (pointer: coarse) and (max-width: 375px) {
  .st-tooltip-close {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
  }
}
.st-tooltip-fade-in {
  animation: tooltipFadeIn 0.3s ease-out forwards;
}

.st-tooltip-fade-out {
  animation: tooltipFadeOut 0.3s ease-out forwards;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes tooltipFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.st-course-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-course-modal-overlay.st-modal-active {
  opacity: 1;
  visibility: visible;
}
.st-course-modal-overlay .st-course-modal {
  position: relative;
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-course-modal-overlay.st-modal-active .st-course-modal-overlay .st-course-modal {
  transform: scale(1) translateY(0);
}
.st-course-modal-overlay .st-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--st-green-primary);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
.st-course-modal-overlay .st-modal-close:hover, .st-course-modal-overlay .st-modal-close:focus {
  background: var(--st-green-dark, #1ea54a);
  transform: scale(1.05);
  color: white;
}
.st-course-modal-overlay .st-modal-close:focus-visible {
  outline: 2px solid var(--st-green-primary);
  outline-offset: 2px;
}
.st-course-modal-overlay .st-modal-close .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
  color: inherit;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-modal-close .material-symbols-outlined {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-modal-close {
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
.st-course-modal-overlay .st-course-cards-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  box-sizing: border-box;
}
.st-course-modal-overlay .st-course-cards-container::-webkit-scrollbar {
  display: none;
}
.st-course-modal-overlay .st-course-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: center;
  padding: 40px 24px 24px 24px;
  box-sizing: border-box;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card {
    padding: 40px 16px 16px 16px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-catch-copy {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--st-text-primary);
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-catch-copy {
    font-size: 1rem;
    margin-bottom: 14px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-logo {
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-logo {
    margin-bottom: 16px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-logo img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-logo img {
    max-width: 170px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-recommended {
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-recommended {
    margin-bottom: 18px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-recommended h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--st-text-primary);
  margin: 0 0 12px 0;
  text-align: center;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-recommended h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-recommended .st-recommended-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}
.st-course-modal-overlay .st-course-card .st-course-recommended .st-recommended-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--st-text-secondary);
  line-height: 1.5;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-recommended .st-recommended-list li {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
}
.st-course-modal-overlay .st-course-card .st-course-recommended .st-recommended-list li .st-check-icon {
  color: var(--st-green-primary);
  margin-right: 8px;
  margin-top: 2px;
  font-size: 1rem;
  flex-shrink: 0;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 20;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-course-recommended .st-recommended-list li .st-check-icon {
    font-size: 0.8rem;
    margin-right: 6px;
  }
}
.st-course-modal-overlay .st-course-card .st-cooking-time {
  background: #2d3748;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  margin: 0 auto;
  max-width: 200px;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-cooking-time {
    padding: 12px 16px;
    max-width: 160px;
  }
}
.st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-label {
  color: white;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 4px;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-label {
    font-size: 0.75rem;
  }
}
.st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value .st-time-prefix, .st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value .st-time-suffix {
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value .st-time-prefix, .st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value .st-time-suffix {
    font-size: 0.75rem;
  }
}
.st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value .st-time-number {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 375px) {
  .st-course-modal-overlay .st-course-card .st-cooking-time .st-cooking-time-value .st-time-number {
    font-size: 1.25rem;
  }
}
.st-course-modal-overlay .st-course-modal-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px 20px;
}
.st-course-modal-overlay .st-course-modal-indicators .st-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-course-modal-overlay .st-course-modal-indicators .st-indicator.st-active {
  background: var(--st-green-primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .st-course-modal-overlay .st-course-modal {
    width: 95%;
    max-height: 85vh;
  }
}
:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

.st-deadline-tooltip {
  position: absolute;
  z-index: 1000;
  background: #ffd700;
  border-radius: var(--st-radius-sm);
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-deadline-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}
.st-deadline-tooltip-arrow {
  position: absolute;
  top: -6px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffd700;
}
.st-deadline-tooltip-content {
  text-align: center;
}
.st-deadline-tooltip-content .st-deadline-tooltip-week {
  font-size: 0.875rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #333;
  line-height: 1.2;
}
.st-deadline-tooltip-content .st-deadline-tooltip-message {
  font-size: 1rem;
  font-weight: normal;
  color: #333;
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 375px) {
  .st-deadline-tooltip {
    padding: 10px 14px;
  }
  .st-deadline-tooltip-content .st-deadline-tooltip-week {
    font-size: 0.8125rem;
  }
  .st-deadline-tooltip-content .st-deadline-tooltip-message {
    font-size: 0.9375rem;
  }
  .st-deadline-tooltip-arrow {
    left: 16px;
  }
}
@media (prefers-color-scheme: dark) {
  .st-deadline-tooltip {
    background: #ffeb3b;
  }
  .st-deadline-tooltip-arrow {
    border-bottom-color: #ffeb3b;
  }
  .st-deadline-tooltip-content .st-deadline-tooltip-week,
.st-deadline-tooltip-content .st-deadline-tooltip-message {
    color: #1a1a1a;
  }
  .st-deadline-tooltip-content .st-deadline-tooltip-week {
    border-bottom-color: #1a1a1a;
  }
}
@media (prefers-contrast: high) {
  .st-deadline-tooltip {
    background: #ffff00;
    border: 2px solid #000;
  }
  .st-deadline-tooltip-arrow {
    border-bottom-color: #ffff00;
  }
  .st-deadline-tooltip-arrow::before {
    content: "";
    position: absolute;
    top: 1px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #000;
  }
  .st-deadline-tooltip-content .st-deadline-tooltip-week,
.st-deadline-tooltip-content .st-deadline-tooltip-message {
    color: #000;
    font-weight: 900;
  }
}
@media (prefers-reduced-motion: reduce) {
  .st-deadline-tooltip {
    transition: opacity 0.1s ease;
    transform: none;
  }
  .st-deadline-tooltip.show {
    transform: none;
  }
}
.st-deadline-tooltip.debug {
  border: 2px dashed #ff0000;
  background: rgba(255, 215, 0, 0.8);
}
.st-deadline-tooltip.debug-arrow {
  border-bottom-color: rgba(255, 215, 0, 0.8);
}

.st-course-tooltip.show ~ .st-deadline-tooltip,
.st-free-tooltip.show ~ .st-deadline-tooltip,
.st-multi-week-tooltip.show ~ .st-deadline-tooltip {
  display: none;
}

.st-deadline-tooltip {
  z-index: 1001;
}

.st-deadline-tooltip {
  will-change: opacity, transform;
}
.st-deadline-tooltip.show {
  will-change: auto;
}

:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

:root {
  --vh: 1vh;
  --dvh: 1dvh;
}

.st-lp-main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  touch-action: pan-y pan-x;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  z-index: 1;
}
@media (min-width: 576px) {
  .st-lp-main {
    width: 576px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
  }
}
.st-lp-main .st-lp-hero {
  height: 90vh;
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}
.st-lp-main .st-lp-hero.st-full-height {
  height: 100vh;
  min-height: 100vh;
}
.st-lp-main .st-lp-hero .st-lp-video {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.st-lp-main .st-lp-hero .st-lp-video:nth-child(2) {
  margin-top: -2px;
}
.st-lp-main .st-lp-hero .st-lp-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.st-lp-main .st-lp-hero .st-lp-video::after {
  display: none !important;
}
.st-lp-main .st-lp-hero .vimeo-video-container {
  position: relative;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input {
  background-color: #fff3cd !important;
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25) !important;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input:focus {
  background-color: #fff3cd !important;
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5) !important;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input-notice {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 0.375rem;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input-notice .st-notice-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input-notice .st-notice-content .st-notice-icon {
  color: #0c5460;
  font-size: 1.25rem;
  margin-top: 0.125rem;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input-notice .st-notice-content .st-notice-text {
  color: #0c5460;
  font-size: 0.875rem;
  line-height: 1.5;
}
.st-lp-main .st-lp-hero .vimeo-video-container .st-manual-input-notice .st-notice-content .st-notice-text strong {
  font-weight: 600;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-hero .vimeo-video-container iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-width: none;
    max-height: 100%;
  }
}
@media (max-width: 500px) {
  .st-lp-main .st-lp-hero .vimeo-video-container {
    height: 50vh !important;
  }
  .st-lp-main .st-lp-hero .vimeo-video-container iframe {
    height: 100% !important;
    min-height: 100% !important;
    width: 177.78vh !important;
  }
}
@media (min-height: 990px) {
  .st-lp-main .st-lp-hero .vimeo-video-container {
    height: 50vh !important;
  }
  .st-lp-main .st-lp-hero .vimeo-video-container iframe {
    height: 100% !important;
    min-height: 100% !important;
    width: 177.78vh !important;
  }
}
.st-lp-main .st-lp-hero .st-lp-catch-copy {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 15;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.st-lp-main .st-lp-hero .st-lp-catch-copy .st-catch-text {
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.2;
  color: #edd010;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-hero .st-lp-catch-copy .st-catch-text {
    top: 3%;
    left: 3%;
    font-size: 1.8rem;
  }
}
.st-lp-main .st-lp-hero .st-lp-yoshikei-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35%;
  z-index: 10;
}
.st-lp-main .st-lp-hero .st-lp-yoshikei-logo .st-yoshikei-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.st-lp-main .st-lp-hero .st-lp-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 10;
}
.st-lp-main .st-lp-hero .st-lp-logo-overlay .st-lp-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.st-lp-main .st-lp-hero .st-lp-logo-overlay .st-trial-text {
  margin-top: 1rem;
  text-align: center;
}
.st-lp-main .st-lp-hero .st-lp-logo-overlay .st-trial-text .st-trial-badge {
  display: inline-block;
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.st-lp-main .st-lp-hero .st-lp-logo-overlay .st-new-life-text {
  margin-top: 1rem;
  text-align: center;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.st-lp-main .st-lp-hero .st-lp-logo-overlay .st-new-life-text .st-new-badge {
  display: inline-block;
  background: white;
  color: #dc3545;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0.2rem;
  text-align: center;
  line-height: 1.5rem;
}
.st-lp-main .st-lp-hero .st-lp-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  z-index: 10;
  opacity: 0.8;
}
.st-lp-main .st-lp-hero .st-lp-scroll-indicator .st-scroll-arrow {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  animation: bounce 2s infinite;
}
.st-lp-main .st-lp-integrated-section {
  min-height: 100vh;
  height: auto;
  background-color: #ffffff;
  position: relative;
  z-index: 5;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  overscroll-behavior: contain;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: auto;
  z-index: 15;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon {
  position: absolute;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
  pointer-events: auto;
  cursor: pointer;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.size-large {
  background: var(--theme-color, white);
  width: 28vw;
  height: 28vw;
  padding: 2.2vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.size-large {
    width: 170px;
    height: 170px;
    padding: 11px;
  }
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.size-medium {
  width: 20vw;
  height: 20vw;
  padding: 1.5vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.size-medium {
    width: 96px;
    height: 96px;
    padding: 7px;
  }
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.size-small {
  width: 23vw;
  height: 23vw;
  padding: 0vw;
  z-index: 15;
  pointer-events: auto !important;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.size-small {
    width: 130px;
    height: 130px;
    padding: 0px;
  }
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-1 {
  top: 5%;
  left: 4%;
  z-index: 10;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-2 {
  top: 13%;
  right: 10%;
  z-index: 10;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-5 {
  bottom: 0%;
  right: 13%;
  z-index: 10;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-10 {
  bottom: 11%;
  left: 10%;
  z-index: 10;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-3 {
  top: 15%;
  left: 28%;
  z-index: 1;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-4 {
  top: 5%;
  right: 8%;
  z-index: 1;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-6 {
  top: 28%;
  left: 4%;
  z-index: 1;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-7 {
  top: 30%;
  right: 8%;
  z-index: 1;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-8 {
  bottom: 0%;
  left: 5%;
  z-index: 1;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-9 {
  bottom: 20%;
  right: 8%;
  z-index: 1;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-1 {
    top: 5%;
    left: 4%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-2 {
    top: 13%;
    right: 10%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-5 {
    bottom: 0%;
    right: 13%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-10 {
    bottom: 11%;
    left: 10%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-3 {
    top: 15%;
    left: 28%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-4 {
    top: 5%;
    right: 8%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-6 {
    top: 28%;
    left: 4%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-7 {
    top: 30%;
    right: 8%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-8 {
    bottom: 0%;
    left: 5%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-9 {
    bottom: 20%;
    right: 8%;
    z-index: 1;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-1 {
    top: 5%;
    left: 4%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-2 {
    top: 13%;
    right: 10%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-5 {
    bottom: 0%;
    right: 13%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-10 {
    bottom: 10%;
    left: 10%;
    z-index: 10;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-3 {
    top: 10%;
    left: 28%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-4 {
    top: 2%;
    right: 8%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-6 {
    top: 23%;
    left: 4%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-7 {
    top: 25%;
    right: 8%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-8 {
    bottom: 0%;
    left: 5%;
    z-index: 1;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.position-9 {
    bottom: 20%;
    right: 8%;
    z-index: 1;
  }
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.animate-in {
  opacity: 1;
  transform: scale(1);
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon.floating-active.size-large {
  animation: floating-animation 4s ease-in-out infinite;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .material-symbols-outlined {
  font-size: 5vw;
  margin-bottom: 0.5rem;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .material-symbols-outlined.size-large {
  font-size: 9vw;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .material-symbols-outlined.size-medium {
  font-size: 4vw;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .material-symbols-outlined.size-small {
  font-size: 3vw;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content i {
  font-size: 7vw;
  margin-bottom: 1rem;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content i.fa-stopwatch-20 {
  font-size: 9vw;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content i {
    font-size: 6vw;
    margin-bottom: 0.5rem;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content i.fa-stopwatch-20 {
    font-size: 8vw;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content i {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content i.fa-stopwatch-20 {
    font-size: 28px;
  }
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.6vw;
  line-height: 1.4;
  color: white;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text.size-large {
  font-size: 2.8vw;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text.size-medium {
  font-size: 2vw;
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text.size-small {
  font-size: 1.8vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text {
    font-size: 16px;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text.size-large {
    font-size: 16px;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text.size-medium {
    font-size: 10px;
  }
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text.size-small {
    font-size: 9px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-icon-text {
    font-size: 2.6vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-circle-icons-container .st-circle-icon .st-icon-content .st-menu-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  margin: 0;
  display: block;
  background: #f0f0f0;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  height: auto;
  min-height: 100%;
  overscroll-behavior: contain;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container {
    padding: 0rem 0.5rem 0rem 0.5rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content {
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem 2rem 1rem;
  box-sizing: border-box;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content {
    padding: 5rem 0.5rem 2rem 0.5rem;
  }
}
@media (max-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content {
    padding: 5rem 1rem 2rem 1rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-smile-table-logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-smile-table-logo img {
  width: 42vw;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-smile-table-logo img {
    width: 202px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-catch-copy {
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-catch-copy {
    padding-top: 0rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-catch-copy .st-catch-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.6;
  color: var(--st-color-text);
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-catch-copy .st-catch-text {
    font-size: 30px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-catch-copy .st-catch-text {
    font-size: 5vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-lead-text {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-lead-text .st-lead-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.8;
  color: var(--st-color-text);
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-lead-text .st-lead-content {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-smile-table-content .st-lead-text .st-lead-content {
    font-size: 3.4vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content {
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overscroll-behavior: contain;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content {
    padding: 5rem 1rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-catch-copy {
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-catch-copy.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-catch-copy .st-catch-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.6;
  color: var(--st-color-text);
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-catch-copy .st-catch-text {
    font-size: 30px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-catch-copy .st-catch-text {
    font-size: 5vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lead-text {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lead-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lead-text .st-lead-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.8;
  color: var(--st-color-text);
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lead-text .st-lead-content {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lead-text .st-lead-content {
    font-size: 3.4vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features {
  width: 100%;
  max-width: 100%;
  margin: 0rem auto 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-features-title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  color: var(--st-color-text);
  margin-bottom: 2rem;
  position: relative;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-features-title {
    font-size: 19px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-features-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--st-green-primary), var(--st-green-dark));
  border-radius: 2px;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-items: center;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-features-grid {
    gap: 1rem;
    padding: 0;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card {
  background: var(--st-surface);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--st-green-primary);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content {
  margin-top: 0;
  padding-top: 0;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-feature-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.6;
  color: var(--st-color-text);
  margin-top: 0rem;
  margin-bottom: 0.3rem;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-feature-title {
    font-size: 30px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-feature-title {
    font-size: 5vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-feature-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.8;
  color: var(--st-color-text);
  margin: 0;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-feature-description {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-feature-description {
    font-size: 3.4vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 3vw;
  line-height: 1.6;
  text-align: center;
  align-self: flex-start;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag {
    font-size: 16px;
    padding: 6px 12px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag {
    font-size: 3.4vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag.st-choice-tag-clickable {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag.st-choice-tag-clickable .material-symbols-outlined {
  font-size: 1em;
  animation: arrow-slide 2s infinite;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag.st-choice-tag-clickable:hover {
  background: #ffc300;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-tag.st-choice-tag-clickable:active {
  transform: translateY(0);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-lifestyle-tag {
  background: #ffd93d;
  color: #000;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-menu-tag {
  background: #ffd93d;
  color: #000;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3.4vw;
  line-height: 1.8;
  color: var(--st-color-text);
  margin: 0.5rem 0 0 0.5rem;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-description {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card .st-feature-content .st-choice-methods .st-choice-method .st-choice-description {
    font-size: 3.8vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag {
  background: #ffd93d;
  color: #000;
  padding: 1.5vw 3vw;
  border-radius: 5vw;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 5vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag {
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag {
    padding: 3vw 6vw;
    border-radius: 5vw;
    font-size: 5vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag span {
  display: block;
  line-height: 1.2;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag span:first-child {
  font-size: 4vw;
  font-weight: 600;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-trial-tag span:first-child {
    font-size: 4vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  margin-bottom: 1.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price {
  display: flex;
  align-items: center;
  gap: 2vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price {
    gap: 10px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-people-count {
  background: #ffd93d;
  color: black;
  padding: 2vw 3vw;
  border-radius: 2vw;
  font-size: 3vw;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-people-count {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-people-count {
    font-size: 3vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount {
  color: #000;
  font-size: 15vw;
  font-weight: 700;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount {
    font-size: 16vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount .st-currency {
  font-size: 5vw;
  font-weight: 600;
  margin-left: 0.5vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount .st-currency {
    font-size: 34px;
    margin-left: 2px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount .st-currency {
    font-size: 5vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices {
  display: flex;
  gap: 1.5vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices {
    gap: 7px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price {
    gap: 7px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-people-count {
  background: #ffd93d;
  color: black;
  padding: 1.5vw 2vw;
  border-radius: 1.5vw;
  font-size: 3vw;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-people-count {
    padding: 7px 10px;
    border-radius: 7px;
    font-size: 14px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount {
  color: #000;
  font-size: 5vw;
  font-weight: 700;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount {
    font-size: 29px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount .st-currency {
  font-size: 3vw;
  font-weight: 600;
  margin-left: 0.3vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount .st-currency {
    font-size: 14px;
    margin-left: 1px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display {
    gap: 3vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price {
    gap: 3vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-people-count {
    padding: 3vw 4vw;
    border-radius: 3vw;
    font-size: 4vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount {
    font-size: 12vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount .st-currency {
    font-size: 4vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices {
    gap: 2vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price {
    gap: 2vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-people-count {
    padding: 2vw 3vw;
    border-radius: 2vw;
    font-size: 3vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount {
    font-size: 4vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount .st-currency {
    font-size: 4vw;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display {
    gap: 14px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price {
    gap: 14px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-people-count {
    padding: 14px 19px;
    border-radius: 14px;
    font-size: 19px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount {
    font-size: 95px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-main-price .st-price-amount .st-currency {
    font-size: 25px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices {
    gap: 10px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price {
    gap: 10px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-people-count {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount {
    font-size: 36px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-display .st-sub-prices .st-sub-price .st-price-amount .st-currency {
    font-size: 19px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-note {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3vw;
  color: #6c757d;
  text-align: left;
  line-height: 1.6;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-note {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-discount .st-price-info .st-price-note {
    font-size: 3.4vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content {
  display: flex;
  align-items: center;
  gap: 2vw;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content {
    gap: 10px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-image {
  flex-shrink: 0;
  width: 16vw;
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-image {
    width: 77px;
    height: 77px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-image {
    width: 16vw;
    height: 16vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text {
  flex: 1;
  min-width: 0;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-title {
  margin-top: 0;
  margin-bottom: 0.2rem;
  font-size: 4vw;
  font-weight: 600;
  line-height: 1.3;
  color: var(--st-color-text);
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-title {
    font-size: 22px !important;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-title {
    font-size: 3.5vw;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-description {
  margin: 0;
  font-size: 3vw;
  line-height: 1.6;
  color: var(--st-color-text);
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-description {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-description {
    font-size: 3.4vw;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content {
    gap: 1.5vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-image {
    width: 15vw;
    height: 15vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-title {
    font-size: 3.6vw;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-description {
    font-size: 3.2vw;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content {
    gap: 7px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-image {
    width: 72px;
    height: 72px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-title {
    font-size: 17px;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-features .st-feature-card.st-feature-award .st-award-content .st-award-text .st-feature-description {
    font-size: 15px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-button-section {
  margin-top: 3rem;
  text-align: center;
  pointer-events: auto;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-button-section .st-trial-button {
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem !important;
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 280px;
  margin: 0 auto;
}
@media (hover: none) and (pointer: coarse) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-button-section .st-trial-button:hover {
    background: var(--st-green-primary) !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-button-section .st-trial-button:active {
    background: var(--st-green-primary) !important;
    transform: none !important;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-button-section .st-trial-button:hover {
  background: var(--st-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 33, 83, 0.3);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-trial-button-section .st-trial-button .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section {
  padding: 5rem 0rem 0rem 0rem !important;
  text-align: center;
  background: var(--st-surface);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon .material-symbols-outlined {
  font-size: 3rem;
  color: var(--st-green-primary);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon i {
  font-size: 3rem;
  color: var(--st-green-primary);
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon .material-symbols-outlined {
    font-size: 2.5rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon i {
    font-size: 2.5rem;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon .material-symbols-outlined {
    font-size: 3.5rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-icon i {
    font-size: 3.5rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.6;
  color: var(--st-green-primary);
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-title {
    font-size: 5.5vw;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-section-title {
    font-size: 24px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-list {
  max-width: 100%;
  margin: 0 auto;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-item {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-item {
    padding: 1.8rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-question,
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-question,
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-answer {
    gap: 0.8rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-question {
  margin-bottom: 1rem;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-question {
    margin-bottom: 0.8rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-label {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-label {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-question .st-faq-label {
  background: var(--st-green-primary);
  color: white;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-answer .st-faq-label {
  background: #f0f9ff;
  color: var(--st-green-primary);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.7vw;
  line-height: 1.8;
  color: var(--st-color-text);
  margin: 0;
  padding-top: 0.25rem;
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-text {
    font-size: 4vw;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-text {
    font-size: 16px;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-question .st-faq-text {
  font-weight: 600;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-answer .st-faq-text {
  font-weight: 400;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container {
  margin-top: 1rem;
  text-align: center;
  pointer-events: auto;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 3.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button:hover {
  background: var(--st-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button:active {
  transform: translateY(0);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button .st-button-text {
  line-height: 1;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button .material-symbols-outlined {
  font-size: 1.2em;
  transition: transform 0.3s ease;
  animation: arrow-slide 2s infinite;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button:hover .material-symbols-outlined {
  transform: translateX(4px);
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button {
    font-size: 3.8vw;
    padding: 0.7rem 1.3rem;
  }
}
@media (min-width: 576px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-lp-faq-section .st-faq-button-container .st-faq-detail-button {
    font-size: 14px;
    padding: 0.9rem 1.8rem;
  }
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 1rem 16rem 1rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-logo {
  margin-bottom: 1.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-logo img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--st-color-text);
  margin-bottom: 0.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--st-color-text);
  margin-bottom: 0.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact {
  margin-top: 1.5rem;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-contact-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--st-green-primary);
  margin-bottom: 0.8rem;
  text-align: center;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-company-phone {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-company-phone .st-phone-link {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 1rem 1.5rem;
  background: white;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 50px;
  text-decoration: none;
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: center;
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-company-phone .st-phone-link:hover {
  background: #f8f9fa;
  border-color: #999;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-company-phone .st-phone-link:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info {
    margin-top: 3rem;
    padding: 1.5rem 1rem 16rem 1rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-logo {
    margin-bottom: 1rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-logo img {
    width: 60%;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-name {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-address {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact {
    margin-top: 1rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-contact-label {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-company-phone {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .st-lp-main .st-lp-integrated-section .st-integrated-content-container .st-price-content .st-company-info .st-company-contact .st-company-phone .st-phone-link {
    display: block;
    padding: 0.8rem 1.5rem;
  }
}
.st-lp-main .st-trial-button-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.st-lp-main .st-trial-button-fixed .st-button-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .st-lp-main .st-trial-button-fixed {
    left: 50%;
    transform: translateX(-50%);
    width: 552px;
    border-radius: 0 0 0 0;
  }
}
.st-lp-main .st-trial-button-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
@media (min-width: 576px) {
  .st-lp-main .st-trial-button-fixed.hidden {
    transform: translate(-50%, 20px);
  }
}
.st-lp-main .st-trial-button-fixed.fade-in {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 576px) {
  .st-lp-main .st-trial-button-fixed.fade-in {
    transform: translate(-50%, 0);
  }
}
.st-lp-main .st-trial-button-fixed .st-document-request-button {
  width: 100%;
  padding: 1rem 1.5rem;
  background: white;
  color: #333;
  border: 2px solid #ccc;
  border-radius: 50px;
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  font-weight: 600;
  transition: all 0.3s ease;
}
.st-lp-main .st-trial-button-fixed .st-document-request-button:hover {
  background: #f8f9fa;
  border-color: #999;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.st-lp-main .st-trial-button-fixed .st-document-request-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.st-lp-main .st-trial-button-fixed .st-document-request-button .st-button-text {
  font-size: 1.1rem;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .st-lp-main .st-trial-button-fixed .st-document-request-button .st-button-text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-trial-button-fixed .st-document-request-button .st-button-text {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-trial-button-fixed .st-document-request-button {
    max-width: 320px;
    min-width: 280px;
    padding: 0.6rem 1.5rem;
  }
}
.st-lp-main .st-trial-button-fixed .st-trial-button {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--st-green-primary);
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
  white-space: nowrap;
}
@media (hover: none) and (pointer: coarse) {
  .st-lp-main .st-trial-button-fixed .st-trial-button:hover {
    background: var(--st-green-primary) !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
  }
  .st-lp-main .st-trial-button-fixed .st-trial-button:active {
    background: var(--st-green-primary) !important;
    transform: none !important;
  }
}
.st-lp-main .st-trial-button-fixed .st-trial-button:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-lp-main .st-trial-button-fixed .st-trial-button:active {
  transform: translateY(0);
}
.st-lp-main .st-trial-button-fixed .st-trial-button .material-symbols-outlined {
  font-size: 1.2rem;
  animation: arrow-slide 2s infinite;
}
@media (min-width: 576px) {
  .st-lp-main .st-trial-button-fixed .st-trial-button {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .st-lp-main .st-trial-button-fixed .st-trial-button {
    max-width: 320px;
    min-width: 280px;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

.st-trial-button-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}
.st-trial-button-container .st-trial-button {
  width: 100%;
  background: var(--st-green-primary);
  color: white;
  border: none;
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(127, 33, 83, 0.3);
  margin: 0 auto;
}
@media (hover: none) and (pointer: coarse) {
  .st-trial-button-container .st-trial-button:hover {
    background: var(--st-green-primary) !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
  }
  .st-trial-button-container .st-trial-button:active {
    background: var(--st-green-primary) !important;
    transform: none !important;
  }
}
.st-trial-button-container .st-trial-button:hover {
  background: var(--st-green-dark);
  box-shadow: 0 6px 20px rgba(127, 33, 83, 0.4);
}
.st-trial-button-container .st-trial-button:active {
  background: var(--st-green-darker);
  box-shadow: 0 2px 8px rgba(127, 33, 83, 0.3);
  transform: scale(0.98);
}
.st-trial-button-container .st-trial-button .st-button-text {
  font-family: inherit;
}
.st-trial-button-container .st-trial-button .material-symbols-outlined {
  font-size: 1.2rem;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media (prefers-reduced-motion: no-preference) {
  .st-lp-parallax .st-lp-image {
    transition: transform 0.1s ease-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .st-lp-main .st-lp-scroll-indicator .st-scroll-arrow {
    animation: none;
  }
  .st-lp-main .material-symbols-outlined {
    animation: none !important;
  }

  .st-news-detail-button .material-symbols-outlined {
    animation: none !important;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes arrow-slide {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(2px);
  }
}
@keyframes floating-animation {
  0% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-8px) scale(1.05);
  }
  50% {
    transform: translateY(-4px) scale(1.02);
  }
  75% {
    transform: translateY(-10px) scale(1.08);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.st-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: modalFadeIn 0.3s ease-out;
}

.st-modal-container {
  background: white;
  border-radius: 16px;
  width: 90vw;
  max-width: 90vw;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
  position: relative;
}
@media (min-width: 576px) {
  .st-modal-container {
    width: 80vw;
    max-width: 80vw;
    border-radius: 20px;
  }
}
@media (max-width: 375px) {
  .st-modal-container {
    width: 95vw;
    max-width: 95vw;
    border-radius: 12px;
  }
}

.st-modal-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -1rem;
}
.st-modal-icon .material-symbols-outlined {
  font-size: 3rem;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
}
.st-modal-icon i {
  font-size: 3rem;
}
@media (min-width: 576px) {
  .st-modal-icon .material-symbols-outlined {
    font-size: 4rem;
  }
  .st-modal-icon i {
    font-size: 4rem;
  }
}
@media (max-width: 375px) {
  .st-modal-icon .material-symbols-outlined {
    font-size: 2.5rem;
  }
  .st-modal-icon i {
    font-size: 2.5rem;
  }
}

.st-modal-close {
  position: sticky;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  float: right;
  margin-bottom: 16px;
}
.st-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.st-modal-content {
  padding: 60px 32px 32px;
}
@media (min-width: 576px) {
  .st-modal-content {
    padding: 80px 48px 48px;
  }
}
@media (max-width: 375px) {
  .st-modal-content {
    padding: 50px 24px 24px;
  }
}

.st-modal-heading {
  padding-top: 42px;
  margin-bottom: 24px;
}
.st-modal-heading:first-child {
  padding-top: 0;
}
.st-modal-heading:last-child {
  margin-bottom: 0;
}
.st-modal-heading .st-modal-icon {
  text-align: center;
  margin-bottom: 0px;
}
.st-modal-heading .st-modal-icon .material-symbols-outlined {
  font-size: 48px;
  color: var(--theme-color, #22c55e);
  font-variation-settings: "FILL" 1;
}
.st-modal-heading .st-modal-icon i {
  font-size: 48px;
  color: var(--theme-color, #22c55e);
}
@media (min-width: 576px) {
  .st-modal-heading .st-modal-icon .material-symbols-outlined {
    font-size: 60px;
  }
  .st-modal-heading .st-modal-icon i {
    font-size: 60px;
  }
}
@media (max-width: 375px) {
  .st-modal-heading .st-modal-icon .material-symbols-outlined {
    font-size: 40px;
  }
  .st-modal-heading .st-modal-icon i {
    font-size: 40px;
  }
}
.st-modal-heading h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--theme-color, #22c55e);
  margin: 0 0 12px 0;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 576px) {
  .st-modal-heading h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 375px) {
  .st-modal-heading h2 {
    font-size: 1.1rem;
  }
}

.st-modal-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .st-modal-lead {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .st-modal-lead {
    font-size: 0.85rem;
  }
}

.st-modal-topic {
  padding: 0 0px;
  margin-bottom: 24px;
}
.st-modal-topic:last-child {
  margin-bottom: 0;
}

.st-modal-topic-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 576px) {
  .st-modal-topic-text {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .st-modal-topic-text {
    font-size: 0.85rem;
  }
}

.st-modal-content-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  margin-bottom: 24px;
}
.st-modal-content-text:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .st-modal-content-text {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .st-modal-content-text {
    font-size: 0.85rem;
  }
}

.st-modal-topic-image {
  text-align: center;
  margin-bottom: 0;
}
.st-modal-topic-image img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.st-modal-topic-images {
  text-align: center;
  margin-bottom: 0;
}
.st-modal-topic-images img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px auto;
}
.st-modal-topic-images img:last-child {
  margin-bottom: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@media (min-width: 576px) {
  .st-modal-container {
    width: 440px;
    max-width: 440px;
  }

  .st-modal-content {
    padding: 60px 32px 32px;
  }

  .st-modal-heading h2 {
    font-size: 1.25rem;
  }

  .st-modal-lead {
    font-size: 0.95rem;
  }

  .st-modal-topic-text {
    font-size: 0.9rem;
  }

  .st-modal-topic-image img {
    width: 40%;
  }

  .st-modal-topic-images img {
    width: 80%;
  }
}
@media (max-width: 375px) {
  .st-modal-container {
    width: 90vw;
    max-width: 90vw;
    max-height: calc(70vh - 0px);
    top: -5vh;
  }

  .st-modal-content {
    padding: 60px 30px 30px;
  }

  .st-modal-heading h2 {
    font-size: 1rem;
  }

  .st-modal-lead {
    font-size: 0.85rem;
  }

  .st-modal-topic-text {
    font-size: 0.8rem;
  }

  .st-modal-topic-image img {
    width: 50%;
  }

  .st-modal-topic-images img {
    width: 90%;
  }
}
.st-document-request-screen {
  min-height: 100vh;
  background: var(--st-background);
}
.st-document-request-screen .st-order-process {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}
.st-document-request-screen .st-order-process .st-step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step {
  display: flex;
  align-items: center;
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--st-font-weight-bold);
  margin-right: 0.5rem;
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-number.active {
  background: var(--st-green-primary);
  color: white;
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-number.completed {
  background: var(--st-green-primary);
  color: white;
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-number.completed::after {
  content: "✓";
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-number.pending {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  border: 1px solid var(--st-border);
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-label {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  color: var(--st-color-muted);
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-label.active {
  color: var(--st-color-text);
  font-weight: var(--st-font-weight-medium);
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step:not(:last-child) {
  margin-right: 2rem;
}
.st-document-request-screen .st-order-process .st-step-indicator .st-step:not(:last-child)::after {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--st-border);
  margin-left: 1rem;
}
.st-document-request-screen .st-order-process .st-form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.st-document-request-screen .st-order-process .st-form-header .st-back-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #374151;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-document-request-screen .st-order-process .st-form-header .st-back-button:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.st-document-request-screen .st-order-process .st-form-header .st-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
}
.st-document-request-screen .st-order-process .st-form-header .st-form-lead {
  font-size: 1rem;
  color: var(--st-color-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}
.st-document-request-screen .st-order-process .st-confirmation-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section {
  margin-bottom: 2rem;
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section:last-child {
  margin-bottom: 0;
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--st-color-text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--st-border);
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item:last-child {
  border-bottom: none;
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item .st-confirmation-label {
  font-weight: 600;
  color: var(--st-color-muted);
  min-width: 120px;
  flex-shrink: 0;
}
.st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item .st-confirmation-value {
  color: var(--st-color-text);
  text-align: right;
  flex: 1;
  margin-left: 1rem;
  word-break: break-all;
}
.st-document-request-screen .st-order-process .st-completion-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  text-align: center;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-icon {
  margin-bottom: 1.5rem;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-icon .material-symbols-outlined {
  font-size: 4rem;
  color: var(--st-green-primary);
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-message {
  margin-bottom: 2rem;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-message h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--st-color-text);
  margin-bottom: 1rem;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-message p {
  color: var(--st-color-muted);
  line-height: 1.6;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-details {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-details .st-completion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-details .st-completion-item:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-details .st-completion-item .st-completion-label {
  font-weight: 600;
  color: var(--st-color-muted);
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-details .st-completion-item .st-completion-value {
  color: var(--st-color-text);
  font-weight: 500;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-info {
  text-align: left;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--st-color-text);
  margin-bottom: 0.5rem;
}
.st-document-request-screen .st-order-process .st-completion-content .st-completion-info p {
  color: var(--st-color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.st-document-request-screen .st-order-process .st-document-request-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group {
  margin-bottom: 1.5rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--st-green-primary);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-label .st-required {
  color: #ef4444;
  margin-left: 0.25rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-name-inputs {
  display: flex;
  gap: 0.75rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-name-inputs .st-form-input {
  flex: 1;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-zipcode-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-zipcode-group .st-zipcode-input {
  flex: 1;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-zipcode-group .st-zipcode-button {
  padding: 0.75rem 1rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-zipcode-group .st-zipcode-button:hover {
  background: #16a34a;
  transform: translateY(-1px);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--st-radius-sm);
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  border: 1px solid var(--st-border);
  display: flex;
  align-items: center;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-checking {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  border-color: var(--st-border);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-checking::before {
  content: "⏳";
  margin-right: 0.5rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-deliverable {
  background: var(--st-green-light);
  color: var(--st-green-primary);
  border-color: var(--st-green-primary);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-deliverable::before {
  content: "✓";
  margin-right: 0.5rem;
  font-weight: var(--st-font-weight-bold);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-not-deliverable {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-not-deliverable::before {
  content: "⚠";
  margin-right: 0.5rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-error {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-delivery-status.st-status-error::before {
  content: "⚠";
  margin-right: 0.5rem;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-address-form .st-address-group {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-address-form .st-address-group {
    grid-template-columns: 1fr 1fr;
  }
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-input,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-select,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  font-family: var(--st-font-family-sans);
  font-size: var(--st-font-size-body);
  color: var(--st-color-text);
  background: var(--st-surface);
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-input:focus,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-select:focus,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-textarea:focus {
  outline: none;
  border-color: var(--st-green-primary);
  box-shadow: 0 0 0 3px rgba(127, 33, 83, 0.1);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-input:disabled,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-select:disabled,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-textarea:disabled {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  cursor: not-allowed;
  opacity: 0.7;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-input.st-input-error,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-select.st-input-error,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-textarea.st-input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-input::placeholder,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-select::placeholder,
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-textarea::placeholder {
  color: #9ca3af;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-textarea {
  resize: vertical;
  min-height: 100px;
}
.st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-form-help {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
}
.st-document-request-screen .st-order-process .st-order-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--st-border);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.st-document-request-screen .st-order-process .st-order-actions .st-actions-content {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-secondary {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-body);
  box-shadow: var(--st-shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-secondary:hover {
  background: var(--st-muted-bg);
  border-color: var(--st-border-hover);
  transform: translateY(-1px);
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-secondary:active {
  transform: translateY(0);
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-primary {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--st-green-primary);
  color: white;
  border: 2px solid var(--st-green-primary);
  border-radius: var(--st-radius-sm);
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-body);
  box-shadow: var(--st-shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-primary:hover {
  background: var(--st-green-dark);
  border-color: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-primary:active {
  transform: translateY(0);
}
.st-document-request-screen .st-order-process .st-order-actions .st-btn-primary:disabled {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  border-color: var(--st-border);
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 375px) {
  .st-document-request-screen .st-order-process {
    padding: 0.5rem;
  }
  .st-document-request-screen .st-order-process .st-step-indicator {
    padding: 0.75rem 0.5rem;
  }
  .st-document-request-screen .st-order-process .st-step-indicator .st-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px;
  }
  .st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-number {
    width: 2rem;
    height: 2rem;
    margin-right: 0;
    margin-bottom: 0.25rem;
    flex-shrink: 0;
  }
  .st-document-request-screen .st-order-process .st-step-indicator .st-step .st-step-label {
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .st-document-request-screen .st-order-process .st-step-indicator .st-step:not(:last-child) {
    margin-right: 0.5rem;
  }
  .st-document-request-screen .st-order-process .st-step-indicator .st-step:not(:last-child)::after {
    width: 0.25rem;
    margin-left: 0.25rem;
  }
  .st-document-request-screen .st-order-process .st-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .st-document-request-screen .st-order-process .st-form-header .st-form-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  .st-document-request-screen .st-order-process .st-form-header .st-form-lead {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
  }
  .st-document-request-screen .st-order-process .st-completion-content {
    padding: 1.5rem;
  }
  .st-document-request-screen .st-order-process .st-completion-content .st-completion-icon .material-symbols-outlined {
    font-size: 3rem;
  }
  .st-document-request-screen .st-order-process .st-completion-content .st-completion-message h2 {
    font-size: 1.3rem;
  }
  .st-document-request-screen .st-order-process .st-completion-content .st-completion-details {
    padding: 1rem;
  }
  .st-document-request-screen .st-order-process .st-completion-content .st-completion-details .st-completion-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .st-document-request-screen .st-order-process .st-completion-content .st-completion-details .st-completion-item .st-completion-label {
    margin-bottom: 0.25rem;
  }
  .st-document-request-screen .st-order-process .st-confirmation-content {
    padding: 1.5rem;
  }
  .st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item .st-confirmation-label {
    min-width: auto;
    margin-bottom: 0.25rem;
  }
  .st-document-request-screen .st-order-process .st-confirmation-content .st-confirmation-section .st-confirmation-item .st-confirmation-value {
    text-align: left;
    margin-left: 0;
  }
  .st-document-request-screen .st-order-process .st-document-request-form {
    padding: 1.5rem;
  }
  .st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-name-inputs {
    flex-direction: column;
    gap: 0.5rem;
  }
  .st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-zipcode-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  .st-document-request-screen .st-order-process .st-document-request-form .st-form-group .st-zipcode-group .st-zipcode-button {
    width: 100%;
  }
  .st-document-request-screen .st-order-process .st-order-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
  .st-document-request-screen .st-order-process .st-order-footer .st-back-button,
.st-document-request-screen .st-order-process .st-order-footer .st-submit-button {
    width: 100%;
    justify-content: center;
  }
}

.st-lp-kodawari-section {
  padding: 5rem 0rem 0rem 0rem !important;
  text-align: center;
  background: var(--st-surface);
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.st-lp-kodawari-section .st-section-icon {
  margin-bottom: 0rem;
}
.st-lp-kodawari-section .st-section-icon .material-symbols-outlined {
  font-size: 3rem;
  color: var(--st-color-text);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.st-lp-kodawari-section .st-section-icon i {
  font-size: 3rem !important;
  color: var(--theme-color, var(--st-color-text)) !important;
}
.st-lp-kodawari-section .st-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.6;
  color: var(--st-color-text);
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
.st-lp-kodawari-section .st-section-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.8;
  color: var(--st-color-text);
  margin-bottom: 1.5rem;
  text-align: left;
}
.st-lp-kodawari-section .st-section-image {
  margin-top: 1.5rem;
  text-align: center;
}
.st-lp-kodawari-section .st-section-image .st-image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 375px) {
  .st-lp-kodawari-section {
    padding: 1.5rem 1rem;
  }
  .st-lp-kodawari-section .st-section-icon .material-symbols-outlined {
    font-size: 2.5rem;
  }
  .st-lp-kodawari-section .st-section-icon i {
    font-size: 2.5rem;
  }
  .st-lp-kodawari-section .st-section-icon i.fa-stopwatch-20 {
    font-size: 3rem;
  }
  .st-lp-kodawari-section .st-section-title {
    font-size: 5vw;
    font-weight: 600;
    line-height: 1.6;
  }
  .st-lp-kodawari-section .st-section-lead {
    font-size: 3.4vw;
    line-height: 1.8;
  }
}
@media (min-width: 576px) {
  .st-lp-kodawari-section {
    padding: 2.5rem 1rem;
  }
  .st-lp-kodawari-section .st-section-icon .material-symbols-outlined {
    font-size: 3.5rem;
  }
  .st-lp-kodawari-section .st-section-icon i {
    font-size: 3.5rem;
  }
  .st-lp-kodawari-section .st-section-icon i.fa-stopwatch-20 {
    font-size: 4rem;
  }
  .st-lp-kodawari-section .st-section-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.6;
  }
  .st-lp-kodawari-section .st-section-lead {
    font-size: 16px;
    line-height: 1.8;
  }
}

.st-lp-menu-section {
  padding: 0.1px 0rem 0rem 0rem !important;
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.st-lp-menu-section {
  display: block;
}
.st-lp-menu-section .st-menu-gallery {
  margin-top: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  overflow: hidden;
  width: calc(100% + 4rem);
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
  overflow: hidden;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row:last-child {
  margin-bottom: 0;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track {
  display: flex;
  width: 600%;
  animation-duration: 36s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track[data-direction=right] .st-gallery-track, .st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track.st-gallery-row[data-direction=right] .st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track {
  animation-name: galleryScrollRight;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track[data-direction=left] .st-gallery-track, .st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track.st-gallery-row[data-direction=left] .st-lp-menu-section .st-menu-gallery .st-gallery-row .st-gallery-track {
  animation-name: galleryScrollLeft;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row[data-direction=right] .st-gallery-track {
  animation-name: galleryScrollRight;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-row[data-direction=left] .st-gallery-track {
  animation-name: galleryScrollLeft;
}
.st-lp-menu-section .st-menu-gallery .st-gallery-image {
  width: 33.33%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 375px) {
  .st-lp-menu-section .st-menu-gallery {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
  .st-lp-menu-section .st-menu-gallery .st-gallery-image {
    width: 33.33%;
    margin-right: 0.75rem;
  }
}
@media (min-width: 576px) {
  .st-lp-menu-section .st-menu-gallery {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
  }
  .st-lp-menu-section .st-menu-gallery .st-gallery-image {
    width: 33.33%;
    margin-right: 0.75rem;
  }
}

@keyframes galleryScrollRight {
  0% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes galleryScrollLeft {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-400%);
  }
}
.st-lp-gallery-section {
  margin: 0;
  padding: 0;
  background: #ffffff;
}
.st-lp-gallery-section .st-menu-gallery {
  display: block;
}

.st-kodawari-a-container,
.st-kodawari-b-container {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.st-kodawari-a-container.fade-in,
.st-kodawari-b-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.st-lp-kodawari-section {
  padding: 5rem 0rem 0rem 0rem !important;
  text-align: center;
  background: var(--st-surface);
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.st-lp-kodawari-section .st-section-icon {
  margin-bottom: 0rem;
}
.st-lp-kodawari-section .st-section-icon .material-symbols-outlined {
  font-size: 3rem;
  color: var(--st-color-text);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.st-lp-kodawari-section .st-section-icon i {
  font-size: 3rem !important;
  color: var(--theme-color, var(--st-color-text)) !important;
}
.st-lp-kodawari-section .st-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5vw;
  line-height: 1.6;
  color: var(--st-color-text);
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
.st-lp-kodawari-section .st-section-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 3vw;
  line-height: 1.8;
  color: var(--st-color-text);
  margin-bottom: 2rem;
  text-align: left;
}
.st-lp-kodawari-section .st-section-image {
  margin-top: 2rem;
}
.st-lp-kodawari-section .st-section-image .st-image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 375px) {
  .st-lp-kodawari-section {
    padding: 1.5rem 1rem;
  }
  .st-lp-kodawari-section .st-section-icon .material-symbols-outlined {
    font-size: 3rem;
  }
  .st-lp-kodawari-section .st-section-icon i {
    font-size: 3rem;
  }
  .st-lp-kodawari-section .st-section-icon i.fa-stopwatch-20 {
    font-size: 3.5rem;
  }
  .st-lp-kodawari-section .st-section-title {
    font-size: 5vw;
    font-weight: 600;
    line-height: 1.6;
  }
  .st-lp-kodawari-section .st-section-lead {
    font-size: 3.4vw;
    line-height: 1.8;
  }
}
@media (min-width: 576px) {
  .st-lp-kodawari-section {
    padding: 2.5rem 1rem;
  }
  .st-lp-kodawari-section .st-section-icon .material-symbols-outlined {
    font-size: 3rem;
  }
  .st-lp-kodawari-section .st-section-icon i {
    font-size: 3rem;
  }
  .st-lp-kodawari-section .st-section-icon i.fa-stopwatch-20 {
    font-size: 3.5rem;
  }
  .st-lp-kodawari-section .st-section-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.6;
  }
  .st-lp-kodawari-section .st-section-lead {
    font-size: 16px;
    line-height: 1.8;
  }
}

.st-kodawari-a-container .st-lp-kodawari-section {
  display: block;
}
.st-kodawari-a-container .st-lp-kodawari-section .st-section-icon i {
  font-size: 3rem !important;
  color: var(--theme-color, var(--st-color-text)) !important;
}
.st-kodawari-a-container .st-lp-kodawari-section .st-section-icon i.fa-stopwatch-20 {
  font-size: 3.5rem !important;
}
.st-kodawari-a-container .st-lp-kodawari-section[style*="--theme-color"] .st-section-icon i {
  color: var(--theme-color) !important;
}

.st-kodawari-b-container .st-lp-kodawari-section .st-section-icon i {
  font-size: 3rem !important;
  color: var(--theme-color, var(--st-color-text)) !important;
}
.st-kodawari-b-container .st-lp-kodawari-section .st-section-icon i.fa-stopwatch-20 {
  font-size: 3.5rem !important;
}
.st-kodawari-b-container .st-lp-kodawari-section[style*="--theme-color"] .st-section-icon i {
  color: var(--theme-color) !important;
}
.st-kodawari-b-container .st-lp-kodawari-section .st-section-image .st-image-full-width {
  max-width: 100%;
}
@media (max-width: 375px) {
  .st-kodawari-b-container .st-lp-kodawari-section .st-section-image .st-image-full-width {
    max-width: 90%;
  }
}
@media (min-width: 576px) {
  .st-kodawari-b-container .st-lp-kodawari-section .st-section-image .st-image-full-width {
    max-width: 80%;
  }
}

#news-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  justify-items: center;
}
@media (max-width: 375px) {
  #news-cards-container {
    gap: 1rem;
  }
}

.st-news-button-container {
  margin-top: 1rem;
  text-align: center;
  pointer-events: auto;
}

.st-news-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 3.5vw;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  touch-action: manipulation;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
}
@media (min-width: 576px) {
  .st-news-detail-button {
    font-size: 16px;
  }
}
.st-news-detail-button:hover {
  background: var(--st-green-dark);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}
.st-news-detail-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}
.st-news-detail-button .material-symbols-outlined {
  font-size: 1.25rem;
  animation: arrow-slide 2s infinite;
}

#news-modal-overlay .st-modal-heading h2 {
  color: #000 !important;
}
#news-modal-overlay .st-modal-topic-image img {
  width: 100% !important;
  height: auto;
}

@media (min-width: 576px) {
  #news-modal-overlay .st-modal-topic-image img {
    width: 100% !important;
  }
}
@media (max-width: 375px) {
  #news-modal-overlay .st-modal-topic-image img {
    width: 100% !important;
  }
}
@media (max-width: 576px) {
  .st-news-detail-button {
    width: 100%;
    justify-content: center;
  }
}
#faq-modal-overlay .st-modal-heading h2 {
  color: #000 !important;
}
#faq-modal-overlay .st-modal-topic-image img {
  width: 100% !important;
  height: auto;
}

@media (min-width: 576px) {
  #faq-modal-overlay .st-modal-topic-image img {
    width: 100% !important;
  }
}
@media (max-width: 375px) {
  #faq-modal-overlay .st-modal-topic-image img {
    width: 100% !important;
  }
}
:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

.st-section-campaign {
  min-height: 100vh;
  background: var(--st-muted-bg);
  padding: 1rem;
  touch-action: pan-y;
}
.st-section-campaign .st-title-2 {
  font-size: var(--st-font-size-heading-1);
  font-weight: 700;
  color: var(--st-text-primary);
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .st-section-campaign .st-title-2 {
    font-size: var(--st-font-size-heading-2);
    margin-bottom: 1.5rem;
  }
}
.st-section-campaign .st-menu-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .st-section-campaign .st-menu-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
}
.st-section-campaign .st-campaign-card {
  background: var(--st-surface);
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-campaign .st-campaign-card:hover {
  border-color: var(--st-green-primary);
  box-shadow: var(--st-shadow-md);
  transform: translateY(-2px);
}
.st-section-campaign .st-campaign-card:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}
.st-section-campaign .st-campaign-card .st-campaign-name {
  font-size: var(--st-font-size-heading-3);
  font-weight: 600;
  color: var(--st-text-primary);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .st-section-campaign .st-campaign-card {
    padding: 1.25rem;
    min-height: 100px;
  }
  .st-section-campaign .st-campaign-card .st-campaign-name {
    font-size: var(--st-font-size-heading-4);
  }
}
.st-section-campaign .st-order-method-section {
  margin-top: 2rem;
}
.st-section-campaign .st-order-method-section .st-order-method-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .st-section-campaign .st-order-method-section .st-order-method-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
}
.st-section-campaign .st-order-method-section .st-order-method-card {
  background: var(--st-surface);
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.st-section-campaign .st-order-method-section .st-order-method-card:hover {
  border-color: var(--st-green-primary);
  box-shadow: var(--st-shadow-md);
  transform: translateY(-2px);
}
.st-section-campaign .st-order-method-section .st-order-method-card:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}
.st-section-campaign .st-order-method-section .st-order-method-card.active {
  background: var(--st-green-primary);
  border-color: var(--st-green-primary);
  color: white;
}
.st-section-campaign .st-order-method-section .st-order-method-card.active .st-order-method-name {
  color: white;
}
.st-section-campaign .st-order-method-section .st-order-method-card .st-order-method-name {
  font-size: var(--st-font-size-heading-3);
  font-weight: 600;
  color: var(--st-text-primary);
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 768px) {
  .st-section-campaign .st-order-method-section .st-order-method-card {
    padding: 1.25rem;
    min-height: 80px;
  }
  .st-section-campaign .st-order-method-section .st-order-method-card .st-order-method-name {
    font-size: var(--st-font-size-heading-4);
  }
}
.st-section-campaign .st-back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  padding: 0.75rem 1rem;
  color: var(--st-text-secondary);
  text-decoration: none;
  font-size: var(--st-font-size-base);
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
.st-section-campaign .st-back-button:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
  color: var(--st-green-primary);
  text-decoration: none;
}
.st-section-campaign .st-back-button .material-symbols-outlined {
  font-size: 1.25rem;
}
.st-section-campaign .st-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--st-text-secondary);
  font-size: var(--st-font-size-base);
}
.st-section-campaign .st-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--st-radius-sm);
  padding: 1rem;
  margin: 1rem 0;
  color: #dc2626;
  font-size: var(--st-font-size-base);
  text-align: center;
}

:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

:root {
  --st-surface: #ffffff;
  --st-surface-hover: #f8fafc;
  --st-border: #e2e8f0;
  --st-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --st-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --st-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --st-radius-sm: 8px;
  --st-radius-md: 12px;
  --st-radius-lg: 16px;
  --st-text-primary: #1f2937;
  --st-text-secondary: #6b7280;
}

.st-section-menu-course-new {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: white;
  position: relative;
  padding: 0;
  margin: 0;
  touch-action: pan-y;
}
.st-section-menu-course-new .st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--st-border);
  padding: 1rem;
}
.st-section-menu-course-new .st-week-section-fixed .st-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.st-section-menu-course-new .st-week-section-fixed .st-header-content .st-back-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--st-text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--st-radius-sm);
  transition: background-color 0.3s ease;
}
.st-section-menu-course-new .st-week-section-fixed .st-header-content .st-back-button:hover {
  background: var(--st-surface-hover);
}
.st-section-menu-course-new .st-week-section-fixed .st-header-content .st-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--st-text-primary);
  margin: 0;
}
.st-section-menu-course-new .st-week-section-fixed .st-header-content .st-step-indicator {
  font-size: 0.875rem;
  color: var(--st-text-secondary);
  background: var(--st-surface);
  padding: 0.25rem 0.75rem;
  border-radius: var(--st-radius-sm);
  border: 1px solid var(--st-border);
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section {
  margin-bottom: 1rem;
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--st-text-secondary);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button:hover .material-symbols-outlined {
  color: var(--st-green-primary);
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab {
  flex: 1;
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  padding: 1em 0.2em 1em 0.2em;
  font-size: 1rem;
  font-weight: 500;
  color: var(--st-color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
  color: var(--st-green-primary);
}
.st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab.active {
  background: var(--st-green-primary);
  border-color: var(--st-green-primary);
  color: white;
  font-weight: 600;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab {
    padding: 1em 0.2em 1em 0.2em;
    font-size: 0.75rem;
    font-weight: 500;
  }
  .st-section-menu-course-new .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab.active {
    font-weight: 600;
  }
}
.st-section-menu-course-new .st-week-section-fixed .st-campaign-info {
  background: var(--st-green-light);
  border: 1px solid var(--st-green-primary);
  border-radius: var(--st-radius-sm);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}
.st-section-menu-course-new .st-week-section-fixed .st-campaign-info .st-campaign-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--st-green-primary);
  margin: 0 0 0.25rem 0;
}
.st-section-menu-course-new .st-week-section-fixed .st-campaign-info .st-campaign-details {
  font-size: 0.75rem;
  color: var(--st-text-secondary);
  margin: 0;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.25rem 0;
  scrollbar-width: none;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs::-webkit-scrollbar {
  display: none;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs {
  flex-shrink: 0;
  min-width: 2.5rem;
  padding: 0.75rem 0.5rem;
  background: var(--st-surface);
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--st-text-secondary);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs:hover .material-symbols-outlined {
  color: var(--st-green-primary);
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab {
  flex-shrink: 0;
  min-width: 120px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  background: var(--st-surface);
  color: var(--st-color-text);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  box-shadow: var(--st-shadow-sm);
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab.active {
  border-color: var(--st-green-primary);
  background: var(--st-green-primary);
  color: white;
  box-shadow: var(--st-shadow-md);
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab--done {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab--done.active {
  background: #64748b;
  color: white;
  border-color: #64748b;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-tabs .st-week-tab--done .st-week-check {
  margin-left: 0.5rem;
  opacity: 0.8;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-guide {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  color: var(--st-color-muted);
  text-align: center;
  margin-bottom: 0.5rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-menu-course-new .st-week-section-fixed .st-week-guide.st-guide-success, .st-section-menu-course-new .st-week-section-fixed .st-week-guide.st-guide-warning, .st-section-menu-course-new .st-week-section-fixed .st-week-guide {
  padding: 0rem 0rem !important;
  margin-bottom: 0.5rem;
}
.st-section-menu-course-new .st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.st-section-menu-course-new .st-menu-section-scrollable.loading {
  opacity: 0.5;
  transform: translateY(10px);
  pointer-events: none;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row {
  display: flex;
  margin-bottom: 2rem;
  background: var(--st-surface);
  border-radius: 0;
  border-top: 2px solid var(--st-border);
  border-bottom: 2px solid var(--st-border);
  border-left: none;
  border-right: none;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 200px;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row:first-child {
  margin-top: 0;
  border-top: none;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row:last-child {
  margin-bottom: 0;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row:hover {
  box-shadow: var(--st-shadow-sm);
  transform: translateY(-1px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row:active {
  transform: translateY(0px) scale(0.98);
  transition: transform 0.1s ease;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected {
  border-top-color: var(--st-green-primary);
  border-bottom-color: var(--st-green-primary);
  box-shadow: var(--st-shadow-md);
  background: var(--st-surface);
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-course-name-pane {
  background: var(--st-green-primary);
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-course-name-pane {
    padding-left: 1px;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-course-name-pane .st-course-help-icon {
  color: rgba(255, 255, 255, 0.9);
  min-width: 36px !important;
  min-height: 36px !important;
  width: 36px !important;
  height: 36px !important;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-course-name-pane .st-course-help-icon {
    min-width: 40px !important;
    min-height: 40px !important;
    width: 40px !important;
    height: 40px !important;
    left: calc(50% - 20px);
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-course-name-pane .st-course-help-icon:hover, .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-course-name-pane .st-course-help-icon:focus {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-menu-scroll-container .st-menu-card .st-menu-info .st-menu-title {
  color: var(--st-green-primary) !important;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-menu-scroll-container .st-menu-card .st-menu-info .st-menu-subtitle {
  color: var(--st-green-primary) !important;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-menu-scroll-container .st-menu-card .st-day-label {
  background: var(--st-green-primary) !important;
  color: white !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-menu-scroll-container .st-menu-card.st-menu-saturday-disabled .st-menu-info .st-menu-title, .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-menu-scroll-container .st-menu-card.st-menu-saturday-disabled .st-menu-info .st-menu-subtitle {
  color: #9ca3af !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row.st-course-selected .st-menu-scroll-container .st-menu-card.st-menu-saturday-disabled .st-day-label {
  background: #9ca3af !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row:not(.st-course-selected) {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane {
  width: 85px;
  min-width: 85px;
  min-height: 120px;
  background: #1f2937;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0;
  z-index: 1;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane {
    padding-left: 1px;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-name-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  height: auto;
  width: auto;
  min-width: 1em;
  max-width: none;
  max-width: 70px;
  overflow: hidden;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-name-vertical {
    left: calc(50% - 1px);
  }
}
@supports not (writing-mode: vertical-rl) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-name-vertical {
    writing-mode: initial;
    transform: translate(-50%, -50%) rotate(90deg);
    white-space: nowrap;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  min-width: 36px !important;
  min-height: 36px !important;
  width: 36px !important;
  height: 36px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin: 0;
  box-sizing: border-box;
  left: calc(50% - 18px);
  transform: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon {
    bottom: 3px;
    padding: 6px;
    min-width: 36px !important;
    min-height: 36px !important;
    width: 36px !important;
    height: 36px !important;
    left: calc(50% - 19px);
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 20;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon .material-symbols-outlined {
    font-size: 22px;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:hover, .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:focus {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:hover, .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:focus {
    transform: scale(1.05);
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:active {
  transform: scale(0.95);
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:active {
    transform: scale(0.9);
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-name-pane .st-course-help-icon:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-scroll-container {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  margin-left: 0;
  position: relative;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-scroll-container .st-daily-menu-row {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-scroll-container::-webkit-scrollbar {
  display: none;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-scroll-container .st-daily-menu-row {
  display: flex;
  gap: 0;
  padding: 1.75rem 0 0.75rem 0;
  min-width: max-content;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-scroll-container .st-daily-menu-row::before {
  content: "";
  width: 0.75rem;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-scroll-container:first-child .st-daily-menu-row {
  scroll-margin-left: 0;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn .material-symbols-outlined {
  font-size: 20px;
  font-weight: 600;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn:hover {
  transform: scale(1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn:active {
  transform: scale(0.98);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn.st-btn-unselected {
  background: white;
  color: var(--st-green-primary);
  border: 1px solid var(--st-green-primary);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn.st-btn-unselected:hover {
  background: white;
  color: var(--st-green-primary);
  border: 1px solid var(--st-green-primary);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn.st-btn-selected {
  background: var(--st-green-dark);
  color: white;
  border: 1px solid var(--st-green-dark);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn.st-btn-selected:hover {
  background: var(--st-green-primary);
  border-color: var(--st-green-primary);
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn {
    width: 30px;
    height: 30px;
    bottom: 0.85rem;
    right: 1rem;
  }
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-course-select-btn .material-symbols-outlined {
    font-size: 20px;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  background: var(--st-surface);
  border-radius: var(--st-radius-sm);
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  transition: all 0.3s ease, box-shadow 0.2s ease;
  cursor: default;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.week-transition {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 375px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card {
    width: 190px;
    min-width: 190px;
    max-width: 190px;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card:last-child {
  margin-right: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card:first-child {
  margin-left: 0.75rem;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.3s ease;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-day-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--st-radius-sm);
  transition: all 0.3s ease;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-day-label.st-day-selected {
  background: var(--st-green-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-day-label.st-day-disabled {
  background: #ccc;
  color: #666;
  opacity: 0.6;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-course-tag {
  position: absolute;
  top: 0.5rem;
  left: 2.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--st-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn .material-symbols-outlined {
  font-size: 18px;
  font-weight: 600;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn:active {
  transform: scale(0.95);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn.st-btn-unselected {
  background: white;
  color: #1f2937;
  border: 1px solid #d1d5db;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn.st-btn-unselected:hover {
  background: #f9fafb;
  color: #111827;
  border-color: #9ca3af;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn.st-btn-selected {
  background: var(--st-green-primary);
  color: white;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn.st-btn-selected:hover {
  background: var(--st-green-dark);
}
@media (max-width: 360px) {
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn {
    width: 28px;
    height: 28px;
  }
  .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-img-container .st-menu-select-btn .material-symbols-outlined {
    font-size: 16px;
  }
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-info {
  padding: 0.75rem;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-info .st-menu-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--st-text-primary);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-menu-info .st-menu-subtitle {
  font-size: 0.75rem;
  color: var(--st-text-secondary);
  margin: 0;
  line-height: 1.3;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-card-empty {
  opacity: 0.6;
  cursor: not-allowed;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-card-empty .st-no-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--st-surface-hover);
  color: var(--st-text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-card-empty .st-no-menu span {
  text-align: center;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-selected {
  border: 2px solid var(--st-green-primary);
  box-shadow: 0 0 0 4px rgba(127, 33, 83, 0.1), 0 4px 12px rgba(127, 33, 83, 0.2);
  position: relative;
  z-index: 2;
  background: rgba(127, 33, 83, 0.02);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-selected .st-menu-img {
  filter: brightness(1.05);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-selected .st-selection-check {
  opacity: 1 !important;
  transform: scale(1) !important;
  background: var(--st-green-primary) !important;
  box-shadow: 0 4px 12px rgba(127, 33, 83, 0.4) !important;
  display: flex !important;
  visibility: visible !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-selected .st-menu-title {
  color: var(--st-green-primary);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-selected .st-menu-subtitle {
  color: var(--st-green-primary) !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card .st-selection-check {
  display: none !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-disabled:hover {
  transform: none;
  box-shadow: var(--st-shadow-sm);
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled .st-menu-img {
  opacity: 0.5 !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled .st-menu-info .st-menu-title, .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled .st-menu-info .st-menu-subtitle {
  color: #9ca3af !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled .st-day-label {
  background: #9ca3af !important;
  color: white !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled.st-menu-selected .st-menu-img {
  opacity: 0.5 !important;
  filter: brightness(1) !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled.st-menu-selected .st-menu-info .st-menu-title, .st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled.st-menu-selected .st-menu-info .st-menu-subtitle {
  color: #9ca3af !important;
}
.st-section-menu-course-new .st-menu-section-scrollable .st-course-menu-row .st-menu-card.st-menu-saturday-disabled.st-menu-selected .st-day-label {
  background: #9ca3af !important;
}

.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--st-border);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-actions-container {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.st-actions-fixed .st-actions-container .st-btn-clear {
  flex: 0 0 auto;
  padding: 1em 1em 1em 1em;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-actions-container .st-btn-clear:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-actions-container .st-btn-clear:active {
  transform: translateY(0);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-actions-container .st-btn-clear {
    padding: 1em 1em 1em 1em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-actions-container .st-btn-primary,
.st-actions-fixed .st-actions-container .st-btn-inactive {
  flex: 1;
  max-width: none !important;
  padding: 1em 0.5em 1em 0.5em;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.st-actions-fixed .st-actions-container .st-btn-primary.st-btn-primary,
.st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-primary {
  background: var(--st-green-primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-actions-container .st-btn-primary.st-btn-primary:hover,
.st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3);
}
.st-actions-fixed .st-actions-container .st-btn-primary.st-btn-primary:active,
.st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-actions-container .st-btn-primary.st-btn-inactive,
.st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-inactive {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-actions-container .st-btn-primary,
.st-actions-fixed .st-actions-container .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 0.9rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-saturday-option-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.st-actions-fixed .st-saturday-option-buttons .st-btn-secondary {
  flex: 1;
  background: var(--st-green-primary);
  color: white;
  border: 2px solid var(--st-green-primary);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-saturday-option-buttons .st-btn-secondary:hover {
  background: var(--st-green-dark);
  border-color: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-saturday-option-buttons .st-btn-secondary {
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
}
.st-actions-fixed .st-saturday-option-buttons .st-btn-primary {
  flex: 1;
  background: var(--st-green-primary);
  color: white;
  border: 2px solid var(--st-green-primary);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: none;
}
.st-actions-fixed .st-saturday-option-buttons .st-btn-primary:hover {
  background: var(--st-green-dark);
  border-color: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-saturday-option-buttons .st-btn-primary {
    padding: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
}
.st-actions-fixed .st-saturday-option-buttons-with-reset {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-btn-reset {
  width: 100%;
  background: var(--st-surface);
  color: var(--st-text-secondary);
  border: 2px solid var(--st-border);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-btn-reset:hover {
  border-color: var(--st-text-secondary);
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-saturday-option-buttons-with-reset .st-btn-reset {
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons {
  display: flex;
  gap: 0.75rem;
  text-align: center;
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons .st-btn-secondary {
  flex: 1;
  background: white !important;
  color: var(--st-green-primary) !important;
  border: 2px solid var(--st-green-primary) !important;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons .st-btn-secondary:hover {
  background: white !important;
  color: var(--st-green-primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3) !important;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons .st-btn-secondary {
    padding: 0.9rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
  }
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons .st-btn-primary {
  flex: 1;
  background: white !important;
  color: var(--st-green-primary) !important;
  border: 2px solid var(--st-green-primary) !important;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons .st-btn-primary:hover {
  background: white !important;
  color: var(--st-green-primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3) !important;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-saturday-option-buttons-with-reset .st-action-buttons .st-btn-primary {
    padding: 0.9rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
  }
}
@media (max-width: 375px) {
  .st-actions-fixed .st-saturday-option-buttons-with-reset {
    max-width: 90vw;
    gap: 0.5rem;
  }
}
.st-actions-fixed .st-reset-confirm-extend-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-btn-reset {
  width: 100%;
  background: var(--st-surface);
  color: var(--st-text-secondary);
  border: 2px solid var(--st-border);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-btn-reset:hover {
  border-color: var(--st-text-secondary);
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-reset-confirm-extend-buttons .st-btn-reset {
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons {
  display: flex;
  gap: 0.75rem;
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons .st-btn-confirm {
  flex: 1;
  background: var(--st-green-primary);
  color: white;
  border: 2px solid var(--st-green-primary);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons .st-btn-confirm:hover {
  background: var(--st-green-dark);
  border-color: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons .st-btn-confirm {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons .st-btn-extend {
  flex: 1;
  background: var(--st-surface);
  color: var(--st-green-primary);
  border: 2px solid var(--st-green-primary);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons .st-btn-extend:hover {
  background: var(--st-green-light);
  border-color: var(--st-green-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.2);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-reset-confirm-extend-buttons .st-action-buttons .st-btn-extend {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
}
@media (max-width: 375px) {
  .st-actions-fixed .st-reset-confirm-extend-buttons {
    max-width: 90vw;
    gap: 0.5rem;
  }
}
.st-actions-fixed .st-reset-confirm-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.st-actions-fixed .st-reset-confirm-buttons .st-btn-reset {
  flex: 0 0 auto;
  padding: 1em 1em 1em 1em;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-reset-confirm-buttons .st-btn-reset:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-reset-confirm-buttons .st-btn-reset:active {
  transform: translateY(0);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-reset-confirm-buttons .st-btn-reset {
    padding: 1em 1em 1em 1em;
    font-size: 0.9rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-reset-confirm-buttons .st-btn-confirm {
  flex: 1;
  background: var(--st-green-primary);
  color: white;
  border: 2px solid var(--st-green-primary);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-actions-fixed .st-reset-confirm-buttons .st-btn-confirm:hover {
  background: var(--st-green-dark);
  border-color: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-reset-confirm-buttons .st-btn-confirm {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
}
.st-actions-fixed .st-btn-primary:not(.st-actions-container .st-btn-primary):not(.st-saturday-option-buttons .st-btn-primary) {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:not(.st-actions-container .st-btn-primary):not(.st-saturday-option-buttons .st-btn-primary):hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3);
}
.st-actions-fixed .st-btn-primary:not(.st-actions-container .st-btn-primary):not(.st-saturday-option-buttons .st-btn-primary):active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:not(.st-actions-container .st-btn-primary):not(.st-saturday-option-buttons .st-btn-primary):disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-primary:not(.st-actions-container .st-btn-primary):not(.st-saturday-option-buttons .st-btn-primary) {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
  }
}

.st-guide-warning, .st-week-guide,
.st-course-guide,
.week2-free-menu-guide,
.tanpin-free-menu-guide,
.free-menu-guide {
  position: relative;
  padding: 0rem 0rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: white;
  border-color: white;
  color: var(--st-green-primary) !important;
}

.st-guide-success {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: white;
  border-color: white;
  color: var(--st-green-primary) !important;
}

.st-day-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  background: #333;
  color: white;
  transition: all 0.3s ease;
}
.st-day-icon.st-day-selected {
  background: var(--st-green-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(127, 33, 83, 0.3);
}
.st-day-icon.st-day-disabled {
  background: #ccc;
  color: #666;
  opacity: 0.6;
}

.st-debug-new-ui {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #ff4444;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--st-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--st-shadow-md);
}
.st-debug-new-ui::before {
  content: "🚀 ";
}

:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

:root {
  --st-surface: #ffffff;
  --st-surface-hover: #f8fafc;
  --st-border: #e2e8f0;
  --st-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --st-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --st-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --st-radius-sm: 8px;
  --st-radius-md: 12px;
  --st-radius-lg: 16px;
  --st-text-primary: #1f2937;
  --st-text-secondary: #6b7280;
}

.st-section-menu-free {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--st-muted-bg);
  position: relative;
  touch-action: pan-y;
}
.st-section-menu-free .st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--st-border);
  padding: 1rem 1rem 0.5rem;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section {
  margin-bottom: 1rem;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--st-text-secondary);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button:hover .material-symbols-outlined {
  color: var(--st-green-primary);
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-home-button:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab {
  flex: 1;
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  padding: 1em 0.2em 1em 0.2em;
  font-size: 1rem;
  font-weight: 500;
  color: var(--st-color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
  color: var(--st-green-primary);
}
.st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab.active {
  background: var(--st-green-primary);
  border-color: var(--st-green-primary);
  color: white;
  font-weight: 600;
}
@media (max-width: 375px) {
  .st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab {
    padding: 1em 0.2em 1em 0.2em;
    font-size: 0.75rem;
    font-weight: 500;
  }
  .st-section-menu-free .st-week-section-fixed .st-order-method-section .st-order-method-tabs .st-order-method-tab.active {
    font-weight: 600;
  }
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs::-webkit-scrollbar {
  display: none;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs {
  flex-shrink: 0;
  min-width: 2.5rem;
  padding: 0.75rem 0.5rem;
  background: var(--st-surface);
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--st-text-secondary);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs:hover {
  background: var(--st-surface-hover);
  border-color: var(--st-green-primary);
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs:hover .material-symbols-outlined {
  color: var(--st-green-primary);
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-home-button.st-home-in-week-tabs:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-week-tab {
  flex-shrink: 0;
  min-width: 120px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  background: var(--st-surface);
  color: var(--st-color-text);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-week-tab:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-week-tab.active {
  border-color: var(--st-green-primary);
  background: var(--st-green-primary);
  color: white;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-week-tab--done {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-week-tab--done.active {
  background: #64748b;
  color: white;
  border-color: #64748b;
}
.st-section-menu-free .st-week-section-fixed .st-week-tabs .st-week-tab .st-week-check {
  margin-left: 0.5rem;
  opacity: 0.8;
}
.st-section-menu-free .st-week-section-fixed .st-week-guide {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  color: var(--st-color-muted);
  text-align: center;
  margin-bottom: 0.5rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-section-menu-free .st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  touch-action: pan-y;
  overflow-x: hidden;
  padding: 1rem 0 6rem;
  transition: opacity 0.3s ease;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row {
  display: flex;
  margin-bottom: 2rem;
  gap: 0;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-day-pane {
  flex-shrink: 0;
  flex-grow: 0;
  width: 75px;
  min-width: 75px;
  max-width: 75px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.5rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-day-pane .st-day-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: sticky;
  top: 120px;
  pointer-events: none;
  background: white;
  color: gray;
  border: 1px solid lightgray;
  transition: all 0.3s ease;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-day-pane .st-day-icon.st-day-selected {
  background: var(--st-green-primary);
  color: white;
  border: 1px solid var(--st-green-primary);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-day-pane .st-day-icon.st-day-disabled {
  background: var(--st-color-muted);
  color: white;
  opacity: 0.6;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane {
  flex: 1;
  min-width: 0;
  overflow: visible;
  position: relative;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0.5rem 0.5rem 0.5rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scroll-padding-left: 0.5rem;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container::-webkit-scrollbar {
  display: none;
}
@supports (-webkit-touch-callout: none) {
  .st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container {
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
  }
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card {
  background: var(--st-surface);
  border-radius: var(--st-radius-md);
  box-shadow: var(--st-shadow-sm);
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: default;
  position: relative;
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  flex-shrink: 0;
  scroll-snap-align: center;
  touch-action: manipulation;
}
@media (max-width: 375px) {
  .st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card {
    width: 190px;
    min-width: 190px;
    max-width: 190px;
  }
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card:hover {
  box-shadow: var(--st-shadow-md);
  transform: translateY(-2px);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card:hover .st-selection-check {
  opacity: 0.8;
  transform: scale(0.9);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--st-muted-bg);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-img-container .st-menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.2s ease;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-img-container .st-selection-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--st-green-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  font-weight: 400;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(127, 33, 83, 0.3);
  pointer-events: none;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-img-container .st-course-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--st-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-info {
  padding: 1rem;
  font-size: 1rem;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-info .st-menu-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  display: block;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-info .st-menu-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-info .st-menu-details {
  color: var(--st-color-muted);
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-info .st-menu-details .st-menu-price {
  font-weight: 600;
  color: var(--st-color-text);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-title-selected {
  color: var(--st-green-primary) !important;
  font-weight: 700 !important;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card .st-menu-subtitle-selected {
  color: var(--st-green-primary) !important;
  font-weight: 600 !important;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.st-card-selected {
  border: 2px solid var(--st-green-primary);
  box-shadow: 0 0 0 4px rgba(127, 33, 83, 0.1);
  position: relative;
  z-index: 2;
  transform: scale(1.02);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.st-card-selected .st-menu-img {
  transform: scale(1.05);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.st-card-selected .st-selection-check {
  opacity: 1 !important;
  transform: scale(1) !important;
  background: var(--st-green-primary) !important;
  box-shadow: 0 4px 12px rgba(127, 33, 83, 0.4) !important;
  display: flex !important;
  visibility: visible !important;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.st-card-selected .st-menu-title {
  color: var(--st-green-primary);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.st-card-selected .st-menu-subtitle {
  color: var(--st-green-primary);
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.st-section-menu-free .st-menu-section-scrollable .st-daily-menu-row .st-menu-pane .st-menu-scroll-container .st-menu-card.is-disabled:hover {
  transform: none;
  box-shadow: var(--st-shadow-sm);
}
.st-section-menu-free .st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--st-border);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.st-section-menu-free .st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-section-menu-free .st-actions-fixed .st-actions-container {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  margin: 0 auto;
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-clear {
  flex: 0 0 auto;
  padding: 1em 1em 1em 1em;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-clear:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-clear:active {
  transform: translateY(0);
}
@media (max-width: 375px) {
  .st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-clear {
    padding: 1em 1em 1em 1em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-primary,
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-inactive {
  flex: 1;
  padding: 1em 0.5em 1em 0.5em;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-primary.st-btn-primary,
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-primary {
  background: var(--st-green-primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-primary.st-btn-primary:hover,
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(34, 197, 94, 0.3);
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-primary.st-btn-primary:active,
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-primary:active {
  transform: translateY(0);
}
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-primary.st-btn-inactive,
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-inactive.st-btn-inactive {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-primary,
.st-section-menu-free .st-actions-fixed .st-actions-container .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}

.st-guide-warning, .st-week-guide,
.st-course-guide,
.week2-free-menu-guide,
.tanpin-free-menu-guide,
.free-menu-guide {
  position: relative;
  padding: 0rem 0rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: white;
  border-color: white;
  color: var(--st-green-primary) !important;
}

.st-guide-success {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: white;
  border-color: white;
  color: var(--st-green-primary) !important;
}

.st-menu-select-btn {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.st-menu-select-btn .material-symbols-outlined {
  font-size: 18px;
  font-weight: 600;
}
.st-menu-select-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.st-menu-select-btn:active {
  transform: scale(0.95);
}
.st-menu-select-btn.st-btn-unselected {
  background: white;
  color: #1f2937;
  border: 1px solid #d1d5db;
}
.st-menu-select-btn.st-btn-unselected:hover {
  background: #f9fafb;
  color: #111827;
  border-color: #9ca3af;
}
.st-menu-select-btn.st-btn-selected {
  background: var(--st-green-primary);
  color: white;
}
.st-menu-select-btn.st-btn-selected:hover {
  background: var(--st-green-dark);
}
@media (max-width: 360px) {
  .st-menu-select-btn {
    width: 28px;
    height: 28px;
  }
  .st-menu-select-btn .material-symbols-outlined {
    font-size: 16px;
  }
}

.st-section-price {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 1rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .st-section-price {
    padding: 1rem 0.5rem;
    padding-bottom: 6rem;
  }
}

.st-price-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 1rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .st-price-container {
    padding: 1rem 0.5rem;
    padding-bottom: 6rem;
  }
}

.st-price-content {
  max-width: 600px;
  margin: 0 auto;
}

.st-price-header {
  text-align: center;
  margin-bottom: 3rem;
}
.st-price-header .st-price-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .st-price-header .st-price-title {
    font-size: 1.5rem;
  }
}

.st-order-method {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.st-order-method .st-method-label {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem !important;
  background: var(--st-green-primary) !important;
  color: white !important;
  border-radius: 4px;
  font-size: 1rem !important;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .st-order-method .st-method-label {
    padding: 0.3rem 0.8rem;
    font-size: 0.95rem;
  }
}
.st-order-method .st-method-value {
  display: inline-flex;
  align-items: center;
  color: var(--st-green-primary) !important;
  font-size: 1rem !important;
  font-weight: 500;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .st-order-method .st-method-value {
    font-size: 0.95rem;
  }
}
.st-order-method .st-week-tag {
  background: var(--st-green-primary) !important;
  color: white !important;
}
.st-order-method .st-course-tag {
  background: var(--st-green-primary) !important;
  color: white !important;
}
.st-order-method .st-people-tag {
  background: var(--st-green-primary) !important;
  color: white !important;
}

.st-price-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

.st-people-section {
  margin-bottom: 2.5rem;
}
.st-people-section .st-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
  text-align: center;
}
.st-people-section .st-people-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .st-people-section .st-people-options {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
.st-people-section .st-people-btn {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  color: #333;
}
@media (max-width: 768px) {
  .st-people-section .st-people-btn {
    width: 200px;
  }
}
.st-people-section .st-people-btn:hover {
  border-color: var(--st-green-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(127, 33, 83, 0.15);
}
.st-people-section .st-people-btn.active {
  border-color: var(--st-green-primary);
  background: var(--st-green-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(127, 33, 83, 0.3);
}
.st-people-section .st-people-btn .st-people-count {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.st-people-section .st-people-btn .st-people-label {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.8;
  color: inherit;
}
.st-people-section .st-people-note {
  text-align: center;
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

.st-content-section {
  margin-bottom: 2.5rem;
}
.st-content-section .st-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
}
.st-content-section .st-content-summary {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.st-content-section .st-order-method {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.st-content-section .st-order-method .st-method-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--st-green-primary);
}
.st-content-section .st-menu-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.st-content-section .st-week-group {
  margin-bottom: 1.5rem;
}
.st-content-section .st-week-group:last-child {
  margin-bottom: 0;
}
.st-content-section .st-week-group .st-week-title {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.75rem;
}
.st-content-section .st-week-group .st-week-menus {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.st-content-section .st-menu-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  gap: 1rem;
}
.st-content-section .st-menu-item:hover {
  background: #f1f5f9;
  transform: translateX(2px);
}
.st-content-section .st-menu-item .st-menu-image {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #e9ecef;
}
.st-content-section .st-menu-item .st-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-content-section .st-menu-item .st-menu-content {
  flex: 1;
  min-width: 0;
}
.st-content-section .st-menu-item .st-menu-content .st-menu-day {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.st-content-section .st-menu-item .st-menu-content .st-menu-names {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.st-content-section .st-menu-item .st-menu-content .st-menu-names .st-syusai-name {
  font-size: 1rem;
  color: #212529;
  font-weight: 600;
  line-height: 1.4;
}
.st-content-section .st-menu-item .st-menu-content .st-menu-names .st-fukusai-name {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.4;
}
.st-content-section .st-course-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
}
.st-content-section .st-course-item:hover {
  background: #f1f5f9;
  transform: translateX(2px);
}
.st-content-section .st-course-item .st-course-week {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
}
.st-content-section .st-course-item .st-course-info {
  font-size: 0.95rem;
  color: #212529;
  font-weight: 300;
}
.st-content-section .st-empty-message,
.st-content-section .st-error-message {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  padding: 1rem;
}

.st-price-section {
  margin-bottom: 2.5rem;
}
.st-price-section .st-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
}
.st-price-section .st-price-breakdown {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.st-price-section .st-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f3f4;
}
.st-price-section .st-price-row .st-price-label {
  font-size: 1rem;
  color: #495057;
}
.st-price-section .st-price-row .st-price-original {
  font-size: 1rem;
  color: #6c757d;
  text-decoration: line-through;
}
.st-price-section .st-price-row .st-price-discount {
  font-size: 1rem;
  color: var(--st-green-primary);
  font-weight: 500;
}
.st-price-section .st-price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid var(--st-green-primary);
  margin-top: 0.5rem;
}
.st-price-section .st-price-total-row .st-price-total-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
}
.st-price-section .st-price-total-row .st-price-total {
  font-size: 2rem;
  font-weight: 700;
  color: var(--st-green-primary);
}
@media (max-width: 768px) {
  .st-price-section .st-price-total-row .st-price-total {
    font-size: 1.75rem;
  }
}

.st-action-section {
  text-align: center;
}
.st-action-section .st-btn-primary,
.st-action-section .st-order-btn {
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-action-section .st-btn-primary:hover,
.st-action-section .st-order-btn:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-action-section .st-btn-primary:active,
.st-action-section .st-order-btn:active {
  transform: translateY(0);
}
.st-action-section .st-btn-primary:disabled,
.st-action-section .st-order-btn:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--st-border);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-primary,
.st-actions-fixed .st-order-btn {
  width: 100%;
  max-width: 400px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover,
.st-actions-fixed .st-order-btn:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active,
.st-actions-fixed .st-order-btn:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled,
.st-actions-fixed .st-order-btn:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.st-error-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}
.st-error-section .st-error-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(127, 33, 83, 0.15);
  text-align: center;
  border: 1px solid rgba(127, 33, 83, 0.2);
}
.st-error-section .st-error-card h3 {
  color: var(--st-green-primary);
  margin-bottom: 1rem;
}
.st-error-section .st-error-card p {
  color: #6c757d;
  margin-bottom: 2rem;
}
.st-error-section .st-error-card .st-error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.st-error-section .st-error-card .st-error-actions .st-error-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.st-error-section .st-error-card .st-error-actions .st-error-btn:not(.secondary) {
  background: var(--st-green-primary);
  color: white;
}
.st-error-section .st-error-card .st-error-actions .st-error-btn:not(.secondary):hover {
  background: var(--st-green-dark);
}
.st-error-section .st-error-card .st-error-actions .st-error-btn.secondary {
  background: #6c757d;
  color: white;
}
.st-error-section .st-error-card .st-error-actions .st-error-btn.secondary:hover {
  background: #5a6268;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.st-price-container {
  animation: fadeInUp 0.3s ease-out;
}

.st-content-summary,
.st-price-breakdown {
  animation: fadeInUp 0.4s ease-out;
}

.st-btn-primary:focus,
.st-order-btn:focus,
.st-people-btn:focus {
  outline: 2px solid var(--st-green-primary);
  outline-offset: 2px;
}

.st-menu-item:focus-within {
  outline: 2px solid var(--st-green-primary);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .st-menu-item,
.st-course-item {
    border-left-width: 4px;
  }

  .st-price-total-row {
    border-top-width: 3px;
    border-top-color: var(--st-green-primary);
  }
}
:root {
  --st-primary: #0d6efd;
  --st-color-text: #222;
  --st-color-muted: #6b7280;
  --st-muted-bg: #f8f9fa;
  --st-green-primary: #7f2153;
  --st-green-dark: #6b1a45;
  --st-green-darker: #5a1538;
  --st-green-light: #f3e8ed;
  --st-font-family-sans: "Noto Sans JP", sans-serif;
  --st-font-weight-regular: 400;
  --st-font-weight-medium: 500;
  --st-font-weight-bold: 700;
  --st-font-size-title-1: 1.75rem;
  --st-font-size-title-2: 1.5rem;
  --st-font-size-heading-1: 1.25rem;
  --st-font-size-heading-2: 1.125rem;
  --st-font-size-body: 1rem;
  --st-font-size-caption: .875rem;
  --st-line-height-tight: 1.2;
  --st-line-height-normal: 1.5;
}

.st-title-1 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-1);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-title-2 {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-bold);
  font-size: var(--st-font-size-title-2);
  line-height: var(--st-line-height-tight);
  color: var(--st-color-text);
}

.st-heading-1 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-heading-2 {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-body {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}

.st-caption {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  touch-action: manipulation;
}

#app {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
}

body {
  font-family: var(--st-font-family-sans);
  color: var(--st-color-text);
  line-height: var(--st-line-height-normal);
}

.container {
  max-width: 900px;
}

.nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
  font-weight: var(--st-font-weight-medium);
}

.nav-tabs .nav-link.active {
  background: var(--st-primary);
  color: #fff;
}

/* 汎用ユーティリティ */
.u-hidden {
  display: none !important;
}

/* 固定ヘッダー（全セクション共通） */
.st-week-section-fixed {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1rem 0.5rem;
}

/* 固定フッター（全セクション共通） */
.st-actions-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-actions-fixed.hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.st-actions-fixed .st-btn-secondary {
  flex: 0 0 auto;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-actions-fixed .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-actions-fixed .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-secondary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-actions-fixed .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-actions-fixed .st-btn-primary:active {
  transform: translateY(0);
}
.st-actions-fixed .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.st-actions-fixed .st-btn-inactive {
  flex: 1;
  width: 100%;
  padding: 1rem 2rem;
  background: #e5e7eb !important;
  color: var(--st-green-primary) !important;
  border: 2px solid #d1d5db !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: not-allowed;
  transition: none !important;
  opacity: 0.8;
}
@media (max-width: 375px) {
  .st-actions-fixed .st-btn-inactive {
    padding: 1em 0.5em 1em 0.5em;
    font-size: 1rem;
    font-weight: 500;
  }
}
.st-actions-fixed .st-loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.st-actions-fixed .st-loading-container .st-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
  margin-bottom: 1.5rem;
}
.st-actions-fixed .st-loading-container .st-loading-text {
  color: var(--st-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}
@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* スクロール可能なメインコンテンツ（全セクション共通） */
.st-menu-section-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  margin-bottom: 100px;
  /* 固定フッター分のマージン */
}

.st-order-process {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--st-muted-bg);
  touch-action: pan-y;
}
@media (min-width: 768px) {
  .st-order-process {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: var(--st-surface);
  }
}

.st-debug-button {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1f2937;
  border: 2px solid #374151;
  color: #10b981;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-debug-button:hover {
  background: #374151;
  border-color: #10b981;
  transform: scale(1.05);
}
.st-debug-button .material-symbols-outlined {
  font-size: 24px;
}

.st-debug-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.st-debug-modal-overlay .st-debug-modal {
  background: #1f2937;
  border-radius: var(--st-radius-sm);
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #374151;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-header .st-debug-modal-title {
  display: flex;
  align-items: center;
  color: #f3f4f6;
  font-size: 1.125rem;
  font-weight: var(--st-font-weight-semibold);
  margin: 0;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-header .st-debug-modal-title .material-symbols-outlined {
  margin-right: 0.5rem;
  color: #10b981;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-header .st-debug-modal-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-header .st-debug-modal-close:hover {
  background: #374151;
  color: #f3f4f6;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-header .st-debug-modal-close .material-symbols-outlined {
  font-size: 20px;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-content {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}
.st-debug-modal-overlay .st-debug-modal .st-debug-modal-content .st-debug-json {
  background: #111827;
  color: #d1d5db;
  padding: 1rem;
  border-radius: 0.375rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  border: 1px solid #374151;
  margin: 0;
}

.st-order-form {
  padding: 1.5rem;
  background: var(--st-surface);
  border-radius: var(--st-radius-sm);
  margin-bottom: 1rem;
  box-shadow: var(--st-shadow-sm);
  box-sizing: border-box;
}
.st-order-form .st-form-group {
  margin-bottom: 1.5rem;
}
.st-order-form .st-form-group .st-form-label {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  margin-bottom: 0.5rem;
  display: block;
}
.st-order-form .st-form-group .st-form-label .st-required {
  color: #dc2626;
  margin-left: 0.25rem;
}
.st-order-form .st-form-group .st-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  font-family: var(--st-font-family-sans);
  font-size: var(--st-font-size-body);
  color: var(--st-color-text);
  background: var(--st-surface);
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.st-order-form .st-form-group .st-form-input:focus {
  outline: none;
  border-color: var(--st-green-primary);
  box-shadow: 0 0 0 3px rgba(127, 33, 83, 0.1);
}
.st-order-form .st-form-group .st-form-input:disabled {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  cursor: not-allowed;
  opacity: 0.7;
}
.st-order-form .st-form-group .st-form-input.st-input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.st-order-form .st-form-group .st-form-input::placeholder {
  color: var(--st-color-muted);
  opacity: 0.7;
}
.st-order-form .st-form-group .st-form-help {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  margin-top: 0.5rem;
  color: var(--st-color-muted);
}

.st-delivery-area .st-zipcode-input {
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-medium);
  letter-spacing: 0.05em;
  text-align: center;
}
.st-delivery-area .st-zipcode-input[inputmode=numeric] {
  font-size: 1.125rem;
}
.st-delivery-area .st-delivery-status {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--st-radius-sm);
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  border: 1px solid var(--st-border);
  display: flex;
  align-items: center;
}
.st-delivery-area .st-delivery-status.st-status-checking {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  border-color: var(--st-border);
}
.st-delivery-area .st-delivery-status.st-status-checking::before {
  content: "⏳";
  margin-right: 0.5rem;
}
.st-delivery-area .st-delivery-status.st-status-deliverable {
  background: var(--st-green-light);
  color: var(--st-green-primary);
  border-color: var(--st-green-primary);
}
.st-delivery-area .st-delivery-status.st-status-deliverable::before {
  content: "✓";
  margin-right: 0.5rem;
  font-weight: var(--st-font-weight-bold);
}
.st-delivery-area .st-delivery-status.st-status-not-deliverable {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}
.st-delivery-area .st-delivery-status.st-status-not-deliverable::before {
  content: "⚠";
  margin-right: 0.5rem;
}
.st-delivery-area .st-delivery-alert {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--st-radius-sm);
  color: #dc2626;
}
.st-delivery-area .st-delivery-alert .st-alert-title {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: #dc2626;
  margin-bottom: 0.75rem;
}
.st-delivery-area .st-delivery-alert .st-alert-message {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: #7f1d1d;
  line-height: var(--st-line-height-normal);
}
.st-delivery-area .st-delivery-alert .st-alert-message .st-phone-link {
  color: var(--st-green-primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--st-green-primary);
  transition: all 0.2s ease;
}
.st-delivery-area .st-delivery-alert .st-alert-message .st-phone-link:hover {
  color: var(--st-green-dark);
  border-bottom-color: var(--st-green-dark);
}
.st-delivery-area .st-delivery-alert .st-alert-message .st-phone-link:active {
  color: var(--st-green-darker);
  border-bottom-color: var(--st-green-darker);
}

.st-address-form .st-address-group {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .st-address-form .st-address-group {
    grid-template-columns: 1fr 1fr;
  }
}
.st-address-form .st-address-auto {
  position: relative;
}
.st-address-form .st-address-auto::after {
  content: "自動入力";
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  background: var(--st-green-light);
  color: var(--st-green-primary);
  padding: 0.2rem 0.4rem;
  border-radius: var(--st-radius-sm);
  font-weight: var(--st-font-weight-medium);
}
.st-address-form .st-optional-field {
  position: relative;
}
.st-address-form .st-optional-field::after {
  content: "任意";
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  background: #dcfce7;
  color: #16a34a;
  padding: 0.2rem 0.4rem;
  border-radius: var(--st-radius-sm);
  font-weight: var(--st-font-weight-medium);
}

.st-optional-field {
  position: relative;
}
.st-optional-field::after {
  content: "任意";
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  font-size: 0.7rem;
  background: #dcfce7;
  color: #16a34a;
  padding: 0.2rem 0.4rem;
  border-radius: var(--st-radius-sm);
  font-weight: var(--st-font-weight-medium);
}

.st-email-not-provided {
  color: var(--st-green-primary) !important;
  font-weight: 500;
}

.st-price-order-summary {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-green-primary);
  font-weight: var(--st-font-weight-semibold);
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.st-order-summary {
  background: var(--st-muted-bg);
  border-radius: var(--st-radius-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--st-border);
}
.st-order-summary .st-summary-title {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--st-green-primary);
  padding-bottom: 0.5rem;
}
.st-order-summary .st-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--st-border);
}
.st-order-summary .st-summary-item .st-item-label {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
}
.st-order-summary .st-summary-item .st-item-value {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  font-weight: var(--st-font-weight-medium);
}
.st-order-summary .st-summary-item:last-child {
  border-bottom: none;
  font-weight: var(--st-font-weight-bold);
  font-size: 1.1rem;
  color: var(--st-green-primary);
}
.st-order-summary .st-summary-item:last-child .st-item-value {
  font-size: 1.25rem;
  color: var(--st-green-primary);
}
.st-order-summary .st-summary-item:nth-child(2) .st-item-label {
  color: #6c757d !important;
}
.st-order-summary .st-summary-item:nth-child(2) .st-item-value {
  color: #6c757d !important;
  text-decoration: line-through !important;
  font-weight: var(--st-font-weight-normal) !important;
}
.st-order-summary .st-summary-item:nth-child(3) .st-item-value.st-campaign-apply {
  color: var(--st-green-primary) !important;
  text-decoration: none !important;
}
.st-order-summary .st-payment-note {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-green-primary);
  font-weight: var(--st-font-weight-medium);
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
}

.st-order-content {
  padding-bottom: 80px;
}

.st-confirmation-card {
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--st-shadow-sm);
}
.st-confirmation-card .st-card-title {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-1);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.st-confirmation-card .st-card-title .st-card-icon {
  margin-right: 0.5rem;
  color: var(--st-green-primary);
  font-size: 1.25rem;
}
.st-confirmation-card .st-card-content .st-info-row {
  display: flex;
  margin-bottom: 0.75rem;
}
.st-confirmation-card .st-card-content .st-info-row .st-info-label {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  font-weight: var(--st-font-weight-medium);
  color: var(--st-color-muted);
  min-width: 120px;
  margin-right: 1rem;
}
.st-confirmation-card .st-card-content .st-info-row .st-info-value {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-color-text);
  flex: 1;
}

.st-order-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--st-border);
  padding: 1rem;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.st-order-actions .st-actions-content {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.st-order-actions .st-btn-secondary {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  background: var(--st-surface);
  color: var(--st-text-primary);
  border: 2px solid var(--st-border);
  border-radius: var(--st-radius-sm);
  font-family: var(--st-font-family-sans);
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-body);
  box-shadow: var(--st-shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.st-order-actions .st-btn-secondary .material-symbols-outlined {
  font-size: 1.2rem;
}
.st-order-actions .st-btn-secondary:hover {
  border-color: var(--st-green-primary);
  background: var(--st-green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.st-order-actions .st-btn-secondary:active {
  transform: translateY(0);
}
.st-order-actions .st-btn-primary {
  flex: 1;
  max-width: 300px;
  padding: 1rem 2rem;
  background: var(--st-green-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}
.st-order-actions .st-btn-primary:hover {
  background: var(--st-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -3px rgba(127, 33, 83, 0.3);
}
.st-order-actions .st-btn-primary:active {
  transform: translateY(0);
}
.st-order-actions .st-btn-primary:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.st-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.st-loading .st-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--st-border);
  border-top: 2px solid var(--st-green-primary);
  border-radius: 50%;
  animation: st-spin 1s linear infinite;
}
.st-loading .st-loading-text {
  margin-left: 0.5rem;
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-color-muted);
}

@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.st-error-message {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: var(--st-radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  display: flex;
  align-items: center;
}
.st-error-message::before {
  content: "⚠";
  margin-right: 0.5rem;
}

.st-success-message {
  background: var(--st-green-light);
  color: var(--st-green-primary);
  border: 1px solid var(--st-green-primary);
  border-radius: var(--st-radius-sm);
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  display: flex;
  align-items: center;
}
.st-success-message::before {
  content: "✓";
  margin-right: 0.5rem;
  font-weight: var(--st-font-weight-bold);
}

.st-validation-error {
  margin-bottom: 1rem;
  animation: st-slide-down 0.3s ease-out;
}

.st-alert {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--st-radius-sm);
  margin-bottom: 1rem;
}
.st-alert.st-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.st-alert-icon {
  flex-shrink: 0;
  margin-right: 0.75rem;
}
.st-alert-icon .material-symbols-outlined {
  font-size: 1.25rem;
  color: #dc2626;
}

.st-alert-content {
  flex: 1;
}
.st-alert-content strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--st-font-weight-bold);
}

.st-error-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.st-error-list li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.st-error-list li:last-child {
  margin-bottom: 0;
}

@keyframes st-slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.st-week-detail {
  margin-bottom: 1.5rem;
}
.st-week-detail .st-week-title {
  font-weight: var(--st-font-weight-medium);
  font-size: var(--st-font-size-heading-2);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-green-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--st-border);
}
.st-week-detail .st-order-method {
  color: var(--st-green-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .st-week-detail .st-order-method {
    font-size: 1rem;
  }
}
.st-week-detail .st-week-menus {
  display: grid;
  gap: 0.75rem;
}

.st-menu-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
  gap: 1rem;
}
.st-menu-item:hover {
  background: #f1f5f9;
  transform: translateX(2px);
}
.st-menu-item .st-menu-image {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #e9ecef;
}
.st-menu-item .st-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-menu-item .st-menu-content {
  flex: 1;
  min-width: 0;
}
.st-menu-item .st-menu-content .st-menu-day {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.st-menu-item .st-menu-content .st-menu-names {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.st-menu-item .st-menu-content .st-menu-names .st-syusai-name {
  font-size: 1rem;
  color: #212529;
  font-weight: 600;
  line-height: 1.4;
}
.st-menu-item .st-menu-content .st-menu-names .st-fukusai-name {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.4;
}

.st-menu-item-detail {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: var(--st-muted-bg);
  border-radius: var(--st-radius-sm);
  border: 1px solid var(--st-border);
}
.st-menu-item-detail .st-menu-day {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  font-weight: var(--st-font-weight-medium);
  color: var(--st-color-text);
  min-width: 60px;
  margin-right: 1rem;
}
.st-menu-item-detail .st-menu-info {
  flex: 1;
}
.st-menu-item-detail .st-menu-info .st-menu-course {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  color: var(--st-green-primary);
  font-weight: var(--st-font-weight-medium);
  margin-bottom: 0.25rem;
}
.st-menu-item-detail .st-menu-info .st-menu-name {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-color-text);
  margin-bottom: 0.25rem;
  line-height: var(--st-line-height-tight);
}
.st-menu-item-detail .st-menu-info .st-menu-price {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  color: var(--st-color-muted);
  font-weight: var(--st-font-weight-medium);
}

.st-completion-message {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--st-green-light);
  border-radius: var(--st-radius-sm);
  border: 1px solid var(--st-green-primary);
}
.st-completion-message p {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-body);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-text);
  color: var(--st-color-text);
  margin-bottom: 0.75rem;
  line-height: var(--st-line-height-normal);
}
.st-completion-message p:last-child {
  margin-bottom: 0;
}

.st-step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
}
.st-step-indicator .st-step {
  display: flex;
  align-items: center;
}
.st-step-indicator .st-step .st-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--st-font-weight-bold);
  margin-right: 0.5rem;
}
.st-step-indicator .st-step .st-step-number.active {
  background: var(--st-green-primary);
  color: white;
}
.st-step-indicator .st-step .st-step-number.completed {
  background: var(--st-green-primary);
  color: white;
}
.st-step-indicator .st-step .st-step-number.completed::after {
  content: "✓";
}
.st-step-indicator .st-step .st-step-number.pending {
  background: var(--st-muted-bg);
  color: var(--st-color-muted);
  border: 1px solid var(--st-border);
}
.st-step-indicator .st-step .st-step-label {
  font-weight: var(--st-font-weight-regular);
  font-size: var(--st-font-size-caption);
  line-height: var(--st-line-height-normal);
  color: var(--st-color-muted);
  color: var(--st-color-muted);
}
.st-step-indicator .st-step .st-step-label.active {
  color: var(--st-color-text);
  font-weight: var(--st-font-weight-medium);
}
.st-step-indicator .st-step:not(:last-child) {
  margin-right: 2rem;
}
.st-step-indicator .st-step:not(:last-child)::after {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--st-border);
  margin-left: 1rem;
}

@media (max-width: 767px) {
  .st-order-process {
    padding: 0;
  }

  .st-order-form,
.st-order-summary,
.st-confirmation-card {
    border-radius: 0;
    margin-bottom: 0;
    border-left: none;
    border-right: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .st-order-content {
    padding-bottom: 80px;
  }

  .st-step-indicator {
    padding: 0.75rem 0.5rem;
  }
  .st-step-indicator .st-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px;
  }
  .st-step-indicator .st-step .st-step-number {
    width: 2rem;
    height: 2rem;
    margin-right: 0;
    margin-bottom: 0.25rem;
    flex-shrink: 0;
  }
  .st-step-indicator .st-step .st-step-label {
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .st-step-indicator .st-step:not(:last-child) {
    margin-right: 0.5rem;
  }
  .st-step-indicator .st-step:not(:last-child)::after {
    width: 0.25rem;
    margin-left: 0.25rem;
  }
}
/**
 * Vimeo動画スライダー用スタイル
 * 上下2段の動画スライド機能
 */
.vimeo-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}
.vimeo-slider .vimeo-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
  transform: translateX(0%);
}
.vimeo-slider .vimeo-track .vimeo-video-container {
  width: 50%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.vimeo-slider .vimeo-track .vimeo-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  background: transparent;
  border: none;
}
.vimeo-slider .vimeo-track .vimeo-video-container::after {
  display: none !important;
}

.vimeo-slider-upper .vimeo-track.slide-right {
  transform: translateX(-50%);
}

.vimeo-slider-lower .vimeo-track.slide-left {
  transform: translateX(-50%);
}

@media (max-width: 576px) {
  .vimeo-slider .vimeo-track {
    transition: transform 0.6s ease-in-out;
  }
}
@media (max-width: 375px) {
  .vimeo-slider .vimeo-track {
    transition: transform 0.5s ease-in-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vimeo-slider .vimeo-track {
    transition: none;
  }
}
.vimeo-slider-debug .vimeo-track {
  border: 2px solid red;
}
.vimeo-slider-debug .vimeo-track .vimeo-video-container {
  border: 1px solid blue;
}

/* test comment */
/* test update */
/* new test */
/* final test */
/* course ui margin fix */
/* course ui border fix */
/* full width fix */
/* menu left margin fix */
/* menu card left margin fix */
/* first menu card margin fix */
/* force left margin with pseudo element */
/* visual debug with red block */
/* fix right pane position */
/* red border debug for right pane */
/* fix initial scroll position */
/* disable scroll snap for menu cards */
/* remove debug elements */
/* remove hover border color change */
/* fix week tab selection issues */
/* fix 1week campaign week tab issue */
/* fix 1week campaign week tab issue - final */
/* rename index.php to index_recovery.php */
/* create api.php for index.html */
/* simplify file structure - index.php as main */
/* create index_recovery.php */
/* fix 2week campaign week tab issue */
/* fix 2week campaign decision button issue */
/* update documentation for today's fixes */
/* improve .cursorrules SCSS compilation instructions */
/* add order method tabs to menu UI */
/* fix course selection UI menu display issue */
/* fix free menu UI price display menu details */
/* add URL parameter direct access functionality */
/* verify order method tabs display config.json names */
/* remove debug logs for order method tabs */
/* update documentation for today's work and tomorrow's TODO */
/* SCSS自動コンパイル確認 - 2025年 9月 8日 月曜日 16時29分45秒 JST */
