@charset "UTF-8";
/* CSS Document */
.raku-lp-wrapper {
  background-color: #eee5db;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.6;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
  box-sizing: border-box;
  color: #444;
  letter-spacing: 0.1em;
}
.raku-lp-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media (max-width: 650px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* 共通パーツ */
.raku-lp-img {
  width: 100%;
  height: auto;
  display: block;
}
.raku-lp-wrapper p {
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  .raku-lp-wrapper p {
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: justify;
  }
}
/* ▼ メインビジュアル ▼ */
.raku-hero {
  position: relative;
  margin-bottom: 0;
}
.raku-hero-text {
  text-align: center !important;
  position: absolute;
  top: 245px;
  left: 115px;
  z-index: 10;
}
.raku-hero-btn {
  width: 350px;
  position: absolute;
  bottom: 45px;
  left: 75px;
  z-index: 10;
}
/* スマホ対応 */
@media (max-width: 650px) {
  .raku-hero-text {
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    top: 93px;
    left: 20px;
  }
  .raku-hero-btn {
    width: 160px;
    bottom: 14px;
    left: 20px;
  }
}
/* ▼ お悩みセクション ▼ */
/* セクション全体 */
.raku-problems-section {
  background-color: #d8e2e9;
  padding: 60px 0 0;
  text-align: center;
}
/* タイトルの中のテキストに対して線を引く */
.raku-problems-title {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.4) 100%, transparent 100%);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* レイアウト：横並び */
.raku-problem-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 40px auto;
}
/* 2段目の並び替え */
.raku-problem-row-reverse {
  flex-direction: row-reverse;
}
/* 人物画像コンテナ */
.raku-person-face {
  flex-shrink: 0;
}
/* クラス名を使わず、子要素のimgを直接指定 */
.raku-person-face img:not(.raku-worry-icon) {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #fff;
  display: block;
}
/* 吹き出しグループ */
.raku-problem-bubble-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}
.raku-problem-row-reverse .raku-problem-bubble-group {
  align-items: flex-start;
}
/* 吹き出し単体 */
.raku-problem-bubble {
  position: relative;
  background: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
/* 吹き出しの尻尾（1つ目のグループ：右側の人物に向かう） */
.raku-problem-row:not(.raku-problem-row-reverse) .raku-problem-bubble::after {
  content: "";
  position: absolute;
  right: -10px; /* 右側に配置 */
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
}
/* 吹き出しの尻尾（2つ目のグループ：左側の人物に向かう） */
.raku-problem-row.raku-problem-row-reverse .raku-problem-bubble::after {
  content: "";
  position: absolute;
  left: -10px; /* 左側に配置 */
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #fff transparent transparent;
}
/* 吹き出しのバラつき演出 */
.raku-problem-row .raku-problem-bubble:nth-child(2) {
  margin-right: -20px;
}
.raku-problem-row-reverse .raku-problem-bubble:nth-child(2) {
  margin-left: -20px;
}
/* フッター */
.raku-problem-footer {
  background-color: #8d9399;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-weight: bold;
}
.raku-problem-footer p {
  font-size: 2.5rem !important;
  text-align: center;
}
.raku-problem-footer img {
  width: 35px;
}
/* スマホ対応 */
@media (max-width: 650px) {
  .raku-problems-title {
    font-size: 2.5rem;
    text-align: center;
  }
  .raku-problem-row, .raku-problem-row-reverse {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .raku-problem-bubble-group {
    align-items: center !important;
  }
  .raku-problem-bubble::after {
    display: none;
  }
  .raku-problem-bubble {
    white-space: normal;
    text-align: center;
  }
  .raku-problem-bubble:nth-child(n) {
    margin: 0;
    letter-spacing: 0;
  }
  .raku-person-face img:not(.raku-worry-icon) {
    width: 140px;
    height: 140px;
  }
  .raku-problem-bubble {
    font-size: 1.5rem;
  }
  .raku-problem-footer {
    font-size: 2rem;
  }
}
/* 人物画像コンテナ */
.raku-person-face {
  flex-shrink: 0;
  position: relative; /* アイコンの基準位置 */
  overflow: visible; /* 重要：アイコンが枠の外にはみ出しても表示されるようにする */
}
/* アイコンの共通設定 */
.raku-worry-icon {
  position: absolute;
  width: 40px; /* アイコンのサイズ（少し大きめに調整） */
  height: auto;
  z-index: 1; /* 必要に応じて数値を調整 */
}
/* 1枚目の右上：外側に大きくずらす */
.icon-right-top {
  top: -20px; /* 上に30pxずらす */
  right: -30px; /* 右に40pxずらす */
}
/* 2枚目の左上：外側に大きくずらす */
.icon-left-top {
  top: -20px; /* 上に30pxずらす */
  left: -30px; /* 左に40pxずらす */
}
/* スマホ時の調整 */
@media (max-width: 650px) {
  .raku-worry-icon {
    width: 30px;
  }
  .icon-right-top {
    top: -10px;
    right: -20px; /* スマホは画面が狭いので少し控えめに */
  }
  .icon-left-top {
    top: 0;
    left: -20px;
  }
}
/* ソリューションセクション全体の背景設定 */
.raku-solution-bg {
  width: 100%;
  min-height: 500px;
  background-color: #f4f9f4;
  background-image:
    linear-gradient(to right, #f4f9f4 0%, #f4f9f4 30%, rgba(244, 249, 244, 0) 70%), url('img/palb-image3_3.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 120%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 0;
  box-sizing: border-box;
}
/* テキストコンテンツの箱 */
.raku-solution-box {
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}
/* 見出し：白背景 */
.raku-solution-head {
  display: inline-block;
  background: #fff;
  padding: 10px 20px;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
/* 説明文 */
.raku-solution-text {
  margin-left: 30px;
}
.raku-solution-img {
  width: 300px;
  margin: 30px 0 0 30px;
}
/* スマホ対応（縦並び） */
@media (max-width: 768px) {
  .raku-solution-bg {
    flex-direction: column;
    background-image: none;
    padding: 0;
    min-height: auto;
  }
  .raku-solution-bg::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-image: url('img/palb-image3_3.jpg');
    background-size: cover;
    background-position: center;
  }
  .raku-solution-box {
    padding: 40px 20px;
    background-color: #f4f9f4;
  }
  .raku-solution-head {
    font-size: 2rem;
    box-sizing: border-box;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }
  .raku-solution-text {
    font-size: 1.5rem;
    margin: 0;
  }
  .raku-solution-img {
    width: 100%;
    margin: 30px auto 0;
  }
}
/* ▼ Pointセクション（共通） ▼ */
.raku-points-container {
  /* コンテナ自体の最大幅制限を解除して背景を横いっぱいに広げる */
  width: 100%;
  margin: 0 auto;
}
.raku-point-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 5%;
  box-sizing: border-box;
  position: relative;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
/* 奇数番目(1, 3, 5): テキストを左、画像を右 */
.raku-point-section:nth-child(odd) {
  flex-direction: row; /* デフォルト */
  background-position: right center;
}
.raku-point-section:nth-child(odd) .raku-point-text {
  margin-right: auto; /* 右側に余白を作って左に寄せる */
  margin-left: 0;
}
/* 偶数番目(2, 4, 6): テキストを右、画像を左 */
.raku-point-section:nth-child(even) {
  flex-direction: row-reverse; /* 要素の並びを反転 */
  background-position: left center;
}
.raku-point-section:nth-child(even) .raku-point-text {
  margin-left: auto; /* 左側に余白を作って右に寄せる ★ここがポイント */
  margin-right: 0;
  text-align: left; /* 文字自体は左揃えを維持 */
}
/* テキストエリア自体の幅を制限（画像と重なりすぎないように） */
.raku-point-text {
  width: 100%;
  max-width: 400px; /* ここでお好みの横幅に制限してください */
  z-index: 2;
  box-sizing: border-box;
}
/* POINT 01 */
.raku-point-01 {
  background-image:
    linear-gradient(to right, #eee5db 0%, #eee5db 40%, rgba(244, 249, 244, 0) 70%), url('img/palb-point1.jpg');
}
/* POINT 02 */
.raku-point-02 {
  background-image:
    linear-gradient(to left, #eee5db 0%, #eee5db 40%, rgba(244, 249, 244, 0) 70%), url('img/palb-point2.jpg');
}
/* POINT 03 */
.raku-point-03 {
  background-image:
    linear-gradient(to right, #eee5db 0%, #eee5db 40%, rgba(244, 249, 244, 0) 70%), url('img/palb-point3.jpg');
}
/* POINT 04 */
.raku-point-04 {
  background-image:
    linear-gradient(to left, #eee5db 0%, #eee5db 40%, rgba(244, 249, 244, 0) 70%), url('img/palb-point4.jpg');
}
/* POINT 05 */
.raku-point-05 {
  background-image:
    linear-gradient(to right, #eee5db 0%, #eee5db 40%, rgba(244, 249, 244, 0) 70%), url('img/palb-point5.jpg');
}
/* POINT 06 */
.raku-point-06 {
  background-image:
    linear-gradient(to left, #eee5db 0%, #eee5db 40%, rgba(244, 249, 244, 0) 70%), url('img/palb-point6.jpg');
}
/* ★ Pointタイトルエリア：円と見出しを横並びにする */
.raku-point-header {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  align-items: center;
}
/* Point番号（円） */
.raku-point-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.raku-point-label {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 3px;
}
.raku-point-number {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}
.raku-point-title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
  margin: 0;
}
/* 元のimgタグは背景画像にするため非表示に（または消去） */
.raku-point-img-wrap {
  display: none;
}
/* スマホ対応 */
@media (max-width: 768px) {
  .raku-point-section {
    flex-direction: column !important;
    background-image: none !important; /* 背景画像を消す */
    padding: 0;
    min-height: auto;
  }
  /* 各セクションの画像を上に表示 */
  .raku-point-section::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
  }
  /* スマホ用個別画像設定 */
  .raku-point-01::before {
    background-image: url('img/palb-point1.jpg');
    background-size: 120%;
    background-position: right center;
  }
  .raku-point-02::before {
    background-image: url('img/palb-point2.jpg');
    background-size: 130%;
    background-position: left center;
  }
  .raku-point-03::before {
    background-image: url('img/palb-point3.jpg');
    background-size: 120%;
    background-position: right center;
  }
  .raku-point-04::before {
    background-image: url('img/palb-point4.jpg');
    background-size: 140%;
    background-position: left center;
  }
  .raku-point-05::before {
    background-image: url('img/palb-point5.jpg');
    background-size: 140%;
    background-position: right center;
  }
  .raku-point-06::before {
    background-image: url('img/palb-point6.jpg');
    background-size: 140%;
    background-position: center;
  }
  .raku-point-text {
    padding: 40px 20px;
  }
  /* ★ スマホでは縦並びにする */
  .raku-point-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: center;
  }
  .raku-point-circle {
    margin: 0 auto;
    width: 80px;
    height: 80px;
  }
  .raku-point-number {
    font-size: 3rem;
  }
  .raku-point-title {
    font-size: 2.3rem;
    margin: 0 auto;
  }
}
/* ▼ 洗練デザイン（淡いグリーン背景＋傾き画像） ▼ */
.raku-design-bg {
  background-color: #f4f9f4;
  padding: 60px 20px 100px;
  text-align: center;
  position: relative;
}
.raku-design-content {
  width: 100%;
  margin: 0 auto;
}
/* タイトル帯デザイン */
.raku-design-title-band {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  margin-bottom: 25px;
  background-color: #fff;
}
.raku-design-title-band h3 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
}
.raku-point-title span img {
  width: 30px;
}
.raku-design-content p {
  text-align: center;
  margin-bottom: 20px;
}
/* ポラロイド風画像配置 */
.raku-polaroid-container {
  position: relative;
  height: 400px;
  max-width: 800px;
  margin: 60px auto 0;
}
.raku-polaroid {
  position: absolute;
  width: 45%;
  background: #fff;
  padding: 10px 10px 40px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
/* 2枚の画像の配置を離す */
.raku-photo-1 {
  top: 0;
  left: 5%;
  transform: rotate(-10deg);
  z-index: 2;
}
.raku-photo-2 {
  top: 50px;
  right: 5%;
  transform: rotate(8deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .raku-design-bg {
    padding: 60px 20px 50px;
  }
  .raku-design-title-band h3 {
    font-size: 2.5rem;
  }
  .raku-point-title span img {
    width: 25px;
  }
  .raku-design-content p {
    text-align: justify;
  }
  .raku-polaroid-container {
    height: auto;
    text-align: center;
  }
  .raku-polaroid {
    position: relative;
    width: 90%;
    margin: 0 auto 20px;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
  }
}
/* ▼ コンセプト（背景画像あり＋右半分寄せ） ▼ */
.raku-voice-bg {
  background-color: #fff;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, #fff 60%), url('img/32943438_m.jpg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  padding: 80px 5%;
  display: flex;
  justify-content: flex-end;
}
.raku-voice-content-right {
  width: 45%;
  box-sizing: border-box;
  z-index: 2;
}
/* セクションタイトル（左寄せ） */
.raku-voice-content-right .raku-section-title {
  font-size: 2.2rem;
  margin: 0 0 20px;
  line-height: 1.4;
  background: #eee;
  padding: 10px;
}
/* 吹き出しの設定 */
.raku-voice-item {
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid #f0f0f0;
}
/* 吹き出しの尻尾（左向き） */
.raku-voice-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 25px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #fff; /* 吹き出し本体と同じ色 */
  filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.03));
}
.raku-voice-text {
  font-size: 1.3rem;
}
/* スマホ対応 */
@media (max-width: 768px) {
  /* セクションタイトル（左寄せ） */
  .raku-voice-content-right .raku-section-title {
    font-size: 2rem;
    text-align: center;
  }
  .raku-voice-bg {
    flex-direction: column;
    background-image: none;
    padding: 0;
    min-height: auto;
  }
  /* スマホでは画像を上に表示 */
  .raku-voice-bg::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url('img/32943438_m.jpg');
    background-size: cover;
    background-position: center;
  }
  .raku-voice-content-right {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    background-color: #fff;
  }
  .raku-voice-item::before {
    display: none;
  }
}
/* コンテナ（基準点） */
.raku-concept-container {
  position: relative; /* ボックスを重ねる基準 */
  width: 100%;
  line-height: 0; /* 画像の下にできる隙間を解消 */
}
/* コンセプト画像：横幅いっぱいに表示 */
.raku-concept-img {
  width: 100%;
  height: auto;
  display: block;
}
/* テキストボックス：右下に配置 */
.raku-concept-right-box {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 45%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}
/* テキストの装飾 */
.raku-concept-right-box h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px dotted;
}
.raku-concept-right-box p {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.blue {
  color: #3876DB;
}
.pink {
  color: #CB6E6F;
}
/* スマホ対応 */
@media (max-width: 768px) {
  .raku-concept-container {
    display: flex;
    flex-direction: column;
  }
  .raku-concept-right-box {
    position: static;
    width: 100%;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: none;
  }
  .raku-concept-right-box h2 {
    font-size: 1.7rem;
  }
}
/* ▼ ラインナップ（タイトルサイズ調整） ▼ */
.raku-section-title-lineup {
  margin: 60px 0 30px;
  text-align: center;
}
.raku-section-title-lineup .main-title {
  font-size: 32px;
  font-weight: bold;
  display: block;
}
.raku-section-title-lineup .sub-title {
  font-size: 16px;
  margin-top: 5px;
}
.raku-lineup-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}
.raku-product-card {
  background: #fff;
  width: 30%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.raku-product-card h3 {
  font-size: 1.5rem;
  letter-spacing: 0;
}
.raku-product-card p {
  text-align: center;
  font-size: 1.2rem;
  margin: 10px 0;
}
.raku-product-card p span {
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  margin-right: 5px;
}
.size_m {
  background: #a77899;
}
.size_l {
  background: #786956;
}
.size_xl {
  background: #707071;
}
/* スマホ対応 */
@media (max-width: 768px) {
  .raku-product-card {
    width: 100%;
  }
}