.policy_block .policy_contents:not(:first-child) {
  margin-top: 10.0rem;
}
.policy_contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4.0rem;
}
.policy_contents .policy_ttl {
  display: flex;
  column-gap: 6.0rem;
}
.policy_contents .policy_ttl .icon {
  width: min(18.7vw , 10.0rem);
  height: auto;
  aspect-ratio: 1 / 1;
}
.policy_contents .policy_ttl .text {
  font-size: min(10.7vw , 6.0rem);
  display: flex;
  flex-flow: column;
}
.policy_contents .policy_ttl .text > small {
  font-size: 0.4em;
}
.policy_contents .policy_txt {
  font-size: min(5vw , 1.8rem);
  line-height: 1.8;
  display: flex;
  flex-flow: column;
  row-gap: 4.0rem;
}
.policy_contents .policy_txt::before {
  content: "";
  width: 5.0rem;
  height: 0.2rem;
  background-color: #B2CDE2;
  display: inline-block;
}
.policy_contents .policy_txt .policy_txt_list > li:not(:first-child) {
  margin-top: 0.5em;
}
.policy_contents .policy_txt .policy_txt_list > li {
  display: flex;
  column-gap: 0.5em;
  align-items: flex-start;
}
.policy_contents .policy_txt .policy_txt_list > li::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  aspect-ratio: 1 / 1;
  background-color: #231815;
  display: inline-block;
  border-radius: 50%;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    grid-template-columns: 1fr;
    row-gap: 4.0rem;
  }
  .policy_contents .policy_ttl {
    column-gap: 3.0rem;
  }
  .policy_contents .policy_ttl .text > small {
    font-size: 0.45em;
  }
}

.company_table > dl {
	width: 100%;
	padding: 32px 20px;
	display: flex;
}
.company_table > dl:nth-child(even) {
  background-color: #fafafa;
}
.company_table > dl:first-child {
  padding-top: 0;
}
.company_table > dl > dt {
	width: 20%;
	margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .company_table > dl {
    padding: 16px 20px;
    display: block;
  }
  .company_table > dl > dt {
    width: 100%;
    margin-right: 0px;
    font-weight: bold;
  }
}

.base_area {
	border-bottom: 1px solid #707070;
	overflow: hidden;
	clear: both;
}
.base_area strong {
  font-size: 2rem;
  margin-bottom: 1em;
  display: inline-block;
}
.base_area:not(:first-child) {
	padding: 80px 0px;
}
.base_area:first-child{
	padding-bottom: 80px;
}
.base_area:last-child{
	padding-bottom: 0;
  border-bottom: none;
}
dl.base_table {
	display: flex;
	width: 100%;
	margin-bottom: 24px;
}

.base_table dt {
	width: 45%;
	margin-right: 5%;
}
.base_table dd {
	width: 50%;
	margin-top: 5%;
}
@media screen and (max-width: 768px) {
  .base_area:not(:first-child) {
    padding: 40px 0px;
  }
  .base_area:first-child {
    padding-bottom: 40px;
  }
    
  dl.base_table {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  
  .base_table dt {
    width: 100%;
    margin-right: 0%;
  }
  .base_table dd {
    width: 100%;
  }
}