/*
Theme Name:mkFaceLift
*/
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", sans-serif;
  background: #f0f4f8;
  color: #333;
}

.thanks-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.thanks-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
}

.thanks-box h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.thanks-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.back-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background: #0056b3;
}
/* セルフチェックフォーム全体 */
.selfCheckForm {
    background: #fff0f5;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.4);
    font-family: "Helvetica Neue", "Arial", sans-serif;
    max-width: 400px;
    margin: auto;
}

/* チェックラベル */
.selfCheckForm label {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #d63384;
    cursor: pointer;
}

/* チェックボックス */
.selfCheckForm input[type="checkbox"] {
    accent-color: #ff69b4;
    transform: scale(1.2);
    margin-right: 8px;
}

/* 診断ボタン */
.diagnoseBtn {
    background: linear-gradient(to right, #ffe4e1, #f0e68c);
    color: #7c4a2d;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 999px;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
    box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.diagnoseBtn:hover {
    background: linear-gradient(to right, #ffddee, #fff5cc);
    transform: translateY(-1px);
}

/* 診断結果 */
.diagnosisResult {
    display: none;
    color: #7c4a2d;
    background: linear-gradient(to right, #fffafc, #fff0f5);
    border-left: 5px solid #ff69b4;
    padding: 16px 24px;
    font-size: 1.05rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 192, 203, 0.2);
    max-width: 400px;
    margin: 20px auto 0;
}

/* カウンセリングボタン */
.btn-counseling {
    display: inline-block;
    margin-top: 16px;
    padding: 16px 32px;
    background: #ff6f61; /* サーモンレッド（目にやさしい赤） */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 999px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 111, 97, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
}

.btn-counseling:hover {
    background: #ff8b75; /* 少し明るい赤 */
    color: #fff;
    box-shadow: 0 6px 12px rgba(255, 111, 97, 0.4);
    transform: translateY(-2px);
}
/* フォーム */
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  font-family: 'Noto Sans JP', sans-serif;
}

.contact-form .form-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;

}

.form-group .required {
  color: #d9534f;
  margin-left: 6px;
  font-size: 0.85rem;
		
}
.wpcf7-form-control-wrap input{
	border-bottom: 1px solid #ccc;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 2px;
  font-size: 1rem;
  border: none;
  border-bottom: 1.5px solid #ccc;
  background-color: transparent;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom: 2px solid #d17a8a;
  outline: none;
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-submit input[type="submit"] {
  background: #d17a8a;
  color: #fff;
  font-weight: bold;
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit input[type="submit"]:hover {
  background: #bb5f74;
}
/* Contact Form 7 の select 全体に適用 */
/* ラッパーでカスタム矢印を作る */
/* select を囲むラッパー */
.select-wrapper {
  position: relative;
  display: block;
}

/* select本体 */
.select-wrapper .styled-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-color: transparent;
  border: none;
  border-bottom: 1.5px solid #ccc;
  padding: 12px 40px 12px 10px;
  font-size: 1rem;
  width: 100%;
  color: #333;
  cursor: pointer;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

/* カスタム矢印 */
.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* フォーカス時 */
.select-wrapper .styled-select:focus {
  border-bottom: 2px solid #d17a8a;
  outline: none;
}
#wpcf7-f6-o1 form > div:nth-child(2) > div.form-title {
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  color: #c84b62 !important;
  text-align: center !important;
  padding: 20px 0 !important;
  background: linear-gradient(to right, #fff5f7, #fffafa) !important;
  border-radius: 8px !important;
  position: relative !important;
  margin-bottom: 30px !important;
  font-family: 'Noto Serif JP', serif !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 10px rgba(200, 75, 98, 0.1) !important;
}

#wpcf7-f6-o1 form > div:nth-child(2) > div.form-title::after {
  content: "" !important;
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 2px !important;
  background: #c84b62 !important;
  border-radius: 1px !important;
}
#wpcf7-f6-o1 textarea {
  width: 100% !important;
  height: 140px !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  border: 1.5px solid #ccc !important;
  border-radius: 10px !important;
  background-color: #fefefe !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05) !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  resize: vertical !important;
  color: #333 !important;
}

#wpcf7-f6-o1 textarea:focus {
  border-color: #c84b62 !important;
  box-shadow: 0 0 0 3px rgba(200, 75, 98, 0.1) !important;
  outline: none !important;
  background-color: #fffdfd !important;
}

