@charset "UTF-8";

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

/* 全体の見出しやセクション */
h2 {
  margin: 50px 0;
}


body {
  font-family: "Hiragino Sans", "Helvetica Neue", sans-serif;
  line-height: 1.8;
  color: #404040;
  padding: 40px 20px;
  width: 1000px;
  margin: auto;
}

/* メインビジュアル */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
}

/* 上のロゴ */
.logo img {
  height: 80px;
}

/* ナビ */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-top: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
}

/*ヘッダー*/
img {
  display: block;
  max-width: 100%;
  height: auto;
}

main {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff5f5;
}

/*メイン文章部分*/
main h1 {
  font-size: 32px;
  color: #e65b5b;
  margin-top: 30px;
  margin-bottom: 10px;
}

main p {
  font-size: 22px;
  margin: 20px 0;
}

.button-wrapper {
  text-align: center;
}

/*メイン文章部分ボタン*/
.cta-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #FFA94D;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  margin: 30px auto;
  box-shadow: 0 4px 6px rgba(255, 200, 150, 0.6);
  transition: background-color 0.3s ease, 
            transform 0.2s ease, 
            box-shadow 0.3s ease;
}

.cta-btn:hover {
  background-color: #FF8C42; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 12px rgba(255, 160, 100, 0.6);
}

/*受講生無料キャンペーン部分*/
h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 35px;
}

.center-wrapper {
  height: auto;
  padding: 30px 50px;
}

.note {
  text-align: left;
  margin-left: 30px;
  margin-bottom: 50px;
}

.highlight {
  color: #e64545;
}


/*6つの特徴*/
.ex {
  text-align: center;
  font-size: 18px;
}

