/* causesymptom
------------------------------------ */
#causesymptom {
  margin: 3rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem clamp(2rem, 2.1vw, 3rem);
}
#causesymptom > section {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  border-radius: 10px;
  padding: 0 2rem 2rem;
}
#causesymptom > section h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  color: #FFF;
  border-radius: 10px 10px 0 0;
  padding: 1rem;
  margin: 0 -2rem 0rem;
}
#causesymptom > section h3:before {
  content: "";
  width: 3rem;
  aspect-ratio: 1;
}
#causesymptom > section h4 {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  border-bottom: 1px dotted;
}
#causesymptom > section .checklist02 {
  margin: 2rem 0 0;
}
#causesymptom > section .disc {
  background: #FFF;
  padding: 1rem;
  border-radius: 1rem;
}
#causesymptom > section .marker {
  background: linear-gradient(transparent 50%, #F2FF8E 50%, transparent 100%);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #causesymptom {
    display: grid;
    grid-template-columns: 1fr;
  }
  #causesymptom section {
    padding: 0 1rem 2rem 1rem;
  }
  #causesymptom section h3 {
    margin: 0 -1rem;
  }
}
#causesymptom #cause {
  background: #F0F6F7;
}
#causesymptom #cause h3 {
  background: #2394A8;
}
#causesymptom #cause h3::before {
  background: url(/lib/img/cmn/icon_cause.webp) no-repeat center/contain;
}
#causesymptom #cause h4 {
  color: #2370A8;
}
#causesymptom #symptom {
  background: #F7ECF7;
}
#causesymptom #symptom h3 {
  background: #BC116D;
}
#causesymptom #symptom h3::before {
  background: url(/lib/img/cmn/icon_symptom.webp) no-repeat center/contain;
}
#causesymptom #symptom h4 {
  color: #BC116D;
}
#causesymptom #symptom .checklist02 li {
  color: #BC116D;
}

/* medTreatment
------------------------------------ */
#medTreatment {
  margin-top: 4rem;
  padding: 0 3rem 3rem;
  border-radius: 10px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
#medTreatment h3 {
  background: #2370A8;
  color: #FFF;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  color: #FFF;
  border-radius: 10px 10px 0 0;
  padding: 1rem;
  margin: 0 -3rem 2rem;
}
#medTreatment h3:before {
  content: "";
  width: 3rem;
  aspect-ratio: 1;
  background: url(/lib/img/cmn/icon_treatment.webp) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  #medTreatment {
    padding: 0 1rem 1rem;
  }
  #medTreatment h3 {
    margin: 0 -1rem 2rem -1rem;
  }
}

/* #categoryMenu
------------------------------------ */
#categoryMenu {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
#categoryMenu hgroup {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#categoryMenu hgroup .icon {
  width: 56px;
}
#categoryMenu hgroup h2 {
  display: flex;
  gap: 0.5rem;
  color: #0C3756;
  align-items: center;
  font-weight: bold;
}
#categoryMenu hgroup h2 span {
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  padding-right: 1rem;
}
#categoryMenu .menulistbox {
  background: #ECF3F7;
  padding: 3rem 4rem;
}
#categoryMenu .menulist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem clamp(2rem, 2.1vw, 3rem);
}
#categoryMenu .menulist a {
  display: block;
  background: #2370A8;
  color: #FFF;
  padding: 0.25rem 3rem 0.25rem 2rem;
  border-radius: 50vh;
  position: relative;
}
#categoryMenu .menulist a:hover {
  background: #115281;
}
#categoryMenu .menulist a::after {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.5rem);
}
#categoryMenu .link {
  color: #FFF;
}
#categoryMenu .link a {
  background: #115281;
  border-radius: 0 0 15px 15px;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: clamp(1.8rem, 1.4vw, 2rem);
}
#categoryMenu .link a:hover {
  background: #0C3756;
}
#categoryMenu .link a::after {
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  #categoryMenu {
    border-radius: 10px;
  }
  #categoryMenu hgroup {
    display: block;
  }
  #categoryMenu hgroup .icon {
    width: 46px;
    margin: 0 auto 0.5rem;
  }
  #categoryMenu hgroup h2 {
    text-align: center;
    display: block;
  }
  #categoryMenu hgroup h2 span {
    display: block;
    padding-right: 0;
  }
  #categoryMenu .menulistbox {
    background: #ECF3F7;
    padding: 2rem 1rem;
  }
  #categoryMenu .menulist {
    display: grid;
    grid-template-columns: 1fr;
  }
  #categoryMenu .menulist a {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 5px;
    line-height: 1.4;
  }
  #categoryMenu .menulist a::after {
    content: "";
    width: 0.6rem;
    right: 1rem;
    top: calc(50% - 0.3rem);
  }
}