/* 診断 */
#selfCheckWizard {
  max-width: 480px;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: center;
}
.step {
  padding: 20px;
  border-radius: 10px;
  background: #fff0f5;
  box-shadow: 0 4px 8px rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
}
.answer-btn {
  margin: 8px;
  padding: 12px 24px;
  font-size: 1.1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(to right, #ff69b4, #f0e68c);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.answer-btn:hover {
  opacity: 0.9;
}
.btn-counseling {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background: linear-gradient(to right, #ff6f61, #f0e68c);
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-counseling:hover {
  background: linear-gradient(to right, #ff9999, #fff2a8);
  color: #6b3e2e;
}
#selfCheckFormSubmit input {
  padding: 10px;
  width: 90%;
  max-width: 360px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
}
#wpcf7-f16-o1 form p:nth-of-type(1) span input {
  background-color: #fff0f5;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ccc;
	    width: 100%;
		margin:10px auto;
}
#wpcf7-f16-o1 form p:nth-of-type(2) span input {
  background-color: #fff0f5;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ccc;
	    width: 100%;
	margin:10px auto;
}
#wpcf7-f16-o1 form p:nth-of-type(4) input[type="submit"] {
  background: linear-gradient(to right, #ff69b4, #f0e68c);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
}

#wpcf7-f16-o1 form p:nth-of-type(4) input[type="submit"]:hover {
  background: linear-gradient(to right, #ffa6c9, #fff9c4);
  color: #6b3e2e;
  box-shadow: 0 6px 12px rgba(255, 182, 193, 0.4);
  transform: translateY(-2px);
}
/* カレンダー入力欄（input[type="date"]） */
#wpcf7-f16-o1 form p:nth-of-type(3) input[type="date"] {
  width: 100%;
  max-width: 360px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: sans-serif;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fffafc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: #333;
  transition: all 0.3s ease;
	margin:10px auto;
}

#wpcf7-f16-o1 form p:nth-of-type(3) input[type="date"]:focus {
  outline: none;
  border-color: #ff69b4;
  box-shadow: 0 0 0 3px rgba(255,105,180,0.2);
}
/*  twenty*/
.swiper {
  padding: 40px 0;
}

.swiper-slide {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twentytwenty-container {
  width: 100%;
  height: auto;
  position: relative;
  max-width: 600px;
  margin: auto;
}

.twentytwenty-container img {
  width: 100%;
  height: auto;
  display: block;
}
.ba-swiper-thumbs {
  max-width: 600px;
  margin: 30px auto;
}

.ba-swiper-thumbs .swiper-slide {
  width: auto;
  cursor: pointer;
  padding: 5px;
}

.ba-swiper-thumbs img {
  width: 100px;
  height: auto;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.ba-swiper-thumbs img:hover {
  border-color: #ff69b4;
}
#wpcf7-f6-o2 textarea {
  width: 100% !important;
  min-height: 140px !important;
  padding: 14px 16px !important;
  font-size: 1rem !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  border: 1.5px solid #ccc !important;
  border-radius: 10px !important;
  background-color: #fefefe !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  resize: vertical !important;
  color: #333 !important;
}

/* フォーカスしたときの演出（バラのようなピンク） */
#wpcf7-f6-o2 textarea:focus {
  border-color: #c84b62 !important;
  background-color: #fffdfd !important;
  box-shadow: 0 0 0 3px rgba(200, 75, 98, 0.1) !important;
  outline: none !important;
}

/* プレースホルダーが薄すぎる場合の明示 */
#wpcf7-f6-o2 textarea::placeholder {
  color: #aaa !important;
  font-style: italic;
}
#wpcf7-f16-o1 form p:nth-of-type(3) input[type="date"] {
    width: 100%;
    max-width: 360px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: sans-serif;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fffafc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    color: #333;
    transition: all 0.3s ease;
    margin: 10px auto;
}
.price-table {
  max-width: 700px;
  margin: 10px auto;
  padding: 40px;
  background-color: #fffdfd;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  font-family: 'Noto Sans JP', sans-serif;
}

.price-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #c84b62; /* バラを意識した高級ローズカラー */
  margin-bottom: 32px;
  position: relative;
}

.price-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c84b62;
  margin: 12px auto 0;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.price-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.price-amount {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  text-align: right;
}

.price-tax {
  display: block;
  font-size: 0.9rem;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}
#feedbackBox{
	margin:10px auto;
}
.before-after-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background: #fafafa;
}

.video-box {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 480px;
}

.video-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #b22222; /* 落ち着いた赤 */
  text-align: center;
  border-bottom: 2px solid #b22222;
  padding-bottom: 6px;
}

