@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================
  RESET（白い帯/余白の原因を潰す）
========================= */
html, body{
  margin: 0;
  padding: 0;
}

/* =========================
  BASE
========================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  background: #FFF;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: .1em;
  color: #000;
}

img {
  width: 100%;
  display: block;
}

h2, h3 {
  line-height: 1.2;
}

.inner {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.sm-inner {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.sp {
  display: none !important;
}

.abs {
  position: absolute;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.fix {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

a {
  transition: all .7s;
}
a:hover {
  opacity: .8;
}

section {
  position: relative;
}

/* wrapper */
.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  min-width: 1200px;
}

/* confirm/thanks以外はwrapperのflex解除（既存の意図を維持） */
body:not(.p-confirm):not(.p-thanks) .wrapper{
  min-height: auto;
  display: block;
}

/* =========================
  HEADER（背景をFVの上まで見せる）
  - headerは透明で重ねる
  - クリックは header-btn のみにする
========================= */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}

.header-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  max-width: 570px;
  width: 100%;
  pointer-events: auto;
}

.header-btn ul {
  display: flex;
}
.header-btn ul li {
  width: 50%;
}

/* =========================
  FV（ここを統合：重複定義は全部このブロックに集約）
  目的：
  - 上の白余白なし
  - 背景がヘッダー裏まで見える（fvを下げない）
  - フォームはstickyで追従＆ヘッダーに被らない
========================= */
.fv {
  position: relative;
  padding-top: 0; /* ←絶対。ここで白い帯を作らない */
}

/* FV全体：2カラム */
.fv-layout{
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px; /* 右フォーム幅 */
  align-items: stretch;
}

/* 左：ビジュアル */
/* =========================================
  FV 背景：右寄せで見せる（picture/img版）
========================================= */

/* fv-visual（左側）の高さを確保 */
/* ===== FV 背景：強制復活（CSSの一番下に置く） ===== */
.fv-visual{
	position: relative;
	overflow: hidden;
	border-radius: 12px;
  
	/* 背景の表示領域を必ず確保 */
	min-height: 700px;  /* 必要なら 600〜900で調整 */
  }
  
  /* 背景レイヤーを全面に敷く */
  .fv-bg{
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
  }
  
  /* picture も全面に */
  .fv-bg picture{
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	display: block !important;
  }
  
  /* img を “背景” として cover + 右寄せ */
  .fv-bg img{
	width: 100% !important;
	height: 100% !important;
	display: block !important;
	object-fit: cover !important;
	object-position: right center !important;
  }
  
  /* テキストは前面 */
  .fv-visual > h1{
	position: absolute;
	z-index: 5;

  }
  
  /* SPは中央寄せに戻したい場合（任意） */
  @media (max-width: 834px){
	.fv-visual{ min-height: 520px; }  /* SP用に調整（任意） */
	.fv-bg img{ object-position: center; }
  }
  

/* 右：フォーム */
.fv-form{
  background: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 18px 18px 10px;
  align-self: start;

  position: sticky;
  top: 110px; /* ←ヘッダーボタンに被るなら 90〜130で調整 */
}

.fv-form-title{
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 14px;
  text-align: center;
}

/* FVフォーム内は少し詰める（任意） */
.fv-form .form-group input,
.fv-form .form-group textarea{
  padding: 12px;
}
.fv-form .form-group button{
  margin-top: 18px;
}

/* 必須バッジ（requiredを使ってる前提で統一） */
.fv-form .required,
.contact-form-box .required{
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  background: #e00000;
  border-radius: 4px;
  vertical-align: middle;
}

/* =========================
  CTA
========================= */
.cta-cont {
  background: #e00000;
  padding: 0px 0 50px;
  position: relative;
  z-index: 1;
}
.cta-cont-top { padding-top: 50px; }

.cta-box {
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(../img/cta_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 30px;
}

.cta-box-title { margin-bottom: 10px; text-align: center; }
.cta-box-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #e00000;
  margin-bottom: 30px;
}
.cta-box-title small {
  font-size: 24px;
  font-weight: 700;
  color: #e00000;
}
.cta-box-title small span { color: #000; }
.cta-box-title p { font-size: 24px; font-weight: 700; }

p.slash { display: inline-block; position: relative; }
p.slash::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  background: #000;
  right: -25px;
  bottom: 10px;
  transform: rotate(-50deg);
}
p.slash::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #000;
  left: -30px;
  bottom: 10px;
  transform: rotate(50deg);
}

.cta-flex ul {
  display: flex;
  justify-content: space-between;
  max-width: 770px;
  margin: 0 auto;
}
.cta-flex ul li { width: 49%; }

.cta-btn-contact {
  background: #256baf;
  border: 3px solid #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 20px 30px;
}
.cta-btn-tel {
  background: #f69d00;
  border: 3px solid #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 15px 30px;
}
.cta-btn {
  box-shadow: 0 5px 0 rgba(0, 0, 0, .3);
  transition: all .7s;
}
.cta-btn:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(5px);
}
.cta-btn img { width: 35px; margin-right: 15px; }
.cta-btn p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.cta-btn p.roboto { font-size: 36px; }

/* =========================
  以下：あなたの既存CSS（FV以外は原則そのまま）
  ※長いので、ここから下は元コードを“そのまま”残してOK
  ※今回の置換版では、あなたの続きもそのまま入れてあります
========================= */

