/* color */
:root {
  --text: #2c465c;
  --PL: #9f2e8c;
  --palePL: #d78fcb;
  --bgPNK: #f0deef;
  --bgPL: #e8e0f9;
  --BLU: #b3e9f1;
  --SHC: #004492;
  --bgSHC: #f4f2e8;
}

.clmn-add {
  text-align: center;
}
.clmn-add .clmn-add__ttl {
  display: inline-block;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin: 30px auto 25px;
}
.clmn-add .clmn-add__ttl i {
  display: block;
  background: url(../img/meritDemerit/add/add_soudan.svg) center/contain no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
}
.clmn-add .clmn-add__link-outer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.clmn-add .clmn-add__link-outer .link {
  width: min(100%, 540px);
  height: 60px;
  border-radius: 100vmax;
  border: 1px solid var(--text);
  display: grid;
  place-content: center;
  position: relative;
  margin: 0 auto;
  background: var(--bgPNK);
  transition: 0.3s;
}
.clmn-add .clmn-add__link-outer .link--bunjou {
  background: var(--BLU);
}
.clmn-add .clmn-add__link-outer .link--SHC {
  height: 70px;
  background: var(--bgSHC);
  border: 1px solid var(--SHC);
  margin: 20px auto 35px;
}
.clmn-add .clmn-add__link-outer .link--SHC::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36%;
  height: 100%;
  background: url(../img/meritDemerit/add/add_SHC_bg.png) -25px 20%/cover no-repeat;
  border-radius: 100vmax;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .clmn-add .clmn-add__link-outer .link {
    height: 50px;
  }
}
.clmn-add .clmn-add__link-outer .link .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.clmn-add .clmn-add__link-outer .link .txt span {
  width: 24px;
  height: 24px;
}
.clmn-add .clmn-add__link-outer .link .txt span.exhibit {
  background: url(../img/meritDemerit/add/add_icon_exhibit.svg) center/cover no-repeat;
}
.clmn-add .clmn-add__link-outer .link .txt span.bunjou {
  background: url(../img/meritDemerit/add/add_icon_bunjou.svg) center/cover no-repeat;
}
.clmn-add .clmn-add__link-outer .link .txt p {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
.clmn-add .clmn-add__link-outer .link .txt p.SHC {
  color: var(--SHC);
  margin-left: 30px;
}
.clmn-add .clmn-add__link-outer .link .txt p em {
  font-size: 1.2em;
  font-style: normal;
}
.clmn-add .clmn-add__link-outer .link .arw {
  position: absolute;
  top: 50%;
  right: 20px;
  background: url(../img/meritDemerit/add/icon_arrow_gray.png) center/cover no-repeat;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .clmn-add .clmn-add__link-outer .link:hover {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  }
  .clmn-add .clmn-add__link-outer .link:hover .arw {
    transform: translateX(2px) translateY(-50%);
  }
}/*# sourceMappingURL=colomn_add.css.map */