.blockb {
  border-radius: 16px;
  padding: 32px;
}
.blockw {
  display: flex;
  padding: 12px 16px;
  justify-content: start;
  align-items: center;
  gap: 13px;
  background: #ffffff;
  border-radius: 10px;
}

.ctable{
  width: 1180px;
}
.ctable__first-row .ctable__first-col {
  padding: 45px 36px 0 0;
}
.ctable__first-row .ctable__cell_bg {
  border-radius: 16px 16px 0 0;
  padding: 45px 24px 0 24px;
}
.ctable__last-row .ctable__first-col {
  padding: 24px 24px 50px 0;
}
.ctable__last-row .ctable__cell_bg {
  border-radius: 0 0 16px 16px;
  padding: 24px 24px 50px;
}
.ctable__cell {
  vertical-align: middle;
  text-align: center;
}
.ctable__first-col {
  padding: 24px 36px 24px 0;
  text-align: left;
}
.ctable__cell_bg {
  padding: 24px 24px;
  box-shadow: 0px 32px 48px rgba(32, 34, 37, 0.1);
  background-color: var(--white);
  color: var(--black1);
  height: 72px;
}
.ctable__line{
  border-bottom: 1px solid var(--black5);
}
.ctable__icon > svg {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
}
.ctable_type_1 .ctable__cell.ctable__first-col {
  width: 300px;
}
.ctable_type_1 .ctable__cell {
  width: 424px;
}
.ctable_type_1 .ctable__gap {
  padding-right: 36px;
  padding-bottom: 36px;
}
.ctable_type_1 .ctable__last-row .ctable__cell.ctable__first-col {
  padding-top: 24px;
  vertical-align: top;
}
.ctable_type_1 .ctable__last-row .ctable__cell {
  padding-top: 47px;
  padding-bottom: 55px;
}
.ctable_type_2 .ctable__cell.ctable__first-col {
  width: 181px;
}
.ctable_type_2 .ctable__first-row .ctable__cell_bg {
  padding-left: 64px;
  padding-right: 64px;
}
.ctable_type_2 .ctable__cell {
  width: 489px;
}
.ctable_type_2 .ctable__gap {
  padding-right: 25px;
  padding-bottom: 25px;
}
.scroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.scroll-wrap::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.scroll-hint {
  display: none;
  margin-bottom: 40px;
  grid-template-columns: 32px auto;
  grid-gap: 16px;
  align-items: center;
}
.grid_3col {
  grid-template-columns: repeat(3, 1fr);
}
.grid_4col {
  grid-template-columns: repeat(4, 1fr);
}
.fig {
  display:block;
  margin:0 auto;
}

ol>li {
  counter-increment: point 1;
  padding-left: 48px;
  position: relative;
}
ol>li:not(:last-of-type) {
  margin-bottom: 16px;
}
ol>li:before {
  content: counter(point);
  background-color: var(--blue3);
  color: var(--blue1);
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0
}

ul.usual_list li {
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}
ul.usual_list li:before {
  content: '•';
  display: block;
  text-align: center;
  width: 20px;
  flex-shrink: 0
}

ul.list > li::before {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 100%;
  width: 52px;
  height: 52px;
  position: absolute;
  left: 0;
}
ul.list > li {
  min-height: 52px;
  margin-bottom: 32px;
  position: relative;
  padding-left: 76px;
}
ul.list > li:last-child {
  margin-bottom: 0;
}

ul.list_exclamation > li {
  padding-left: 76px;
}
ul.list_exclamation > li:not(:last-of-type) {
  margin-bottom: 48px;
}
ul.list_exclamation > li:before {
  content: "";
  background: url(i/icon-exclamation-triangle.svg) center center no-repeat var(--yellow1);
  margin-left: 5px;
  margin-top: 5px;
}

.quote {
  padding: 24px;
  box-sizing: border-box;
}
.quote_big {
  padding: 32px;
}

.icon-grid {
	display: grid;	
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}
.icon-grid__item {
	display: flex;
	align-items: center;
	gap: 24px;
}
.icon-grid__icon {
	width: 64px;
  max-width: none;
}

@media (max-width: 1279px) {
	.icon-grid {
		gap: 48px;
	}
	.icon-grid__item {
		align-items: flex-start;
	}
}

@media (max-width: 992px) {
  /* .quote {
    padding: 32px;
  } */
  .grid_3col, .grid_4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .fig_md {
    max-width: 292px;
  }
}

@media (max-width: 768px) {
  .ctable_type_1 .ctable__last-row .ctable__cell {
    padding-bottom: 32px;
  }
  .scroll-hint {
    display: grid;
  }
  .icon-grid {
		grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
		gap: 32px;
	}
}

@media (max-width: 527px) {
  .ctable_type_1 .ctable__last-row .ctable__cell {
    padding-bottom: 46px;
  }
  .quote {
    padding: 24px 16px;
  }
  .quote_big {
    padding: 24px 20px;
  }
  .grid_3col, .grid_4col {
    grid-template-columns: 1fr;
  }
}
