/*
Theme Name: 快凛堂
*/
.clear{
	overflow:hidden;
}
.imgright{
	float:right;
	margin:5px 0 5px 10px;
	vertical-align:bottom;
}
.imgleft{
	float:left;
	margin:5px 10px 5px 0;
	vertical-align:bottom;
}

.movie_wrap { position:relative; height:0; padding-bottom:56.25%; overflow:hidden; }
.movie_wrap iframe { position:absolute; top:0; right:0; width:100% !important; height:100% !important; }

/* ===== LP共通スタイル ===== */

body.page-lp-scratch {
  margin: 0;
  padding: 0;
  background: #F1D7DF; /* ベース背景色  */
  color: #333;
}

/* ヘッダー（固定） */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.lp-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* ヘッダー背景色をピンク */
.lp-header {
  background: #E990A6;
}

/* メニュー文字色を白 */
.lp-nav a {
  color: #fff;
}

/* メイン（本文エリア） */
.lp-main {
  /* ヘッダー固定分の余白を上にとる */
  padding-top: 100px; /* ヘッダーの高さ + 余白を考えて調整 */
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 40px;
  box-sizing: border-box;
}

/* h2,h3見出し / セクション例 */
.pink-center {
  color: #E990A6;
  text-align: center;
  font-size: 1.5rem;
  margin: 2rem 0 1.2rem;
}

.lp-main p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lp-main h3 {
  font-size: 1rem;      /* 本文と同じくらいの大きさ */
  color: #BB9F4C;       /* 指定のカラー */
  font-weight: bold;    /* h3として少し強調（お好みで外してOK） */
  margin: 1.6rem 0 1rem;
}

/* レスポンシブ対応（簡単に） */
@media (max-width: 768px) {
  .lp-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lp-nav a {
    margin-left: 0;
    margin-top: 10px;
  }

  .lp-main {
    padding: 20px;
    margin: 0 10px;
  }
}

/* 区切り線 */
.lp-divider {
  border: 0;
  height: 3px;          /* 線の太さ */
  background: #E990A6;  /* ピンク */
  width: 100%;
  margin: 40px 0;
}

/* 続きを読む */
.readmore-wrapper {
  margin: 2rem 0;
}

.readmore-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.readmore-wrapper.open .readmore-content {
  max-height: 2000px; /* ここは長文ならもっと増やす */
}

.readmore-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #E990A6;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
}