.video-box video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .before-after-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video-box {
    flex: 1 1 100%;
  }
}
.lift-lp {
  background: linear-gradient(145deg, #fffaf5, #fff);
  padding: 60px 20px;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
}
.lift-lp .container {
  max-width: 960px;
  margin: auto;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  color: #cc6699;
  font-weight: bold;
  line-height: 1.4;
}
.section-title .highlight {
  background: linear-gradient(transparent 60%, #ffe9f0 60%);
}
.section-title .lead {
  font-size: 1.1rem;
  color: #555;
}
.lift-feature {
  background: #fff;
  border: 2px solid #f6d8e8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(255, 192, 203, 0.2);
  transition: transform 0.3s;
}
.lift-feature:hover {
  transform: translateY(-5px);
}
.lift-feature h3 {
  font-size: 1.3rem;
  color: #d63384;
  margin-bottom: 10px;
  position: relative;
}
.lift-feature h3::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #d63384;
  border-radius: 50%;
	display:none;
}
.lift-feature p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
@media (max-width: 600px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
  .lift-feature {
    padding: 16px;
  }
  .lift-feature h3 {
    font-size: 1.1rem;
  }
  .lift-feature p {
    font-size: 0.95rem;
  }
}
.voice_video_wrap {
  width: 100%;
  max-width: 720px; /* ← 少し小さめに */
  margin: 60px auto 40px; /* 上に余白をしっかり、下は控えめ */
  padding: 0 16px; /* 横に余白を追加（スマホ対策） */
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.voice_video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #000;
}
/* セクション装飾 */
.lift-compare-full {
  background: #fffafc;
  padding: 60px 20px;
  text-align: center;
}
.lift-compare-full .section-title {
  font-size: 1.8rem;
  color: #cc6699;
  margin-bottom: 20px;
}
.pink-underline {
  background: linear-gradient(transparent 60%, #ffe9f0 60%);
}
.lift-compare-full .section-lead {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

/* テーブルラップ（スマホ横スクロール対応） */
.table-scroll {
  overflow-x: auto;
  margin: 0 auto 40px;
  -webkit-overflow-scrolling: touch;
}
.table-scroll::-webkit-scrollbar {
  height: 6px;
}
.table-scroll::-webkit-scrollbar-thumb {
  background: #f4c5d8;
  border-radius: 3px;
}

/* テーブル本体 */
.styled-compare-table {
  min-width: 800px;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.styled-compare-table thead {
  background: linear-gradient(90deg, #f8e0e9, #fff6f0);
}
.styled-compare-table thead th {
  color: #b88b4a;
  font-weight: bold;
  padding: 14px 12px;
  text-align: center;
  border-bottom: 2px solid #f2d9e6;
  font-size: 1rem;
}
.styled-compare-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid #f7eef3;
  color: #444;
  vertical-align: top;
  text-align: center;
}
.styled-compare-table tbody tr:nth-child(even) {
  background: #fffdfc;
}
.styled-compare-table tbody tr:hover {
  background: #fff2f7;
}
.styled-compare-table td strong {
  color: #cc3366;
}
.styled-compare-table small {
  display: block;
  font-size: 0.85em;
  color: #999;
}

/* CTA */
.cta-wrap {
  margin-top: 30px;
}
.cta-btn {
  background: #cc3366;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #b12c5a;
}
.age-solution-section {
  background: #fff6fa;
  padding: 60px 20px;
  text-align: center;
}
.age-solution-section .section-title {
  font-size: 1.8rem;
  color: #cc6699;
  margin-bottom: 20px;
}
.age-solution-section .pink-underline {
  background: linear-gradient(transparent 60%, #ffe0eb 60%);
}
.age-solution-section .section-lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.age-slider-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
.age-slider {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding-bottom: 10px;
}
.age-box {
  flex: 0 0 280px;
  background: #fff;
  border: 2px solid #f6d8e8;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(255, 192, 203, 0.15);
  text-align: left;
}
.age-box h3 {
  font-size: 1.2rem;
  color: #d63384;
  margin-bottom: 10px;
}
.age-box ul {
  padding-left: 1em;
}
.age-box li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 6px;
}
.section-note {
  font-size: 1rem;
  color: #666;
  margin: 20px 0;
}
.cta-btn {
  background: #cc3366;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #b12c5a;
}
.legend-doctor-section {
  background: #fffaf5;
  padding: 60px 20px;
  text-align: center;
}
.legend-doctor-section .section-title {
  font-size: 1.8rem;
  color: #b84f7a;
  margin-bottom: 20px;
}
.pink-highlight {
  background: linear-gradient(transparent 60%, #ffe5ef 60%);
}
.legend-doctor-section .section-lead {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}
.doctor-quote {
  background: #fff;
  border-left: 4px solid #cc6699;
  margin: 0 auto 30px;
  padding: 20px;
  max-width: 600px;
  font-style: italic;
  font-size: 0.95rem;
  color: #666;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.doctor-quote .doctor-name {
  font-style: normal;
  margin-top: 12px;
  color: #cc3366;
  font-weight: bold;
}
.cta-wrap {
  margin-top: 20px;
}
.cta-btn {
  background: #cc3366;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #b12c5a;
}
