/*
    Theme Name: WBA01
*/

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.8;
  background: #faf9f7;
}

img {
  max-width: 100%;
  display: block;
}

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

section {
  padding: 100px 0;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.section-lead {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.btn {
  display: inline-block;
  background: #7b6d62;
  color: white;
  text-decoration: none;
  padding: 18px 42px;
  border-radius: 999px;
  transition: .3s;
}

.btn:hover {
  opacity: .85;
}

.sp_only {
  display: none!important;
}

.hero {
  padding: 140px 0 120px;
  text-align: center;
  background: url(images/mv_pc.png) no-repeat center;
  background-size: contain;
}

.hero .sub {
  letter-spacing: .1em;
  color: #7b6d62;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 500;
  text-shadow:
    5px 5px 4px #fff,
    -5px 5px 4px #fff,
    -5px -5px 0 #fff,
    5px -5px 0 #fff;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
}

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

.problem-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.problem-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.about {
  background: white;
}

.about-box {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

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

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.feature-card h3 {
  margin-bottom: 20px;
  font-size: 26px;
}

.before-after {
  background: #f5f2ee;
}

.ba-image {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 20px;
}

.ba-image-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.ba-image-wrapper img {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .ba-image-wrapper {
    flex-direction: column;
  }
}

.ba-caption {
  padding: 30px;
}

.ba-caption h3 {
  margin-bottom: 15px;
}

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

.plan-card {
  background: white;
  border-radius: 24px;
  padding: 50px 35px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.plan-card.recommend {
  border: 2px solid #7b6d62;
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #7b6d62;
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.plan-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}

.plan-price {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #7b6d62;
  font-weight: bold;
}

.plan-card ul {
  list-style: none;
}

.plan-card li {
  margin-bottom: 14px;
  padding-left: 1.4em;
  position: relative;
}

.plan-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7b6d62;
}

.flow {
  background: white;
}

.flow-list {
  max-width: 800px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.flow-num {
  width: 50px;
  height: 50px;
  background: #7b6d62;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq {
  background: #f5f2ee;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 35px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.faq-item h3 {
  margin-bottom: 15px;
}

.cta {
  text-align: center;
  padding: 120px 0;
}

.cta-box {
  background: white;
  border-radius: 30px;
  padding: 70px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
}

.cta h2 {
  margin-bottom: 25px;
}

.cta p {
  margin-bottom: 35px;
  color: #666;
}

footer {
  padding: 40px 0;
  text-align: center;
  color: #777;
}

.page h1 {
  padding: 50px 0;
}

a.site_title {
  font-size: 40px;
  color: #7b6d62;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 768px) {
  h2 {
    font-size: 30px;
  }

  .sp_only {
    display: block!important;
  }

.hero {
    text-align: center;
    background: url(images/mv_sp.png) no-repeat center center;
    background-size: contain;
  }

  .hero h1 {
    font-size: 40px;
    text-align: center;
  }

  .problem-grid,
  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .flow-item {
    flex-direction: column;
  }
}