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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* ===================================
   Utility (Layout)
   =================================== */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-sm {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #E8F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.header-logo-text {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: #fff;
  transition: color 0.3s;
}

.header.scrolled .header-logo-text {
  color: #1A3A52;
}

/* Desktop Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
  color: #fff;
  padding: 0;
}

.header.scrolled .header-nav-link {
  color: #1A3A52;
}

.header-nav-link:hover {
  color: #2B7A9B;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2B7A9B;
  transition: width 0.3s;
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s;
}

.header-phone-btn:hover {
  background: #1A3A52;
}

/* Hamburger Button */
.hamburger-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn i {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}

.header.scrolled .hamburger-btn i {
  color: #1A3A52;
}

/* メニューが開いている時は閉じるボタンを常に濃い色に */
body.menu-open .hamburger-btn i {
  color: #1A3A52 !important;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-link {
  text-align: left;
  padding: 1rem 0;
  color: #1A3A52;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: #2B7A9B;
}

.mobile-menu-phone {
  padding-bottom: 2rem;
}

.mobile-menu-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.3), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 5rem 0;
  padding-bottom: 6rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #2B7A9B;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 .store-name {
  font-size: 1.875rem;
}

.hero h1 .subtitle {
  font-size: 1.25rem;
  color: #e5e7eb;
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: #f3f4f6;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #1A3A52;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #fff;
  color: #2B7A9B;
  border: 2px solid #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: transparent;
  color: #fff;
}

.hero-info-card {
  display: none;
}

.hero-info-card-inner {
  position: relative;
}

.hero-features {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  max-width: 20rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feature-item + .hero-feature-item {
  margin-top: 0.75rem;
}

.hero-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #E8F4F8;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-feature-icon i {
  color: #2B7A9B;
  font-size: 1.25rem;
}

.hero-feature-item span {
  color: #1A3A52;
  font-weight: 700;
}

/* ===================================
   Disclaimer Banner
   =================================== */
.disclaimer {
  background: #FFF9E6;
  border-top: 2px solid #F59E0B;
  border-bottom: 2px solid #F59E0B;
  padding: 1.5rem 0;
}

.disclaimer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.disclaimer-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.disclaimer-icon {
  width: 3rem;
  height: 3rem;
  background: #F59E0B;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.disclaimer-text {
  color: #1A3A52;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
}

.disclaimer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
}

.disclaimer-phone:hover {
  background: #1A3A52;
}

/* ===================================
   Equipment Section
   =================================== */
.equipment {
  padding: 5rem 0;
  background: #fff;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A3A52;
  margin-bottom: 0.75rem;
}

.section-title .accent {
  color: #2B7A9B;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

.equipment-grid {
  display: grid;
  gap: 1.5rem;
}

.equipment-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s;
}

.equipment-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.equipment-card-img {
  width: 100%;
  height: 16rem;
  overflow: hidden;
}

.equipment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.equipment-card:hover .equipment-card-img img {
  transform: scale(1.05);
}

.equipment-card-body {
  padding: 1.5rem;
  text-align: center;
}

.equipment-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A3A52;
  margin-bottom: 0.5rem;
}

.equipment-card-body p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ===================================
   Details Section
   =================================== */
.details {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #fff, #E8F4F8);
}

.details-grid {
  display: grid;
  gap: 3rem;
}

.details-table {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.details-table-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.details-table-row:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

.details-table-label {
  background: #1A3A52;
  color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.875rem;
  font-weight: 700;
}

.details-table-value {
  background: #fff;
  color: #1A3A52;
  padding: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

/* Steps / Flow */
.flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A3A52;
  margin-bottom: 2rem;
}

.flow-title .accent {
  color: #2B7A9B;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  flex: 1;
  padding-top: 0.5rem;
  color: #1A3A52;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.wifi-card {
  margin-top: 2rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.wifi-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wifi-card-header i {
  color: #2B7A9B;
  font-size: 1.5rem;
}

.wifi-card-header strong {
  color: #1A3A52;
}

.wifi-card p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ===================================
   Access Section
   =================================== */
.access {
  padding: 5rem 0;
  background: linear-gradient(135deg, #E8F4F8, #B8E6F0);
}

.access-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
}

.access-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A3A52;
  text-align: center;
  margin-bottom: 2rem;
}

.access-address {
  text-align: center;
  margin-bottom: 1.5rem;
}

.access-address-main {
  font-size: 1.25rem;
  color: #1A3A52;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.access-address-sub {
  font-size: 1rem;
  color: #6b7280;
}

.access-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.access-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1A3A52;
}

