@charset "UTF-8";
/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */
@media only screen and (min-width: 767px) {
  div.wrap {
    padding-top: 0 !important; } }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  --primary-color: #1a1a1a;
  --primary-light: #e5e5e5;
  --primary-dark: #000000;
  --secondary-color: #737373;
  --accent-color: #d1ff00;
  --text-color: #1a1a1a;
  --text-light: #737373;
  --text-lighter: #999999;
  --background: #f2f2f2;
  --background-light: #ffffff;
  --background-cream: #f2f2f2;
  --background-mint: #f2f2f2;
  --background-pink: #f2f2f2;
  --border-color: #e5e5e5;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.08); }

html {
  font-size: 16px;
  scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--background);
  overflow-x: hidden; }

img {
  max-width: 100%;
  height: auto; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease; }

ul {
  list-style: none; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4; }

.section-title {
  font-size: 3rem;
  text-align: center !important;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 800;
  position: relative;
  padding-bottom: 25px;
  letter-spacing: 2px;
  line-height: 1.3; }

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px; }

.section-title-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  text-align: center !important;
  margin-bottom: 0.8rem;
  color: var(--text-color);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase; }

/* グラデーションテキスト効果（デフォルト） */
.section-title-en {
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; }

/* 白背景セクションでは通常のカラー表示 */
.gallery-section .section-title-en {
  background: none;
  -webkit-text-fill-color: var(--primary-color);
  color: var(--primary-color); }

.section-title-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  text-align: center !important;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.2;
  text-transform: uppercase; }

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  text-align: center !important;
  color: var(--text-lighter);
  margin-bottom: 4rem;
  line-height: 1.8;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500; }

.section-heading {
  font-size: 2.5rem;
  text-align: center !important;
  margin-bottom: 3rem;
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1px; }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

section {
  padding: 80px 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease; }

.header-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; }

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.header-top-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none; }

.header-top-nav .nav-cta {
  padding: 8px 20px !important; }

.header-logo {
  display: flex;
  align-items: center; }

.header-logo img {
  height: 45px;
  width: auto;
  display: block; }

.header-nav {
  padding: 10px 0; }

.header-nav ul {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0; }

.header-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease; }

.header-nav a:hover {
  color: var(--primary-color); }

.nav-cta {
  background: var(--accent-color);
  color: var(--text-color) !important;
  padding: 10px 12px;
  border-radius: 0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center; }

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px; }

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  background-image: url("/kyoten/city/izumiptasahi/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  margin-top: 80px;
  overflow: hidden; }

.hero-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 1400px;
  animation: fadeInUp 1s ease; }

.hero-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: white;
  background: var(--primary-color);
  padding: 8px 20px;
  border-radius: 0;
  margin-bottom: 25px;
  text-transform: uppercase; }

.hero-title {
  margin-bottom: 20px; }

.hero-title-main {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px; }

.hero-title-sub {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); }

.hero-subtitle {
  font-size: 1.5rem;
  color: white;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 2px;
  z-index: 2; }

.scroll-line {
  width: 1px;
  height: 40px;
  background: white;
  animation: scrollLine 2s infinite; }

/* ==========================================================================
   Info Section
   ========================================================================== */
.info-section {
  background: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden; }

.info-banner {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease; }

.info-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0; }

.info-main {
  background: var(--primary-color);
  padding: 80px 60px;
  position: relative; }

.info-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 0;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  text-transform: uppercase; }

.info-title {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 1px; }

.info-emphasis {
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-color);
  font-family: 'Montserrat', sans-serif;
  margin: 0 15px;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  letter-spacing: -2px; }

.info-details {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 60px;
  background: white;
  gap: 60px; }

.info-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; }

.detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-lighter);
  letter-spacing: 2px;
  text-transform: uppercase; }

.detail-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 5px; }

.price-large {
  font-size: 3.5rem;
  color: var(--primary-color);
  font-weight: 900;
  line-height: 1; }

