.c-red {
  color: #e6001a;
}

br.-pc {
  display: inline;
}
@media screen and (max-width: 767px) {
  br.-pc {
    display: none;
  }
}

br.-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.-sp {
    display: inline;
  }
}

.txt-normal {
  font-weight: 500;
}

.soudan-mv-img p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 32px;
  color: #014694;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .soudan-mv-img p {
    font-size: 15px;
  }
}
.soudan-mv-img p::before {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: #014694;
  transform: rotate(-30deg);
}
.soudan-mv-img p::after {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: #014694;
  transform: rotate(30deg);
}
.soudan-mv-txt p {
  text-align: center;
  font-weight: bold;
  color: #014694;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .soudan-mv-txt p {
    font-size: 13px;
  }
}

.soudan-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .soudan-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.soudan-list-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-row: span 3;
  gap: 24px;
  border: 5px solid #e9eff6;
  border-radius: 10px;
  padding: 24px 16px;
}
@media screen and (max-width: 767px) {
  .soudan-list-item {
    padding: 16px 12px;
  }
}
.soudan-list-item-ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #014694;
}
@media screen and (max-width: 767px) {
  .soudan-list-item-ttl {
    font-size: 16px;
  }
}
.soudan-list-item-img {
  height: 105px;
  width: auto;
  align-self: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .soudan-list-item-img {
    height: 80px;
  }
}
.soudan-list-item-lead {
  font-size: 16px;
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .soudan-list-item-lead {
    font-size: 14px;
    line-height: 1.5;
  }
}
.soudan-list-note {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  color: #e6001a;
  background: #fde5e7;
  border-radius: 5px;
  padding: 5px 16px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .soudan-list-note {
    font-size: 16px;
    width: 100%;
    margin-top: 14px;
  }
}

.list-common.-soudan {
  font-weight: 500;
  margin-top: 30px;
}
.list-common.-soudan .list-common-item.-dot::before {
  top: 50%;
  transform: translateY(-50%);
}
.list-common.-soudan .list-common-item.-dot.-bold {
  font-weight: bold;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .list-common.-soudan .list-common-item.-dot.-bold {
    font-size: 18px;
  }
}

.soudan-note {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.soudan-note a {
  color: #014694;
  text-decoration: underline;
}

.soudan-web-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  color: #014694;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .soudan-web-txt {
    font-size: 16px;
  }
}
.soudan-web-txt::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background: #014694;
  transform: rotate(-30deg);
}
.soudan-web-txt::after {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background: #014694;
  transform: rotate(30deg);
}

.soudan-box {
  display: grid;
  grid-template-areas: "img icon ttl" "img txt txt";
  grid-template-columns: 24px auto 1fr;
  gap: 16px;
  width: 550px;
  border-radius: 5px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .soudan-box {
    grid-template-areas: "img icon" "ttl ttl" "txt txt";
    grid-template-columns: 24px auto;
    width: 100%;
  }
}
.soudan-box.-red {
  background: #FDE5E7;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .soudan-box.-red {
    margin-top: 20px;
  }
}
.soudan-box.-blue {
  background: #F3F5FB;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .soudan-box.-blue {
    margin-top: 16px;
    margin-bottom: 60px;
  }
}
.soudan-box-img {
  grid-area: img;
  width: 24px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .soudan-box-img {
    width: 22px;
  }
}
.soudan-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-area: icon;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  padding: 5px 10px;
}
.-red .soudan-box-icon {
  background: #E6001A;
}
.-blue .soudan-box-icon {
  background: #014694;
}
@media screen and (max-width: 767px) {
  .soudan-box-icon {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
  }
}
.soudan-box-ttl {
  grid-area: ttl;
  align-self: center;
  font-weight: bold;
  font-size: 20px;
}
.-red .soudan-box-ttl {
  color: #E6001A;
}
.-blue .soudan-box-ttl {
  color: #014694;
}
@media screen and (max-width: 767px) {
  .soudan-box-ttl {
    font-size: 16px;
  }
}
.soudan-box-txt {
  grid-area: txt;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .soudan-box-txt {
    font-size: 14px;
  }
}