:root {
  --color-peach: #5AAFDE;
  --color-peach-light: #A8DDF5;
  --color-mint: #6BC0E8;
  --color-mint-light: #B8E0F6;
  --color-teal: #1482B7;
  --color-teal-dark: #0D5A8A;
  --color-lime: #3FA3D8;
  --color-lime-light: #7EC7EB;
  --color-yellow: #A8DDF5;
  --color-cream: #E8F4F8;
  --color-milk: #F0F8FC;
  --color-blue: #1482B7;
  --color-blue-light: #6BC0E8;
  --color-green: #3FA3D8;
  --color-white: #FFFFFF;
  --color-text: #2C3E50;
  --color-text-light: #5A7A95;
  --color-purple-light: #D4EEF9;
  --color-purple: #1482B7;
  --color-instagram-pink: #1482B7;
  --color-instagram-purple: #0D5A8A;
  --color-instagram-orange: #3FA3D8;
  --color-coral: #5AAFDE;
  --font-display: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #6BC0E8 0%, #A8DDF5 40%, #D4EEF9 70%, #E8F4F8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.3) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.12) 0%, transparent 50%);
  animation: flowWave 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #E74C3C;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge::before,
.hero-badge::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  animation: rippleExpand 4s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
.hero-badge::after { animation-delay: 1.2s; }

.hero-title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 68px);
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  text-shadow: 2px 4px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-logo {
  height: 70px;
  width: auto;
}

.hero-text {
  color: #ffffff;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

#magokoro {
  -webkit-text-stroke: 10px #E74C3C;
  paint-order: stroke fill;
}

#milk {
  -webkit-text-stroke: 10px #1482B7;
  paint-order: stroke fill;
}

