@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&display=swap');

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 100%;
 	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	text-align: center;
	}
	

body{
	background: #d6e0e5;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0 0px;
	text-align : center ;
}


button,
input[type="button"],
input[type="submit"] {
  color: inherit;
  -webkit-text-fill-color: currentColor;
}


@media only screen and (max-width: 480px) {





.head-logo{
	width: 100%;
	margin: 0;
	text-align: center;
}
.head-logo img{
	margin-top: 24px;
	width:90px;
}

main.contents{
	width: 95%;
	margin: 0 auto;
	padding: 0 12px 0 12px;
	background: #fff;
	text-align: left;
	min-height: 100vh;
}

h1{
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	margin: 42px 0 42px 0;
}

h1 span{
	display: block;
	font-size: 18px;
	margin-top: 18px;
}





.estimate-form-items {
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
}

.estimate-form-items__label {
  width: 100%;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
}

.estimate-form-items__data {
  width: 100%;
  padding: 0;
  margin: 0;
}




.estimate-form-required {
  display: inline-block;
  margin-right: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #c00;
}


.button-for-modal {
  width: 100%;
  padding: 15px 39px 15px 15px; /* 右は＋分を確保 */
  font-size: 16px;
  font-family: inherit;
  line-height: 1.6;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  text-align: left;
  cursor: pointer;
  position: relative;

  appearance: none;
  -webkit-appearance: none;
}


.button-for-modal:focus,
.text-input:focus {
  outline: none;
  border-color: #999;
}



.button-display {
  display: block;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button-display.is-empty {
  color: #999;
}



.button-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: #777;
  pointer-events: none;
}




.text-input {
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.6;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  appearance: none;
  -webkit-appearance: none;
}



.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.btn-choice {
  flex: 1;
  min-width: 80px;

  min-height: 56px;   /* ★ これが効く */
  padding: 0 10px;    /* 上下paddingは殺す */

  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  cursor: pointer;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  appearance: none;
  -webkit-appearance: none;
}


.btn-choice.is-active {
  border-color: #999;
  background: #f5f5f5;
  font-weight: 600;
}

.btn-choice:focus {
  outline: none;
  border-color: #999;
}

.estimate-form-items__data.has-error .btn-choice {
  border-color: #c00;
}









.form-error-summary {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #c00;
  border-radius: 6px;
  background: #fff;
}

.form-error-summary__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c00;
  font-weight: 600;
}

.estimate-form-items__data.has-error .text-input,
.estimate-form-items__data.has-error .button-for-modal,
.estimate-form-items__data.has-error .btn-group {
  border-color: #c00;
}


.form-error {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #c00;
}




.submit-wrap {
  width: 100%;
  margin: 75px 0;
  padding: 0 45px 75px 45px;
}



.btn-submit {
  width: 100%;
  min-height: 66px;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  font-family: inherit;

  color: #fff;
  background: #ef260f;

  border: none;
  border-radius: 15px;

  cursor: pointer;
  text-align: center;

  appearance: none;
  -webkit-appearance: none;

  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  opacity: 0.8;
}

.btn-submit:focus {
  outline: none;
  opacity: 0.85;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-wrap a{
	display:block;
	width: 200px;
	margin: 30px auto 0 auto;
	text-align: center;
	font-size: 16px;
	color:#444;
}



.error-text {
  margin: 0 0 15px;
  font-size: 14px;
  color: #c00;
  text-align: center;
}



.description{
	font-size:14px;
	margin-bottom: 15px;
}

#uploadErr {
  margin-top: 10px;
  font-size: 14px;
  color: #c00; /* 赤 */
  line-height: 1.5;
}

.file-drop {
  display: block;
  width: 100%;
  padding: 9px 18px;
  margin-bottom: 21px;
  border: 1px solid #ddd;
  border-radius: 24px;
  background: #fafafa;

  cursor: pointer;
  text-align: center;
}

.file-drop:hover {
  background: #f3f3f3;
  border-color: #ccc;
}

.file-main {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.file-sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #666;
}



/* サムネ一覧 */
.uploads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.thumb {
  display: flex;
  flex-direction: column;
  width: 128px;
}

.thumb img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
}

/* 削除ボタン */
.thumb .btnDel {
  margin-top: 6px;
  padding: 4px 0;

  font-size: 12px;
  line-height: 1.4;

  color: #666;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 12px;

  cursor: pointer;
}

/* hover */
.thumb .btnDel:hover {
  background: #e6e6e6;
  color: #333;
}


.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

