@import './variables.css';

/* ==========================================================================
   1. Base & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--lh-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: var(--lh-heading);
  color: var(--deep-navy);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

li {
  list-style: none;
}

/* ==========================================================================
   2. Utility Classes & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container-narrow {
  max-width: var(--container-narrow-width);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--text-light);
}

.section-title-area {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: var(--font-size-xxl);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1.5px;
  background-color: var(--primary-gold);
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-top: var(--space-xs);
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ==========================================================================
   3. Header Navigation (Desktop & Mobile)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(26, 37, 48, 0.95); /* Semi-transparent Deep Navy */
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  color: var(--text-light);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: var(--space-xxs) var(--space-xs);
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.is-active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

/* Header Action Button (Desktop Only) */
.header-cta {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-gold);
  color: var(--formal-black);
  font-weight: 600;
  font-size: var(--font-size-xs);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.header-cta:hover {
  background-color: var(--primary-gold-hover);
}

/* Burger Button for Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

/* ==========================================================================
   4. Buttons & Call-to-Actions (CTA)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--formal-black);
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.3);
}

.btn-gold:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn-outline {
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--formal-black);
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--deep-navy);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(26, 37, 48, 0.2);
}

.btn-navy:hover {
  background-color: var(--deep-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 37, 48, 0.3);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  margin-right: var(--space-xs);
  fill: currentColor;
}

/* ==========================================================================
   5. Hero Section (First View)
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--deep-navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  padding-top: 80px;
}

/* Light image wash. Text readability is handled by .hero-inner. */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 24, 33, 0.18) 0%, rgba(16, 24, 33, 0.08) 46%, rgba(16, 24, 33, 0.16) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-lg);
  background: rgba(10, 14, 19, 0.64);
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(1px);
}