.info-detail-divider {
  width: 2px;
  height: 60px;
  background: transparent; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 3rem; }

.info-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 0;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg); }

.info-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white; }

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-color); }

.info-item p {
  color: var(--text-light);
  font-size: 1rem; }

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  padding: 80px 0;
  background: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 3rem; }

.gallery-item {
  width: 100%; }

.gallery-video-wrapper {
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; }

.gallery-video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg); }

.gallery-placeholder {
  width: 100%;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-lighter);
  position: relative; }

.gallery-placeholder.vertical-video {
  aspect-ratio: 9 / 16;
  height: auto; }

.gallery-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: all 0.3s ease; }

.gallery-placeholder p {
  font-size: 1rem;
  font-weight: 500; }

.gallery-video-wrapper:hover .gallery-placeholder i {
  transform: scale(1.2);
  color: var(--primary-dark); }

.gallery-caption {
  padding: 20px;
  text-align: center;
  background: white;
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.125rem;
  border-radius: 0; }

/* Mobile horizontal scroll */
@media (max-width: 767px) {
  .gallery-section .container {
    padding: 0; }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 20px 20px;
    margin-top: 2rem;
    justify-items: initial; }

  .gallery-grid::-webkit-scrollbar {
    height: 8px; }

  .gallery-grid::-webkit-scrollbar-track {
    background: var(--background-light);
    border-radius: 10px; }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px; }

  .gallery-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    max-width: 280px; }

  .gallery-section .section-title-en,
  .gallery-section .section-subtitle {
    padding: 0 20px; }

  /* 画像を横幅いっぱいに */
  .point-section .container {
    padding: 0; }

  .point-card {
    padding: 60px 20px; }

  .point-number,
  .point-title,
  .point-main-title,
  .panasonic-text-content,
  .panasonic-features,
  .center-house-detail,
  .town-map {
    padding-left: 20px;
    padding-right: 20px; }

  /* 画像を横いっぱいに表示（SP対応） */
  .panasonic-image-large,
  .point-image,
  .point-image-large,
  .voice-image,
  .town-image,
  .gallery-item {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw; }

  .panasonic-image-large img,
  .point-image img,
  .point-image-large img,
  .voice-image img,
  .town-image img,
  .gallery-item img,
  .gallery-item video {
    width: 100%;
    border-radius: 0 !important;
    box-shadow: none !important; }

  .floor-plan-image,
  .map-image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw; }

  .floor-plan-image img,
  .map-image img {
    width: 100%;
    border-radius: 0 !important; } }
/* ==========================================================================
   Point Section
   ========================================================================== */
.point-section {
  background: var(--background-cream);
  padding: 100px 0; }

.point-card {
  background: transparent;
  border-radius: 0;
  padding: 60px 0;
  margin-bottom: 80px;
  box-shadow: none;
  position: relative;
  overflow: visible; }

/* Image Overlay Design */
.point-card-image-overlay {
  padding: 0;
  margin-bottom: 100px; }

.point-image-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 600px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none; }

.point-image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.point-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px; }

.point-overlay-content {
  text-align: center;
  color: white;
  max-width: 800px; }

.point-overlay-content .point-number {
  font-size: 5rem;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); }

.point-overlay-content .point-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }

.point-overlay-content .point-main-title {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  line-height: 1.3; }

.point-overlay-content .point-main-title::after {
  display: none; }

.point-text-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-size: 1.25rem;
  line-height: 2;
  color: var(--text-color);
  text-align: center; }

.point-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: 3px;
  line-height: 1; }

.point-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-lighter);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase; }

.point-main-title {
  font-size: 2.75rem;
  color: var(--text-color);
  margin-bottom: 50px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px; }

.point-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px; }

.point-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start; }

.point-image,
.point-image-large {
  width: 100%;
  overflow: hidden;
  border-radius: 0; }

.point-image img,
.point-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: var(--shadow); }

.town-street-image {
  object-position: center top;
  max-height: 450px; }