/* label全体をクリック可能に */
.check {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ネイティブチェックは隠す */
.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 見た目 */
.check span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

/* hover */
.check span:hover {
  background: #f6f6f6;
}

/* checked状態 */
.check input:checked + span {
  background: #f6f6f6;
  color: #333;
  border-color: #222;
}



body[data-estimate-page="step3"] .estimate-form-items__label {
  position: relative;
  padding: 14px;

  border-left: 6px solid #ddd;

  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}

body[data-estimate-page="step3"] .estimate-form-items {
  margin-top: 60px;
}



.head-lead{
	text-align: center;
	font-size: 15px;
	margin-top: 60px;
}






/* confirm */
.confirm-section {
  margin-top: 45px;
}

/* セクション見出し（step3風） */
.confirm-title {
  margin: 0 0 30px;
  padding: 15px 16px;

  font-size: 18px;
  font-weight: 600;
  text-align: center;

  background: #082752;
  color: #fff;

  border-radius: 12px;
}

/* DL全体 */
.confirm-dl {
  display: block;
  grid-template-columns: 180px 1fr; /* dt広め */
  gap: 0; /* 行罫線を作るので gap は無し */
  margin: 0;
  border-top: 1px solid #ccc;
}

/* dt / dd を「行」っぽく */
.confirm-dl dt{
	width: 100%;
  padding: 16px 16px;
  border-bottom: 1px dotted #ccc;
}


.confirm-dl dd {
	width: 100%;
  padding: 16px 16px;
  border-bottom: 1px solid #ccc;
}


/* dt */
.confirm-dl dt {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

/* dd */
.confirm-dl dd {
  margin: 0;
  padding-right: 14px;         /* 右余白 */
  font-size: 18px;             /* 全体大きく */
  line-height: 1.6;
  color: #222;
}


/* 任意の未入力 */
.confirm-empty {
  color: #999;
}

/* 複数行テキスト */
.confirm-text {
  white-space: normal;
}

/* 画像一覧（step3のサムネ感） */
.confirm-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.confirm-image {
  width: 128px;
}

.confirm-image img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
  display: block;
}

.confirm-image-name {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
  word-break: break-all;
}

.confirm-edit {
  margin: 18px 0 0;
}

.confirm-back {
  margin-top: 24px;
}




.confirm-note {
  margin: 75px 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.confirm-note a {
  color: #082752; /* サイトVIの紺 */
  text-decoration: underline;
}



/* =========================
   Progress (Step Bar)
========================= */

.progress {
	margin: 15px 0 15px 0px;
	padding: 0;
}
/* =========================
   SP：右向き五角形タグ（clip-path）
========================= */

	.progress__bar {
		display: none;
	}

	.progress-step {
		display: flex;
		gap: 2px;
		padding: 0;
		margin: 0;
		width: 100%;
	}

	/* 丸・ラインは使わない */
	.progress-step li::before,
	.progress-step li::after {
		display: none;
	}

	.progress-step li {
		flex: 1;
		padding: 7px 7px 6px 6px;
		font-size: 10px;
		line-height: 1.2;
		text-align: center;
		white-space: nowrap;
		color: #777;
		background: #f1f1f1;
		position: relative;

		/* 右向き五角形 */
		clip-path: polygon(
			0 0,
			92% 0,
			100% 50%,
			92% 100%,
			0 100%,
			6% 50%
		);
	}

	/* 重なりで「次のお尻にくっつく」感じを出す */
	.progress-step li:not(:first-child) {
		margin-left: -10px;
	}

	/* 状態色 */
	.progress-step li.is-done {
		background: #111;
		color: #fff;
	}

	.progress-step li.is-active {
		background: #555;
		color: #fff;
		font-weight: 600;
	}

	.progress-step li:not(.is-done):not(.is-active) {
		background: #f1f1f1;
		color: #777;
	}
	
	.progress-step li:not(:first-child) {
		margin-left: -6px; /* ← -10px から弱める */
	}










}/*//end  max-width: 480px ///////////////////////*/







@media only screen and (min-width: 481px) {



.head-logo{
	width: 100%;
	margin: 0;
	text-align: center;
}
.head-logo img{
	margin-top: 24px;
	width:120px;
}

main.contents{
	width: 800px;
	margin: 0 auto;
	padding: 0 50px 0 50px;
	background: #fff;
	text-align: left;
	min-height: 100vh;
}

h1{
	width: 100%;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	margin: 42px 0 42px 0;
}

h1 span{
	display: block;
	font-size: 21px;
	margin-top: 18px;
}





.estimate-form-items {
  width: 100%;
  margin-bottom: 24px;
  padding: 0;
}

.estimate-form-items__label {
  width: 100%;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
}

.estimate-form-items__data {
  width: 100%;
  padding: 0;
  margin: 0;
}




.estimate-form-required {
  display: inline-block;
  margin-right: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #c00;
}


.button-for-modal {
  width: 100%;
  padding: 15px 39px 15px 15px; /* 右は＋分を確保 */
  font-size: 16px;
  font-family: inherit;
  line-height: 1.6;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  text-align: left;
  cursor: pointer;
  position: relative;

  appearance: none;
  -webkit-appearance: none;
}


.button-for-modal:focus,
.text-input:focus {
  outline: none;
  border-color: #999;
}



.button-display {
  display: block;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button-display.is-empty {
  color: #999;
}



.button-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: #777;
  pointer-events: none;
}




.text-input {
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.6;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  appearance: none;
  -webkit-appearance: none;
}



.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


.btn-choice {
  flex: 1;
  min-width: 80px;

  min-height: 56px;   /* ★ これが効く */
  padding: 0 10px;    /* 上下paddingは殺す */

  font-size: 16px;
  line-height: 1.4;
  font-family: inherit;

  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;

  cursor: pointer;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  appearance: none;
  -webkit-appearance: none;
}


.btn-choice.is-active {
  border-color: #999;
  background: #f5f5f5;
  font-weight: 600;
}

.btn-choice:focus {
  outline: none;
  border-color: #999;
}

.estimate-form-items__data.has-error .btn-choice {
  border-color: #c00;
}









.form-error-summary {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #c00;
  border-radius: 6px;
  background: #fff;
}

.form-error-summary__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #c00;
  font-weight: 600;
}

.estimate-form-items__data.has-error .text-input,
.estimate-form-items__data.has-error .button-for-modal,
.estimate-form-items__data.has-error .btn-group {
  border-color: #c00;
}


.form-error {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #c00;
}




.submit-wrap {
  width: 100%;
  margin: 75px 0;
  padding: 0 45px 75px 45px;
}



.btn-submit {
  width: 100%;
  min-height: 66px;

  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  font-family: inherit;

  color: #fff;
  background: #ef260f;

  border: none;
  border-radius: 15px;

  cursor: pointer;
  text-align: center;

  appearance: none;
  -webkit-appearance: none;

  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  opacity: 0.8;
}

.btn-submit:focus {
  outline: none;
  opacity: 0.85;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-wrap a{
	display:block;
	width: 200px;
	margin: 30px auto 0 auto;
	text-align: center;
	font-size: 16px;
	color:#444;
}



.error-text {
  margin: 0 0 15px;
  font-size: 14px;
  color: #c00;
  text-align: center;
}



.description{
	font-size:14px;
	margin-bottom: 15px;
}

#uploadErr {
  margin-top: 10px;
  font-size: 14px;
  color: #c00; /* 赤 */
  line-height: 1.5;
}

.file-drop {
  display: block;
  width: 100%;
  padding: 9px 18px;
  margin-bottom: 21px;
  border: 1px solid #ddd;
  border-radius: 24px;
  background: #fafafa;

  cursor: pointer;
  text-align: center;
}

.file-drop:hover {
  background: #f3f3f3;
  border-color: #ccc;
}

.file-main {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.file-sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #666;
}



/* サムネ一覧 */
.uploads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.thumb {
  display: flex;
  flex-direction: column;
  width: 128px;
}

.thumb img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
}

