/* message
------------------------------------ */
#message {
  margin: 0 clamp(9rem, 50vw - 512px, 9999rem) 0 clamp(2rem, 50vw - 512px, 9999rem);
  background: #FFF;
  border-radius: 15px;
  padding: 6rem 6rem 4rem 0;
  max-width: 1024px;
}
#message p strong {
  color: #2370A8;
}
@media screen and (max-width: 767px) {
  #message {
    margin: 0 2rem 0 2rem;
    padding: 2rem 2rem 2rem 0;
  }
}

.sectionContainer {
  background: #FFF;
  margin-top: 10rem;
  padding: 5rem 0;
}
.sectionContainer > section {
  margin: 5rem clamp(9rem, 50vw - 512px, 9999rem) 8rem clamp(2rem, 50vw - 512px, 9999rem);
}
.sectionContainer > section strong {
  color: #2370A8;
}
.sectionContainer > section strong.red {
  color: #BC116D;
}
@media screen and (max-width: 767px) {
  .sectionContainer {
    margin-top: 5rem;
  }
  .sectionContainer > section {
    margin: 3rem 2rem 5rem clamp(2rem, 50vw - 512px, 9999rem);
  }
}
.sectionContainer .treatment {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.sectionContainer .treatment dl {
  gap: 0;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.sectionContainer .treatment dl dt {
  border-radius: 10px 10px 0 0;
  background: #2370A8;
  color: #FFF;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sectionContainer .treatment dl dt:before {
  content: "";
  width: clamp(1.6rem, 1.3vw, 1.8rem);
  aspect-ratio: 1/1;
  mask: url("/lib/img/cmn/icon_maru_01.svg") no-repeat top/contain;
  background: #ECF3F7;
  display: block;
}
.sectionContainer .treatment dl dd {
  background: #ECF3F7;
  padding: 1rem 2rem;
  color: #2370A8;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1024px) {
  .sectionContainer .treatment {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .sectionContainer .treatment {
    grid-template-columns: 1fr;
  }
}
.sectionContainer .listbox {
  margin: 3rem 0 3rem;
  border-radius: 15px;
  box-shadow: 0 0 20px 0px rgba(34, 34, 34, 0.1);
  display: grid;
  grid-template-columns: calc(3rem + clamp(1.6rem, 1.3vw, 1.8rem)) 1fr;
}
.sectionContainer .listbox hgroup {
  padding: 1rem 1.5rem;
  background: #2370A8;
  border-radius: 15px 0 0 15px;
  color: #FFF;
  display: grid;
  place-content: center;
  place-items: center;
  line-height: 1.4;
}
.sectionContainer .listbox .inner {
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
}
.sectionContainer .listbox ul.clm2 {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 0rem 4rem;
}
.sectionContainer .listbox ul li {
  color: #2370A8;
  padding-left: 0.75em;
  text-indent: -0.75em;
  line-height: 1.4;
}
.sectionContainer .listbox ul li + li {
  margin-top: 1rem;
}
.sectionContainer .listbox ul li:before {
  content: "- ";
  color: #2370A8;
}
@media screen and (max-width: 767px) {
  .sectionContainer .listbox .inner {
    padding: 1rem 2rem;
  }
  .sectionContainer .listbox ul.clm2 {
    grid-template-columns: 1fr;
  }
}