.image-placeholder,
.image-placeholder-large {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--background-mint), var(--background-light));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  box-shadow: var(--shadow); }

.image-placeholder-large {
  height: 450px; }

.point-text {
  display: flex;
  align-items: center; }

.point-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-color); }

/* ==========================================================================
   Center House Detail
   ========================================================================== */
.center-house-detail {
  margin-top: 30px;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease; }

.center-house-detail.expanded {
  max-height: 3000px;
  opacity: 1;
  padding-top: 60px;
  border-top: 2px solid var(--border-color);
  margin-top: 60px; }

.center-house-detail.collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  margin-top: 30px; }

.detail-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 25px; }

.detail-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px; }

.detail-item {
  text-align: center; }

.detail-image-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--background-light), #f0f0f0);
  border-radius: 0;
  margin-bottom: 20px;
  box-shadow: none; }

.detail-item h5 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600; }

.detail-item p {
  color: var(--text-light); }

/* Floor Plan */
.floor-plan {
  margin: 50px 0;
  padding: 40px 0;
  background: transparent;
  border-radius: 0; }

.floor-plan h5 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 600; }

.floor-plan-image {
  width: 100%;
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 30px; }

.floor-plan-image img {
  width: 100%;
  height: auto;
  display: block; }

.floor-plan-placeholder {
  width: 100%;
  height: 400px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 2px dashed var(--border-color); }

.floor-plan-description {
  margin-top: 30px; }

.floor-plan-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; }

.floor-feature {
  background: white;
  padding: 20px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--border-color); }

.floor-feature h6 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600; }

.floor-feature p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7; }

/* ==========================================================================
   Panasonic Features
   ========================================================================== */
.panasonic-card {
  text-align: center; }

.panasonic-card .point-content {
  display: block !important;
  grid-template-columns: none !important; }

.panasonic-image-large {
  width: 100%;
  margin: 40px 0;
  max-width: 100%; }

.panasonic-image-large img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important; }

.panasonic-text-content {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 50px; }

.panasonic-text-content p {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text-color); }

.panasonic-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  padding: 0 20px; }

.panasonic-detail.collapsed {
  max-height: 0;
  opacity: 0;
  padding: 0 20px; }

.panasonic-detail.expanded {
  max-height: 3000px;
  opacity: 1;
  padding: 60px 20px 0; }

/* Town Detail Section - Collapsed/Expanded States */
.detail-section {
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease; }

.detail-section.collapsed {
  max-height: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden; }

.detail-section.expanded {
  max-height: 5000px;
  opacity: 1;
  padding: 60px 0 0;
  overflow: visible; }

#town-detail.collapsed {
  max-height: 0;
  opacity: 0;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease; }

#town-detail.expanded {
  max-height: 5000px;
  opacity: 1;
  padding: 60px 0 0;
  overflow: visible;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease; }

.panasonic-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px; }

.feature-item {
  text-align: center;
  padding: 40px 30px;
  background: transparent;
  border-radius: 0;
  transition: transform 0.3s ease; }

.feature-item:hover {
  transform: translateY(-5px); }

/* 画像付き特集アイテム（地震に強い専用） */
.feature-item-with-image {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f0fbf7 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }

/* 大型画像表示用特集アイテム（長持ちする家用） */
.feature-item-large {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  background: transparent; }

.feature-large-header {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px; }

.feature-large-header h5 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-dark);
  font-weight: 700; }

.feature-large-header p {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text-light); }

.feature-large-header p strong {
  color: var(--primary-color);
  font-weight: 700; }

/* 画像とテキストの順序を逆にする（長持ちする家用） */
.feature-item-with-image.feature-item-reverse {
  background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%); }

.feature-item-with-image .feature-image {
  width: 100%;
  overflow: hidden; }

.feature-item-with-image .feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease; }

.feature-item-with-image:hover .feature-image img {
  transform: scale(1.05); }

.feature-item-with-image .feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.feature-item-with-image h5 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: var(--primary-dark); }

.feature-item-with-image p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px; }

