@charset "UTF-8";

.enTitle{font-size: 36px;font-weight: 700;line-height: 1;margin-bottom: 10px;color: var(--yellow);}
.jpTitle_h{font-size: 36px;font-weight: 700;line-height: 1;margin-bottom: 46px;}
.sec_wrap{
  margin:120px auto;
  width: 860px;
}

@media (max-width:900px){
  .sec_wrap{
    margin: 50px 10px;
    width: calc(100% - 20px);
  }
}

.sec_wrap p{
  font-size: 16px;
  line-height: 1.6;
}

.sec_wrap h3{
  font-weight: bold;
  font-size:22px;
  margin: 30px 0 10px;
  padding-bottom:5px;
  border-bottom: solid 6px var(--yellow);
  display: inline-block;
}

.sec_wrap h4{
  font-weight: bold;
  margin:25px 0 5px;
  font-size: 18px;
  border-left: solid 6px #000;
  padding-left:5px;
}

ol.kko{
  list-style: none;
  counter-reset: number;
  margin: 10px 0;
}
ol.kko > li {
  position: relative;
  padding-left: 40px;
  padding-bottom: 8px;
  line-height: 1.3;
}

ol.kko > li::before {
  counter-increment: number;
  content: '（' counter(number) '）';
  position: absolute;
  left: 0;
}

ol.mml {
  list-style: none;
  counter-reset: number;
  margin: 10px 0;
}
ol.mml > li {
  position: relative;
  padding-left: 1.5em;
  padding-bottom: 8px;
  line-height: 1.3;
}

ol.mml > li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
}

ol.dcm{
  margin: 10px 0;
}

ol.dcm > li{
  line-height: 1.3;
  list-style: decimal;
  margin: 0 0 10px 18px;
}

.mt30{margin-top: 30px;}

.tokusho dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.tokusho dl dt{
  background: #0D0D11;
  color: #fff;
  padding: 20px 5px 20px 20px;
  width: 320px;
  letter-spacing: .15em;
  box-sizing: border-box;
  margin-bottom: 2px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.tokusho dl dd{
  background: #EAEAEA;
  color: #0D0D11;
  padding: 20px 10px 20px 20px;
  width:  calc(100% - 322px);
  letter-spacing: .15em;
  box-sizing: border-box;
  margin-bottom: 2px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  font-size: 16px;
}

@media (max-width:768px){
  .tokusho dl dt{
    width: 100%;
    letter-spacing: 0;
    padding: 15px 5px 15px 10px;
  }

  .tokusho dl dd{
    padding: 15px 5px 15px 10px;
    width: 100%;
  }
}