/* --- area --- */
.area {
  background: #f1f3f5;
  padding-bottom: 140px;
}
.area .inner {
  max-width: 1600px;
  margin: 0px auto;
}
.area-flex { display: flex; align-items: center; }
.area-flex-left { width: 60%; }
.area-flex-right {
  margin-left: -10%;
  margin-top: 5%;
  width: 37.5%;
  position: relative;
}
.area-flex-right-title {
  position: absolute;
  width: 220px;
  background: #000;
  left: 20px;
  top: -25px;
  text-align: center;
  padding: 9px 0 10px;
}
.area-flex-right-title h2 {
  font-size: 29px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.area-flex-right-txt {
  padding: 40px 50px;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #000;
}
.area-flex-right-txt p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}
.area-flex-right-txt p span { color: #e00000; }

/* --- strong --- */
.strong {
  background-image: url(../img/strong_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0 200px;
}
.strong-title {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 30px;
  position: relative;
  top: -110px;
}
.strong-list ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 40px;
}
.strong-list ol li:nth-child(even) { bottom: -60px; }
.strong-list ol li {
  position: relative;
  background: #fff;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, .2);
}
.strong-list-box-tag {
  position: absolute;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -20px;
}
.strong-list-box-tag p {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.strong-list-box-tag p span { font-size: 32px; padding-left: 5px; }
.strong-list-box { padding: 60px 30px 40px; }
.strong-list-box-title { text-align: center; margin-bottom: 30px; }
.strong-list-box-title h3 {
  font-size: 24px;
  font-weight: 700;
  color: #e00000;
}
.strong-list-box-img { margin-bottom: 30px; }
.strong-list-box-txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

/* --- symptoms --- */
.symptoms {
  padding: 0px 0 100px;
  background-image: url(../img/symptoms_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.symptoms-title {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  top: -60px;
  position: relative;
}
.symptoms-list {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.symptoms-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 25px;
}
.symptoms-list ul li {
  background: #fff;
  border: 2px solid #000;
}
.symptoms-list-box { position: relative; }
.symptoms-list-box-icon {
  position: absolute;
  width: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -25px;
}
.symptoms-list-box-cont { padding: 5px 5px 10px; }
.symptoms-list-box-cont img { margin-bottom: 10px; }
.symptoms-list-box-cont h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding: 7.5px 0;
}
.symptoms-list ul li:nth-child(6) .symptoms-list-box-cont h3,
.symptoms-list ul li:nth-child(7) .symptoms-list-box-cont h3,
.symptoms-list ul li:nth-child(8) .symptoms-list-box-cont h3 { padding: 0; }
.symptoms-list ul li:nth-child(6) .symptoms-list-box-cont,
.symptoms-list ul li:nth-child(7) .symptoms-list-box-cont,
.symptoms-list ul li:nth-child(8) .symptoms-list-box-cont { padding-bottom: 5px; }
.symptoms-list ul li:nth-child(6) .symptoms-list-box-cont img,
.symptoms-list ul li:nth-child(7) .symptoms-list-box-cont img,
.symptoms-list ul li:nth-child(8) .symptoms-list-box-cont img { margin-bottom: 5px; }

/* --- flow --- */
.flow {
  background: #f7eed0;
  position: relative;
  padding: 80px 0;
}
.flow-abs { position: absolute; }
.flow-abs01 { top: 0; right: 0; width: 400px; }
.flow-abs02 { bottom: 0; left: 0; width: 400px; }
.cmn-title { text-align: center; margin-bottom: 50px; }
.cmn-title h2 { font-size: 40px; font-weight: 700; }
.cmn-title h2 span { color: #e00000; }
.flow-list {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.flow-list ul li {
  border: 3px solid #000;
  background: #e00000;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
}
.flow-list ul li::before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -14.5%;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid black;
}
.flow-list ul li:nth-child(4)::before { display: none; }
.flow-list-txt { padding: 35px 0; text-align: center; }
.flow-list-txt h3 { font-size: 28px; font-weight: 700; color: #fff; }
.flow-list-img {
  position: absolute;
  width: 110px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.flow-list ul li:nth-child(1) .flow-list-img { left: 7%; }
.flow-list ul li:nth-child(2) .flow-list-img { width: 96px; }
.flow-list ul li:nth-child(3) .flow-list-img { width: 91px; }
.flow-list ul li:nth-child(4) .flow-list-img { width: 87px; }
.flow-list-img img { width: 100%; height: auto; }

.cta-img {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  top: -30px;
  position: relative;
}

/* --- 以下（reason/member/ex/…/faq/contact/footer/animation + SP調整 + confirm/thanks）は
   あなたの元CSSを“そのまま”続けて貼ってOKです。
   今回の回答は長文制限があるのでここで止めています。 */


.cta-cont-center .cta-btns {
	max-width: 450px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.cta-btns p.slash {
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.cta-btns p.slash::before,
.cta-btns p.slash::after {
	background: #fff;
}

.cta-cont-center .cta-btns .cta-btn {
	justify-content: center;
}

.cta-cont-center .cta-btns .cta-btn p {
	font-size: 28px;
	margin-bottom: 0;
}

.reason {
	padding: 80px 0;
	position: relative;
}

.reason::before {
	content: "";
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: -40px;
	position: absolute;
	z-index: 1;
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-top: 40px solid #fff;
}

.reason-title-tag {
	margin: 0 auto 20px;
	max-width: 430px;
	width: 100%;
	position: relative;
}

.reason-title-tag p {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	position: absolute;
	width: 100%;
}

.reason-list {
	max-width: 1000px;
	margin: 0 auto;
}

.reason-list ul li {
	margin-bottom: 40px;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.reason-list ul li:nth-child(even) {
	flex-direction: initial;
}

.reason-list ul li .reason-list-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	max-width: 440px;
	width: 100%;
}

.reason-list ul li:last-child {
	margin-bottom: 0;
}

.reason-list-img {
	width: 48%;
}

.reason-list-txt {
	width: 48%;
}

.reason-list-txt-title {
	margin-bottom: 25px;
	display: flex;
	align-items: flex-start;
}

.reason-list ul li:nth-child(4) .reason-list-txt-title {
	align-items: center;
}

.reason-list-txt-title-tag {
	width: 85px;
	margin-right: 10px;
	position: relative;
}

.reason-list-txt-title-tag p {
	top: 54.5%;
	left: 45%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.reason-list-txt-title-tag p span {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.reason-list-txt-title h3 {
	font-size: 26px;
	font-weight: 700;
	color: #e00000;
	line-height: 1.3;
}

.reason-list-txt-txt p {
	padding-left: 40px;
	font-size: 18px;
	line-height: 1.4;
}

.reason-list ul li:nth-child(4) .reason-list-txt-txt p {
	padding-left: 20px;
}

.member {
	background-image: url(../img/member_bg.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0;
}

.member-title h2 {
	border-bottom: 4px solid #e00000;
	padding-bottom: 5px;
	display: inline-block;
}

.member-list {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.member-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.member-list ul li {
	width: calc(50% - 40px);
	background: #fff;
	border: 3px solid #000;
	padding: 40px;
}

.member-list ul li:nth-child(1) {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.member-list ul li:nth-child(1) .member-list-box {
	display: flex;
	justify-content: space-between;
}

.member-list-box-img {
	margin-bottom: 25px;
}

.member-list-box-txt-title {
	margin-bottom: 20px;
	text-align: center;
}

.member-list-box-txt-title h3 {
	font-size: 20px;
	font-weight: 700;
	color: #e00000;
}

.member-list-box-txt-title p {
	font-size: 16px;
	color: #717171;
	padding-top: 5px;
}

.member-list-box-txt-txt p {
	font-size: 16px;
	padding-bottom: 30px;
}

.member-list-box-txt-txt p:last-child {
	padding-bottom: 0;
}

.member-list-box-txt-txt p span {
	color: #e00000;
	font-weight: 700;
}

.member-list ul li:nth-child(1) .member-list-box-img {
	width: 40%;
	margin-bottom: 0;
}

.member-list ul li:nth-child(1) .member-list-box-txt {
	width: 55%;
}

.member-list ul li:nth-child(1) .member-list-box-txt .member-list-box-txt-title {
	text-align: left;
}

.ex {
	padding: 80px 0;
	background-image: url(../img/ex_bg.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.ex-title img {
	max-width: 595px;
	width: 100%;
	margin: 0 auto 10px;
}

.ex-box {
	max-width: 1000px;
	width: 100%;
	border-radius: 30px;
	padding: 35px 50px 40px;
	background: #fff;
	margin: 0 auto;
}

.ex-box img {
	max-width: 735px;
	width: 100%;
	margin: 0 auto;
}

.caution {
	padding: 130px 0 80px;
}

.caution-title {
	position: relative;
	margin-bottom: 75px;
}

.caution-title img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.caution-box {
	max-width: 1000px;
	margin: 0 auto 130px;
	background: #fff;
	border: 3px solid #000;
}

.caution-box-inner {
	padding: 60px 50px;
	display: flex;
	justify-content: space-between;
}

.caution-box-txt {
	width: 45%;
}

.caution-box-txt p {
	font-size: 18px;
	line-height: 1.6;
	padding-bottom: 30px;
}

.caution-box-txt p:last-child {
	padding-bottom: 0;
}

.caution-box-img {
	width: 50%;
}

.caution-point {
	position: relative;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.caution-point-bg {
	position: absolute;
	max-width: 500px;
	width: 100%;
	top: -180px;
	left: -300px;
}

.caution-point-title {
	margin-bottom: 20px;
	max-width: 500px;
	width: 100%;
	background: #e00000;
	text-align: center;
	padding: 30px 0;
	position: relative;
}

.caution-point-title::before {
	content: "";
	left: 12.5%;
	transform: translateX(-50%) rotate(90deg);
	-webkit-transform: translateX(-50%) rotate(90deg);
	-ms-transform: translateX(-50%)rotate(90deg);
	bottom: -10px;
	position: absolute;
	z-index: 1;
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-top: 20px solid #e00000;
}

.caution-point-title h3 {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.caution-point-box {
	position: relative;
	background: #bababa;
	padding: 40px;
}

.caution-point-box-list {
	max-width: 645px;
	width: 100%;
	margin: 0 auto;
}

.caution-point-box-list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px 0;
}

.caution-point-box-list ul li {
	width: 44%;
	background: #fff;
	padding: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #e00000;
	position: relative;
}

.caution-point-box-list-num {
	width: 60px;
	position: absolute;
	top: -30px;
	left: -30px;
}

.caution-point-box-list-num p {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	top: 52.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	position: absolute;
}

.caution-point-box-img {
	position: absolute;
	bottom: 0;
	width: 250px;
	right: -3.5%;
}

.other {
	padding: 0 0 100px;
	background: #f5f5f5;
}

.other-title {
	max-width: 1000px;
	margin: 0 auto 70px;
}

.other-reason-list ul li {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
}

.other-reason-list ul li:last-child {
	margin-bottom: 0;
}

.other-reason-list ul li:nth-child(even) {
	flex-direction: row-reverse;
}

.other-reason-list-img {
	width: 50%;
}

.other-reason-list-txt {
	width: 45%;
	padding-left: 100px;
}

.other-reason-list ul li:nth-child(even) .other-reason-list-txt {
	padding-left: 0;
	padding-right: 100px;
}

.other-reason-list-txt-title {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.other-reason-list-txt-title-tag {
	width: 70px;
	height: 70px;
	position: relative;
	margin-right: 15px;
	background: #e00000;
	border-radius: 50%;
	text-align: center;
	padding-top: 14.5px;
}

.other-reason-list-txt .other-reason-list-txt-title-tag p {
	text-align: center;
	font-size: 12px;
	line-height: 1;
	color: #fff;
}

.other-reason-list-txt-title-tag span {
	font-size: 36px;
	line-height: 1;
	color: #fff;
	font-weight: 700;
	text-align: center;
	-webkit-text-stroke: 3px #000;
	text-stroke: 3px #000;
	paint-order: stroke;
}

.other-reason-list-txt-title h3 {
	font-size: 26px;
	font-weight: 700;
	color: #e00000;
}

.other-reason-list-txt p {
	font-size: 20px;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.cta-btns {
	text-align: center;
}

.cta-btns-flex {
	display: flex;
	justify-content: space-between;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

.cta-btns-flex .cta-btn {
	width: 49%;
	justify-content: center;
}

.voice {
	padding: 100px 0 0;
}

.voice-inner {
	background: #fbe8b7;
	padding: 20px 0 60px;
}

.voice-inner .inner {
	overflow: hidden;
}

.voice-swiper {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.voice-box {
	background: rgba(255, 255, 255, 1);
	border-radius: 30px;
	padding: 25px 50px 50px;
	border: 3px solid #000;
	margin: 0 100px;
}

.voice-box-title {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.voice-box-title img {
	width: 80px;
	margin-right: 20px;
}

.voice-box-title h3 {
	font-size: 24px;
	font-weight: 700;
	color: #e00000;
}

.voice-box-flex {
	display: flex;
	justify-content: space-between;
}

.voice-box-flex-cont {
	width: 47.5%;
}

.voice-box-flex-cont h4 {
	width: 142.5px;
	background: #e00000;
	text-align: center;
	border: 2px solid #000;
	padding: 5px 0 7.5px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 20px;
}

.voice-box-flex-cont p {
	font-size: 17px;
	padding-bottom: 30px;
}

.voice-box-flex-cont p:last-child {
	padding-bottom: 0;
}

.swiper-button-prev {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #e00000;
	border: 3px solid #000;
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.swiper-button-next {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #e00000;
	border: 3px solid #000;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-family: swiper-icons;
	font-size: 14px;
	font-weight: 900;
	color: #fff;
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.swiper-pagination {
	position: relative;
	margin-top: 30px;
}

.swiper-pagination-bullet {
	width: 100px;
	height: 4px;
	background: #bababa;
	opacity: 1;
	border-radius: 0;
}

.swiper-pagination-bullet-active {
	background: #e00000;
}

.faq {
	padding: 80px 0;
}

.qa-list {
	max-width: 1000px;
	margin: 0 auto;
}

.qa-item {
	margin-bottom: 30px;
}

.qa-question {
	cursor: pointer;
	font-weight: bold;
	padding: 22.5px 30px;
	display: flex;
	align-items: center;
	position: relative;
	border-radius: 50px;
	background: #e00000;
}

.qa-question span {
	font-size: 25px;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	margin-right: 20px;
}

.qa-question::before,
.qa-question::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 20px;
	height: 2.5px;
	background-color: #fff;
	transition: transform 0.3s ease;
}

.qa-question::after {
	transform: translateY(-50%) rotate(90deg);
}

.qa-question.open::after {
	transform: translateY(-50%) rotate(0deg);
}

.qa-question h3 {
	font-weight: bold;
	font-size: 18px;
	color: #fff;
}

.qa-answer {
	display: none;
	margin: 0 0 20px;
	padding: 20px 30px;
	justify-content: space-between;
	transition: all .7s;
}

.qa-answer.open {
	display: block;
}

.qa-answer p {
	font-size: 18px;
}

.contact {
	background: #f7eed0;
	padding: 80px 0 50px;
}

.contact-form-box {
	max-width: 800px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: 22.5px;
}

.form-group label {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.form-group label img {
	width: 20px;
	margin-right: 10px;
}

.form-group label p {
	font-size: 20px;
	font-weight: 700;
	margin-right: 10px;
}

.form-group label span {
	position: relative;
	display: inline-block;
	margin-left: 5px;
	width: 55px;
	height: 20px;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	color: #e00000;
	background: #e00000;
	line-height: 19px;
	color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 2px solid #d1d1d1;
	position: relative;
}

.form-group button {
	max-width: 320px;
	background: #e00000;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	border-radius: 100px;
	width: 100%;
	margin: 40px auto 0;
	border: none;
	transition: all .7s;
	cursor: pointer;
	display: block;
	color: #fff;
	padding: 15px 0 20px;
	box-shadow: 0 7px 0 rgba(0, 0, 0, .3);
}

.form-group button:hover {
	box-shadow: none;
	transform: translateY(7px);
}

footer {
	background: #e00000;
	text-align: center;
	padding: 20px 0;
	margin-top: auto;
}

footer p {
	font-size: 14px;
	color: #fff;
}

.animate-on-view {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.animate-on-view.visible {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 834px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}

	.wrapper,
	header {
		min-width: auto;
	}

	.fv-bg {
		width: 100%;
	}

	.fv h1 {
		top: initial;
		width: calc(100% - 80px);
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		bottom: -5%;
	}

	.cta-cont {
		padding: 0px 0 30px;
	}

	.cta-cont-top {
		padding-top: 30px;
	}

	.cta-box {
		max-width: 500px;
		background-image: url(../img/cta_bg_sp.webp);
		border-radius: 10px;
		padding: 20px;
	}

	.cta-box-title h2 {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.cta-box-title small {
		font-size: 16px;
	}

	.cta-box-title p {
		font-size: 14px;
	}

	p.slash::before {
		width: 20px;
		height: 2px;
		right: -20px;
		bottom: 5px;
	}

	p.slash::after {
		width: 20px;
		height: 2px;
		left: -22.5px;
		bottom: 5px;
	}

	.cta-flex ul {
		display: block;
		max-width: 300px;
	}

	.cta-flex ul li {
		width: 100%;
	}

	.cta-flex ul li:nth-child(1) {
		margin-bottom: 10px;
	}

	.cta-btn-contact {
		padding: 15px 25px;
	}

	.cta-btn-tel {
		padding: 12.5px 25px;
	}

	.cta-btn img {
		width: 30px;
		margin-right: 15px;
	}

	.cta-btn p {
		font-size: 18px;
	}

	.cta-btn p.roboto {
		font-size: 29px;
		letter-spacing: 0.04rem;
	}

	.area {
		background: initial;
		padding-bottom: 120px;
	}

	.area .inner {
		max-width: 100%;
		width: 100%;
	}

	.area-flex {
		display: block;
	}

	.area-flex-left {
		width: 100%;
	}

	.area-flex-right {
		margin: -30% auto 0;
		width: calc(100% - 30px);
		position: relative;
	}

	.area-flex-right-txt {
		padding: 25px 20px 20px;
		border-radius: 10px;
	}

	.area-flex-right-txt p {
		font-size: 16px;
		line-height: 1.7;
	}

	.area-flex-right-title {
		width: 160px;
		left: -20px;
		top: -17px;
		padding: 5px 0 7.5px;
	}

	.area-flex-right-title h2 {
		font-size: 20px;
	}

	.strong {
		background-image: url(../img/strong_bg_sp.webp);
		background-color: #f7eed0;
		padding: 0 0 70px;
	}

	.strong-title {
		max-width: 500px;
		margin: 0px auto 20px;
		top: -90px;
	}

	.strong-list ol {
		display: block;
		max-width: 500px;
		margin: 0 auto;
	}

	.strong-list ol li {
		margin-bottom: 40px;
	}

	.strong-list ol li:last-child {
		margin-bottom: 0;
	}

	.strong-list-box-tag {
		width: 150px;
		top: -15px;
	}

	.strong-list-box-tag p {
		font-size: 16px;
	}

	.strong-list-box-tag p span {
		font-size: 26px;
	}

	.strong-list-box {
		padding: 35px 20px 25px;
	}

	.strong-list-box-title {
		margin-bottom: 15px;
	}

	.strong-list-box-title h3 {
		font-size: 22px;
	}

	.strong-list-box-img {
		margin-bottom: 15px;
	}

	.strong-list-box-txt p {
		font-size: 15px;
	}

	.strong-list ol li:nth-child(even) {
		bottom: initial;
	}

	.symptoms {
		padding: 0px 0 50px;
		background-image: url(../img/symptoms_bg_sp.webp);
	}

	.symptoms-title {
		max-width: 500px;
		top: -30px;
	}

	.symptoms-list ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 25px 0px;
		max-width: 500px;
		margin: 0 auto;
	}

	.symptoms-list ul li {
		width: 32.5%;
		margin-right: 1%;
	}

	.symptoms-list-box-cont {
		padding: 2.5px 2.5px 7.5px;
	}

	.symptoms-list-box-cont img {
		margin-bottom: 7.5px;
	}

	.symptoms-list ul li:nth-child(3),
	.symptoms-list ul li:nth-child(6),
	.symptoms-list ul li:nth-child(8) {
		margin-right: 0;
	}

	.symptoms-list-box-icon {
		width: 30px;
		top: -15px;
	}

	.symptoms-list-box-cont h3 {
		font-size: 13px;
		padding: 2.5px 0;
	}

	.flow {
		padding: 50px 0;
	}

	.flow-abs01,
	.flow-abs02 {
		width: 140px;
	}

	.cmn-title {
		margin-bottom: 30px;
	}

	.cmn-title h2 {
		font-size: 28px;
	}

	.flow-list-txt h3 {
		font-size: 20px;
	}

	.flow-list-txt {
		padding: 25px 0;
	}

	.flow-list ul li {
		border: 2px solid #000;
		margin-bottom: 10px;
	}

	.flow-list {
		max-width: 500px;
		z-index: 1;
		position: relative;
	}

	.flow-list ul li::before {
		border-left: 15px solid transparent;
		border-right: 15px solid transparent;
		border-top: 15px solid black;
	}

	.flow-list-img {
		width: 75px;
	}

	.flow-list ul li:nth-child(1) .flow-list-img {
		left: 10px;
	}

	.flow-list ul li:nth-child(2) .flow-list-img {
		width: 67.5px;
		left: 15px;
	}

	.flow-list ul li:nth-child(3) .flow-list-img,
	.flow-list ul li:nth-child(4) .flow-list-img {
		width: 64px;
		left: 15px;
	}

	.cta-img {
		max-width: 500px;
		margin-bottom: 15px;
		top: 0;
	}

	.cta-btns p.slash {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.cta-cont-center .cta-btns .cta-btn p {
		font-size: 19px;
	}

	.cta-cont-center .cta-btns {
		max-width: 315px;
	}

	.reason {
		padding: 50px 0;
	}

	.reason-title-tag {
		margin: 0 auto 15px;
		max-width: 320px;
	}

	.reason-title-tag p {
		font-size: 17px;
	}

	.reason-list {
		max-width: 500px;
		overflow: hidden;
	}

	.reason-list ul li {
		margin-bottom: 25px;
		display: block;
	}

	.reason-list-img {
		width: calc(100% - 40px);
		margin: 0 auto 20px;
	}

	.reason-list-txt {
		width: 100%;
	}

	.reason-list-txt-title h3 {
		font-size: 20px;
	}

	.reason-list-txt-title {
		margin-bottom: 15px;
	}

	.reason-list-txt-txt p {
		padding-left: 0;
		font-size: 16px;
		width: calc(100% - 40px);
		margin: 0 auto;
	}

	.reason-list ul li .reason-list-bg {
		max-width: 100%;
		width: 510px;
		top: 60%;
	}

	.reason::before {
		bottom: -20px;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 20px solid #fff;
	}

	.member {
		background-image: url(../img/member_bg_sp.webp);
		padding: 50px 0;
		background-color: #f7eed0;
	}

	.member-list ul {
		display: block;
		max-width: 500px;
		margin: 0 auto;
	}

	.member-list ul li {
		width: 100%;
		display: block;
		padding: 15px;
		margin-bottom: 20px;
	}

	.member-list ul li:nth-child(1) .member-list-box {
		display: block;
	}

	.member-list ul li:nth-child(1) .member-list-box-img {
		width: 100%;
		margin-bottom: 20px;
	}

	.member-list-box-img {
		margin-bottom: 20px;
	}

	.member-list ul li:nth-child(1) .member-list-box-txt {
		width: 100%;
	}

	.member-list-box-txt-title {
		margin-bottom: 15px;
	}

	.member-list-box-txt-title h3 {
		font-size: 18px;
		text-align: center;
	}

	.member-list ul li:nth-child(1) .member-list-box-txt .member-list-box-txt-title {
		text-align: center;
	}

	.member-list-box-txt-txt p {
		font-size: 15px;
		padding-bottom: 25px;
	}

	.ex {
		padding: 50px 0;
	}

	.ex-title img {
		max-width: 345px;
		margin: 0 auto 5px;
	}

	.ex-box {
		max-width: 500px;
		padding: 20px;
	}

	.caution {
		padding: 55px 0;
	}

	.caution-title img {
		top: -50px;
		max-width: calc(100% + 40px);
		width: calc(100% + 40px);
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	.caution-box {
		max-width: 500px;
		margin: 0 auto 50px;
	}

	.caution-box-txt {
		width: 100%;
		margin-bottom: 30px;
	}

	.caution-box-inner {
		padding: 20px;
		display: block;
	}

	.caution-box-txt p {
		font-size: 16px;
		padding-bottom: 25px;
	}

	.caution-box-img {
		width: 100%;
	}

	.caution-point-bg {
		max-width: 100%;
		width: 100%;
		top: -60px;
		left: -20px;
	}

	.caution-point-title {
		max-width: 190px;
		padding: 25px 0;
	}

	.caution-point-title h3 {
		font-size: 20px;
		line-height: 1.4;
	}

	.caution-point {
		max-width: 500px;
	}

	.caution-point-box-list ul li {
		width: 46%;
		padding: 15px;
		font-size: 16px;
	}

	.caution-point-box-list-num {
		width: 50px;
		top: -25px;
		left: -25px;
	}

	.caution-point-box-list-num p {
		font-size: 20px;
	}

	.caution-point-box-img {
		width: 175px;
		right: -15px;
		top: -125px;
	}

	.caution-point-title::before {
		left: 15%;
		bottom: -5px;
	}

	.other {
		padding: 0 0 50px;
	}

	.other-title {
		max-width: 500px;
		margin: 0 auto 40px;
	}

	.other-reason-list ul li {
		margin: 0 auto 20px;
		display: block;
		max-width: 500px;
	}

	.other-reason-list-txt {
		width: 100%;
		padding-left: 0;
		margin-bottom: 15px;
	}

	.other-reason-list-img {
		width: 100%;
	}

	.other-reason-list-txt-title {
		margin-bottom: 15px;
		justify-content: space-between;
	}

	.other-reason-list-txt-title-tag {
		width: 55px;
		height: 55px;
		padding-top: 7.5px;
	}

	.other-reason-list-txt .other-reason-list-txt-title-tag p {
		font-size: 10px;
	}

	.other-reason-list-txt-title-tag span {
		font-size: 32px;
	}

	.other-reason-list-txt-title h3 {
		font-size: 20px;
		text-align: center;
		width: calc(100% - 60px);
	}

	.other-reason-list ul li:nth-child(even) .other-reason-list-txt {
		padding-left: 0;
		padding-right: 0px;
	}

	.other-reason-list-txt p {
		font-size: 16px;
	}

	.other-reason-list ul li:last-child .other-reason-list-img {
		max-width: 220px;
		margin: 0 auto;
	}

	.cta-cont-last {
		padding-top: 30px;
	}

	.cta-btns-flex {
		display: block;
		max-width: 320px;
	}

	.cta-btns-flex .cta-btn {
		width: 100%;
	}

	.cta-btns-flex .cta-btn:nth-child(1) {
		margin-bottom: 10px;
	}

	.voice {
		padding: 50px 0 0;
	}

	.voice-box {
		padding: 20px;
		margin: 0 20px;
	}

	.voice-inner .inner {
		width: 100%;
	}

	.swiper-pagination {
		margin-top: 20px;
	}

	.swiper-button-next {
		width: 25px;
		height: 25px;
		right: 7.5px;
		z-index: 2;
	}

	.swiper-button-prev {
		width: 25px;
		height: 25px;
		left: 7.5px;
		z-index: 2;
	}

	.swiper-button-prev:after,
	.swiper-button-next:after {
		font-size: 10px;
		top: 45%;
	}

	.voice-box-title {
		margin-bottom: 15px;
		justify-content: initial;
	}

	.voice-box-title img {
		margin-right: 15px;
	}

	.voice-box-title h3 {
		font-size: 20px;
		width: calc(100% - 95px);
		text-align: center;
	}

	.voice-box-flex {
		display: block;
	}

	.voice-box-flex-cont {
		width: 100%;
	}

	.voice-box-flex-cont:nth-child(1) {
		margin-bottom: 20px;
	}

	.voice-box-flex-cont h4 {
		width: 112.5px;
		padding: 5px 0 7.5px;
		font-size: 14px;
		margin-bottom: 10px;
	}

	.voice-box-flex-cont p {
		font-size: 14px;
		padding-bottom: 20px;
	}

	.faq {
		padding: 50px 0;
	}

	.qa-question {
		padding: 12.5px 15px;
	}

	.qa-question span {
		font-size: 20px;
		margin-right: 10px;
	}

	.qa-question h3 {
		font-size: 16px;
	}

	.qa-question::before,
	.qa-question::after {
		right: 10px;
		width: 15px;
	}

	.qa-item {
		margin-bottom: 20px;
	}

	.qa-answer {
		margin: 0 0 10px;
		padding: 15px 20px 0;
	}

	.qa-answer p {
		font-size: 14px;
	}

	.fixed-btns {
		position: fixed;
		max-width: 500px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		bottom: 0;
		opacity: 0;
		transition: all .7s;
		z-index: 10;
		width: 100%;
		background: #fff;
		box-shadow: -2px 0 4px rgba(0, 0, 0, .3);
	}

	.fixed-btn-txt {
		text-align: center;
		padding: 5px 0;
	}

	.fixed-btn-txt p {
		font-size: 14px;
		font-weight: 700;
	}

	.fixed-btn-txt p span {
		color: #e00000;
	}

	.fixed-btns.active {
		opacity: 1;
	}

	.fixed-btns ul {
		display: flex;
	}

	.fixed-btns ul li {
		width: 50%;
	}

	.contact {
		padding: 50px 0 40px;
	}

	.contact-form-box {
		max-width: 500px;
		width: calc(100% - 40px);
	}

	.form-group label {
		margin-bottom: 5px;
	}

	.form-group label p {
		font-size: 15px;
		font-weight: 700;
		margin-right: 5px;
	}

	.form-group label span {
		width: 50px;
		height: 17px;
		font-size: 10px;
		line-height: 16px;
	}

	.form-group {
		margin-bottom: 12.5px;
	}

	.form-group button {
		max-width: 240px;
		font-size: 18px;
		width: 100%;
		margin: 30px auto 0;
	}

	footer {
		padding: 10px 0;
	}

	footer p {
		font-size: 10px;
	}
}

@media screen and (max-width: 500px) {
	.cta-box {
		padding: 20px 10px;
	}

	.cta-box-title small {
		letter-spacing: 0;
	}

	.strong-title {
		max-width: 500px;
		margin: 0px auto;
		top: -40px;
	}

	.area {
		padding-bottom: 80px;
	}

	.strong-list-box-title h3 {
		font-size: 20px;
	}

	.reason .inner {
		width: 100%;
	}

	.reason-list-img {
		width: calc(100% - 20px);
		margin: 0 auto 20px 0;
	}

	.reason-list-txt-title h3 {
		letter-spacing: 0;
	}

	.cmn-title.member-title {
		margin-bottom: 40px;
	}

	.cmn-title.member-title h2 {
		font-size: 27px;
	}

	.inner {
		max-width: 100%;
		width: calc(100% - 30px);
	}

	.caution-point-box {
		padding: 30px;
	}

	.voice-box-title img {
		width: 70px;
		margin-right: 10px;
	}

	.voice-box-title h3 {
		font-size: 19px;
		letter-spacing: 0;
		width: calc(100% - 80px);
	}

	.swiper-pagination {
		margin-top: 0px;
	}

	.voice-inner {
		padding: 10px 0 40px;
	}

	.qa-question {
		padding: 7.5px 15px;
	}

	.qa-question::after {
		top: 52.5%;
	}

	footer p {
		letter-spacing: 0;
	}
}

body.p-confirm {
	background: #F4EED9; /* 薄ベージュ */
  }

.c-confirm-title {
	margin-top: 100px;
	text-align: center;
	font-size: 22px;
	letter-spacing: .1em;
	margin: 32px 0 12px;
	color: #c53a1e; /* 見出し赤 */
	font-weight: 700;
  }
  
  .c-confirm {
	background: #f8edcd;
	max-width: 680px;
	margin: 0 auto 48px;
	padding: 8px 24px 0;
  }
  
  .c-confirm-list {
	margin: 0 0 28px;
  }
  
  .c-row {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 20px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0,0,0,.08);
  }
  
  .c-row:first-child { border-top: 1px solid rgba(0,0,0,.08); }
  
  .c-row dt {
	font-weight: 700;
	color: #333;
	position: relative;
  }
  
  .c-row dd { margin: 0; color: #2d2d2d; }
  
  /* 必須バッジ */
  .req {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	font-size: 11px;
	line-height: 1;
	color: #fff;
	background: #d9534f;
	border-radius: 4px;
	vertical-align: middle;
  }
  
  /* ボタン */
  .c-btns {
	display: flex;
	justify-content: center;
	gap: 18px;
  }
  
  .btn {
	min-width: 180px;
	padding: 14px 20px;
	border-radius: 26px;
	border: none;
	font-weight: 700;
	letter-spacing: .08em;
	box-shadow: 0 3px 0 rgba(0,0,0,.15);
	cursor: pointer;
  }
  
  .btn-primary {
	background: #c53a1e; /* 赤 */
	color: #fff;
  }
  
  .btn-primary:active { transform: translateY(1px); }
  
  .btn-secondary {
	background: #c9c9c9; /* グレー */
	color: #fff;
  }
  
  @media (max-width: 640px) {
	.c-confirm { padding: 0 16px; }
	.c-row { grid-template-columns: 1fr; gap: 8px; }
	.c-row dt { font-size: 14px; }
	.c-row dd { font-size: 14px; }
	.btn { min-width: 46%; padding: 12px; }
  }

  .wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
  }

  /* ===== 確認ページを全体的に大きく ===== */
body.p-confirm {
	font-size: 18px;               /* ベースUP（16→18） */
  }
  
  body.p-confirm .c-confirm-title{
	font-size: 32px;               /* 見出しUP */
	margin: 40px 0 20px;
  }
  
  body.p-confirm .c-confirm{
	max-width: 900px;              /* 幅 680→900 */
	padding: 24px 40px 8px;        /* 余白を広めに */
	border-radius: 12px;
  }
  
  body.p-confirm .c-confirm-list { margin-bottom: 36px; }
  
  body.p-confirm .c-row{
	grid-template-columns: 260px 1fr;  /* ラベル列を広く */
	gap: 28px;
	padding: 18px 0;
	font-size: 18px;               /* 行内文字もUP */
  }
  
  body.p-confirm .c-row dt{
	font-size: 19px;
  }
  
  body.p-confirm .c-row dd{
	font-size: 19px;
  }
  
  body.p-confirm .req{
	padding: 4px 8px;              /* バッジも比例してUP */
	font-size: 12px;
	border-radius: 6px;
  }
  
  /* ボタンを大きく＆並びを整える */
  body.p-confirm .form-group{
	display: flex;
	justify-content: center;
	flex-direction: column;   /* ←縦並び */
	gap: 20px;
	margin-top: 28px;
  }
  
  body.p-confirm .form-group button{
	max-width: 420px;              /* 320→420 */
	width: 100%;
	font-size: 24px;               /* 26だと大きすぎる場合は24前後が見やすい */
	padding: 18px 0 20px;
	border-radius: 9999px;
  }
  
  /* スマホ時も一回り大きめのままに */
  @media (max-width: 640px){
	body.p-confirm { font-size: 17px; }
	body.p-confirm .c-confirm{
	  max-width: 100%;
	  padding: 16px;
	}
	body.p-confirm .c-row{
	  grid-template-columns: 1fr;
	  gap: 10px;
	  padding: 14px 0;
	}
	body.p-confirm .form-group{
	  flex-direction: column;
	  gap: 12px;
	}
	body.p-confirm .form-group button{
	  max-width: 100%;
	  font-size: 20px;
	  padding: 16px 0 18px;
	}
  }


body.p-thanks {
	background: #F4EED9;             /* 薄ベージュ */
	color: #222;
  }
  
  body.p-thanks {
	min-height: 100%;
	display: flex;
	flex-direction: column;           /* フッターを下に固定 */
  }
  
  body.p-thanks footer{
	 margin-top: auto; 

	} /* 余白を作らず最下部に配置 */
  
  body.p-thanks .tks{
	max-width: 760px;                 /* 画像の雰囲気に合わせた横幅 */
	margin: 0 auto;
	text-align: center;
	padding: 80px 16px 120px;         /* 下はフッター分を確保 */
  }
  
  body.p-thanks .tks h1{
	font-size: 40px;
	font-weight: 800;
	color: #D63A22;                   /* 見出しの赤 */
	letter-spacing: .08em;
	margin: 28px 0 28px;
  }
  
  body.p-thanks .tks .lead{
	line-height: 2;
	font-size: 18px;
	margin-bottom: 28px;
  }
  
  body.p-thanks .tks .back a{
	display: inline-block;
	font-weight: 700;
	letter-spacing: .06em;
	padding-bottom: 4px;
	text-decoration: none;
  }
  
  body.p-thanks .tks .back a:hover{
	opacity: 1;
	filter: brightness(0.9);
  }
  
  body.p-thanks .tks .decor{
	margin: 18px auto 0;
	width: 14px; height: 14px;
  }
  
  /* SP調整 */
  @media (max-width: 640px){
	body.p-thanks .tks{ padding: 72px 14px 110px; }
	body.p-thanks .tks h1{ font-size: 28px; margin: 18px 0 20px; }
	body.p-thanks .tks .lead{ font-size: 15px; line-height: 1.9; }
  }
  @media (max-width: 834px){
	.fixed-btns{ z-index: 9999; }
  }


 /* =========================
   FV：左に背景（全幅）＋右にフォーム
========================= */

/* PCだけ：FV中は fixed CTA を消す（SPは消さない） *
  
/* hideクラスが付いたら確実に消す（念のため） */
.fixed-btns.hide{
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================
  FV h1：PCは左寄せ＆少し小さく
========================= */
@media (min-width: 835px){
	.fv-visual > h1{
	  position: absolute;
	  z-index: 5;
  
	  /* 左に寄せる */
	  left: 0px;
	 top: 160px;
	  transform: none;
  
	  /* サイズを少し小さく（画像h1想定） */
	  width: min(900px, 90%);
	  max-width: 900px;
  
	  /* 念のため */
	  margin: 0;
	}
  
	/* h1の中がimgの場合 */
	.fv-visual > h1 img{
	  width: 100%;
	  height: auto;
	  display: block;
	}
  }
  
  /* さらに画面が狭いPC（ノート等）ではもう少し詰める */
  @media (min-width: 835px) and (max-width: 1200px){
	.fv-visual > h1{
	  left: 24px;
	  top: 50px;
	  width: min(680px, 58%);
	}
  }
  

  /* =========================
  FV：背景を2カラム全体に敷いて、フォームは上に重ねる
========================= */

/* グリッド内で重ねられるように */
.fv-layout{
	position: relative;
  }
  
  /* 背景（左ビジュアル）を 2カラム全体に広げる */
  .fv-visual{
	grid-column: 1 / -1;   /* ← ここがポイント（全幅） */
	grid-row: 1;
	z-index: 1;
  }
  
  /* フォームはその上に重ねる（右側に居続ける） */
  .fv-form{
	grid-column: 2;
	grid-row: 1;
	z-index: 10;
  }
  
  /* 背景画像を“さらに右寄せ”（人の顔を右へ逃がす） */
  .fv-bg img{
	object-position: 80% center !important; /* 70〜90%で微調整OK */
	/* object-position: right center !important; だけだと足りない時に%が効く */
  }
  

  /* =========================
  右の余白（白い帯）対策：横はみ出しを止める
========================= */
html, body{
	width: 100%;
	overflow-x: hidden;
  }
  
  /* wrapperの固定min-widthが原因になりやすいので解除 */
  .wrapper{
	min-width: 0 !important;
	width: 100%;
  }
  
  /* FV全体も“画面いっぱい”に広げる（右の余白を作らない） */
  .fv-layout{
	max-width: none !important;
	width: 100%;
	margin: 0; /* 中央寄せを解除 */
  }
  

  /* =========================
  モニター（広い画面）だけ h1 を大きくする
========================= */
@media (min-width: 1400px){
	.fv-visual > h1{
	  width: min(1000px, 60%);  /* ←大きさ：ここで調整 */
	  max-width: 1000px;
	  top: 40px;               /* 必要なら微調整 */
	  left: 0px;                /* さらに左寄せしたいなら負もOK: -20px 等 */
	}
  }
  
  /* さらにデカいモニター（超ワイド）用 */
  @media (min-width: 1700px){
	.fv-visual > h1{
	  width: min(1250px, 60%);
	  max-width: 1250px;
	}
  }

  @media (min-width: 1400px) and (max-width: 1599px){
	.fv-visual > h1{
	  top: 150px;   /* ←ここを基準に微調整（180〜220px） */
	}
  }
  

  /* =========================
  SP：FVフォームをFVの下に配置する
========================= */
@media (max-width: 834px){

	/* 1カラムにする（右フォーム列を解除） */
	.fv-layout{
	  display: grid;
	  grid-template-columns: 1fr !important;
	  grid-template-rows: auto auto;
	  gap: 16px;
	}
  
	/* 背景（ビジュアル）→ 1行目 */
	.fv-visual{
	  grid-column: 1 !important;
	  grid-row: 1 !important;
	}
  
	/* フォーム → 2行目（FVの下） */
	.fv-form{
	  grid-column: 1 !important;
	  grid-row: 2 !important;
  
	  position: static !important;   /* sticky解除 */
	  top: auto !important;
	  z-index: 1 !important;
  
	  width: calc(100% - 30px);
	  margin: 0 auto 8px;
	}
  
	/* SP時にh1が下に飛び出してフォームとかぶるの防止（任意） */
	.fv-visual{
	  border-radius: 0; /* 好みで */
	}
	.fv-visual > h1{
	  bottom: 12px !important;  /* いま bottom:-5% なので被るなら上げる */
	}
  }
  

  @media (max-width: 834px){
	/* 念のため、FV上に余白を作らない */
	.fv{ padding-top: 0 !important; margin-top: 0 !important; }
  }

  @media (max-width: 834px){

	/* SPでは「画像の縦横比」でFV枠を作る（余白も切れもなくす） */
	.fv-visual{
	  min-height: 0 !important;             /* ← これが残ってるとズレやすい */
	  aspect-ratio: 376 / 582;              /* ← スクショ比率 */
	  overflow: hidden;                      /* 念のため */
	}
  
	/* 背景レイヤーはそのまま全面 */
	.fv-bg,
	.fv-bg picture{
	  position: absolute !important;
	  inset: 0 !important;
	  width: 100% !important;
	  height: 100% !important;
	}
  
	/* ここが肝：contain で切らない & 枠比率が同じだから余白も出ない */
	.fv-bg img{
	  width: 100% !important;
	  height: 100% !important;
	  object-fit: contain !important;
	  object-position: center top !important;
	}
  }
  
  
  @media (max-width: 834px){

	/* SP：h1を下基準(bottom)ではなく上基準(top)にする */
	.fv-visual > h1{
	  position: absolute !important;
	  z-index: 5 !important;
  
	  top: 340px !important;       /* ←ここで上下位置を調整（0〜24pxくらい） */
	  left: 50% !important;
	  transform: translateX(-50%) !important;
  
	  bottom: auto !important;    /* ←これが重要：下に行きすぎる原因を殺す */
	  width: calc(100% - 40px) !important;
	  margin: 0 !important;
	}
  
	/* h1が画像なら */
	.fv-visual > h1 img{
	  width: 100%;
	  height: auto;
	  display: block;
	}
  }
  
  @media (max-width: 834px){
	.fv-bg img{
	  object-fit: cover !important;
	  object-position: center top !important;
	}
  }
  

  /* =========================
  SP：FV（背景が途中で切れない版）
  - 枠を“少し縦長”にして下まで入れる
  - 背景は cover のまま、下が見えるように position を調整
========================= */
@media (max-width: 834px){

	/* 1カラム */
	.fv-layout{
	  display: grid;
	  grid-template-columns: 1fr !important;
	  grid-template-rows: auto auto;
	  gap: 16px;
	}
  
	/* FVビジュアル：縦長にして「下が切れる」を防ぐ */
	.fv-visual{
	  grid-column: 1 !important;
	  grid-row: 1 !important;
  
	  min-height: 0 !important;
	  aspect-ratio: 376 / 700;   /* ←ここが肝：582だと短くて下が切れやすい */
	  overflow: hidden;
	  border-radius: 0;          /* 必要なら12pxなどに戻してOK */
	}
  
	/* 背景レイヤーは全面 */
	.fv-bg,
	.fv-bg picture{
	  position: absolute !important;
	  inset: 0 !important;
	  width: 100% !important;
	  height: 100% !important;
	}
  
	/* 背景画像：下を見せたいので bottom 寄せ */
	.fv-bg img{
	  width: 100% !important;
	  height: 100% !important;
	  object-fit: cover !important;
	  object-position: center bottom !important;  /* ←下（バッジ）を優先して見せる */
	  display: block !important;
	}
  
	/* フォーム：FV下 */
	.fv-form{
	  grid-column: 1 !important;
	  grid-row: 2 !important;
	  position: static !important;
	  top: auto !important;
	  width: calc(100% - 30px);
	  margin: 0 auto 8px;
	}
  
	/* h1：位置固定（必要なら数値だけ調整） */
	.fv-visual > h1{
	  position: absolute !important;
	  z-index: 5 !important;
	  left: 50% !important;
	  transform: translateX(-50%) !important;
	  top: 220px !important;   /* ←ここは現状維持。合わなければ 300〜380で調整 */
	  bottom: auto !important;
	  width: calc(92% - 80px) !important;
	  margin: 0 !important;
	}
  }
  
  /* SP：背景画像（テキスト込み）を切らずに全表示 */
/* SP：背景画像（テキスト込み）を切らずに全表示 */
@media (max-width: 834px){
	.fv-bg img{
	  object-fit: contain !important;          /* ←切らない */
	  object-position: center top !important;  /* ←上のテキスト優先 */
	  background: #ffffff;                    /* 余白が出た時の色（必要なら） */
	}
  
	/* 枠の比率も「背景画像の縦横比」に寄せると余白が減る */
	.fv-visual{
	  aspect-ratio: 376 / 582 !important; /* ここは背景画像の比率に合わせて調整 */
	}
  }
  
  /* SP：FVは“背景レイヤー”をやめて、画像を普通に表示して余白を消す */
@media (max-width: 834px){

	/* 枠の固定比率/固定高さを無効化（余白の原因） */
	.fv-visual{
	  aspect-ratio: auto !important;
	  min-height: 0 !important;
	  height: auto !important;
	  overflow: visible !important;
	}
  
	/* fv-bg を absolute から通常フローへ戻す */
	.fv-bg{
	  position: static !important;
	  inset: auto !important;
	  width: 100% !important;
	  height: auto !important;
	}
  
	.fv-bg picture{
	  position: static !important;
	  inset: auto !important;
	  width: 100% !important;
	  height: auto !important;
	  display: block !important;
	}
  
	/* 画像は普通にレスポンシブ表示（これで下の白余白が消える） */
	.fv-bg img{
	  width: 100% !important;
	  height: auto !important;
	  object-fit: initial !important;     /* contain/cover を解除 */
	  object-position: initial !important;
	  display: block !important;
	}
  }
  

  /* 追従CTAはSPだけ表示（.spクラス依存をやめて事故防止） */
.fixed-btns { display: none; }
@media screen and (max-width: 834px){
  .fixed-btns { display: block; }
}

.fixed-btns{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	opacity: 0;
	transform: translateY(120%);
	pointer-events: none;
	transition: .25s ease;
  }
  
  .fixed-btns.active{
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
  }
  
  /* iPhoneの下の安全領域対策（任意） */
  .fixed-btns{
	padding-bottom: env(safe-area-inset-bottom);
  }
  

  /* 【切り分け】SPで固定ボタンを強制表示 */
/* =========================
  FV滞在中はCTAを出さない（PC/SP共通）
========================= */
body.is-in-fv .header-btn{
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
  }
  
  @media (min-width: 835px){
	body.is-in-fv .fixed-btns{
	  opacity: 0 !important;
	  transform: translateY(120%) !important;
	  pointer-events: none !important;
	}
  }
  /* =========================
	追従CTAはSPだけ表示（出す/消すは .active で制御）
  ========================= */
  .fixed-btns{ display: none; }
  
  @media (max-width: 834px){
	.fixed-btns{ display: block; }
  
	.fixed-btns{
	  position: fixed;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  z-index: 9999;
  
	  opacity: 0;
	  transform: translateY(120%);
	  pointer-events: none;
	  transition: .25s ease;
	  padding-bottom: env(safe-area-inset-bottom);
	}
  
	.fixed-btns.active{
	  opacity: 1;
	  transform: translateY(0);
	  pointer-events: auto;
	}
  }
  

  /* =========================
  追従CTA（SPのみ）
  - active で表示
  - FV表示中はJSがactive外す
========================= */

/* PCは常に非表示 */
.fixed-btns{
	display: none;
  }
  
  /* SPだけ「表示できる状態」にする */
  @media (max-width: 834px){
	.fixed-btns{
	  display: block;
	  position: fixed;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  z-index: 999999;
  
	  /* 初期は隠す（activeで出す） */
	  opacity: 0;
	  transform: translateY(110%);
	  pointer-events: none;
  
	  transition: .25s ease;
	  background: #fff;
	  box-shadow: -2px 0 4px rgba(0,0,0,.3);
	  padding-bottom: env(safe-area-inset-bottom);
	}
  
	.fixed-btns.active{
	  opacity: 1;
	  transform: translateY(0);
	  pointer-events: auto;
	}
  }
  

  #contact {
	scroll-margin-top: 80px; /* ヘッダー高さに合わせて調整 */
  }


  html {
	scroll-behavior: smooth;
  }
  
  #contact {
	scroll-margin-top: 120px; /* ヘッダー分。SPなら80pxとか */
  }
  @media (max-width: 834px){
	#contact {
	  scroll-margin-top: 80px;
	}
  }
  

  
  /* 追従CTA：常に最前面で固定 */
.fixed-btns{
	position: fixed !important;
	left: 0 !important;
	right: 0 !important;
	bottom: max(0px, env(safe-area-inset-bottom)) !important;
	z-index: 999999 !important;
  
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: none !important;
  }
  