.feature-item-with-image p strong {
  color: var(--primary-color);
  font-weight: 700; }

/* キラテック技術画像 */
.feature-tech-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px; }

.tech-image-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #f5f5f5; }

.tech-image-item:hover {
  transform: translateY(-8px); }

.tech-image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; }

/* キラテック技術レイアウト（参考サイト風） */
.feature-tech-layout {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto; }

.tech-main-image {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 20px; }

.tech-main-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain; }

.tech-detail-image {
  width: 100%;
  background: #f8f9fa;
  padding: 60px 40px; }

.tech-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 1200px;
  margin: 0 auto; }

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: white; }

.feature-item h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 700; }

.feature-item p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
  text-align: left; }

.panasonic-detail .feature-item p {
  text-align: left; }

/* ==========================================================================
   Town Map
   ========================================================================== */
.town-map {
  margin-top: 50px;
  padding: 40px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none; }

.town-map h4 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-color); }

.map-image {
  width: 100%;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 30px; }

.map-image img {
  width: 100%;
  height: auto;
  display: block; }

.map-placeholder {
  width: 100%;
  height: 500px;
  background: var(--background-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 30px;
  border: 2px solid var(--border-color); }

.map-description {
  margin-top: 30px; }

.map-description h5 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 600; }

.zone-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px; }

.zone-item {
  text-align: center;
  padding: 15px;
  background: transparent;
  border-radius: 0; }

.zone-label {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: white;
  font-family: 'Montserrat', sans-serif; }

.zone-label.north {
  background: linear-gradient(135deg, #FF9AA2, #FFB7B2); }

.zone-label.central {
  background: linear-gradient(135deg, #B5EAD7, #C7CEEA); }

.zone-label.east {
  background: linear-gradient(135deg, #89CFF0, #A0E7E5); }

.zone-label.west {
  background: linear-gradient(135deg, #B4E7CE, #A8D5BA); }

.zone-label.south {
  background: linear-gradient(135deg, #FFD89B, #FFC3A0); }

.zone-item p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6; }

.map-point {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center; }

.map-point i {
  font-size: 1.5rem;
  color: white; }

.map-point p {
  color: white;
  margin: 0;
  font-size: 1.05rem; }

/* 街づくり詳細セクション */
.town-detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.town-detail-section {
  margin-bottom: 60px; }

.town-detail-section:last-child {
  margin-bottom: 0; }

.town-detail-section h5 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center; }

.town-detail-section p {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--text-light);
  text-align: left;
  margin-bottom: 0; }

.town-detail-image {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden; }

.town-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; }

.map-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; }

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px; }

.legend-color {
  width: 30px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-color); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary,
.btn-secondary,
.btn-contact {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin: 20px auto;
  display: block;
  max-width: 300px; }

.toggle-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; }

.toggle-detail .btn-icon {
  transition: transform 0.3s ease;
  font-size: 0.9rem; }

.toggle-detail.active .btn-icon {
  transform: rotate(180deg); }

/* 詳細セクションの閉じるボタンラッパー */
.detail-close-button-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid var(--border-color); }

.btn-primary {
  background: var(--primary-color);
  color: white; }

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(125, 211, 192, 0.4); }

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color); }

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px); }

.btn-contact {
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 20px 80px;
  letter-spacing: 2px;
  min-width: 350px;
  display: inline-flex;
  justify-content: center; }

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4); }

/* ==========================================================================
   Voice Section
   ========================================================================== */
.voice-section {
  background: var(--background-mint);
  padding: 80px 0; }

.voice-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 80px; }

.voice-main-image {
  position: relative;
  overflow: hidden; }

.voice-main-image img {
  width: 100%;
  height: auto;
  display: block; }

.voice-image-pc {
  display: block !important; }

.voice-image-sp {
  display: none !important; }

.voice-main-content {
  padding: 20px 0; }

.voice-label {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px; }

.voice-main-text {
  font-size: 1.25rem;
  line-height: 2.2;
  color: var(--text-color);
  margin: 0;
  font-weight: 400; }

