/**
 * Landing Page Styles
 * 全ページで使用されるヘッダー・フッター・ランディングページ用スタイル
 */

:root {
  --crusta500: #EF6320;
  --pickled-bluewood-50: #F5F7FA;
  --pickled-bluewood-700: #35526F;
  --pickled-bluewood-900: #2C3E50;
  --white: #FFFFFF;
  --black: #0D1217;
}

/* ヘッダー（AppBar） */
.landing-header {
  background-color: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.landing-header-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-logo {
  height: 54.4px;
  width: auto;
}

.landing-header-buttons {
  display: flex;
  gap: 0;
}

.btn-primary, .btn-secondary {
  height: 80px;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.btn-primary {
  background-color: var(--crusta500);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--pickled-bluewood-700);
  color: var(--white);
}

.btn-primary:hover, .btn-secondary:hover {
  opacity: 0.9;
}

/* ヒーローセクション */
.hero-section {
  background-image: url('../../assets/images/lp/main-bk-1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
  color: var(--white);
}

.hero-text h1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-text h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-image {
  flex: 0 0 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-cta {
  padding: 16px 32px;
  background-color: var(--crusta500);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

/* 紹介セクション */

.highlight {
  color: var(--crusta500);
}

.intro-section {
  padding: 60px 20px;
  background-color: var(--pickled-bluewood-50);
  text-align: center;
}

.intro-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--black);
}



/* 特徴セクション */
.features-section {
  padding: 60px 20px;
}

.features-section h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.feature-item {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
/* 
.feature-item:nth-child(even) {
  flex-direction: row-reverse;
} */

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.8;
}

/* メリットセクション */
.benefits-section {
  padding: 60px 20px;
  background-color: #FFF5E6;
}

.benefits-section h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.benefit-number {
  font-size: 72px;
  font-weight: bold;
  color: #FF6B35;
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   機能紹介セクション（16ブロックグリッド）
   ======================================== */

.features-grid-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.features-grid-section h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

.features-grid-section .subtitle {
  font-size: 17px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background-color: var(--pickled-bluewood-50);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

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

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--crusta500);
}

.feature-icon i {
  display: block;
}

.feature-name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  line-height: 1.4;
}

/* 料金プランセクション - シームレス統合 */
.pricing-section {
  padding: 60px 0 0 0;
  background-color: transparent;
}

.pricing-section h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  padding: 0 20px;
}

.pricing-section .subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

/* iframeラッパー - 完全にシームレス */
.pricing-iframe-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

#pricing-iframe {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: none !important;
  margin: 0;
  padding: 0;
  background: transparent;
  transition: height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

/* スクロールバーを非表示 */
.pricing-iframe-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pricing-iframe-wrapper::-webkit-scrollbar {
  display: none;
}

/* CTAセクション */
.cta-section {
  padding: 60px;
  background-color: var(--crusta500);
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cta-btn {
  padding: 26px 58px;
  background-color: var(--white);
  color: var(--crusta500);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.cta-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  padding: 16px 48px;
  font-size: 16px;
}

/* フッター */
.landing-footer {
  padding: 40px;
  background-color: var(--pickled-bluewood-900);
  color: var(--white);
  text-align: center;
}

.landing-footer h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.landing-footer address {
  font-size: 14px;
  margin-bottom: 16px;
  font-style: normal;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 16px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.6);
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 20px;
  }
  
  .hero-text h2 {
    font-size: 40px;
  }
  
  .hero-image {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .hero-cta {
    width: 100%;
    padding: 26px;
    font-size: 20px;
  }
  
  .landing-header-content {
    flex-wrap: wrap;
  }
  
  .landing-header-buttons {
    gap: 0px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .feature-text {
    text-align: left;
  }
  
  .feature-item {
    flex-direction: column !important;
  }
  
  .feature-text h3 {
    font-size: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  /* 機能紹介グリッド: スマホは2列 */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .feature-box {
    padding: 20px 15px;
  }
  
  .feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .feature-icon i {
    display: block;
  }
  
  .feature-name {
    font-size: 14px;
  }
  
  .cta-section {
    padding: 40px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
  }
}

