/* assets/css/lp-style.css */

/* LP 全体 */
#lp-main {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fffdfa;
  padding-bottom: 60px;
  font-family: 'Meiryo,Noto Sans JP', sans-serif;
}

/* コンテナ幅 */
.lp-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-container2 { 
  text-align : center ;
  margin: 0 auto;
  width: 60%;
}

.lp-contact{
  margin: 0 auto;
}

/* LP タイトル */
.lp-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 30px;
  color: #7b4b3a;
}

/* 本文の段落 */
.lp-content p {
  font-size: 1.1rem;
  margin-bottom: 1.4em;
  line-height: 1.7;
  text-align: left;
}

.lp-comments {
  text-align: left;
}

.lp-container2 input[type=submit] {
  text-align:center  !important;
  margin: 0 auto ;
  margin-top: 40px;

}



/* CTA セクション */
.lp-cta {
  padding: 0 20px;
  text-align: center;
  color: #4a4a4a;;
  margin-top: 30px;
/*  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(13,59,102,0.3);*/
}

h2.lp-cta-tel,
h2.lp-cta-form {
  text-align: center;
  font-size: 35px;
  color:#333;
  padding: 10px;
  margin: 5px;
}

.lp-cta-form2 {
  text-align: center;
  color:#333;
  font-size: 15px;
}

.lp-cta-line {
  width: 1050px;
  max-width: 80%;
  border-bottom: 10px dotted   #f48c06;
  margin: 0 auto ;
  margin-top: 60px;
  margin-bottom: 50px;
}

.lp-cta-must {
  color: red;
  font-size: 15px;
  font-weight: bold;
}

.lp-pagelink-btn {
  width: 600px;
  height : 50px;
  vertical-align: middle;
  background: #00d084;
  padding : 10px 0 ;  
  margin : 0 auto;
  color: whitesmoke ;
  font-size: 16px;
  font-weight: bold;
  text-align : center;
  border-radius: 10px;
  margin-top: 100px;
}

/* CTA タイトル */
.lp-cta-title {
  height : 100px;
  background: #FFB7C5;
  padding : 20px 0 ;  
  margin : 10px;
  text-align : center;
}

.lp-cta-title h2 {
  font-size:  30px !important;
  color: #4a4a4a;
}

/* CTA ボタン */
.lp-cta .lp-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #f48c06;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 6px 12px #f5f0e6;
}


.lp-cta .lp-btn:hover {
  background-color: #fdc887ff;
  box-shadow: 0 8px 16px #f5f0e6;
}

/* LP ヘッダー */
.lp-header {
  background: #fff;
  border-bottom: 2px solid #f48c06;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  
}

.lp-header-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-logo img {
  height: 50px;
}

/* ヘッダーのお問い合わせボタン */
.lp-header .lp-btn {
  padding: 10px 22px;
  background: #f48c06;
  color: #fff;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(244,140,6,0.5);
}


.lp-header .lp-btn:hover {
  background-color: #d97800;
  box-shadow: 0 6px 12px rgba(217,120,0,0.7);
}

.lp-footer{
  text-align: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .lp-title {
    font-size: 2rem;
  }
  .lp-header-inner {
    flex-direction: column;
    gap: 15px;
  }
  .lp-logo img {
    height: 40px;
  }
  .lp-container2 {
    width: 95%;
  }

}


/*LP本文内用css  /lpa 固定ページ用   */
/* CTAボタン */
/* 親要素でセンター寄せ */
.fv-cta-wrapper {
  text-align: center;
  margin-top: 20px; /* 上下に余白をつけたい場合 */
  margin-bottom: 40px;
}
.fv-cta-btn {
  display: inline-block;
  background-color: #FF7F50; /* オレンジ系 */
  color: #FFFFFF; /* 文字色は白 */
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 14px 30px; /* 上下14px 左右30px */
  border-radius: 10px;
  text-decoration: none; /* 下線消す */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ホバー時 */
.fv-cta-btn:hover {
  background-color: #FF6347; /* 少し濃いオレンジに */
  color: #FFFFFF;
  box-shadow: 0 6px 10px rgba(0,0,0,0.25);
  transform: translateY(-2px); /* 軽く浮く演出 */
}

/*資料ダウンロードボタン*/
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap; /* 小さい画面で折り返し可能に */
}

.cta-button {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 220px;
}

/* 資料DLボタン */
.cta-button.download {
  background-color: #FF7F50;
  color: #fff;
}
.cta-button.download:hover {
  background-color: #FF6347;
  color: #fff;
}

/* 問い合わせボタン */
.cta-button.contact {
  background-color: #4682B4;
  color: #fff;
}
.cta-button.contact:hover {
  background-color: #36648B;
  color: #fff;
}

/* スマホ用レスポンシブ対応 */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    width: 90%;
    font-size: 16px;
    padding: 12px 20px;
  }
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
  .fv-cta-btn {
    font-size: 16px;
    padding: 12px 24px;
    width: 80%; /* 画面幅の80%に広げて押しやすく */
  }

.lp-title {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 30px;
  color: #7b4b3a;
}
}




