* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f5eee9;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4a342c;
	  font-family: "Noto Serif JP", "Yu Mincho", serif;
}

/* LPヘッダー・ハンバーガーメニュー
----------------------------------------- */
.lp-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: 750px;
  max-width: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

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

.lp-header-logo {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #9b7550;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(143, 98, 78, 0.1);
  backdrop-filter: blur(10px);
}

.lp-menu-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(220, 183, 170, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(143, 98, 78, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lp-menu-btn span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 1px;
  border-radius: 999px;
  background: #8a655b;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.lp-menu-btn span:nth-child(1) {
  top: 17px;
}

.lp-menu-btn span:nth-child(2) {
  top: 24px;
}

.lp-menu-btn span:nth-child(3) {
  top: 31px;
}

.lp-menu-btn.is-open span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.lp-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.lp-menu-btn.is-open span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.lp-sp-menu {
  position: absolute;
  top: 74px;
  right: 20px;
  width: min(280px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(232, 202, 192, 0.85);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.94);
  box-shadow: 0 18px 42px rgba(143, 98, 78, 0.16);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.lp-sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lp-sp-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-sp-menu li + li {
  margin-top: 10px;
}

.lp-sp-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff8f5;
  color: #6a4f46;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-sp-menu a:hover {
  background: #f7dcd6;
  color: #9f5f58;
}

@media screen and (max-width: 767px) {
  .lp-header-inner {
    padding: 14px 16px;
  }

  .lp-header-logo {
    font-size: 16px;
  }

  .lp-sp-menu {
    top: 66px;
    right: 16px;
  }
}

.fv {
  position: relative;
  overflow: hidden;
  background: #fff7f3;
}

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

.fv-copy {
  position: absolute;
  left: 24px;
  right: 24px;
    top: 25px;
  z-index: 2;
  color: #4a342c;
  text-align: center;
}

.fv-brand {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.fv-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  font-weight: 700;
    color: #6a4f46;
}

.fv-lead {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 600px) {
	.fv-title{
    font-size: 25px;		
	}
}
.lp-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px) 1fr;
  min-height: 100vh;
}

.lp-main {
  width: 100%;
  background: #fffaf7;
  box-shadow: 0 0 40px rgba(90, 60, 45, 0.12);
  overflow: hidden;
}

.visual-section img {
  display: block;
  width: 100%;
  height: auto;
}

.side {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.side-left {
  background-image: url("../images/pc-left.webp");
}

.side-right {
  background-image: url("../images/pc-right.webp");
}

.diagnosis {
  padding: 40px 22px;
  background: linear-gradient(180deg, #fffaf7 0%, #f7e6df 100%);
  text-align: center;
}

.diagnosis h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
    color: #836259;
}

.diagnosis p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
}

.question {
  display: none;
  margin-top: 24px;
  padding: 24px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(126, 84, 66, 0.12);
}

.question.is-active {
  display: block;
}

.question h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
}

.question button {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid #ead1c7;
  border-radius: 999px;
  background: #fff;
  color: #4a342c;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
}

.question button:hover {
  background: #f8e7df;
}
#result-image{
    width: 100%;
	border-radius: 30px;
}


.result {
  margin-top: 24px;
  padding: 26px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(126, 84, 66, 0.12);
}

.result h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.result p {
  margin-bottom: 22px;
}

.cta-section {
  padding: 32px 22px 40px;
  background: #fffaf7;
}

.cta-button {
  display: block;
  width: 100%;
  padding: 17px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d98978, #b86f62);
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(184, 111, 98, 0.28);
}

.form {
  padding: 40px 22px;
  background: #fff;
}

.form h2 {
  margin: 0 0 20px;
  font-size: 22px;
  text-align: center;
}

@media (max-width: 767px) {
  .lp-layout {
    display: block;
  }

  .side {
    display: none;
  }

  .lp-main {
    box-shadow: none;
  }
}

/* btn */
.visual-section img {
  display: block;
  width: 100%;
  height: auto;
}

.fv-cta {
  padding: 26px 22px 34px;
  background: #fffaf7;
  text-align: center;
}

.fv-cta-text {
  margin: 0 0 16px;
  color: #6a4a40;
  font-size: 14px;
  line-height: 1.8;
}

.fv-button {
  display: block;
  width: 100%;
  padding: 17px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d98978, #b86f62);
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(184, 111, 98, 0.28);
    font-size: 130%;
}

.fv-cta-note {
  margin: 12px 0 0;
  color: #9a756a;
  font-size: 14px;
}

/* お客様の声
----------------------------------------- */
.voice-section {
  position: relative;
  padding: 70px 24px;
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 205, 198, 0.35), transparent 28%),
    radial-gradient(circle at 90% 88%, rgba(218, 178, 112, 0.18), transparent 30%),
    linear-gradient(180deg, #fffaf7 0%, #fff4ef 100%);
  overflow: hidden;
}

.voice-section::before {
  content: "";
  position: absolute;
  top: 28px;
  right: -36px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(238, 194, 186, 0.28);
  filter: blur(2px);
}

.voice-section::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.voice-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.section-en {
  margin: 0 0 8px;
  text-align: center;
  font-family: serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #c9a56d;
}

.voice-title {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #5f463e;
}

.voice-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, #c9a56d, transparent);
}

.voice-lead {
  margin: 20px 0 34px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: #8a6d64;
}

.voice-list {
  display: grid;
  gap: 18px;
}

.voice-card {
  position: relative;
  padding: 24px 22px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 202, 192, 0.8);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(167, 119, 99, 0.12);
  backdrop-filter: blur(8px);
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
  color: rgba(225, 173, 162, 0.28);
}

