/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #e63946;
  --secondary: #f1faee;
  --accent: #a8dadc;
  --dark: #1d3557;
  --light: #f8f9fa;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark);
  background: transparent;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeIn 1s ease;
  flex-shrink: 0;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

.logo h1 {
  font-size: 22px;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  white-space: nowrap;
}

.header-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tel-button,
.line-button,
.reserve-button {
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.tel-button {
  background: var(--gradient-1);
  color: white;
}

.line-button {
  background: #06c755;
  color: white;
}

.reserve-button {
  background: var(--gradient-2);
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.tel-button:hover,
.line-button:hover,
.reserve-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 40px 20px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-primary {
  background: white;
  color: var(--dark);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Section Styles */
section {
  padding: 80px 0;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 50px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Price Table */
.price-table {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 40px 0;
}

.price-row {
  display: flex;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.price-row:hover {
  background: rgba(102, 126, 234, 0.1);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  flex: 1;
  font-weight: 600;
  font-size: 18px;
}

.price-value {
  flex: 1;
  text-align: right;
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid;
  border-image: var(--gradient-1) 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-question {
  padding: 25px 30px;
  font-weight: 700;
  font-size: 19px;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-3);
}

.faq-answer {
  padding: 25px 30px;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  background: white;
}

/* Area Links */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.area-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-image: var(--gradient-1) 1;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.footer-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
}

/* Fixed Bottom Bar (Mobile) */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  z-index: 999;
  display: none;
}

.bottom-bar-buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}

.bottom-bar-buttons a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  text-align: center;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 24px;
}

.modal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 17px;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.modal-button {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  display: block;
}

.modal-button-primary {
  background: var(--gradient-2);
  color: white;
}

.modal-button-secondary {
  background: #f0f0f0;
  color: var(--dark);
}

.modal-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {

  /* Hero - override !important from inline styles */
  .hero h1 {
    font-size: 26px !important;
    line-height: 1.4 !important;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-content {
    text-align: center !important;
    padding: 30px 15px !important;
  }

  .hero {
    min-height: 450px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-button {
    padding: 14px 30px !important;
    font-size: 16px !important;
    width: 80%;
    text-align: center;
  }

  .section-title {
    font-size: 24px !important;
    padding-bottom: 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .logo h1 {
    font-size: 17px;
  }

  .header-contact {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .tel-button,
  .line-button,
  .reserve-button {
    padding: 9px 14px;
    font-size: 12px;
  }

  .fixed-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }

  section {
    padding: 50px 0;
  }

  .features-grid,
  .area-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content p {
    font-size: 15px;
  }

  .modal-button {
    padding: 14px 20px;
    font-size: 15px;
  }

  .glass-card {
    padding: 20px 15px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  /* Promo Banner mobile */
  .promo-banner {
    padding: 25px 15px;
    margin: 30px auto;
    border-radius: 15px;
  }

  .promo-title {
    font-size: 22px !important;
  }

  .promo-text {
    font-size: 15px !important;
  }

  /* Showcase mobile */
  .showcase-item {
    min-width: 200px;
    height: 280px;
  }

  .image-showcase {
    gap: 12px;
    padding: 10px 0;
  }

  /* SEO section mobile overrides */
  #custom-seo-4 {
    padding: 35px 15px !important;
    margin: 30px 10px !important;
    border-radius: 15px !important;
  }

  #custom-seo-4 h2 {
    font-size: 24px !important;
  }

  #custom-seo-4 h3 {
    font-size: 20px !important;
  }

  .seo-card img {
    height: 180px !important;
  }

  .seo-card div {
    padding: 20px !important;
  }

  /* Price table mobile */
  .price-row {
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
  }

  .price-label {
    font-size: 16px;
  }

  .price-value {
    text-align: left;
    font-size: 16px;
  }

  /* CTA section mobile */
  #cta h2 {
    font-size: 26px !important;
  }

  #cta p {
    font-size: 16px !important;
  }

  /* Footer mobile */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-section h3 {
    font-size: 18px;
  }

  /* Image gallery mobile */
  .image-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 15px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 22px !important;
  }

  .hero p {
    font-size: 14px;
  }

  .section-title {
    font-size: 20px !important;
  }

  .modal-content {
    padding: 25px 15px;
  }

  .promo-title {
    font-size: 20px !important;
  }

  .promo-text {
    font-size: 14px !important;
  }

  .promo-banner {
    padding: 20px 12px;
  }

  .showcase-item {
    min-width: 180px;
    height: 250px;
  }

  #custom-seo-4 h2 {
    font-size: 20px !important;
  }

  #custom-seo-4 h3 {
    font-size: 18px !important;
  }

  #cta h2 {
    font-size: 22px !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  /* Area toggle button */
  #area-toggle-btn {
    font-size: 14px !important;
    padding: 12px 25px !important;
  }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://2.itnext1.com/img/7.jpeg') center/cover no-repeat;
  z-index: -2;
}


/* Added beautiful backgrounds */
body {
  background-color: #f8f9fa;
  background-image:
    radial-gradient(at 40% 20%, hsla(28, 100%, 74%, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 50%, hsla(340, 100%, 76%, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(22, 100%, 77%, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 100%, hsla(242, 100%, 70%, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(343, 100%, 76%, 0.15) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Banner styles */
.promo-banner {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 60px auto;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255, 154, 158, 0.2);
  position: relative;
  overflow: hidden;
  color: #4a4a4a;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ff4757;
}

.promo-text {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}

.image-showcase {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  /* Firefox */
}

.image-showcase::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.showcase-item {
  min-width: 250px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-shrink: 0;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: floatParticle 10s infinite linear;
}

.p1 {
  width: 20px;
  height: 20px;
  left: 10%;
  bottom: -20px;
  animation-duration: 15s;
}

.p2 {
  width: 35px;
  height: 35px;
  left: 30%;
  bottom: -40px;
  animation-duration: 12s;
  animation-delay: 2s;
}

.p3 {
  width: 15px;
  height: 15px;
  left: 50%;
  bottom: -15px;
  animation-duration: 18s;
  animation-delay: 4s;
}

.p4 {
  width: 25px;
  height: 25px;
  left: 70%;
  bottom: -30px;
  animation-duration: 10s;
  animation-delay: 1s;
}

.p5 {
  width: 40px;
  height: 40px;
  left: 90%;
  bottom: -50px;
  animation-duration: 20s;
  animation-delay: 3s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-1000px) scale(0.5);
    opacity: 0;
  }
}