 .acc-table {
	padding: 0 40px;
  border-radius: 8px;
  overflow: hidden;
}

 .acc-table .acc-head {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  cursor: pointer;
  border-radius: 8px;
  background-color: #E3F2FD;
	 margin-bottom: 10px;
  padding: 0.5em 0.5em 0.4em 3.2em;
}

 .acc-table .acc-head::before,
 .acc-table .acc-head::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: calc(50% - 0.1em);
  left: 0.8em;
  -webkit-transform: none;
  transform: none;
}

 .acc-table .acc-head::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

 .acc-table .acc-head.is-active::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

 .acc-table .acc-head.is-active+.acc-body {
  height: auto;
  padding: 40px;
  opacity: 1;
  visibility: visible;
	 border: 1px solid #d8d8d8;
	 border-top: none;
	 border-radius: 8px;
	 margin: -10px 0 20px;
}

 .acc-table .acc-body {
  visibility: hidden;
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: padding-top 0.25s, padding-bottom 0.25s, opacity 0.25s, visibility 0.25s, height 0.25s;
}
.acc-table .acc-body .tab-h {
	display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.acc-table .acc-body .tab-h .tab-step {
    padding: 5px 20px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: #1565C0;
    border-radius: 50px;
}
.acc-table .acc-body .tab-h .tab-ttl {
    margin-left: 10px;
    font-size: 20px;
    font-weight: bold;
}
.acc-table .acc-body .tab-txt {
	margin-top: 20px;
}
.tab-hosoku {
	margin: 15px 0 0;
}
.hosoku-ttl {
	font-weight: bold;
}
.hosoku-txt {
  position: relative;
  padding-left: 1.5em;
  margin: 0.4em 0;
  color: #333;
}

.hosoku-txt::before {
  content: "✔"; /* チェックマーク */
  position: absolute;
  left: 0;
  top: 0;
  color: #4CAF50; /* 緑系の安心感ある色 */
  font-size: 1em;
  line-height: 1.4;
}

@media (max-width: 768px) {
	.acc-table {
		padding: 0 10px;
	}
	.acc-table .acc-head {
		padding: 0.8em 0.5em 0.8em 2.5em;
		font-size: 16px;
	}
	.acc-table .acc-head.is-active+.acc-body {
		padding: 20px;
	}
	.acc-table .acc-body .tab-h {
        display: block;
    }
	.acc-table .acc-body .tab-h .tab-ttl {
        margin: 10px 0 0;
    }
}