.voice-more-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 100px 0 70px;
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 25px; }

.voice-more-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px; }

.voice-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto; }

.testimonial-bubble {
  position: relative; }

.testimonial-bubble img {
  width: 100%;
  height: auto;
  display: block; }

/* Legacy styles kept for backward compatibility */
.voice-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem; }

.voice-image {
  position: relative;
  overflow: hidden; }

.voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.voice-image .image-placeholder {
  height: 100%;
  min-height: 350px;
  border-radius: 0; }

.voice-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.voice-content h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-color);
  line-height: 1.6; }

.voice-family-info {
  background: var(--background-light);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px; }

.voice-family-info h5 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600; }

.family-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; }

.family-details p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-color); }

.detail-label {
  font-weight: 600;
  color: var(--text-light);
  margin-right: 5px; }

.voice-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 0; }

.voice-name {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500; }

.voice-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px; }

.testimonial-item {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg); }

.testimonial-item img {
  width: 100%;
  height: auto;
  display: block; }

/* ==========================================================================
   Lifestyle Section
   ========================================================================== */
.lifestyle-section {
  background: white;
  padding: 80px 0; }

.lifestyle-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  font-weight: 600; }

.lifestyle-content {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center; }

.lifestyle-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-color); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px; }

.lifestyle-item {
  text-align: center;
  padding: 40px 30px;
  background: transparent;
  border-radius: 0;
  transition: transform 0.3s ease; }

.lifestyle-item:hover {
  transform: translateY(-5px); }

.lifestyle-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: white; }

.lifestyle-item h5 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-color); }

.lifestyle-item p {
  color: var(--text-light);
  line-height: 1.7; }

/* ==========================================================================
   Other Contents Section
   ========================================================================== */
.other-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, var(--background-light) 100%);
  padding: 120px 0;
  position: relative; }

.other-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent); }

.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 3rem; }

.other-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none; }

.other-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2; }

.other-card:hover::before {
  transform: scaleX(1); }

.other-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 201, 167, 0.2); }

.other-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--background-light); }

.other-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease; }

.other-card:hover .other-image::after {
  opacity: 1; }

.other-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

.other-card:hover .other-image img {
  transform: scale(1.1); }

.other-image .image-placeholder {
  height: 220px;
  font-weight: 600;
  font-size: 1.25rem; }

.other-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 25px 25px 10px;
  color: var(--text-color);
  position: relative;
  transition: color 0.3s ease; }

.other-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-orange));
  border-radius: 2px;
  transition: width 0.4s ease; }

.other-card:hover h4 {
  color: var(--primary-color); }

.other-card:hover h4::after {
  width: 80px; }

.other-card p {
  padding: 15px 25px 25px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease; }

.other-card:hover p {
  color: var(--text-color); }

/* アイコン追加（オプション） */
.other-card::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 25px;
  right: 25px;
  color: var(--primary-color);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease; }

.other-card:hover::after {
  opacity: 1;
  transform: translateX(0); }

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  background: linear-gradient(135deg, var(--background-mint), var(--background-light));
  padding: 80px 0; }

.contact-banner {
  background: linear-gradient(135deg, #8B4513, #A0522D);
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg); }

.contact-banner h3 {
  font-size: 1.75rem;
  margin-bottom: 25px; }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px; }

.contact-card {
  background: white;
  padding: 40px;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  max-width: 500px;
  width: 100%;
  border: 1px solid var(--border-color); }

.contact-card h4 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--text-color); }

.contact-image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--background-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-bottom: 20px; }

.contact-phone {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px; }

.contact-phone i {
  margin-right: 10px; }

.contact-hours {
  color: var(--text-light);
  font-size: 0.95rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #3a4756;
  color: white;
  padding: 60px 0 30px; }

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px; }

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff; }

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; }

.footer-column h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: #ffffff; }

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease; }

.footer-column a:hover {
  color: #ffffff; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center; }

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem; }

