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

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

/* Base Styles */
body {
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly buttons and links */
a, button {
  touch-action: manipulation;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* Header Styles */
header {
  background: #fff;
  border-bottom: 6px solid #055ee3; /* 下線 */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.h_leftbox h1 {
  font-size: 12px;
  font-weight: normal;
  color: #666;
  margin-bottom: 10px;
}

.h_leftbox img {
  height: 50px;
}

.h_rightbox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.h_rightbox ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.h_rightbox ul li {
  margin: 0;
}

.h_rightbox ul li a {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.h_rightbox ul li a:hover {
  background: #333;
  color: #fff;
}

.h_telbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.business_hours {
  text-align: center;
}

.tel_number {
  font-size: 28px;
  font-weight: bold;
  color: #00b900;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tel_number:hover {
  color: #00b900;
}

.free-dial-icon {
  color: #00b900;
  font-size: 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

.freedial-inline {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 4px;
}

.business_hours p {
  font-size: 12px;
  color: #666;
}

.time {
  font-weight: bold;
  color: #e31e24;
}

/* Navigation */
nav {
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

nav ul {
  display: flex;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

nav li {
  padding: 15px 20px;
}

nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #e31e24;
}

/* Main Visual */
.mainvisual {
  position: relative;
  width: 100%;
}

.mainvisual img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC用画像をデフォルトで表示 */
.main-visual-pc {
  display: block !important;
}

.main-visual-sp {
  display: none !important;
}

/* スマホの場合は画像を切り替え */
@media (max-width: 767px) {
  .main-visual-pc {
    display: none !important;
  }
  
  .main-visual-sp {
    display: block !important;
  }
}

/* ラベルボックス ------------------------------------------------- */ 
.label_box {
  background: #055ee3;   /* エコキュート、電気温水器対応！朝8時～夜22時までお電話つながります */
  color: #fff;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

.label_box .innerbox {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.label_box p {
  font-size: 18px;
  font-weight: bold;
}

.label_box2 {
  /* background: #055ee3; */
  color: #000;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

.label_box2 .innerbox {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.label_box2 h3 {
  font-size: 18px;
  font-weight: bold;
}

.label_box2 p {
  font-size: 14px;
  font-weight:normal;
}
/* END ラベルボックス ------------------------------------------------- */ 

.gap {
  margin-left: 20px;
}

.small {
  font-size: 14px;
}

/* END 各ボックス ------------------------------------------------- */ 
.campaign_area { max-width: 1200px; margin: 40px auto; padding: 0 20px; } /*  補助金価エリア */

.result_area   { max-width: 1200px; margin: 40px auto; padding: 0 20px; background: #f8f9fa;}

/* Features Section */
.features-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: #cde9ff;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #2674e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 24px;
  color: #ffffff!important;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.features-footer {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  text-align: left;
  margin-top: 40px;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-title {
    font-size: 22px;
    padding: 0 10px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .features-footer {
    padding: 0 10px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 20px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}
.evidence_area {
  max-width: 1200px; margin: 10px auto; padding: 0 20px;
  /* background: #f8f9fa; */
}

/* Evidence Section Styles */
.evidence-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* 2つ目以降のevidence-contentのみ2カラム */
.evidence_area:nth-of-type(2) .evidence-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.section-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-card img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  color: #2290ff;
  margin-bottom: 15px;
  padding-bottom: 10px;
  /* border-bottom: 2px solid #e0e0e0; */
}

.title-icon {
  color: #2674e9;
  margin-right: 8px;
}

.section-text {
  color: #555;
  line-height: 1.8;
}

.section-text p {
  margin-bottom: 10px;
}

.highlight-text {
  color: #e74c3c;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
  padding: 2px 4px;
}

/* Qualification Cards Grid (3カラム) */
.qualification-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* margin-bottom: 30px; */
}

/* Qualification List */
.qualification-list {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.qualification-item {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  background: #f8f9fa;
  /* border-left: 4px solid #2674e9; */
  border-radius: 4px;
}

.qualification-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.qualification-desc {
  font-size: 14px;
  color: #666;
}

/* Highlight Box */
.highlight-box {
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
  /* border-left: 5px solid #2674e9; */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.highlight-box p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #2674e9;
}

/* Credentials Section */
.credentials-section {
  margin: 0px 0 30px 0;
  background: #fff;
  border-radius: 8px;
  padding: 25px 25px 25px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.credentials-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  /* margin-bottom: 20px; */
  padding-bottom: 10px;
  /* border-bottom: 2px solid #e0e0e0; */
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.credentials-list li {
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 4px;
  /* border-left: 3px solid #2674e9; */
  font-size: 15px;
  color: #333;
}

/* Warning Hero Section - Full Width */
.warning-hero-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(58, 58, 58, 0.5) 0%, rgba(90, 90, 90, 0.85) 100%), url('../images/eco1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 60px 0;
}

/* Warning Hero Card Styles */
.warning-hero-card {
  color: #fff;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.warning-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.warning-hero-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.warning-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #f0d264;
  color: #333;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-right: 15px;
  vertical-align: middle;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.warning-subtitle {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
  color: #fff;
}

.symptom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.symptom-item {
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.symptom-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(5px);
}

.symptom-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  display: block;
}

.checkbox-icon {
  display: inline-block;
  font-size: 20px;
  color: #e74c3c;
  background: #fff;
  padding: 2px 6px;
  border-radius: 5px;
  margin-right: 8px;
}

.danger-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}

/* Confidence Card Styles */
.confidence-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.confidence-card .section-title {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.3);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.confidence-item {
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  gap: 20px;
  position: relative;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.3);
}

.confidence-item:hover {
  background: rgba(255,255,255,0.65);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.confidence-number-img {
  display: block;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.confidence-text {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .evidence_area:nth-of-type(2) .evidence-content {
    padding: 0 10px;
    grid-template-columns: 1fr;
  }

  .qualification-list {
    grid-template-columns: 1fr;
  }

  .qualification-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .confidence-item {
    min-height: 220px;
    padding: 30px 20px;
  }

  .confidence-number-img {
    width: 140px;
    height: 140px;
  }

  .confidence-text {
    font-size: 17px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .section-card {
    padding: 20px;
  }
  
  .warning-hero-card {
    padding: 25px;
  }
  
  .warning-hero-title {
    font-size: 24px;
  }
  
  .warning-subtitle {
    font-size: 16px;
  }
  
  .symptom-content h4 {
    font-size: 18px;
  }
  
  .symptom-advice {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-card {
    padding: 15px;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  .confidence-item {
    min-height: 200px;
    padding: 30px 15px;
  }

  .confidence-number-img {
    width: 120px;
    height: 120px;
  }

  .confidence-text {
    font-size: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }
  
  .warning-hero-card {
    padding: 20px;
  }
  
  .warning-hero-title {
    font-size: 20px;
  }
  
  .warning-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  
  .symptom-item {
    padding: 15px;
  }
  
  .symptom-content h4 {
    font-size: 16px;
  }
  
  .checkbox-icon {
    font-size: 24px;
    width: 35px;
    height: 35px;
  }
}
.trust_area   { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.story_area   { max-width: 1200px; margin: 60px auto; padding: 0 20px; }

/* Story Section Styles */
.story-container {
  max-width: 1200px;
  margin: 0 auto;
}

.story-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.story-text {
  flex: 0 0 70%;
}

.story-title {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #055ee3;
  line-height: 1.4;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.story-image {
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.president-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.president-info {
  background: transparent;
  padding: 100px 20px 20px 0px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.president-position {
  font-size: 14px;
  color: #888;
  margin: 10px 0 5px 0;
  text-align: center;
}

.president-name {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
}

.president-info img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Story Responsive Design */
@media (max-width: 768px) {
  .story-content {
    flex-direction: column;
    padding: 20px 15px;
    gap: １0px;
    align-items: center;
  }

  .story-text {
    text-align: center;
    flex: 1;
  }

  .story-title {
    font-size: 24px;
    text-align: center;
  }

  .story-text p {
    font-size: 15px;
    text-align: center;
  }

  .story-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .president-info {
    padding-top: 0px;
  }

  .president-image {
    max-width: 300px;
  }

  .president-name {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .story-content {
    padding: 20px 15px;
  }
  
  .story-title {
    font-size: 20px;
  }
  
  .story-text p {
    font-size: 14px;
  }
  
  .president-image {
    max-width: 250px;
  }
  
  .president-name {
    font-size: 18px;
  }
}

.closing_area   { max-width: 1200px; margin: 40px auto; padding: 0 20px; }

/* Closing Block - Campaign Image */
.closing_area .volunteer-image {
  width: 60%;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.last_area   { max-width: 1200px; margin: 40px auto; padding: 0 20px; }

/* Payment Section */
.payment_area {
  padding: 40px 20px;
  background: #f8f9fa;
}

.payment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.payment-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
}



.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.payment-item {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.payment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.payment-icon i {
  font-size: 36px;
}

/* Individual payment icon colors */
.payment-item:nth-child(1) .payment-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.payment-item:nth-child(1) .payment-icon i {
  color: #fff;
}

.payment-item:nth-child(2) .payment-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.payment-item:nth-child(2) .payment-icon i {
  color: #fff;
}

.payment-item:nth-child(3) .payment-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.payment-item:nth-child(3) .payment-icon i {
  color: #fff;
}

.payment-item:nth-child(4) .payment-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.payment-item:nth-child(4) .payment-icon i {
  color: #fff;
}

.payment-name {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.payment-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Payment Responsive Design */
@media (max-width: 992px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .payment-title {
    font-size: 28px;
  }
  
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .payment-item {
    padding: 25px 15px;
  }
  
  .payment-icon {
    width: 70px;
    height: 70px;
  }
  
  .payment-icon i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .payment-title {
    font-size: 24px;
  }
  
  .payment-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-item {
    padding: 20px;
  }
}

/* Area Section */
.area_area {
  padding: 30px 20px 60px 20px;
  background: #f5f5f5;
}

.area-container {
  max-width: 1200px;
  margin: 0 auto;
}

.area-content {
  display: flex;
  align-items: center;
  gap: 60px;
  /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hiace.png'); */
  background: linear-gradient(rgba(231, 231, 231, 0.6), rgba(0, 0, 0, 0.4)), url('../images/hiace.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.area-text {
  flex: 1;
  text-align: right;
  position: relative;
  z-index: 2;
}

.area-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.area-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #ffeb3b;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.area-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.area-map {
  flex: 1.2;
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.map-image {
  width: 100%;
  height: auto;
  max-width: 500px;
  display: block;
  background: rgba(255,255,255,0.0);
  padding: 10px;
  border-radius: 10px;
}

/* Area Responsive Design */
@media (max-width: 768px) {
  .area-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }
  
  .area-text {
    text-align: center;
  }
  
  .area-title {
    font-size: 28px;
  }
  
  .area-subtitle {
    font-size: 20px;
  }
  
  .map-image {
    max-width: 100%;
    margin: 0 auto;
  }
}

.privacy_text{
  text-align: left;
  margin-bottom: 20px;
}

/* Omakase Section */
.omakase_area {
  background: #fff;
  padding: 20px 0;
}

.omakase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.omakase-container .map-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
}

@media (max-width: 768px) {
  .omakase_area {
    padding: 10px 0;
  }

  .omakase-container {
    padding: 0;
  }

  .omakase-container .map-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .omakase_area {
    padding: 10px 0;
  }

  .omakase-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .area_area {
    padding: 10px 15px;
  }
  
  .area-content {
    padding: 15px 15px;
  }
  
  .area-title {
    font-size: 24px;
  }
  
  .area-subtitle {
    font-size: 18px;
  }
  
  .area-desc {
    font-size: 14px;
  }
}

/* END 各ボックス ------------------------------------------------- */ 

.loan-area {
  text-align: center;
  margin: 40px auto;
}

.loan-container {
  margin-top: 20px;
}

.open-popup-btn {
  background: #e31e24;
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.open-popup-btn:hover {
  background: #c11e24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  z-index: 10001;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.popup-title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #e31e24;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.comparison-table th {
  background: #f8f8f8;
  font-weight: bold;
}

.close-btn {
  background: #666;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
}

.close-btn:hover {
  background: #555;
}

/* Headings */
.h2_headding {
  text-align: center;
  margin: 40px 0 20px;
}

.headding_en {
  display: block;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.headding_ja {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.mark_yellow {
  background: linear-gradient(transparent 60%, #ffff00 60%);
  padding: 0 10px;
}

.sub_title,
.sub_title2 {
  font-size: 24px;
  color: #00b900;
  display: inline-block;
  border-bottom: 3px solid #00b900;
  padding-bottom: 5px;
  margin-top: 20px;
}

/* Product Grid */
.innerbox2 {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.campaign_price_right,
.campaign_price_left {
  flex: 1;
}

.campaign_price_right img,
.campaign_price_left img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sign_right,
.sign_left {
  flex: 1;
}
.sign_right img,
.sign_left img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Info Blocks */
.info_area {
  background: #f8f8f8;
  padding: 40px 0;
  margin: 60px 0;
}

.kyoutuu_toparea {
  padding-top: 40px;
}

.kyoutuu_marginarea {
  margin-top: 40px;
  margin-bottom: 40px;
}

.innerbox {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* お客様の声 */
.voice_area { background: #fff; padding: 10px 0 60px 0; }

.shop-content {
  margin-top: 30px;
  text-align: center;
}

.shop-image {
  width: 90%;
  height: auto;
  display: block;
  max-width: 100%;
  margin: 0 auto 10px auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Volunteer Content */
.volunteer-content {
  margin-top: 30px;
}

.volunteer-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.volunteer-text {
  font-size: 16px;
  color: #555;
  text-align: center;
  line-height: 1.8;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.price-highlight {
  color: #ff0000;
  font-size: 28px;
  font-weight: bold;
  padding: 0 5px;
}

@media (max-width: 768px) {
  .volunteer-text {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .volunteer-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .volunteer-text {
    font-size: 14px;
    padding: 0 10px;
  }
}

.voice_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.voice_item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.voice_item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.voice_title {
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* CTA Section */
.cta_area {
  background: linear-gradient(135deg, #14b2ec 0%, #e0f0f3 100%);
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.cta_title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta_text {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta_button {
  display: inline-block;
  background: #fff;
  color: #e31e24;
  padding: 20px 60px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Company Section */
#company {
  padding: 60px 0;
  background: #f8f8f8;
}

.company_table {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.company_table th,
.company_table td {
  padding: 24px 30px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.company_table tr:last-child th,
.company_table tr:last-child td {
  border-bottom: none;
}

.company_table th {
  background: linear-gradient(135deg, #2674e9 0%, #1e5bc6 100%);
  color: #fff;
  width: 30%;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
}

.company_table td {
  background: #fff;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.company_table tr:hover td {
  background: #f8f9fa;
  transition: background 0.3s ease;
}

/* Different Block */
.different_area {
  padding: 60px 0;
  background: #fff;
}

.different_table {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-collapse: collapse;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.different_table th,
.different_table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.different_table th {
  background: #00b900;
  color: #fff;
  font-weight: bold;
}

.different_table th.recommend {
  background: #ff6b6b;
}

.different_table td.item {
  background: #f8f8f8;
  font-weight: bold;
  text-align: left;
}

.different_table td.recommend {
  background: #ffe8e8;
  font-weight: bold;
}

/* Contact Form Section */
.contact_area {
  padding: 60px 0;
  background: #f8f8f8;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.required {
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
}

.optional {
  background: #95a5a6;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-privacy {
  margin: 30px 0 25px;
  text-align: center;
}

.privacy-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.privacy-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-checkbox a {
  color: #4a90e2;
  text-decoration: underline;
}

.privacy-checkbox a:hover {
  color: #2674e9;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.submit-button {
  background: linear-gradient(135deg, #4a90e2 0%, #2674e9 100%);
  color: #fff;
  border: none;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
  background: linear-gradient(135deg, #5ba3f5 0%, #4a90e2 100%);
}

.submit-button:active {
  transform: translateY(-1px);
}

.submit-button i {
  font-size: 16px;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .contact_area {
    padding: 40px 15px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group.full-width {
    margin-bottom: 15px;
  }

  .submit-button {
    width: 100%;
    padding: 16px 40px;
    font-size: 16px;
  }

  .contact-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 20px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .form-group label {
    font-size: 14px;
  }

  .submit-button {
    padding: 14px 30px;
    font-size: 15px;
  }

  .contact-intro {
    font-size: 14px;
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #7bb8ff 0%, #2674e9 100%);
  color: #fff;
  padding: 60px 0 30px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer_area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer_info img {
  height: 50px;
  margin-bottom: 25px;
  filter: none;
}

.footer_info p {
  line-height: 2;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 400;
}

.footer_nav ul {
  list-style: none;
}

.footer_nav li {
  margin-bottom: 15px;
}

.footer_nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer_nav a:hover {
  color: #fff;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  /* border-top: 1px solid rgba(255,255,255,0.2); */
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* CTA Buttons */
.btn_container {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 25px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button i {
  font-size: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.button-label {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}

.button-number,
.button-sub {
  font-size: 14px;
  opacity: 0.95;
  display: block;
}

/* Phone Button */
.button-phone {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #fff;
}

.button-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238,90,36,0.4);
}

.button-phone i {
  animation: ring 1s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* Mail Button */
.button-mail {
  background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
  /* background: linear-gradient(135deg, #5289f0 0%, #112bef 100%); */
  color: #fff;
  justify-content: center;
}

.button-mail:hover {
  transform: translateY(-3px);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  /* box-shadow: 0 8px 25px rgba(102, 142, 234, 0.4); */
}

/* LINE Button */
.button-line {
  background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
  color: #fff;
}

.button-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6,199,85,0.4);
}

/* CTA Buttons Responsive */
@media (max-width: 768px) {
  .btn_container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 0 20px;
  }
  
  .cta-button {
    min-width: auto;
    width: 100%;
  }
  
  .cta-button i {
    font-size: 28px;
    width: 45px;
    height: 45px;
  }
  
  .button-label {
    font-size: 16px;
  }
  
  .button-number,
  .button-sub {
    font-size: 13px;
  }
  
  .button-phone i {
    animation: none;
  }
}

/* Business Hours */
.business-hours-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}

.business-hours-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 25px 40px 10px 40px;
  position: relative;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

.business-hours-box i {
  font-size: 36px;
  color: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hours-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hours-label {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hours-time {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin: 5px 0;
}

.hours-note {
  display: inline-block;
  background: #ff6b6b;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(227, 30, 36, 0.4);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

/* Business Hours Responsive */
@media (max-width: 768px) {
  .business-hours-box {
    padding: 20px 30px;
    gap: 15px;
  }
  
  .business-hours-box i {
    font-size: 30px;
  }
  
  .hours-time {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .business-hours-box {
    padding: 15px 20px;
    border-radius: 30px;
  }
  
  .hours-time {
    font-size: 18px;
  }
  
  .hours-label {
    font-size: 12px;
  }
}

.replacement_area,
.evolution_area {
  padding: 60px 0;
  background: #f8f8f8;
}

.img_title img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Floating Buttons (SP) */
.floating_sp {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.floating_sp_tel,
.floating_sp_line {
  width: 50%;
  float: left;
}

.floating_sp_tel a,
.floating_sp_line a {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.floating_sp_tel {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 15px;
}

.floating_sp_tel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.floating_sp_tel:hover::before {
  left: 100%;
}

.floating_sp_tel i {
  font-size: 28px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  animation: ring 1s ease-in-out infinite;
}

.floating_sp_line {
  background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 15px 0;
}

.floating_sp_line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.floating_sp_line:hover::before {
  left: 100%;
}

.floating_sp_line i {
  font-size: 28px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.floating-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.floating-button-label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 2px;
}

.floating-button-number,
.floating-button-sub {
  font-size: 12px;
  opacity: 0.95;
  display: block;
}

/* SP Menu */
.humberger_button {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.humberger_bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.humberger_bar1 {
  top: 0;
}

.humberger_bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.humberger_bar3 {
  bottom: 0;
}

.humberger_button.active .humberger_bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.humberger_button.active .humberger_bar2 {
  opacity: 0;
}

.humberger_button.active .humberger_bar3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.sp_slider_nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s;
  z-index: 10000;
  overflow-y: auto;
}

.sp_slider_nav.open {
  right: 0;
}

.sp_slider_nav ul {
  list-style: none;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: stretch;
}

.sp_slider_nav li {
  border-bottom: none;
  width: 100%;
}

.sp_slider_nav a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  background: #fff;
  border: 2px solid #333;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
}

.sp_slider_nav a:hover {
  background: #333;
  color: #fff;
}

.humberger_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}

.humberger_bg.active {
  display: block;
  opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
  /* Hide/Show Elements */
  .pc {
    display: none !important;
  }
  
  .sp {
    display: block !important;
  }
  
  /* Main Visual Images */
  .main-visual-pc {
    display: none !important;
  }
  
  .main-visual-sp {
    display: block !important;
  }
  
  .campaign_pc {
    display: none !important;
  }
  
  .campaign_sp {
    display: block !important;
  }
  
  .humberger_button {
    display: block;
  }
  
  .sp_slider_nav {
    display: block;
  }
  
  .floating_sp {
    display: block;
  }
  
  /* Header Adjustments */
  .header_area {
    padding: 8px 15px;
  }
  
  .h_leftbox h1 {
    font-size: 9px;
    line-height: 1.3;
    margin-bottom: 5px;
  }
  
  .h_leftbox img {
    height: 30px;
  }
  
  /* Typography */
  body {
    font-size: 14px;
  }
  
  .h2_headding {
    margin: 40px 0 30px;
  }
  
  .h2_headding .headding_ja {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .h2_headding .headding_en {
    font-size: 12px;
  }
  
  .sub_title,
  .sub_title2 {
    font-size: 18px;
  }
  
  /* Main Visual */
  .mainvisual {
    margin-top: 0;
  }
  
  .label_box p {
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.4;
  }
  
  .gap {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }
  
  /* Campaign & Product Grid */
  .campaign_area {
    margin: 30px auto;
    padding: 0 15px;
  }
  
  .innerbox2 {
    flex-direction: column;
    padding: 0 15px;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .campaign_price_right,
  .campaign_price_left {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Popup Modal */
  .popup {
    width: 95%;
    padding: 20px 15px;
    max-height: 90vh;
  }
  
  .popup-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .comparison-table {
    font-size: 12px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 5px;
  }
  
  .open-popup-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  /* CTA Section */
  .cta_area {
    padding: 40px 15px;
  }
  
  .cta_title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .cta_text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .cta_button {
    padding: 15px 40px;
    font-size: 18px;
  }
  
  /* LINE Section */
  .line_area {
    padding: 30px 15px;
  }
  
  .line_content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .line_text {
    text-align: center;
  }
  
  .line_title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .line_img img {
    width: 80px;
  }
  
  .line_button {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  /* Voice Section */
  .voice_area {
    padding: 10px 15px;
  }
  
  .voice_items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .voice_item {
    padding: 15px;
  }
  
  /* Info Blocks */
  .info_area {
    padding: 30px 0;
    margin: 40px 0;
  }
  
  .kyoutuu_toparea {
    padding-top: 30px;
  }
  
  .kyoutuu_marginarea {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  /* Closing Block - Campaign Image (Mobile) */
  .closing_area .volunteer-image {
    width: 90%;
    max-width: 90%;
  }

  /* Company Table */
  #company {
    padding: 40px 15px;
  }

  .company_table {
    font-size: 14px;
    margin: 30px auto;
    border-radius: 8px;
  }

  .company_table th,
  .company_table td {
    padding: 16px 15px;
    display: block;
    width: 100%;
    border: none;
  }

  .company_table th {
    background: linear-gradient(135deg, #2674e9 0%, #1e5bc6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .company_table td {
    background: #fff;
    color: #333;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .company_table tr {
    display: block;
    margin-bottom: 0;
  }

  .company_table tr:last-child td {
    border-bottom: none;
  }
  
  /* Different Block */
  .different_area {
    padding: 40px 15px;
  }
  
  .different_table {
    font-size: 12px;
    overflow-x: auto;
    display: block;
  }
  
  /* Footer */
  footer {
    padding: 40px 0 20px;
  }

  .footer_area {
    padding: 0 15px;
  }

  .footer_content {
    flex-direction: column;
    gap: 35px;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer_info {
    text-align: center;
  }

  .footer_info img {
    height: 40px;
    margin-bottom: 20px;
  }

  .footer_info p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
  }

  .footer_nav ul {
    text-align: center;
  }

  .footer_nav li {
    margin-bottom: 12px;
  }

  .footer_nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }

  .footer_nav a:hover {
    transform: none;
  }

  .copyright {
    padding-top: 25px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
  }
  
  /* Floating Buttons */
  .floating_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
  }
  
  .floating_sp_tel,
  .floating_sp_line {
    flex: 1;
    width: 50%;
  }
  
  .floating_sp_tel a,
  .floating_sp_line a {
    padding: 12px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .floating_sp i {
    font-size: 16px;
  }
  
  /* Images Responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  picture img {
    width: 100%;
    height: auto;
  }
  
  /* Utility Classes */
  .innerbox {
    padding: 0 15px;
  }
  
  /* Scroll Padding for Fixed Header */
  html {
    scroll-padding-top: 60px;
  }
  
  /* Buttons */
  .btn_container {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  
  .button_phone,
  .button_envelope,
  .button_line {
    max-width: 100%;
    width: 100%;
  }
  
  /* Other */
  .replacement_area,
  .evolution_area {
    padding: 40px 15px;
  }
}

/* Small Mobile Styles (max-width: 375px) */
@media (max-width: 375px) {
  .h2_headding .headding_ja {
    font-size: 18px;
  }
  
  .cta_title {
    font-size: 20px;
  }
  
  .line_title {
    font-size: 20px;
  }
  
  .comparison-table {
    font-size: 11px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 6px 3px;
  }
  
  .floating_sp_tel a,
  .floating_sp_line a {
    font-size: 13px;
    padding: 10px 5px;
  }
}

/* Desktop Only */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
  
  .campaign_sp {
    display: none !important;
  }
  
  .floating_sp {
    display: none !important;
  }
  
  .humberger_button {
    display: none !important;
  }
  
  .sp_slider_nav {
    display: none !important;
  }
  
  .humberger_bg {
    display: none !important;
  }
  
  /* Main Visual Images */
  .main-visual-pc {
    display: block !important;
  }
  
  .main-visual-sp {
    display: none !important;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .floating_sp,
  .cta_area,
  .line_area {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  .campaign_area {
    page-break-inside: avoid;
  }
}