*{
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	list-style: none;
}
html{
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
}
body{
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	font-size: 1.8rem;
	line-height: 1.8;
}
svg{
	fill: #fff;
}

.header{
	background: #008b75;
	color: #fff;
	text-align: center;
	padding: 10px 2%;
	line-height: 1.5;
}
.header svg{
	width: 60px;
}

.header h1{
	font-size: 200%;
	margin: 0.5em auto 0.1em;
}

.header p{
	font-size: 100%;
}

.header p.small{
	font-size: 90%;
}

form{
	width: 100%;
	max-width: 800px;
	margin: auto;
	padding: 20px 0 100px;
}

form input,
form select,
form textarea{
	border: solid 1px #999;
	padding: 0.5em;
	border-radius: 5px;
	width: 100%;
	font-size: 90%;
    line-height: 1.3;
}
form input[type="checkbox"],
form input[type="radio"]{
	position: relative;
	width: 1.5em;
	height: 1.5em;
	padding: 0;
	background: #fff;
	margin-right: 0.25em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
form input[type="checkbox"]:checked:before,
form input[type="radio"]:checked:before{
	position: absolute;
	left: 7px;
	transform: rotate(50deg);
	width: 8px;
	height: 15px;
	border-right: 4px solid #c00;
	border-bottom: 4px solid #c00;
	content: "";
}
form textarea{
	height: 10em;
}

form section{
	margin-bottom: 30px;
}

.required h2::after{
	content: "（必須）";
	color: #c00;
	font-size: 80%;
}

.navi{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #008b75;
	font-weight: bold;
	margin-bottom: 20px;
}
.navi li{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(100% / 5);
}
.navi li.line{
	display: block;
	width: 200px;
	height: 2px;
	background: #008b75;
	margin: 0 -2em;
	position: relative;
	top: -1em;
}
.navi span{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e4f0ed;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	font-size: 200%;
	line-height: 1;
	margin-bottom: 10px;
}
.navi li.active span{
	background: #008b75;
}

.note{
	color: #008b75;
	margin-bottom: 40px;
}

.check{
	background: #f7c6b1;
	border-radius: 10px;
	margin-bottom: 40px;
	padding: 1em;
}
.check h2{
	margin: 5px 0 10px;
}
.check ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.check li{
	width: calc(100% / 3);
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.soudan li{
	width: 50%;
}
.soudan h2::after{
	content: "（必須）複数選択可";
}

.raiten h2{
	background: #e4f0ed;
	padding: 0.5em;
	border-radius: 100px;
	margin-bottom: 20px;
}
.raiten div{
	margin-left: 1em;
	display: flex;
	align-items: center;
}
.raiten input,
.raiten select{
	width: 50%;
}
.raiten label{
	width: auto;
	height: 40px;
	margin-left: 5px;
}
.raiten img,
.raiten svg{
	width: auto;
	height: 100%;
}
.raiten svg{
	fill: #008b75;
}
.date{
	margin-bottom: 10px;
}

.note2{
	font-size: 90%;
	margin-bottom: 30px;
}

.p-postal-code{
	width: 10em;
	margin-bottom: 10px;
}

.privacy-policy{
	display: flex;
	align-items: center;
	background: #e4f0ed;
	padding: 1em;
	border-radius: 10px;
	margin-bottom: 40px;
}

form button{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #900;
	background: linear-gradient(0deg, rgba(153, 0, 0, 1) 0%, rgba(204, 0, 0, 1) 100%);
	width: 94%;
	max-width: 400px;
	margin: auto;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	padding: 1em;
	font-size: 150%;
	transition: 0.2s;
    margin-top: 20px;
}

form button.back{
	background: #008b75;

}

form button:hover{
	cursor: pointer;
	opacity: 0.8;
}
form button svg{
	width: 40px;
	height: auto;
}

.error{
    color: #c00;
    font-weight: bold;
}


/* for sp */
@media only screen and (max-width: 767px){
.header svg{
	width: 60px;
}
.header h1{
	font-size: 160%;
}

form{
	width: 94%;
	padding: 20px 0 50px;
}

form section{
	margin-bottom: 20px;
}

.navi{
	margin-bottom: 25px;
	font-size: 80%;
}
.navi li{
	line-height: 1.3;
	text-align: center;
}
.navi li.line{
	width: 70px;
	height: 1px;
	margin: 0 -0.5em;
	top: -1.7em;
}

.note{
	margin-bottom: 30px;
	font-size: 75%;
}

.check{
	margin-bottom: 20px;
}
.check li{
	width: 50%;
	margin-bottom: 5px;
	font-size: 85%;
}
.soudan li{
	width: 100%;
}

.raiten h2{
	padding: 0.4em;
	margin-bottom: 15px;
}
.raiten input,
.raiten select{
	width: 75%;
}

.note2{
	font-size: 75%;
	margin: 30px auto 20px;
}

.privacy-policy{
	margin-bottom: 30px;
}

form button{
	padding: 1em 0.5em;
	font-size: 120%;
}
}/* for sp */

@media only screen and (min-width: 768px){
.sp{display:none;}
}



/* 確認画面テーブル */
.tableA {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.tableA th,
.tableA td {
  border: 1px solid #008b75;
  padding: 0.75em;
  vertical-align: top;
}

.tableA th {
  background-color: #008b75;
  color: #fff;
  text-align: left;
  font-weight: bold;
  width: 30%;
  border-bottom: 2px solid #fff;
}

.tableA td {
  background-color: #f9fdfc;
  color: #333;
}

/* テーブルの上下余白 */
.mb3em {
  margin-bottom: 3em;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .tableA,
  .tableA tbody,
  .tableA tr,
  .tableA th,
  .tableA td {
    display: block;
    width: 100%;
  }

  .tableA tr {
    margin-bottom: 1em;
    border: 1px solid #008b75;
    border-radius: 6px;
    overflow: hidden;
  }

  .tableA th {
    background-color: #008b75;
    color: #fff;
    padding: 0.5em;
    border: none;
    width: 100%;
  }

  .tableA td {
    padding: 0.75em;
    border: none;
    background-color: #f9fdfc;
  }
}


/* =========================
   追加調整：新デザイン対応
========================= */

/* complete以外の説明文を少し小さく */
.header p.small{
  font-size: 90%;
}

/* input内の必須/任意バッジ */
.field{
  position: relative;
}

.field input,
.field select,
.field textarea{
  padding-right: 6rem;
}

.badge{
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.badge.required{
  background: #d40000;
}

.badge.optional{
  background: #999;
}

.badge.auto{
  background:#777;
}

/* textareaは高さがあるので上寄せ */
.field textarea + .badge{
  top: 10px;
  transform: none;
}

/* h2横の（必須）表示はバッジと重複するので止める */
.required h2::after{
  content: none;
}

/* 名前・ふりがなを横並び */
.name,
.furigana{
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

.name{
  margin-right: 2.7%;
}

/* 住所欄のfieldの余白 */
.address .field{
  margin-bottom: 10px;
}

/* 第1・第2希望の必須/任意バッジがカレンダーアイコンと被りにくいように */
.raiten .field input,
.raiten .field select{
  padding-right: 7rem;
}

/* スマホでも横並び維持したい場合の微調整 */
@media only screen and (max-width: 767px){
  .header p.small{
    font-size: 1.3rem;
  }

  .badge{
    font-size: 1rem;
    padding: 3px 6px;
    right: 6px;
  }

  .name,
  .furigana{
    width: 48%;
  }

  .name{
  margin-right:2.7%;
}

  .raiten .field input,
  .raiten .field select{
    padding-right: 6rem;
  }
}


/* =========================
   必須バッジ（radio/checkbox用）
========================= */

.topics li{
  width:100%;
}

.tenpo.required h2,
.topics.required h2{
  position: relative;
  padding-right: 70px;
}

.tenpo.required h2::after,
.topics.required h2::after{
  content: "必須";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #d40000;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 8px;
  border-radius: 4px;
}



/* 来店希望日時 横並び */

.raiten-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:1em;
}

.raiten-row .date{
  display:flex;
  align-items:center;
  gap:5px;
}

.raiten-row .date input{
  width:280px;
}

.raiten-row .time select{
  width:280px;
}

/* 必須ラベル */
.raiten-row .badge{
  position:static;
  margin-left:10px;
}

.note2{
  font-size:1.2rem;
  color:#555;
  margin:20px 0 30px 1em;
  line-height:1.7;
}


.shiryou ul,
.area ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* -------------------
送付希望資料:物件
PC 2列 / SP 1列
------------------- */

.shiryou li{
  width:100%;
}

@media only screen and (min-width:768px){
  .shiryou li{
    width:49%;
  }
}

/* -------------------
送付希望資料:市区
PC/SP 共に2列
------------------- */

.area li{
  width:48%;
}


/* セクション右上バッジ */

.has-badge{
  position: relative;
}

.section-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.section-badge.required{
  background:#d40000;
}

.section-badge.optional{
  background:#999;
}