@charset "UTF-8";

/* --------------------
   基本設定
-------------------- */
body{
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color : #333333;
  background-color : aqua;
  line-height: 1.8;
}

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

a{
  color: #8f7aa8;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

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

.narrow{
  max-width: 760px;
}

.section{
  padding: 80px 0;
}

.soft-bg{
  background-color : aqua;
}

.section-title{
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #5f4d73;
}

.section-text{
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}

/* --------------------
   ヘッダー
-------------------- */
.site-header{
  background-color: #ffffff;
  border-bottom: 1px solid #e9e3ef;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo{
  font-size: 24px;
  font-weight: bold;
  color: #5f4d73;
}

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

.nav a{
  color: #555555;
  font-size: 15px;
}

/* --------------------
   メインビジュアル
-------------------- */
.hero{
  padding: 80px 0;
  background : linear-gradient(to bottom, #f7f5f2, #fcf9fd) 0% 0% / auto auto repeat scroll padding-box border-box aqua;
}

.hero-inner{
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text,
.hero-image{
  width: 50%;
}

.hero-sub{
  margin: 0 0 16px;
  color: #8f7aa8;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero h1{
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.4;
  color: #4c3f5d;
}

.hero-description{
  margin: 0 0 30px;
  font-size: 16px;
  color: #555555;
}

.hero-buttons{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-card{
  background-color: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.image-card img{
  border-radius: 12px;
}

/* --------------------
   ボタン
-------------------- */
.btn{
  display: inline-block;
  background-color : navy;
  color : #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.9;
}

.btn-outline{
  background-color: transparent;
  border: 1px solid #b8a4c9;
  color: #8f7aa8;
}

/* --------------------
   お悩み一覧
-------------------- */
.trouble-list{
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.trouble-list li{
  background-color: #ffffff;
  border: 1px solid #ece6f2;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
  text-align: center;
}

/* --------------------
   カード
-------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card{
  background-color: #ffffff;
  border: 1px solid #ece6f2;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.card h3{
  margin: 0 0 12px;
  font-size: 22px;
  color: #5f4d73;
}

.card p{
  margin: 0;
  font-size: 15px;
  color: #555555;
}

/* --------------------
   料金
-------------------- */
.price-box{
  background-color: #ffffff;
  border: 1px solid #ece6f2;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.price-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0ebf5;
  font-size: 17px;
}

.price-row:last-child{
  border-bottom: none;
}

.price-row strong{
  color: #5f4d73;
  font-size: 20px;
}

/* --------------------
   流れ
-------------------- */
.flow-list{
  margin: 0 auto;
  padding-left: 20px;
  max-width: 500px;
  font-size: 16px;
}

.flow-list li{
  margin-bottom: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #ece6f2;
}

/* --------------------
   プロフィール
-------------------- */
.profile-box{
  display: flex;
  gap: 32px;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ece6f2;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.profile-image,
.profile-text{
  width: 50%;
}

.profile-image img{
  border-radius: 16px;
}

.profile-text h3{
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  color: #5f4d73;
}

.profile-text p{
  margin-bottom: 14px;
}

/* --------------------
   お問い合わせ
-------------------- */
.contact-button-wrap{
  text-align: center;
  margin: 28px 0 16px;
}

.contact-mail{
  text-align: center;
  font-size: 15px;
}

/* --------------------
   フッター
-------------------- */
.site-footer{
  background-color: #ffffff;
  border-top: 1px solid #e9e3ef;
  padding: 30px 0;
  text-align: center;
}

.footer-name{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  color: #5f4d73;
}

.footer-copy{
  margin: 0;
  font-size: 13px;
  color: #777777;
}

/* --------------------
   レスポンシブ
-------------------- */
@media screen and (max-width: 768px) {
  .header-inner,
  .hero-inner,
  .profile-box{
    display: block;
  }

  .nav{
    margin-top: 12px;
  }

  .nav ul{
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero-text,
  .hero-image,
  .profile-image,
  .profile-text{
    width: 100%;
  }

  .hero-image{
    margin-top: 30px;
  }

  .profile-text{
    margin-top: 24px;
  }

  .hero h1{
    font-size: 32px;
  }

  .section-title{
    font-size: 26px;
  }

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

  .price-row{
    font-size: 15px;
  }

  .price-row strong{
    font-size: 18px;
  }
}