.access-info-item i {
  color: #2B7A9B;
  font-size: 1.25rem;
}

.access-info-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.access-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
}

.access-map-btn:hover {
  background: #1A3A52;
}

.access-map-btn i {
  font-size: 1.25rem;
}

.text-center {
  text-align: center;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
  padding: 5rem 0;
  background: #fff;
}

.faq-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A3A52;
  margin-bottom: 3rem;
}

.faq-title .accent {
  color: #2B7A9B;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #E8F4F8;
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1A3A52;
  padding-right: 1rem;
}

.faq-question i {
  color: #2B7A9B;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 24rem;
}

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-left: 4px solid #2B7A9B;
}

.faq-answer-inner p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: #1A3A52;
  color: #fff;
  padding-bottom: 0;
}

.footer-inner {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #E8F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-heading {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu-link {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.3s;
  text-align: left;
  padding: 0;
}

.footer-menu-link:hover {
  color: #fff;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-phone:hover {
  color: #2B7A9B;
}

.footer-phone-sub {
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p:first-child {
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-copyright p:last-child {
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-notes {
  text-align: center;
}

.footer-notes p {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #2B7A9B;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 39;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: #1A3A52;
}

.back-to-top.visible:hover {
  transform: scale(1.1);
}

.back-to-top i {
  font-size: 1.5rem;
}

/* ===================================
   Sticky Call Button (Mobile)
   =================================== */
.sticky-call-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: #2B7A9B;
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.1);
  z-index: 39;
  transition: transform 0.3s ease;
}

.sticky-call-button i {
  font-size: 1.25rem;
}

.sticky-call-button span {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ===================================
   GSAP Animation Initial State
   =================================== */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

/* ===================================
   Responsive — sm (640px+)
   =================================== */
@media (min-width: 640px) {
  .container,
  .container-sm {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h1 .store-name {
    font-size: 2.25rem;
  }

  .hero h1 .subtitle {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .disclaimer-inner {
    flex-direction: row;
  }

  .disclaimer-text {
    font-size: 1rem;
  }

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

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

  .footer-bottom-inner {
    flex-direction: row;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-notes {
    text-align: right;
  }

  .access-card {
    padding: 3rem;
  }

  .access-info {
    flex-direction: row;
  }

  .access-title {
    font-size: 2.25rem;
  }

  .access-address-main {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .flow-title {
    font-size: 1.875rem;
  }

  .faq-title {
    font-size: 2.25rem;
  }

  .faq-question h4 {
    font-size: 1.125rem;
  }

  .faq-answer-inner p {
    font-size: 1rem;
  }
}

/* ===================================
   Responsive — lg (1024px+)
   =================================== */
@media (min-width: 1024px) {
  .container,
  .container-sm {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header-inner {
    height: 5rem;
  }

  .header-logo-icon {
    width: 3rem;
    height: 3rem;
  }

  .header-logo-icon img {
    width: 2rem;
    height: 2rem;
  }

  .header-logo-text {
    font-size: 1.125rem;
  }

  .header-nav {
    display: flex;
  }

  .hamburger-btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero h1 .store-name {
    font-size: 3rem;
  }

  .hero h1 .subtitle {
    font-size: 1.875rem;
  }

  .hero-info-card {
    display: block;
  }

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

  .details-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ===================================
   Mobile — StickyCallButton & BackToTop Fix
   =================================== */
@media (max-width: 1023px) {
  .sticky-call-button {
    display: flex;
  }

  /* BackToTopをStickyCallButtonの上に十分な余白を取って配置 */
  .back-to-top {
    bottom: 7rem;
    right: 1rem;
  }

  .back-to-top.visible {
    transform: translateY(0);
  }

  /* ヒーローセクションの下部にStickyCallButton分の余白 */
  .hero-content {
    padding-bottom: 7rem;
  }

  /* フッターの下余白（StickyCallButtonに隠れないように） */
  .footer {
    padding-bottom: 6rem;
  }

  /* ハンバーガーメニュー展開時にStickyCallButtonを非表示 */
  body.menu-open .sticky-call-button {
    transform: translateY(100%);
  }

  /* ハンバーガーメニュー展開時にBackToTopも非表示 */
  body.menu-open .back-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