.hero-title {
  font-size: var(--font-size-huge);
  line-height: 1.3;
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  word-break: keep-all;
  color: var(--text-light);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero-title span {
  color: #E5C894;
}

.hero-lead {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-lg);
  color: #F4F0E8;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ==========================================================================
   6. Custom Modules (Access, Cards, Sections)
   ========================================================================== */

/* No Booking / Booking Impossible Callout Box */
.notice-box {
  background-color: var(--primary-gold-light);
  border-left: 4px solid var(--primary-gold);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.notice-box-title {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: var(--space-xxs);
  display: flex;
  align-items: center;
}

.notice-box-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  fill: var(--deep-navy);
}

.notice-box-desc {
  font-size: var(--font-size-sm);
  color: var(--text-dark);
}

/* Feature Value Props (Grid) */
.feature-card {
  background: var(--system-white);
  border: 1px solid var(--border-color);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.feature-num {
  font-family: var(--font-serif);
  font-size: var(--font-size-xxl);
  color: var(--primary-gold);
  margin-bottom: var(--space-xs);
  font-weight: bold;
}

.feature-title {
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--deep-navy);
}

.feature-desc {
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  text-align: left;
}

/* Style Showcase Cards */
.style-card {
  background: var(--system-white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.style-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.style-image-wrapper {
  position: relative;
  padding-top: 125%; /* 4:5 Aspect Ratio */
  background-color: var(--deep-navy-dark);
  overflow: hidden;
}

.style-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.style-card:hover .style-image-wrapper img {
  transform: scale(1.05);
}

.style-content {
  padding: var(--space-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.style-title-jp {
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: 2px;
}

.style-title-en {
  font-size: var(--font-size-xs);
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.style-desc {
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.style-price {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  color: var(--deep-navy);
  font-weight: bold;
  border-top: 1px dashed var(--border-color);
  padding-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.style-price span {
  font-size: var(--font-size-xs);
  font-weight: normal;
  color: var(--text-muted);
}

/* Pricing Grid/Table Cards */
.price-card {
  background: var(--system-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.price-card.featured {
  border: 2px solid var(--primary-gold);
  transform: scale(1.03);
  position: relative;
  box-shadow: var(--shadow-md);
}

.price-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-gold);
  color: var(--formal-black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 20px;
}

.price-name-en {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.price-name-jp {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  color: var(--deep-navy);
  font-weight: bold;
  margin-bottom: var(--space-md);
}

.price-amount span {
  font-size: var(--font-size-sm);
  font-weight: normal;
  color: var(--text-muted);
}

.price-features {
  text-align: left;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-md);
}

.price-features li {
  margin-bottom: var(--space-xs);
  padding-left: 1.25rem;
  position: relative;
}

.price-features li::before {
  content: "✓";
  color: var(--primary-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Steps Process timeline */
.steps-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-lg);
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 var(--space-xs);
}

.step-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 25px;
  right: -10px;
  font-size: var(--font-size-lg);
  color: var(--primary-gold);
}

.step-badge {
  width: 50px;
  height: 50px;
  background-color: var(--deep-navy);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm) auto;
  font-weight: 700;
  border: 2px solid var(--primary-gold);
}

.step-name {
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
  color: var(--deep-navy);
}

.step-desc {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-align: justify;
  padding: 20px;
}

.shopping-time {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-align: justify;
  width: 90%;
  margin: auto;
}

/* Access Map Section styling */
.access-wrapper {
  background: var(--system-white);
  border: 1px solid var(--border-color);
  padding: var(--space-lg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-lg);
}

.access-map-embed {
  flex: 1;
  min-height: 350px;
  background-color: #EEE;
  border: 0;
}

.access-info {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.access-table th, .access-table td {
  padding: var(--space-xs) 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #F0ECE6;
}

.access-table th {
  width: 100px;
  color: var(--primary-gold-hover);
  font-weight: 600;
}

.access-table td {
  color: var(--text-dark);
}

/* ==========================================================================
   7. Inquiry Form UI
   ========================================================================== */
.form-wrapper {
  background: var(--system-white);
  border: 1px solid var(--border-color);
  padding: var(--space-lg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: var(--space-xxs);
}

.form-label span {
  color: var(--system-red);
  margin-left: var(--space-xxs);
}

.form-control {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  background-color: #FAF8F5;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-gold);
  background-color: var(--system-white);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  cursor: pointer;
}

.form-checkbox {
  margin-right: var(--space-xs);
  margin-top: 5px;
}

.form-error-msg {
  background-color: #FDF3F3;
  color: var(--system-red);
  border: 1px solid #EFA8AA;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  display: none;
}

/* ==========================================================================
   8. Footer & Copyright
   ========================================================================== */
.footer {
  background-color: var(--deep-navy-dark);
  color: var(--text-light);
  padding-top: var(--space-xl);
  padding-bottom: calc(var(--space-lg) + 60px); /* Padding compensation for floating mobile bar */
  border-top: 2px solid var(--primary-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-brand-desc {
  font-size: var(--font-size-xs);
  color: #D1D8E0;
  margin-bottom: var(--space-md);
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.footer-nav-list li {
  margin-bottom: var(--space-xs);
}

.footer-nav-list a {
  font-size: var(--font-size-sm);
  color: #B2BEC3;
}

.footer-nav-list a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color-dark);
  padding-top: var(--space-md);
  font-size: var(--font-size-xs);
  color: #778899;
}

/* ==========================================================================
   9. Mobile Floating CTA Bar
   ========================================================================== */
.floating-cta-bar {
  display: none; /* Desktop hidden */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(26, 37, 48, 0.98);
  border-top: 1px solid var(--primary-gold);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.floating-cta-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 var(--space-xs);
}

.floating-cta-btn {
  flex: 1;
  height: 50px;
  margin: 0 var(--space-xxs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.floating-cta-btn-phone {
  background-color: var(--system-white);
  color: var(--deep-navy);
  border: 1px solid var(--border-color);
}

.floating-cta-btn-map {
  background-color: var(--primary-gold);
  color: var(--formal-black);
}

.floating-cta-btn svg {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   10. Responsive Media Queries
   ========================================================================== */

/* Tablet Layout (under 1024px) */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .access-wrapper {
    flex-direction: column;
  }
  .access-info {
    width: 100%;
  }
}

/* Smartphone Layout (under 768px) */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-xxl: 4rem;
  }

  /* Header mobile overlay toggle active */
  .header {
    height: 60px;
  }
  
  .logo img {
    height: 30px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--deep-navy-dark);
    flex-direction: column;
    padding: var(--space-lg);
    transition: var(--transition-normal);
    z-index: 1005;
    overflow-y: auto;
  }

  .nav-menu.is-active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
    text-align: center;
  }

  .nav-link {
    font-size: var(--font-size-md);
    display: block;
    padding: var(--space-xs) 0;
  }

  .header-cta {
    display: none; /* Hide desktop action button */
  }

  /* Navigation Toggle Burger Icon Animations */
  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Grid reduction */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Hero Section resizing */
  .hero-inner {
    padding: var(--space-md);
  }
  .hero-title {
    font-size: var(--font-size-xl);
  }
  .hero-lead {
    font-size: var(--font-size-sm);
  }

  /* Timeline adjustment for mobile */
  .steps-timeline {
    flex-direction: column;
    gap: var(--space-md);
  }
  .step-item:not(:last-child)::after {
    content: "↓";
    top: auto;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
  }

  /* Footer Layout mobile stack */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Show floating mobile CTA bar */
  .floating-cta-bar {
    display: block;
  }
}

/* ==========================================================================
   11. Access Accordion Styles
   ========================================================================== */
.access-accordion-trigger {
  margin-top: var(--space-md);
  text-align: center;
}

.access-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  width: 100%;
}

.access-accordion-content.is-open {
  margin-top: var(--space-lg);
  border-top: 1px dashed var(--border-color);
  padding-top: var(--space-lg);
}

.shop-summary-box {
  display: flex;
  gap: var(--space-lg);
  background: var(--system-white);
  border: 1px solid var(--border-color);
  padding: var(--space-lg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.shop-summary-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.shop-summary-info {
  flex: 1;
}

.shop-summary-caption {
  font-size: var(--font-size-md);
  font-weight: 500;
  color: var(--deep-navy);
  margin-bottom: var(--space-md);
  line-height: var(--lh-heading);
}

.shop-summary-details {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-sm);
}

.shop-summary-details strong {
  color: var(--primary-gold-hover);
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .shop-summary-box {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
  }
  .shop-summary-img {
    width: 100%;
    height: 180px;
  }
}

/* ----------------------------------------------------
   12. ユーザー指定 レスポンシブ表示制御・改行用クラス
   ---------------------------------------------------- */

/* ----------------------------------------------------
   < 576px（スマホ縦など）
---------------------------------------------------- */
@media (max-width: 575.98px) {
  .sm-none   { display: none !important; }
  .sm-inline { display: inline !important; }
  .sm-block  { display: block !important; }
  .sm-text-left { text-align: left !important; }
}

/* ----------------------------------------------------
   ≥ 576px（スマホ横・タブレット）
---------------------------------------------------- */
@media (min-width: 576px) {
  .md-none   { display: none !important; }
  .md-inline { display: inline !important; }
  .md-block  { display: block !important; }
}

/* ----------------------------------------------------
   ≥ 992px（PC）
---------------------------------------------------- */
@media (min-width: 992px) {
  .lg-none   { display: none !important; }
  .lg-inline { display: inline !important; }
  .lg-block  { display: block !important; }
}