/* 削除ボタン */
.thumb .btnDel {
  margin-top: 6px;
  padding: 4px 0;

  font-size: 12px;
  line-height: 1.4;

  color: #666;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 12px;

  cursor: pointer;
}

/* hover */
.thumb .btnDel:hover {
  background: #e6e6e6;
  color: #333;
}


.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

/* label全体をクリック可能に */
.check {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ネイティブチェックは隠す */
.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 見た目 */
.check span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

/* hover */
.check span:hover {
  background: #f6f6f6;
}

/* checked状態 */
.check input:checked + span {
  background: #f6f6f6;
  color: #333;
  border-color: #222;
}



body[data-estimate-page="step3"] .estimate-form-items__label {
  position: relative;
  padding: 14px;

  border-left: 6px solid #ddd;

  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}

body[data-estimate-page="step3"] .estimate-form-items {
  margin-top: 60px;
}



.head-lead{
	text-align: center;
	font-size: 15px;
	margin-top: 60px;
}






/* confirm */
.confirm-section {
  margin-top: 45px;
}

/* セクション見出し（step3風） */
.confirm-title {
  margin: 0 0 30px;
  padding: 15px 16px;

  font-size: 18px;
  font-weight: 600;
  text-align: center;

  background: #082752;
  color: #fff;

  border-radius: 12px;
}

/* DL全体 */
.confirm-dl {
  display: grid;
  grid-template-columns: 180px 1fr; /* dt広め */
  gap: 0; /* 行罫線を作るので gap は無し */
  margin: 0;
  border-top: 1px solid #eee;
}

/* dt / dd を「行」っぽく */
.confirm-dl dt,
.confirm-dl dd {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

/* dt */
.confirm-dl dt {
  padding-left: 14px;          /* 左余白 */
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* dd */
.confirm-dl dd {
  margin: 0;
  padding-right: 14px;         /* 右余白 */
  font-size: 18px;             /* 全体大きく */
  line-height: 1.6;
  color: #222;
}


/* 任意の未入力 */
.confirm-empty {
  color: #999;
}

/* 複数行テキスト */
.confirm-text {
  white-space: normal;
}

/* 画像一覧（step3のサムネ感） */
.confirm-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.confirm-image {
  width: 128px;
}

.confirm-image img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 6px;
  background: #f5f5f5;
  display: block;
}

.confirm-image-name {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
  word-break: break-all;
}

.confirm-edit {
  margin: 18px 0 0;
}

.confirm-back {
  margin-top: 24px;
}




.confirm-note {
  margin: 75px 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.confirm-note a {
  color: #082752; /* サイトVIの紺 */
  text-decoration: underline;
}



/* =========================
   Progress (Step Bar)
========================= */

.progress {
	margin: 30px 0 30px 0px;
	padding: 0;
}

/* 上の細い進捗バー */
.progress__bar {
	position: relative;
	height: 0px;
	background: #e5e5e5;
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 18px;
}

.progress__value {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: linear-gradient(90deg, #111, #555);
	width: 0%;
	transition: width 0.4s ease;
}

/* ステップリスト */
.progress-step {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}

/* 各ステップ */
.progress-step li {
	position: relative;
	flex: 1;
	text-align: center;
	font-size: 12px;
	line-height: 1.4;
	color: #999;
	padding-top: 22px;
	white-space: nowrap;
}

/* 丸数字 */
.progress-step li::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #e5e5e5;
	color: #666;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
	font-weight: 600;
	z-index: 2;
}

/* 下のライン（丸の裏） */
/* ベースはグレー */
.progress-step li::after {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #e5e5e5;
	z-index: 1;
}

/* 完了ステップは線を100%黒 */
.progress-step li.is-done::after {
	background: #111;
}

/* アクティブの「手前」も100%黒にする */
.progress-step li.is-active::after {
	background: linear-gradient(
		to right,
		#111 0%,
		#111 50%,
		#e5e5e5 50%,
		#e5e5e5 100%
	);
}

/* 最初と最後の調整 */
.progress-step li:first-child::after {
	left: 50%;
	width: 50%;
}
.progress-step li:last-child::after {
	width: 50%;
}

/* 現在ステップ */
.progress-step li.is-active {
	color: #111;
	font-weight: 600;
}

.progress-step li.is-active::before {
	background: #111;
	color: #fff;
}



/* 完了ステップ（JSで is-done を付与する想定） */
.progress-step li.is-done {
	color: #111;
}

.progress-step li.is-done::before {
	background: #111;
	color: #fff;
}

.progress-step li.is-done::after {
	background: #111;
}

/* =========================
   SP：右向き五角形タグ（clip-path）
========================= */
@media (max-width: 640px) {

	.progress__bar {
		display: none;
	}

	.progress-step {
		display: flex;
		gap: 0;
	}

	/* 丸・ラインは使わない */
	.progress-step li::before,
	.progress-step li::after {
		display: none;
	}

	.progress-step li {
		flex: 1;
		padding: 10px 16px 10px 12px;
		font-size: 11px;
		line-height: 1.2;
		text-align: center;
		white-space: nowrap;
		color: #777;
		background: #f1f1f1;
		position: relative;

		/* 右向き五角形 */
		clip-path: polygon(
			0 0,
			92% 0,
			100% 50%,
			92% 100%,
			0 100%,
			6% 50%
		);
	}

	/* 重なりで「次のお尻にくっつく」感じを出す */
	.progress-step li:not(:first-child) {
		margin-left: -10px;
	}

	/* 状態色 */
	.progress-step li.is-done {
		background: #111;
		color: #fff;
	}

	.progress-step li.is-active {
		background: #555;
		color: #fff;
		font-weight: 600;
	}

	.progress-step li:not(.is-done):not(.is-active) {
		background: #f1f1f1;
		color: #777;
	}
	
	.progress-step li:not(:first-child) {
		margin-left: -6px; /* ← -10px から弱める */
	}

}



}/*//end  min-width: 481px ///////////////////////*/