.footer-legal {
  display: flex;
  gap: 30px; }

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem; }

.footer-legal a:hover {
  color: #ffffff; }

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 999; }

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px); }

.scroll-to-top.visible {
  display: flex; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes scrollLine {
  0% {
    height: 0; }
  50% {
    height: 40px; }
  100% {
    height: 0; } }
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9); }
  to {
    opacity: 1;
    transform: scale(1); } }
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95); }
  to {
    opacity: 1;
    transform: rotate(0) scale(1); } }
/* スムーズなトランジション */
* {
  transition: transform 0.3s ease, opacity 0.3s ease; }

/* カードのホバーエフェクト強化 */
.other-card,
.feature-item,
.other-card:hover,
.feature-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }

/* ボタンのアニメーション強化 */
.btn-primary,
.btn-secondary,
.btn-hero-primary,
.btn-hero-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

.btn-primary::before,
.btn-secondary::before,
.btn-hero-primary::before,
.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease; }

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-hero-primary:hover::before,
.btn-hero-secondary:hover::before {
  width: 300px;
  height: 300px; }

/* 画像のズームエフェクト */
.point-image-hero {
  overflow: hidden; }

.point-image-hero img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.point-image-hero:hover img {
  transform: scale(1.05); }

/* スクロール時のフェードイン強化 */
.animate-in {
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

/* バウンスエフェクト */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
.scroll-to-top {
  animation: bounce 2s ease-in-out infinite; }

.scroll-to-top:hover {
  animation: none; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
  .section-title-large {
    font-size: 3rem; }

  /* Gallery Grid - Tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; }

  /* Disable parallax on mobile for performance */
  .hero {
    background-attachment: scroll; }

  /* Hero Section - Tablet */
  .hero-content {
    padding: 0 40px 80px; }

  .hero-title-main {
    font-size: 4rem; }

  .hero-title-sub {
    font-size: 2.5rem; }

  .hero-subtitle {
    font-size: 1.25rem; }

  .point-content {
    grid-template-columns: 1fr; }

  .voice-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%; }

  .voice-main-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden; }

  .voice-main-text {
    font-size: 1.125rem;
    line-height: 2; }

  .voice-more-title {
    font-size: 1.75rem;
    margin: 60px 0 40px;
    padding-bottom: 20px; }

  .detail-title {
    font-size: 1.75rem;
    margin-bottom: 35px; }

  .voice-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px; }

  .voice-card {
    grid-template-columns: 1fr; }

  .voice-image .image-placeholder {
    height: 300px; }

  .voice-image img {
    max-height: 400px;
    object-fit: cover; }

  .voice-content {
    padding: 40px; }

  .voice-testimonials {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px; }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px; }

  .footer-links {
    grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  /* テキストの改行設定 - 単語の途中で切れないように */
  body, p, h1, h2, h3, h4, h5, h6, li, span, div {
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word; }

  .header {
    top: 48px; }

  .header-container-wrapper {
    padding: 0 20px; }

  .header-top-row {
    padding: 15px 0;
    border-bottom: none; }

  .header-top-nav {
    display: none; }

  .header-logo img {
    height: 35px; }

  .header-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0; }

  .header-nav.active {
    max-height: 800px;
    overflow-y: auto; }

  .header-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0 !important; }

  .header-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border-color); }

  .header-nav li:last-child, .header-nav li:nth-last-child(2), .header-nav li:nth-last-child(3) {
    border-bottom: none;
    width: 100%;
    padding: 0 15px; }

  .header-nav a:not(.nav-cta) {
    display: block;
    padding: 15px; }

  .header-nav ul li a.nav-cta {
    margin: 10px 15px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: calc(100% - 30px) !important;
    text-align: center !important;
    padding: 15px !important; }

  .menu-toggle {
    display: flex; }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px); }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0; }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px); }

  .hero {
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    background-attachment: scroll;
    background-position: center center; }

  .hero-content {
    padding: 0 25px 80px;
    max-width: 100%; }

  .hero-label {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 20px; }

  .hero-title-main {
    font-size: 2.5rem;
    letter-spacing: 1px;
    line-height: 1.2; }

  .hero-title-sub {
    font-size: 1.75rem;
    letter-spacing: 1px;
    line-height: 1.3; }

  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 0; }

  .hero-scroll {
    bottom: 30px; }

  /* Point Image Overlay - Mobile */
  .point-image-hero {
    height: 400px;
    border-radius: 0; }

  .point-overlay {
    padding: 25px; }

  .point-overlay-content .point-number {
    font-size: 3rem; }

  .point-overlay-content .point-title {
    font-size: 0.8rem;
    margin-bottom: 15px; }

  .point-overlay-content .point-main-title {
    font-size: 2rem; }

  .point-text-content {
    margin: 40px auto;
    font-size: 1.05rem;
    line-height: 1.9; }

  .info-section {
    padding: 60px 0; }

  .info-main {
    padding: 60px 30px; }

  .info-badge {
    font-size: 0.7rem;
    padding: 8px 20px;
    letter-spacing: 3px; }

  .info-title {
    font-size: 1.85rem; }

  .info-emphasis {
    font-size: 3rem;
    margin: 0 8px; }

  .info-details {
    flex-direction: column;
    padding: 40px 30px;
    gap: 35px; }

  .info-detail-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent); }

  .detail-value {
    font-size: 1.75rem; }

  .price-large {
    font-size: 3rem; }

  .section-title-large {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-align: center !important; }

  .section-title-en {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-align: center !important; }

  .section-title {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-align: center !important; }

  .section-heading {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
    text-align: center !important; }

  .section-subtitle {
    text-align: center !important; }

  /* POINTセクションの中央揃え */
  .point-section .container {
    text-align: center; }

  .point-card {
    padding: 40px 25px;
    text-align: center; }

  .point-text-content {
    text-align: center; }

  /* OTHER CONTENTSセクションの中央揃え */
  .other-section .container {
    text-align: center; }

  .other-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; }

  .other-card {
    max-width: 400px;
    width: 100%;
    margin: 0 auto; }

  .other-card h4 {
    font-size: 1.125rem;
    padding: 20px 20px 10px; }

  .other-card p {
    font-size: 0.9rem;
    padding: 12px 20px 20px; }

  .other-card::after {
    bottom: 20px;
    right: 20px;
    font-size: 0.875rem; }

  .other-image {
    height: 200px; }

  .other-image .image-placeholder {
    height: 200px; }

  .point-main-title {
    font-size: 1.75rem;
    margin-bottom: 35px; }

  .point-number {
    font-size: 2.5rem; }

  .detail-title {
    font-size: 1.75rem;
    margin-bottom: 35px;
    text-align: center !important; }

  .point-card-image-overlay {
    padding: 0; }

  section {
    padding: 60px 0; }

  .info-grid,
  .detail-grid,
  .panasonic-features,
  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 25px; }

  .panasonic-text-content {
    margin: 25px auto 40px; }

  .panasonic-text-content p {
    font-size: 1rem;
    line-height: 1.8; }

  .feature-item {
    padding: 30px 20px; }

  /* 画像付き特集アイテムのモバイル対応 */
  .feature-item-with-image {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    gap: 30px; }

  .feature-item-with-image .feature-content {
    align-items: center;
    text-align: center; }

  .feature-item-with-image .feature-icon {
    margin: 0 auto 20px; }

  .feature-item-with-image h5 {
    font-size: 1.5rem; }

  .feature-item-with-image p {
    font-size: 1rem; }

  /* 大型画像表示用特集アイテムのモバイル対応 */
  .feature-item-large {
    padding: 40px 0; }

  .feature-large-header {
    margin-bottom: 35px; }

  .feature-large-header h5 {
    font-size: 1.5rem;
    margin-bottom: 20px; }

  .feature-large-header p {
    font-size: 1rem;
    line-height: 1.8; }

  .feature-tech-images {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px; }

  /* キラテック技術レイアウトのモバイル対応 */
  .tech-main-image {
    margin-bottom: 30px;
    padding: 0 20px; }

  .tech-detail-image {
    padding: 40px 20px; }

  .map-placeholder {
    height: 350px; }

  .floor-plan-placeholder {
    height: 300px; }

  .floor-plan-features {
    grid-template-columns: 1fr; }

  .btn-contact {
    min-width: unset;
    width: 100%;
    padding: 18px 20px;
    font-size: 1.15rem; }

  .zone-features {
    grid-template-columns: 1fr; }

  /* 街づくり詳細セクションのモバイル対応 */
  .town-detail-section h5 {
    font-size: 1.5rem;
    margin-bottom: 25px; }

  .town-detail-section p {
    font-size: 1rem;
    line-height: 1.8; }

  .town-detail-image {
    margin-bottom: 25px; }

  .map-point {
    flex-direction: column;
    text-align: center; }

  .contact-banner {
    padding: 40px 25px; }

  .contact-banner h3 {
    font-size: 1.5rem; }

  .voice-main {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px; }

  .voice-image-pc {
    display: none !important; }

  .voice-image-sp {
    display: block !important; }

  .voice-main-text {
    font-size: 1.05rem;
    line-height: 1.9; }

  .voice-more-title {
    font-size: 1.5rem;
    margin: 50px 0 35px;
    line-height: 1.5; }

  .voice-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px; }

  .voice-testimonials {
    grid-template-columns: 1fr;
    gap: 20px; }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px; }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center; }

  .footer-legal {
    flex-direction: column;
    gap: 15px; }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem; } }