.bene {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.bene img {
  width: 200px;
  height: 200px;
}

.title {
  padding: 28px 0;
  color: #000;
}

.message {
  color: #000;
  font-size: 18px;
  font-weight: bold;
 padding: 20px 0;
}
.future {
  color: #F7931E;
  font-size: 25px;
  font-weight: bold;
text-align: center;
margin-top: 0;
margin-bottom: 20px;
}
.title-sub {
  font-size: 22px;  
  color: #333;        
  font-weight: 600;
}
  /*全体のセクションの指定*/
.container,
.popular,
.story,
.experience,
.eexperience,
.benefits,
.campaign,
.explan,
.problem,
.sstory,
.flow, 
.faq, 
.others,
.infome {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/*3つの特徴*/
.popular p {
  margin-bottom: 40px;
}
.hero-shot {
  width: 100%;
  height: auto;
  overflow: hidden; /* はみ出し部分を隠す */
}

/*受講者の声*/
.mama img {
  width: 210px;
  height: 200px;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 38px;
}

.experience {
  display: flex;
  background-color: #fff5f5;
}

strong {
  margin-left: 20px;
}

.experience p {
   width: 400px;
   margin-top: 20px;

}
.reviews {
  margin: 60px 0;
}

.reviews-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.review-long {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.review-img {
  width: 80px;
  margin-right: 20px;
}

.review-text h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #000;
}

.review-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* --- 短文レビュー（丸枠吹き出し） --- */
.reviews-subtitle {
  text-align: center;
  font-size: 20px;
  margin: 40px 0 30px;
}

.review-short-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.review-short {
  border: 2px solid #ccc;
  border-radius: 50%;/* widthとheightが同じで円形になる！ */
  width: 200px;
  height: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;/* 縦に並ぶ */
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: #333;
  background-color: #fff8f8;
  position: relative; 
}
.review-short::before {
  content: "💬";
  color: #666;
  position: absolute;
  top: -25px; 
  right: 10px;  
  font-size: 30px;
}
.review-short p {
  margin-top: 20px;
}

.review-short span {
  font-weight: bold;
  margin-top: 15px;
  font-size: 12px;
  color: #666;
}

/*5つの説明*/
.feature {
  display: block;
  width: 100%;
  margin: auto;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 30px 20px;
}

.feature-icn {
  width: 250px;
  height: 200px;
  margin-bottom: 30px;
}

.feature li {
  list-style: none;
  flex-basis: 32%;
  text-align: center;
}

.feature-ttl h3 {
  font-size: 15px;
}

.feature-ttl p {
  font-size: 13px;
  margin-top: 10px;
}


/*吹き出し部分*/
.worroy {
  display: flex;
}

.worroy img {
  margin: 30px 0;
}

.img {
  width: 400px;
}

.graph {
  width: 600px;
  margin: auto;
  padding: 50px 0;

}
.point-text {
  color: #F7931E;
   font-size: 18px;
font-weight: bold;
margin-top: 20px;
 margin-bottom: 4px;
line-height: 2; 

}

.future-text {
  color: #F7931E;
  font-size: 18px;
  font-weight: bold;
  line-height: 2; 
}


/*その他の特徴*/
.campaign p {
  margin-bottom: 20px;
}

.voice-item img {
  width: 80%;
  margin: 20px auto;
}

/*スキル紹介*/
.campaign p {
  margin-left: 20px;
}
.type {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-around;
}

.type img {
  width: 400px;
}

.type h4 {
  margin-bottom: 25px;
}

.kinds {
  flex-basis: 47%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/*ママの声*/
.sstory {
  background-color: #FFF1E0;
}

.eexperience {
  display: flex;
  gap: 70px;
  padding-left: 30px;
  background-color: #fff5f5;
}

.eexperience img {
  width: 300px;
  height: 300px;
  border-radius: 30px;
  object-fit: cover;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.say-wrapper {
  text-align: center;
  margin: 30px auto 0 auto;
}

.say {
  letter-spacing: 0.2em;
  color: #404040;
}
.point-ttext {
  color: #F7931E;
   font-size: 18px;
font-weight: bold;
margin-top: 20px;
 margin-bottom: 20px;
line-height: 2; 

}
.point-tttext {
  color: #F7931E;
   font-size: 15px;
font-weight: bold;
margin-top: 10px;

}
/*学習の流れ*/
.study {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
}
.immg {
  width: 300px;
  height: 230px;
  object-fit: cover;
  margin-left: 33px;
}
.step-highlight {
  color: #e64545;
  font-weight: 500;
}
.emphasis {
  font-weight: bold;
}


/*受講料*/
.flow ol {
  font-size: 15px;
  margin-top: 30px;
  margin-left: 15px;
  line-height: 2;
}

.flow li {
  border-bottom: #F7931E 1px solid;
  margin-bottom: 5px;
}

.sstudy {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 300;
}

.price {
  width: clamp(320px, 70vw, 680px);/*(最小値, 推奨値, 最大値)*/
  height: auto; 
  margin: 0 auto;
  margin-top: 50px;
}
.flow h2,
.flow p {
margin-left: 30px;
}
/*よくある質問*/
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(108, 199, 192, 0.7);
  font-size: 15px;
}

.faq-item .q {
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-item .q span {
  color: #F7931E;
  font-weight: bold;
  margin-right: 5px;
}
.faq-item .a span {
  color: #fdba6d;
  font-weight: bold;
  margin-right: 5px;
}
/*その他の講座*/

.others-list {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.others-card {
  background: #fff;
  padding: 20px;
  width: 285px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
  margin-bottom: 40px;
}

.others-card img {
  width: 200px;
  height: 180px;
  border-radius: 50%;
}

.others-card h3 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}
.others-card p {
  font-size: 14px;
  margin-bottom: 20px;
}
.others-card a {
  font-size: 15px;
}

/*説明会*/

.infome {
  text-align: center;
  margin-bottom: 20px;
}
.infome h4, .infome h5 {
  margin-bottom: 20px;
}
.ans {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  border-top:#fdba6d 5px solid;
  border-bottom: #fdba6d 5px solid;

}
.ans img {
  width: 300px;
  height: 300px;
  margin: 20px 0;
}
.info {
  background-color: #fff5f5;
  width: 500px;
  height: 200px;
  margin-top: 50px;
  padding-top: 20px;
  border-radius: 20px;
  line-height: 3;
}
.info span {
  font-weight: 500;
  font-size: 20px;
}
footer {
  padding-top: 30px;
  margin: 0 auto;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
}
