.box-option {
  position: relative;
  flex-basis: min(370px, 88vw);
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 126px;
  align-items: stretch;
  gap: 0;
  padding: 7px;
  overflow: hidden;
}
.box-option > .box-option-visual {
  position: relative;
  display: block;
  grid-row: auto;
  width: auto;
  height: auto;
  min-height: 110px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: var(--brand);
}
.box-option-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.box-option-visual i {
  position: absolute;
  top: 7px;
  left: 7px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--brand);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(20,45,33,.12);
}
.box-option > .box-option-copy {
  display: flex;
  grid-row: auto;
  width: auto;
  height: auto;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 11px 9px 14px;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: inherit;
  text-align: left;
}
.box-option.active > .box-option-copy,
.box-option.not-recommended.active > .box-option-copy {
  background: transparent;
  color: var(--ink);
}
.box-option.active > .box-option-visual,
.box-option.not-recommended.active > .box-option-visual {
  background: #fff;
  color: var(--brand);
}
.box-option-copy > strong {
  display: block;
  width: 100%;
  overflow: visible;
  font-size: 16px;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}
.box-option .box-option-fit {
  display: inline-block;
  margin: 0 0 7px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f3ed;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.box-option em {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
  font-style: normal;
}
.box-option em b {
  padding: 5px 8px;
  border-radius: 7px;
  background: #e8f3ed;
  color: var(--brand);
  font-size: 12px;
  white-space: nowrap;
}
.box-option em i {
  overflow: visible;
  color: #56685f;
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}
.box-option.active em b {
  background: var(--brand);
  color: #fff;
}
.box-option.active .box-option-visual i { background: var(--brand); color: #fff; }
.box-option.not-recommended .box-option-fit { background: #fff0d8; color: #985d0d; }
.box-option.not-recommended .box-option-visual { opacity: .78; }
@media(max-width:760px){
  .box-option{grid-template-columns:124px minmax(0,1fr);min-height:116px}
  .box-option>.box-option-visual{min-height:102px}
  .box-option>.box-option-copy{padding:8px 8px 7px 11px}
  .box-option-copy>strong{font-size:15px}
  .box-option em i{font-size:10px}
}