.voice-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.voice-icon {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8d8d3 0%, #fff1eb 100%);
  border: 1px solid rgba(214, 168, 155, 0.45);
  color: #b97870;
     font-family: serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.voice-user {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #6a4f46;
}

.voice-stars {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #c9a56d;
}

.voice-text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #6f5850;
  text-align: justify;
}

/* PCで少し余裕を出す場合 */
@media screen and (min-width: 768px) {
  .voice-section {
    padding: 90px 40px;
  }

  .voice-list {
    gap: 22px;
  }

  .voice-card {
    padding: 28px 30px;
  }

  .voice-title {
    font-size: 36px;
  }

  .voice-text {
    font-size: 15px;
  }
}

/* お問い合わせフォーム
----------------------------------------- */
.form {
  position: relative;
  padding: 76px 22px 90px;
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 208, 201, 0.45), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(212, 173, 103, 0.18), transparent 32%),
    linear-gradient(180deg, #fff8f4 0%, #fffdfb 100%);
  overflow: hidden;
}

.form::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(245, 214, 208, 0.5);
  filter: blur(3px);
}

.form::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 235, 229, 0.75);
}

.form h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 34px;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #5f463e;
}

.form h2::before {
  content: "CONTACT";
  display: block;
  margin-bottom: 8px;
  font-family: serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #c9a56d;
}

.form h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, #c9a56d, transparent);
}

.form .wpcf7 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

/* フォーム全体カード */
.form_table {
  padding: 24px 20px 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 202, 192, 0.82);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(167, 119, 99, 0.13);
  backdrop-filter: blur(8px);
}

.form_table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.form_table tr {
  display: block;
  padding: 0 0 20px;
}

.form_table th,
.form_table td {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  text-align: left;
  vertical-align: top;
}

.form_table th {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6a4f46;
}

.form_table th label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form_table td {
  font-size: 14px;
  color: #7a625a;
}

.form_table small {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 12px;
  color: #a58b82;
}

/* 必須ラベル */
.required {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3c9c2;
  color: #9f5f58;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

/* 入力欄 */
.form_table input[type="text"],
.form_table input[type="email"],
.form_table input[type="tel"],
.form_table input[type="number"],
.form_table textarea,
.form_table select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(218, 185, 175, 0.9);
  border-radius: 16px;
  background: #fffdfb;
  color: #5f463e;
 px;
  background: #fffdfb;
  color: #5f463e;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form_table textarea {
  min-height: 150px;
  resize: vertical;
}

.form_table input::placeholder,
.form_table textarea::placeholder {
  color: #c4aaa2;
}

.form_table input:focus,
.form_table textarea:focus,
.form_table select:focus {
  border-color: #d8a49a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232, 183, 174, 0.18);
}

/* 確認チェック */
.form_table .sousin {
  padding: 16px;
  border-radius: 16px;
  background: #fff8f5;
  border: 1px solid rgba(232, 202, 192, 0.75);
}

.form_table .wpcf7-acceptance {
  display: block;
}

.form_table .wpcf7-list-item {
  margin: 0;
}

.form_table .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.form_table input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d99b93;
}

/* 送信ボタン */
.submit_btn {
  margin-top: 10px;
  text-align: center;
}

.submit_btn p,
.wpcf7-box {
  margin: 0;
}

.submit_btn input[type="submit"],
.submit_btn .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 17px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d99b93 0%, #c9975f 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(177, 112, 91, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.submit_btn input[type="submit"]:hover,
.submit_btn .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(177, 112, 91, 0.3);
  opacity: 0.95;
}

/* Contact Form 7 エラー・完了メッセージ */
.form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #c86b62;
}

.form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: #6a4f46;
  background: #fff8f5;
  border: 1px solid rgba(232, 202, 192, 0.9);
}

.form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

/* PC調整 */
@media screen and (min-width: 768px) {
  .form {
    padding: 96px 40px 110px;
  }

  .form h2 {
    font-size: 36px;
  }

  .form_table {
    padding: 34px;
  }

  .form_table tr {
    grid-template-columns: 190px 1fr;
    gap: 22px;
    align-items: start;
    padding: 0 0 22px;
  }

  .form_table th {
    margin-bottom: 0;
    padding-top: 14px;
  }

  .form_table td {
    min-width: 0;
  }

  .submit_btn {
    max-width: 420px;
    margin: 16px auto 0;
  }
}

/* LP全体の左右背景アニメーション
----------------------------------------- */
.lp-layout {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  background: #fff8f4;
}

.lp-main {
  position: relative;
  z-index: 2;
  width: 550px;
  max-width: 100%;
  margin: 0 auto;
  background: #fffdfb;
}

.side {
  position: sticky;
  top: 0;
  flex: 1;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    #fff8f4,
    #f8d8d3,
    #fff1eb,
    #f4cfc7,
    #f8e7d2,
    #fffaf7
  );
  background-size: 400% 400%;
  animation: lpSideGradient 18s ease infinite;
}

/* 左右で少し動きに差を出す */
.side-right {
  animation-delay: -9s;
}

@keyframes lpSideGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ほんのり光の玉を重ねる */
.side::before,
.side::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.side::before {
  width: 280px;
  height: 280px;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.38);
  filter: blur(24px);
  animation: lpSideOrb 22s ease-in-out infinite;
}

.side::after {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 45%;
  transform: translateX(-50%);
  background: rgba(255, 223, 214, 0.35);
  filter: blur(28px);
  animation: lpSideOrb 26s ease-in-out infinite reverse;
}

@keyframes lpSideOrb {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate(-42%, 40px) scale(1.12);
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.45;
  }
}