@charset "utf-8";
/* CSS Document */
/* ===============================
   Reset
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #2d2d2d;
  background-color: #fafaf8;
}



/* LP専用リンク */
.blue-link {
  color: #0066cc !important;
  text-decoration: underline;
}
.blue-link:hover {
  color: #004a99 !important;
}

/* 基本レイアウト */
.content-box {
  max-width: 1200px;
  margin: 50px auto;
  padding: 50px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

/* ===============================
   HERO
================================ */
.hero {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8e1d3 100%);
  padding: 50px 0;
  
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}
.hero-title .highlight {
  color: #c17a5c;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #4a4a4a;
  font-weight: 500;
}

.hero-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1s ease-out 0.3s backwards;
	margin-top: 20px;
}

/* ===============================
   Benefits
================================ */
.benefits {
  background-color: #fff;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.benefit-card {
  background: #fafaf8;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e8e1d3;
  transition: 0.3s;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(193, 122, 92, 0.15);
}
.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* ===============================
   Target Audience
================================ */
.target-audience {
  background: linear-gradient(135deg, #e8e1d3 0%, #f5f1e8 100%);
}
.target-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.target-item {
  background: #fff;
  padding: 24px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.target-item:hover {
  transform: translateX(8px);
}
.check-icon {
  font-size: 1.5rem;
  color: #c17a5c;
  font-weight: 700;
}

/* ===============================
   Features
================================ */
.features {
  background: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.feature-item {
  background: #fafaf8;
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid #c17a5c;
  transition: 0.3s;
}
.feature-item:hover {
  transform: translateX(8px);
}
.feature-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #c17a5c;
  opacity: 0.3;
  margin-bottom: 16px;
}

/* ===============================
   How-To Videos
================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.video-item {
  text-align: center;
}
.video-placeholder {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}
.video-placeholder:hover {
  transform: scale(1.05);
}
.video-placeholder img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(193, 122, 92, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s;
}

/* ===============================
   Endorsements
================================ */
.endorsements {
  background: linear-gradient(135deg, #e8e1d3 0%, #f5f1e8 100%);
}
.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.endorsement-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.endorsement-role {
  display: inline-block;
  background: #c17a5c;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===============================
   Summary
================================ */
.summary {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8e1d3 100%);
}
.summary-list {
  max-width: 700px;
  margin: 0 auto;
}
.summary-list li {
  background: #fff;
  padding: 20px 30px;
  margin-bottom: 16px;
  border-radius: 50px;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===============================
   Final Push
================================ */
.final-push {
  background: #fff;
}
.final-push-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-box {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8e1d3 100%);
  padding: 50px 40px;
  border-radius: 16px;
  border: 3px solid #c17a5c;
}

/* ===============================
   Contact
================================ */
.contact {
  background: linear-gradient(135deg, #e8e1d3 0%, #f5f1e8 100%);
}
.contact-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;

}
	
.howto-txt {
  text-align: center;
font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
	font-weight: 400;
}
	
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.contact-card:hover {
  transform: translateY(-8px);
}
.contact-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.contact-label {
  font-size: 1.1rem;
  font-weight: 600;
}
.summary-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.summary-list li {
  list-style-type: none !important;
}
/* ===============================
   Remake Info Box（クロス案内）
================================ */
.remake-info-box {
  background: #c17a5c;
  color: #fff;
  text-align: center;
  padding: 40px 30px;
  border-radius: 14px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.remake-info-title {
  font-size: 1.5rem;
	color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
 
}

.remake-info-text {
  font-size: 1.05rem;
	color: #fff;
  line-height: 1.8;
  margin-bottom: 14px;
}

.remake-info-strong {
  font-weight: 700;
  text-decoration: underline;
}

.remake-info-btn {
  display: inline-block;
  background: #fff;
  color: #c17a5c;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: 0.3s;
}

.remake-info-btn:hover {
  background: #f3e9e4;
  transform: translateY(-3px);
}
	

.anshin-info-btn {
  display: inline-block;
  background: linear-gradient(135deg, #9a5437 0%, #753d26 100%);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: 0.3s;
}

.anshin-info-btn:hover {
  background: linear-gradient(135deg, #9a5437 0%, #753d26 100%);
  transform: translateY(-3px);
}

/* ===============================
   Remake Guide Box（張替えガイド用）
================================ */
.remake-guide-box {
  background: #e7d8c9;
  color: #5a4634;
  text-align: center;
  padding: 40px 30px;
  border-radius: 14px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.remake-guide-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #5a4634;
}

.remake-guide-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.remake-guide-btn {
  display: inline-block;
  background: #5a4634;
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.3s;
}

.remake-guide-btn:hover {
  background: #473729;
  transform: translateY(-3px);
}

	
	
/* ===============================
   CTA Product Section（商品ページ誘導） 改良版
================================ */
.cta-product {
  background: #fff;
  padding: 100px 0;
}

.cta-product-box {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 50px;
  border-radius: 18px;
  border: 3px solid #c17a5c;
  background: #ffffff;
  box-shadow: 
      0 12px 32px rgba(0,0,0,0.10),
      0 0 0 8px rgba(193,122,92,0.10); /* 外側リングで上品に */
}

.cta-product-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.cta-product-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #444;
}


.cta-product-btn {
  display: inline-block;
  background: linear-gradient(135deg, #9a5437 0%, #753d26 100%);
  color: #fff !important;
  padding: 20px 60px;
  border-radius: 60px;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.cta-product-btn:hover {
  background: linear-gradient(135deg, #b86140 0%, #8a472d 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.font-up {
  font-size: 1.2em;
}


.page-flashdoor{
  margin-top: .5em;
	font-weight: 400;
}

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

/* ===============================
   Responsive
================================ */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.2rem; }
  section { padding: 60px 0; }
  .section-title { font-size: 2rem; margin-bottom: 40px; }
  .campaign-box { padding: 60px 30px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .target-item { padding: 20px 24px; font-size: 1rem; }
	.cta-product-box {
    padding: 40px 20px;
  }
	  .remake-info-box {
    padding: 30px 20px;
  }
  .remake-info-title {
    font-size: 1.3rem;
  }
  .remake-info-text {
    font-size: 0.95rem;
  }
  .cta-product-title {
    font-size: 1.6rem;
  }
  .cta-product-text {
    font-size: 1rem;
  }
  .cta-product-btn {
    padding: 14px 32px;
    font-size: 1.05rem;
  }
	
}