.hero-subtitle {
  font-size: clamp(14px, 3vw, 18px);
  color: var(--color-text);
  text-align: center;
  margin-bottom: 40px;
  max-width: min(600px, 100%);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle:first-of-type {
  display: inline-block;
  background-image: linear-gradient(transparent 70%, #5AAFDE 70%, #6BC0E8 85%, #A8DDF5 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 5px;
  line-height: 1.8;
}

.hero-main-image {
  position: relative;
  width: 90%;
  max-width: 630px;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image img {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.hero-image-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 90%;
  max-width: 900px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-side-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}

.hero-floating-images {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.floating-img {
  width: 150px;
  height: 200px;
  overflow: hidden;
}

.floating-img:hover { transform: translateY(-5px) scale(1.05); }

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

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 0.8s ease-out 1s both;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 25px 50px;
  box-shadow: 0 8px 32px rgba(20, 130, 183, 0.12);
  width: 630px;
}

.phone-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #E74C3C;
  display: flex;
  align-items: center;
  gap: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.1em;
}

.phone-number svg {
  width: 28px;
  height: 28px;
  fill: var(--color-teal-dark);
}

.phone-label {
  font-size: 24px;
  color: var(--color-text-light);
}

@media (max-width: 768px) {

.phone-number {
  font-size: 24px;
}
.phone-label{
  font-size:20px;
}
.phone-time{
  font-size:12px;
}
.hero-main-image{
  width: 160%;
}
}

/* ========================================
   Section Base Styles
======================================== */
section {
  position: relative;
  padding: 80px 20px;
}

.section-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.section-wave svg {
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-mint) 100%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(20, 130, 183, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.section-title-en {
  font-size: 14px;
  color: var(--color-teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-description {
  color: var(--color-text-light);
  max-width: min(700px, 100%);
  margin: 20px auto 0;
}

/* ========================================
   Service Section
======================================== */
.service-section {
  background: linear-gradient(180deg, #E8F4F8 0%, #FFFFFF 50%, #D4EEF9 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #A8DDF5 0%, #D4EEF9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img { transform: scale(1.08); }

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-teal);
}

.service-card-content { padding: 25px; }

.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}

.service-card-text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   Products Section
======================================== */
.products-section {
  background: linear-gradient(180deg, #D4EEF9 0%, #A8DDF5 50%, #1482B7 100%);
  padding-top: 120px;
}

.products-section .section-title,
.products-section .section-description {
  color: var(--color-white);
  text-shadow: 1px 2px 10px rgba(0,0,0,0.1);
}

.products-section .section-title-en { color: rgba(255,255,255,0.8); }

.products-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.product-item:nth-child(even) { direction: rtl; }
.product-item:nth-child(even) > * { direction: ltr; }

.product-image {
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-mint);
}

.product-content { padding: 20px; }

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3FA3D8 0%, #6BC0E8 100%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
}

.product-maker {
  font-size: 13px;
  color: var(--color-teal-dark);
  margin-bottom: 10px;
}

.product-text {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-feature {
  background: linear-gradient(135deg, #B8E0F6 0%, #1482B7 100%);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Product Gallery Section */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.product-gallery-item {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  padding: 15px;
  text-align: center;
}

.product-gallery-item:hover { transform: scale(1.05); }

.product-gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-gallery-item span {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
}

/* ========================================
   Flow Section
======================================== */
.flow-section {
  background: linear-gradient(180deg, #1482B7 0%, #0D5A8A 30%, #6BC0E8 100%);
  padding-top: 120px;
}

.flow-section .section-title,
.flow-section .section-description { color: var(--color-white); }

.flow-section .section-title-en { color: rgba(255,255,255,0.7); }

.flow-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.flow-step {
  background: var(--color-white);
  border-radius: 25px;
  padding: 30px 25px;
  text-align: center;
  width: 200px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  position: relative;
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-white);
  font-weight: bold;
}
.flow-step:last-child::after { display: none; }

.flow-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5AAFDE 0%, #3FA3D8 100%);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.flow-step-icon { width: 60px; height: 60px; margin: 0 auto 15px; }

.flow-step-icon svg { width: 100%; height: 100%; fill: var(--color-teal); }

.flow-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.flow-step-text { font-size: 13px; color: var(--color-text-light); }

/* ========================================
   Area Section
======================================== */
.area-section {
  background: linear-gradient(180deg, #6BC0E8 0%, #A8DDF5 50%, #D4EEF9 100%);
  padding-top: 120px;
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.area-map {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  background: var(--color-white);
  padding: 30px;
}

.area-map img {
  width: 100%;
  height: auto;
  display: block;
}

.area-list {
  background: var(--color-white);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.area-list h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-mint-light);
}

.area-prefecture { margin-bottom: 20px; }

.area-prefecture-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-teal-dark);
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-prefecture-name::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
}

.area-cities {
  font-size: 14px;
  color: var(--color-text-light);
  padding-left: 16px;
}

/* ========================================
   Business Section
======================================== */
.business-section {
  background: linear-gradient(180deg, #E8F4F8 0%, #D4EEF9 50%, #B8E0F6 100%);
  padding-top: 120px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.business-card {
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.business-card-large { grid-column: span 1; }

.business-card:nth-child(3),
.business-card:nth-child(4),
.business-card:nth-child(5) { grid-column: span 1; }

.business-card-header {
  padding: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.business-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  position: absolute;
  top: 15px;
  right: 20px;
}

.business-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-icon svg { width: 28px; height: 28px; }

.business-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
}

.business-card-content { padding: 25px; }

.business-description {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.business-initiatives h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.initiative-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.initiative-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
}

.tag-blue { background: linear-gradient(135deg, #1482B7 0%, #3FA3D8 100%); }
.tag-green { background: linear-gradient(135deg, #3FA3D8 0%, #6BC0E8 100%); }
.tag-orange { background: linear-gradient(135deg, #5AAFDE 0%, #7EC7EB 100%); }
.tag-pink { background: linear-gradient(135deg, #1482B7 0%, #5AAFDE 100%); }
.tag-teal { background: linear-gradient(135deg, #1482B7 0%, #6BC0E8 100%); }

.business-highlight {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FC 100%);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid var(--color-teal);
}

.highlight-badge {
  background: linear-gradient(135deg, #5AAFDE 0%, #3FA3D8 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  flex-shrink: 0;
}

.business-highlight p {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
}

.business-list { list-style: none; }

.business-list li { padding: 12px 0; border-bottom: 1px solid #eee; }
.business-list li:last-child { border-bottom: none; }

.business-list strong {
  display: block;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 5px;
}

.business-list p {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.business-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--color-teal-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.business-link:hover { color: var(--color-teal); }

.business-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.store-count {
  background: linear-gradient(135deg, #1482B7 0%, #5AAFDE 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 15px;
}

/* ========================================
   Company Section
======================================== */
.company-section {
  background: linear-gradient(180deg, #D4EEF9 0%, #E8F4F8 100%);
  padding-top: 120px;
}

.company-content {
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  margin-top: 40px;
}

.company-philosophy { 
  text-align: center; 
  margin-bottom: 50px;
  background: linear-gradient(135deg, #F0F8FC 0%, #FFFFFF 100%);
  padding: 40px 30px 30px;
  border-radius: 20px;
  border: 2px solid var(--color-mint-light);
  position: relative;
}

.company-philosophy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-mint) 100%);
  border-radius: 0 0 10px 10px;
}

.company-philosophy h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-mint-light);
  display: inline-block;
  padding: 0 30px 15px;
}

.philosophy-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.philosophy-item {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  border: 2px solid var(--color-mint-light);
}

.philosophy-item h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 38px);
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 10px;
}

.philosophy-item p { font-size: 14px; color: var(--color-text-light); }

.company-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, #F0F8FC 0%, #FFFFFF 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--color-mint-light);
  margin-top: 50px;
  position: relative;
}

.company-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-mint) 100%);
  border-radius: 0 0 10px 10px;
}

.company-info h3 {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-mint-light);
  text-align: center;
}

.company-info-item {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.company-info-item-wide { grid-column: 1 / -1; }

.company-info-label {
  font-weight: 700;
  color: var(--color-text);
  width: 120px;
  flex-shrink: 0;
}

.company-info-value { 
  color: var(--color-text-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 店舗一覧 */
.stores-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px solid var(--color-mint-light);
}

.stores-section h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 30px;
  text-align: center;
}

.stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.prefecture-stores {
  background: linear-gradient(135deg, #F0F8FC 0%, #FFFFFF 100%);
  border-radius: 20px;
  padding: 30px;
  border-left: 4px solid var(--color-teal);
}

.prefecture-stores h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prefecture-stores h4::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-teal);
  border-radius: 50%;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.store-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.store-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-name::before { content: '📍'; font-size: 14px; }

.store-phone {
  font-size: 15px;
  color: var(--color-teal-dark);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.store-phone::before { content: '📞'; font-size: 12px; }

.store-address { font-size: 13px; color: var(--color-text-light); line-height: 1.6; }

/* ========================================
   Instagram Section
======================================== */
.instagram-section {
  background: linear-gradient(180deg, #B8E0F6 0%, #D4EEF9 50%, #E8F4F8 100%);
  padding-top: 120px;
  padding-bottom: 80px;
}

.instagram-accounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.instagram-account {
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.instagram-account-header {
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #eee;
}

.instagram-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.instagram-account-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 5px;
}

.instagram-account-info p {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1482B7 0%, #3FA3D8 50%, #5AAFDE 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-follow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(20, 130, 183, 0.4);
}

.instagram-follow-btn-pink { background: linear-gradient(135deg, #5AAFDE 0%, #A8DDF5 100%); }
.instagram-follow-btn-pink:hover { box-shadow: 0 5px 20px rgba(90, 175, 222, 0.4); }

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px;
}

.instagram-post {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-post:hover img { transform: scale(1.1); }

.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay { opacity: 1; }

.instagram-post-overlay span { color: white; font-size: 14px; font-weight: 600; }

.instagram-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 15px;
}

.instagram-note p { font-size: 13px; color: var(--color-text-light); }

/* ========================================
   Contact Section
======================================== */
.contact-section {
  background: linear-gradient(180deg, #E8F4F8 0%, #D4EEF9 100%);
  padding: 80px 20px;
  text-align: center;
}

.contact-box {
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px;
  max-width: min(700px, 100%);
  margin: 0 auto;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.contact-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
}

.contact-subtitle { color: var(--color-text-light); margin-bottom: 30px; }

.contact-phone {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-phone svg { width: 40px; height: 40px; fill: var(--color-teal-dark); }
.contact-note { font-size: 14px; color: var(--color-text-light); margin-bottom: 30px; }

/* ========================================
   CTA Button
======================================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: var(--color-white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(20, 130, 183, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(20, 130, 183, 0.5);
}

.cta-button svg { width: 20px; height: 20px; fill: currentColor; }

.cta-button-secondary {
  background: linear-gradient(135deg, #5AAFDE 0%, #3FA3D8 100%);
  box-shadow: 0 8px 30px rgba(63, 163, 216, 0.4);
}

.cta-button-secondary:hover { box-shadow: 0 12px 40px rgba(63, 163, 216, 0.5); }

/* ========================================
   Footer
======================================== */
footer {
  background: linear-gradient(180deg, #D4EEF9 0%, #B8E0F6 100%);
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
  border-top: 4px solid rgba(20, 130, 183, 0.35);
  box-shadow: 0 -12px 30px rgba(0,0,0,0.08);
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(20,130,183,0.0),
    rgba(20,130,183,0.55),
    rgba(20,130,183,0.0)
  );
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer-logo-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-logo-link:hover { transform: scale(1.05); opacity: 0.8; }
.footer-logo-link .footer-logo { cursor: pointer; }

.footer-social {
  margin: 25px 0 30px;
  text-align: center;
}

.social-label {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
}

.instagram-link svg {
  width: 32px;
  height: 32px;
}

.footer-address {
  margin: 40px 0 50px;
  text-align: center;
  padding: 0 20px;
}

.address-label {
  font-size: 12px;
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.address-text {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 35px 0 20px;
  border-bottom: 1px solid rgba(44, 62, 80, 0.18);
}

.footer-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--color-teal-dark); }

.footer-copyright { font-size: 12px; color: var(--color-text-light); }

/* ========================================
   お問い合わせフォーム専用CSS（スコープ済）
======================================== */
.contact-page {
  background: linear-gradient(180deg, #D4EEF9 0%, #E8F4F8 50%, #F0F8FC 100%);
  min-height: 100vh;
  padding: 60px 20px;
}

.contact-page .contact-wrapper { max-width: min(900px, 100%); margin: 0 auto; }

.contact-page .contact-title-wrapper {
  background: linear-gradient(135deg, #1482B7 0%, #3FA3D8 100%);
  border-radius: 20px;
  padding: 25px 35px;
  margin-bottom: 5px;
  position: relative;
  box-shadow: 0 5px 20px rgba(20, 130, 183, 0.3);
}

.contact-page .contact-title-wrapper::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  pointer-events: none;
}

.contact-page .contact-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.contact-page .title-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-page .title-icon svg { width: 45px; height: 45px; fill: #1482B7; }

.contact-page .contact-form-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-page .form-description {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px dotted #B8E0F6;
}

.contact-page .form-description > p:first-child {
  color: #2C3E50;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-page .required-note {
  color: #E74C3C;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-page .notice-text {
  font-size: 13px;
  color: #5A7A95;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-page .phone-info {
  display: inline-block;
  color: #1482B7;
  font-weight: 600;
  font-size: 13px;
}

.contact-page .contact-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
}

.contact-page .contact-table tr { border-bottom: 1px solid #E8F4F8; }
.contact-page .contact-table tr:last-child { border-bottom: none; }

.contact-page .contact-table th {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FC 100%);
  padding: 20px 25px;
  text-align: left;
  vertical-align: middle;
  width: 200px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2C3E50;
  border-right: 3px solid white;
}

.contact-page .contact-table th .required { color: #E74C3C; margin-left: 3px; }

.contact-page .contact-table td { padding: 20px 25px; background: white; }

.contact-page .form-input,
.contact-page .form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 2px solid #E8F4F8;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s ease;
  background: #FAFAFA;
  box-sizing: border-box;
}

.contact-page .form-input:focus,
.contact-page .form-textarea:focus {
  outline: none;
  border-color: #1482B7;
  background: white;
  box-shadow: 0 0 0 3px rgba(20, 130, 183, 0.1);
}

.contact-page .form-textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

.contact-page .submit-area {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 3px dotted #B8E0F6;
}

.contact-page .submit-btn {
  display: inline-block;
  background: white;
  color: #2C3E50;
  padding: 12px 50px;
  border: 2px solid #2C3E50;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Zen Maru Gothic', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-page .submit-btn:hover {
  background: #1482B7;
  color: white;
  border-color: #1482B7;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(20, 130, 183, 0.3);
}

.contact-page .submit-btn:active { transform: translateY(0); }

/* ========================================
   送信完了画面専用CSS（スコープ済）
======================================== */
.thanks-page {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #D4EEF9 0%, #E8F4F8 50%, #F0F8FC 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thanks-page .thanks-container {
  max-width: min(700px, 100%);
  background: white;
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.thanks-page .success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1482B7 0%, #3FA3D8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 8px 25px rgba(20, 130, 183, 0.3);
}

.thanks-page .success-icon svg { width: 60px; height: 60px; fill: white; }

.thanks-page h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}

.thanks-page .message {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.thanks-page .info-box {
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FC 100%);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  text-align: left;
}

.thanks-page .info-box p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 10px;
}
.thanks-page .info-box p:last-child { margin-bottom: 0; }

.thanks-page .back-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  color: white;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(20, 130, 183, 0.4);
  transition: all 0.3s ease;
}

.thanks-page .back-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(20, 130, 183, 0.5);
}

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float { animation: float 3s ease-in-out infinite; }

@keyframes flowWave {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.6; }
  50% { transform: translateX(30px) scale(1.1); opacity: 0.8; }
}

/* ========================================
Decorative Elements - ミルククラウンと波紋
======================================== */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: milkSplash 4s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

.bubble-1 { width: 60px; height: 60px; top: 15%; left: 10%; animation-delay: 0s; }
.bubble-2 { width: 40px; height: 40px; top: 35%; right: 12%; animation-delay: 1.2s; }
.bubble-3 { width: 80px; height: 80px; bottom: 25%; left: 18%; animation-delay: 2.4s; }
.bubble-4 { width: 30px; height: 30px; top: 55%; left: 8%; animation-delay: 0.8s; }
.bubble-5 { width: 50px; height: 50px; bottom: 35%; right: 15%; animation-delay: 2s; }

.bubble::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 60%, transparent 100%);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(255,255,255,0.6),
    inset 0 0 10px rgba(255,255,255,0.4);
  animation: crownPulse 4s ease-out infinite;
  animation-delay: inherit;
}

.bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: rippleExpand 4s ease-out infinite;
  animation-delay: inherit;
}

@keyframes milkSplash {
  0% { opacity: 0; transform: scale(0.3) translateY(20px); }
  10% { opacity: 1; transform: scale(1) translateY(0); }
  70% { opacity: 0.8; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(1.2) translateY(-5px); }
}

@keyframes crownPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  10% { transform: scale(1.1); opacity: 1; }
  70% { transform: scale(1); opacity: 0.8; }
  100% { opacity: 0; }
}

@keyframes rippleExpand {
  0% { width: 60px; height: 60px; opacity: 0; border-width: 3px; }
  15% { opacity: 0.8; }
  50% { width: 150px; height: 150px; opacity: 0.4; border-width: 2px; }
  100% { width: 200px; height: 200px; opacity: 0; border-width: 1px; }
}

.milk-crown {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  animation: crownSplash 4s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

.milk-crown::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 40%, transparent 70%),
    radial-gradient(circle at 20% 40%, rgba(255,255,255,0.8) 0%, transparent 50%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.8) 0%, transparent 50%),
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7) 0%, transparent 40%),
    radial-gradient(circle at 65% 30%, rgba(255,255,255,0.7) 0%, transparent 40%);
  filter: blur(1px);
  border-radius: 50% 50% 40% 40%;
}

@keyframes crownSplash {
  0% { opacity: 0; transform: scale(0.5) translateY(10px); }
  15% { opacity: 1; transform: scale(1) translateY(0); }
  85% { opacity: 0.6; }
  100% { opacity: 0; transform: scale(1.3) translateY(-10px); }
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
  /* セクション全体のパディング調整 */
  section {
    padding: 60px 15px;
  }

  /* Hero Section */
  .hero {
    padding: 30px 15px 60px;
  }

  .hero-title {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  
  .hero-logo {
    height: 60px;
  }
  
  .hero-text {
    font-size: 36px;
    text-align: center;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 20px;
    margin-bottom: 20px;
  }

  /* ▼ Hero Image Layout SP:
     img1〜img4を上段に1行横並び → 牧場画像が下 */
  .hero-image-layout {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .hero-side-images {
    order: 1;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    gap: 6px;
  }

  .hero-main-image {
    order: 2;
    width: 100%;
    flex-basis: 100%;
  }

  .floating-img {
    width: 75px;
    height: 100px;
  }
  /* ▲ Hero Image Layout SP ここまで */

  /* Product Section */
  .product-item { 
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .product-item:nth-child(even) { direction: ltr; }

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

  /* Service Grid */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Area Section */
  .area-content { 
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .area-map {
    padding: 20px;
  }

  .area-list {
    padding: 25px 20px;
  }

  /* Philosophy Items */
  .philosophy-items { 
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .philosophy-item {
    padding: 20px;
  }

  .philosophy-item h4 {
    font-size: 24px;
  }

  /* Company Section */
  .company-content {
    padding: 30px 20px;
  }

  .company-philosophy {
    padding: 30px 20px 20px;
  }

  .company-philosophy h3 {
    font-size: 20px;
    padding: 0 15px 12px;
  }

  .company-info { 
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .company-info h3 {
    font-size: 20px;
  }

  .company-info-label {
    width: 100px;
    font-size: 13px;
  }

  .company-info-value {
    font-size: 14px;
  }

  /* Store List */
  .store-list { 
    grid-template-columns: 1fr;
  }

  .store-item {
    padding: 15px;
  }

  .prefecture-stores {
    padding: 20px 15px;
  }

  /* Flow Steps */
  .flow-step::after { display: none; }
  .flow-steps { 
    flex-direction: column; 
    align-items: center;
    gap: 15px;
  }
  .flow-step { 
    width: 100%; 
    max-width: 300px;
    padding: 25px 20px;
  }

  /* Business Cards */
  .business-grid { grid-template-columns: 1fr; }
  .business-card-large,
  .business-card:nth-child(3),
  .business-card:nth-child(4),
  .business-card:nth-child(5) { grid-column: span 1; }

  .business-card-header {
    padding: 20px;
  }

  .business-card-content {
    padding: 20px;
  }

  /* Instagram Section */
  .instagram-accounts { grid-template-columns: 1fr; }
  .instagram-feed { grid-template-columns: repeat(2, 1fr); }

  /* Contact Section */
  .contact-box {
    padding: 35px 25px;
  }

  .hero-cta {
    padding: 25px 30px;
    width: 100%;
    max-width: 360px;
    margin-top:20px;
  }

  .contact-phone { 
    font-size: 28px;
    flex-direction: column;
    gap: 10px;
  }

  /* Footer */
  .footer-logo { font-size: 28px; }
  .footer-address { margin: 35px 0 45px; }
  .address-text { font-size: 12px; }
  .footer-nav { 
    flex-direction: column; 
    gap: 15px;
    padding: 25px 0 15px;
  }

  /* Contact Form Page */
  .contact-page .contact-title-wrapper { padding: 20px 15px; }
  .contact-page .contact-title {
    font-size: 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .contact-page .title-icon { width: 60px; height: 60px; }
  .contact-page .title-icon svg { width: 35px; height: 35px; }
  .contact-page .contact-form-box { padding: 25px 15px; }
  .contact-page .contact-table { display: block; }
  .contact-page .contact-table tbody,
  .contact-page .contact-table tr,
  .contact-page .contact-table th,
  .contact-page .contact-table td {
    display: block;
    width: 100%;
  }
  .contact-page .contact-table th {
    border-right: none;
    border-bottom: 2px solid white;
    padding: 15px;
  }
  .contact-page .contact-table td {
    padding: 15px;
    border-bottom: 1px solid #E8F4F8;
  }
  .contact-page .submit-btn {
    width: 100%;
    padding: 15px 30px;
  }

  /* Thanks Page */
  .thanks-page .thanks-container { padding: 40px 20px; }
  .thanks-page h1 { font-size: 22px; }
  .thanks-page .message { font-size: 15px; }
  .thanks-page .back-button { width: 100%; }
  .thanks-page .info-box { padding: 20px; }

  /* Section Header */
  .section-header {
    margin-bottom: 35px;
  }

  .section-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
    padding: 0 10px;
  }

  /* Container */
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 900px) {
  .business-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* さらに小さい画面用 */
  section {
    padding: 50px 10px;
  }

  .hero {
    padding: 25px 10px 50px;
  }

  .hero-logo {
    height: 50px;
  }
  
  .hero-text {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 13px;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .philosophy-item h4 {
    font-size: 20px;
  }

  .company-content {
    padding: 25px 15px;
  }

  .company-philosophy,
  .company-info {
    padding: 25px 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .product-item {
    padding: 15px;
  }

  .service-card-content {
    padding: 20px;
  }

  .business-card-header,
  .business-card-content {
    padding: 15px;
  }

  .store-item {
    padding: 12px;
  }

  .prefecture-stores {
    padding: 15px 12px;
  }
}