@media (max-width: 480px) {
  .hero {
    min-height: 500px; }

  .hero-content {
    padding: 0 20px 60px; }

  .hero-label {
    font-size: 0.7rem;
    padding: 5px 14px;
    margin-bottom: 15px; }

  .hero-title-main {
    font-size: 2rem;
    letter-spacing: 0.5px; }

  .hero-title-sub {
    font-size: 1.5rem;
    letter-spacing: 0.5px; }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    letter-spacing: 1px; }

  .hero-scroll {
    bottom: 20px;
    font-size: 0.75rem; }

  .scroll-line {
    height: 30px; }

  .info-section {
    padding: 50px 0; }

  .info-main {
    padding: 50px 25px; }

  .info-badge {
    font-size: 0.65rem;
    padding: 7px 18px;
    letter-spacing: 2px; }

  .info-title {
    font-size: 1.5rem;
    line-height: 1.4; }

  .info-emphasis {
    font-size: 2.25rem;
    margin: 0 5px; }

  .info-details {
    padding: 35px 25px;
    gap: 30px; }

  .detail-label {
    font-size: 0.7rem; }

  .detail-value {
    font-size: 1.5rem; }

  .price-large {
    font-size: 2.5rem; }

  .section-title-large {
    font-size: 2rem; }

  .section-title-en {
    font-size: 2rem;
    letter-spacing: 2px; }

  .section-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px; }

  .point-main-title {
    font-size: 1.5rem;
    margin-bottom: 30px; }

  .point-number {
    font-size: 2rem; }

  .detail-title {
    font-size: 1.5rem;
    margin-bottom: 30px; }

  .voice-more-title {
    font-size: 1.5rem;
    margin: 50px 0 35px; }

  /* Point Image Overlay - Small Mobile */
  .point-image-hero {
    height: 350px; }

  .point-overlay-content .point-number {
    font-size: 2.5rem; }

  .point-overlay-content .point-main-title {
    font-size: 1.75rem; }

  .point-text-content {
    font-size: 1rem;
    line-height: 1.8; }

  .btn-primary,
  .btn-secondary,
  .btn-contact {
    padding: 14px 30px;
    font-size: 0.95rem; }

  .contact-phone {
    font-size: 1.5rem; } }
.bnrarea {
  display: none; }

/*# sourceMappingURL=style1.css.map */
