@charset "UTF-8";
/* ------------------------------------
// common
------------------------------------ */
main:has(#diseases_detail),
main:has(#symptoms_detail) {
  padding-bottom: 0;
}

main:has(#search_index) {
  padding-inline: 2rem;
  padding-bottom: clamp(10rem, 13.9vw, 20rem);
}

/* ------------------------------------
// seach_index
------------------------------------ */
#search_index {
  max-width: 1000px;
  margin: 0 auto;
  border: solid 1px #728ac1;
  padding: 0.9rem;
}
#search_index .search_index {
  background: #fff;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  #search_index .search_index {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}
#search_index .search_index > * a {
  display: block;
  border-radius: 1rem;
  padding: 1rem;
}
#search_index .search_index > * a:hover > div {
  opacity: 0.8;
}
#search_index .search_index > * a > div {
  transition: 0.3s;
  background: #eceff6;
  max-width: 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  font-weight: 500;
  padding: clamp(1.5rem, 1.7vw, 2.5rem) 0;
  border-radius: 50vh;
}
#search_index .search_index > * a > div::before {
  content: "";
  margin-right: clamp(1.5rem, 1.4vw, 2rem);
  aspect-ratio: 1;
  width: clamp(5rem, 4.9vw, 7rem);
}
#search_index .search_index > * a > div::after {
  content: "";
  margin-left: clamp(1rem, 1vw, 1.5rem);
  aspect-ratio: 1;
  width: clamp(2rem, 2.1vw, 3rem);
  background: url(../img/cmn/icon_search.webp) no-repeat 0 0/contain;
}
#search_index .search_index > * a > div span {
  font-size: clamp(2rem, 1.8vw, 2.6rem);
}
#search_index .search_index > * a > div span:nth-child(1) {
  font-weight: 700;
  position: relative;
}
#search_index .search_index > * a > div span:nth-child(1)::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #88C9AB;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(5px);
}
#search_index .search_index > *.symptom a {
  background: #b9d1dc;
}
#search_index .search_index > *.symptom a > div::before {
  background: url(../img/cmn/icon_symptom_w.png) no-repeat 0 0/contain;
}
#search_index .search_index > *.disease a {
  background: #e3e6ce;
}
#search_index .search_index > *.disease a > div::before {
  background: url(../img/cmn/icon_disease_w.png) no-repeat 0 0/contain;
}
#search_index .search_index > *.disease a > div span:nth-child(1)::after {
  background: #dfdd5b;
}

/* ------------------------------------
// index
------------------------------------ */
section.index {
  padding-bottom: clamp(4rem, 5.6vw, 8rem);
}

/* ------------------------------------
// btn
------------------------------------ */
.search_btn {
  position: absolute;
  right: clamp(1rem, 2.8vw, 4rem);
  top: clamp(1rem, 3.1vw, 4.5rem);
}
@media screen and (max-width: 768px) {
  .search_btn {
    position: static;
    width: fit-content;
    margin: 0 2rem 3rem auto;
  }
}

.btn_related {
  margin-top: clamp(3rem, 4.2vw, 6rem);
  padding-inline: 2rem;
}
.btn_related a {
  text-align: center;
  color: #fff;
  padding: 0.5rem clamp(1.5rem, 2.1vw, 3rem) 0.5rem 0.5rem;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  font-weight: 500;
  line-height: 1;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.3s;
  max-width: 47rem;
  margin: 0 auto;
  background: #428ba0;
}
.btn_related a span {
  flex: 1;
}
.btn_related a:before {
  content: "";
  width: clamp(3rem, 3.5vw, 5rem);
  aspect-ratio: 1;
  background: url(../img/cmn/icon_stetho.png) no-repeat 0 0/contain;
}
.btn_related a:hover {
  background: #165f74;
}

/* ------------------------------------
// diseases_index
------------------------------------ */
#diseases_index {
  max-width: 1020px;
  margin: 0 auto clamp(3rem, 4.2vw, 6rem);
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 2.8vw, 4rem);
}
#diseases_index > div > section {
  margin-bottom: clamp(1rem, 2.8vw, 4rem);
  border-top: solid 2px #2a5e8d;
  padding-top: clamp(0.5rem, 0.5vw, 0.7rem);
}
#diseases_index > div > section hgroup:has(h3) {
  background: #fff;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 3rem);
  position: relative;
}
#diseases_index > div > section hgroup:has(h3)::before {
  content: "";
  aspect-ratio: 130/82;
  width: clamp(7rem, 9vw, 13rem);
}
@media screen and (max-width: 768px) {
  #diseases_index > div > section hgroup:has(h3) {
    cursor: pointer;
  }
  #diseases_index > div > section hgroup:has(h3)::after {
    content: "";
    width: 2.2rem;
    aspect-ratio: 1/1;
    background: url(../img/cmn/icon_plus.svg) no-repeat 0 0/contain;
    position: absolute;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  #diseases_index > div > section hgroup:has(h3).open::after {
    background-image: url(../img/cmn/icon_minus.svg);
  }
  #diseases_index > div > section hgroup:has(h3) a {
    pointer-events: none;
  }
}
#diseases_index > div > section hgroup:has(h3) h3 {
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
#diseases_index > div > section hgroup:has(h3) h3 span:nth-child(1) {
  font-size: clamp(2rem, 1.5vw, 2.2rem);
  font-weight: 700;
  color: #57b49a;
}
#diseases_index > div > section hgroup:has(h3) h3 span:nth-child(2) {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
}
#diseases_index > div > section .anchor {
  background: #f7f9fb;
  padding: clamp(2rem, 2.1vw, 3rem);
}
#diseases_index > div > section .anchor > section + * {
  margin-top: clamp(2.5rem, 3.5vw, 5rem);
}
#diseases_index > div > section .anchor > section h4 {
  font-size: 1.8rem;
  margin: 0 0 1em calc(-1 * clamp(2rem, 2.1vw, 3rem));
  padding-left: 4rem;
  position: relative;
}
#diseases_index > div > section .anchor > section h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 2.5rem;
  height: 3px;
  background: #2a5e8d;
}
#diseases_index > div > section .anchor > section h4 span {
  font-size: 2rem;
  font-weight: 500;
}
#diseases_index > div > section .anchor > section h4 span:nth-child(1) {
  color: #57b49a;
}
#diseases_index > div > section .anchor ul > * {
  padding-left: 1.2em;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}
#diseases_index > div > section .anchor ul > * + * {
  margin-top: 0.3em;
}
#diseases_index > div > section .anchor ul > *::before {
  content: "";
  aspect-ratio: 1;
  width: 1rem;
  border-radius: 50%;
  background: #88C9AB;
  position: absolute;
  left: 0;
  top: 0.35em;
}
#diseases_index > div > section .anchor ul > * span {
  font-size: 1.4rem;
  color: #428ba0;
  letter-spacing: normal;
}
#diseases_index > div > section.mimi-memai hgroup:has(h3)::before {
  background: url(../img/treatment/icon_mimi-memai.png) no-repeat 0 0/contain;
}
#diseases_index > div > section.nodo hgroup:has(h3)::before {
  background: url(../img/treatment/icon_nodo.png) no-repeat 0 0/contain;
}
#diseases_index > div > section.kao-kuchi hgroup:has(h3)::before {
  background: url(../img/treatment/icon_kao-kuchi.png) no-repeat 0 0/contain;
}
#diseases_index > div > section.hana-allergy hgroup:has(h3)::before {
  background: url(../img/treatment/icon_hana-allergy.png) no-repeat 0 0/contain;
}
#diseases_index > div > section.kubi hgroup:has(h3)::before {
  background: url(../img/treatment/icon_kubi.png) no-repeat 0 0/contain;
}
@media screen and (max-width: 768px) {
  #diseases_index {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #diseases_index > div {
    display: contents;
  }
  #diseases_index > div > section.mimi-memai {
    order: 1;
  }
  #diseases_index > div > section.kao-kuchi {
    order: 2;
  }
  #diseases_index > div > section.hana-allergy {
    order: 3;
  }
  #diseases_index > div > section.nodo {
    order: 4;
  }
  #diseases_index > div > section.kubi {
    order: 5;
  }
}

/* ------------------------------------
// diseases_detail
------------------------------------ */
#diseases_detail {
  background: #fff;
  padding: 0 2rem clamp(5rem, 6.9vw, 10rem);
}
#diseases_detail .diseases_detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 0;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) + section:not(#column):not(#message) {
  margin-top: clamp(5rem, 7.6vw, 11rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) > hgroup {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.1vw, 3rem);
  position: relative;
  margin-bottom: clamp(3rem, 4.5vw, 6.5rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) > hgroup::before {
  content: "";
  aspect-ratio: 130/82;
  width: clamp(7rem, 9vw, 13rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) > hgroup h2 {
  font-size: clamp(1.6rem, 1.8vw, 2.6rem);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) > hgroup h2 span:nth-child(1) {
  font-size: clamp(2rem, 2.1vw, 3rem);
  font-weight: 700;
  color: #57b49a;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) > hgroup h2 span:nth-child(2) {
  font-size: clamp(1.8rem, 1.9vw, 2.8rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) > hgroup::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #2a5e8d;
  transform: translateY(3px);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .cat {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 1em;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .cat::before {
  content: "";
  width: clamp(2rem, 1.7vw, 2.5rem);
  height: 3px;
  background: #2a5e8d;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .cat p {
  font-size: clamp(1.6rem, 2.1vw, 3rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .cat p span {
  font-size: clamp(1.8rem, 2.1vw, 3rem);
  font-weight: 500;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .cat p span:nth-child(1) {
  color: #57b49a;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail {
  padding: clamp(2rem, 2.8vw, 4rem);
  background: #eceff6;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail + * {
  margin-top: clamp(3rem, 2.8vw, 4rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail h3 {
  font-size: clamp(1.9rem, 1.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail h3 span {
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  color: #428ba0;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-areas: "what treat" "inspection treat";
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary.no_treat {
  grid-template-areas: "what inspection";
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary.no_inspection {
  grid-template-areas: "what treat";
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary {
  gap: 3rem 4rem;
}
@media screen and (max-width: 768px) {
  #diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary {
    display: block;
  }
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section {
  border-radius: 1rem;
  background: #fff;
  padding: clamp(1.5rem, 1.4vw, 2rem);
}
@media screen and (max-width: 768px) {
  #diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section + * {
    margin-top: 2rem;
  }
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section .sub {
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  margin-bottom: clamp(1rem, 1.4vw, 2rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section .sub::before {
  content: "";
  aspect-ratio: 1;
  width: clamp(1.3rem, 1.1vw, 1.6rem);
  border-radius: 50%;
  transform: translateY(0.3em);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section p {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section.what {
  grid-area: what;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section.what .sub::before {
  background: #88C9AB;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section.inspection {
  grid-area: inspection;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section.inspection .sub::before {
  background: #728ac1;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section.treat {
  grid-area: treat;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message) .detail .summary section.treat .sub::before {
  background: #f4e559;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message)#mimi-memai > hgroup::before {
  background: url(../img/treatment/icon_mimi-memai.png) no-repeat 0 0/contain;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message)#nodo > hgroup::before {
  background: url(../img/treatment/icon_nodo.png) no-repeat 0 0/contain;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message)#kao-kuchi > hgroup::before {
  background: url(../img/treatment/icon_kao-kuchi.png) no-repeat 0 0/contain;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message)#hana-allergy > hgroup::before {
  background: url(../img/treatment/icon_hana-allergy.png) no-repeat 0 0/contain;
}
#diseases_detail .diseases_detail > section:not(#column):not(#message)#kubi > hgroup::before {
  background: url(../img/treatment/icon_kubi.png) no-repeat 0 0/contain;
}

/* ------------------------------------
// symptoms_index
------------------------------------ */
#symptoms_index {
  padding-inline: 2rem;
}
#symptoms_index .lead {
  margin-inline: -2rem;
  margin-bottom: clamp(4rem, 6.3vw, 9rem);
  text-align: center;
}
#symptoms_index .lead p {
  font-family: "Noto Serif JP", serif;
}
#symptoms_index .lead p:nth-child(1) {
  font-size: clamp(1.8rem, 1.9vw, 2.8rem);
  font-weight: 600;
  color: #428ba0;
}
#symptoms_index .lead p:nth-child(1) span {
  color: #2a5e8d;
}
#symptoms_index .lead p:nth-child(2) {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
}
#symptoms_index .symptoms_index {
  max-width: 994px;
  margin: 0 auto clamp(4rem, 6.3vw, 9rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}
@media screen and (max-width: 768px) {
  #symptoms_index .symptoms_index {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#symptoms_index .symptoms_index > * a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(0.5rem, 0.7vw, 1rem);
  border-radius: 50vh;
  color: #0a2e5a;
  background: #fff;
}
#symptoms_index .symptoms_index > * a::before {
  content: "";
  width: clamp(4rem, 6.3vw, 9rem);
  aspect-ratio: 1;
}
#symptoms_index .symptoms_index > * a p {
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  font-weight: 500;
}
#symptoms_index .symptoms_index > * a p span {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
}
#symptoms_index .symptoms_index > * a p span.symp {
  color: #57b49a;
}
#symptoms_index .symptoms_index > * a p span.rubi {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
#symptoms_index .symptoms_index > *.mimi a::before {
  background: url(../img/treatment/icon_symptoms_mimi.png) no-repeat 0 0/contain;
}
#symptoms_index .symptoms_index > *.memai a::before {
  background: url(../img/treatment/icon_symptoms_memai.png) no-repeat 0 0/contain;
}
#symptoms_index .symptoms_index > *.hana a::before {
  background: url(../img/treatment/icon_symptoms_hana.png) no-repeat 0 0/contain;
}
#symptoms_index .symptoms_index > *.nodo a::before {
  background: url(../img/treatment/icon_symptoms_nodo.png) no-repeat 0 0/contain;
}
#symptoms_index .symptoms_index > *.kubi a::before {
  background: url(../img/treatment/icon_symptoms_kubi.png) no-repeat 0 0/contain;
}
#symptoms_index .symptoms_index > *.seki a::before {
  background: url(../img/treatment/icon_symptoms_seki.png) no-repeat 0 0/contain;
}

/* ------------------------------------
// symptoms_detail
------------------------------------ */
#symptoms_detail {
  background: #fff;
  padding: 0 2rem clamp(5rem, 6.9vw, 10rem);
}
#symptoms_detail .symptoms_detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 0;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) + section:not(#column):not(#message) {
  margin-top: clamp(5rem, 7.6vw, 11rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) hgroup {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.1vw, 3rem);
  position: relative;
  margin-bottom: clamp(3rem, 4.5vw, 6.5rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) hgroup::before {
  content: "";
  aspect-ratio: 1;
  width: clamp(4rem, 6.3vw, 9rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) hgroup h3 {
  font-size: clamp(1.6rem, 2.1vw, 3rem);
  font-weight: 500;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) hgroup h3 span.symp {
  font-size: clamp(2rem, 2.6vw, 3.8rem);
  color: #57b49a;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) hgroup h3 span.rubi {
  font-size: clamp(1.4rem, 1.8vw, 2.6rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) hgroup::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #2a5e8d;
  transform: translateY(3px);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail + section {
  margin-top: 3rem;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail h4 {
  background: #f5f7fc;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  padding: 3.5rem 7.5rem 3.5rem 4rem;
  position: relative;
  cursor: pointer;
  color: #2a5e8d;
}
@media screen and (max-width: 768px) {
  #symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail h4 {
    padding: 1.5rem 3.5rem 1.5rem 2rem;
  }
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail h4 span {
  color: #57b49a;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail h4::after {
  content: "";
  width: clamp(2.2rem, 2.1vw, 3rem);
  aspect-ratio: 1/1;
  background: url(../img/cmn/icon_plus.svg) no-repeat 0 0/contain;
  position: absolute;
  right: clamp(1rem, 3vw, 4.3rem);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail h4.open::after {
  background-image: url(../img/cmn/icon_minus.svg);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary {
  background: #f5f7fc;
  padding: 0 4rem 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 5rem;
}
@media screen and (max-width: 768px) {
  #symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary {
    display: block;
    padding: 0 2rem 2rem 2rem;
  }
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > * {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 768px) {
  #symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > * + * {
    margin-top: 2rem;
  }
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > * .sub {
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  padding: clamp(0.8rem, 0.8vw, 1.2rem) clamp(1.5rem, 1.7vw, 2.5rem);
  color: #fff;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > * .content {
  background: #fff;
  padding: clamp(1.5rem, 1.4vw, 2rem) clamp(1.5rem, 1.7vw, 2.5rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > * .content p {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.inspection .sub {
  background: #2a5e8d;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .sub {
  background: #428ba0;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul li > * {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 50vh;
  border: solid 1px #DAE7EE;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 500;
  color: #0a2e5a;
  padding: 0.6rem 1em 0.2rem;
  line-height: 1;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul li > *::after {
  content: "";
  height: clamp(2rem, 1.5vw, 2.2rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul li > span {
  gap: 0;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul li > a {
  padding-right: 0.3rem;
  background: #DAE7EE;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul li > a::after {
  aspect-ratio: 1;
  background: url(../img/cmn/icon_linkbtn_02.png) no-repeat 0 0/contain;
  transform: translateY(-0.25rem);
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message) .detail .summary > *.diseases .content ul li > a:hover {
  background: #428ba0;
  color: #fff;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message)#mimi hgroup::before {
  background: url(../img/treatment/icon_symptoms_mimi.png) no-repeat 0 0/contain;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message)#memai hgroup::before {
  background: url(../img/treatment/icon_symptoms_memai.png) no-repeat 0 0/contain;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message)#hana hgroup::before {
  background: url(../img/treatment/icon_symptoms_hana.png) no-repeat 0 0/contain;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message)#nodo hgroup::before {
  background: url(../img/treatment/icon_symptoms_nodo.png) no-repeat 0 0/contain;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message)#kubi hgroup::before {
  background: url(../img/treatment/icon_symptoms_kubi.png) no-repeat 0 0/contain;
}
#symptoms_detail .symptoms_detail > section:not(#column):not(#message)#seki hgroup::before {
  background: url(../img/treatment/icon_symptoms_seki.png) no-repeat 0 0/contain;
}

/* ------------------------------------
// column
------------------------------------ */
#column {
  position: relative;
  background: #DAE7EE;
  border-radius: clamp(1.5rem, 1.4vw, 2rem) clamp(1.5rem, 1.4vw, 2rem) 0 0;
  margin-top: clamp(6rem, 10.4vw, 15rem);
}
#column hgroup .en {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  font-size: clamp(2.8rem, 3.9vw, 5.6rem);
  font-weight: 200;
  color: #b9d1dc;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, -90%);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #column hgroup .en {
    right: 1rem;
  }
}
#column hgroup .en span {
  font-weight: 400;
}
#column hgroup h3 {
  color: #0a2e5a;
  font-size: clamp(2.2rem, 2.1vw, 3rem);
  font-weight: 500;
  padding: clamp(2rem, 2.4vw, 3.5rem) clamp(1.8rem, 2.1vw, 3rem) clamp(1.8rem, 2.1vw, 3rem);
  border-bottom: solid 1px #2a5e8d;
}
#column hgroup h3:has(.ques) {
  padding-top: clamp(1rem, 0.3vw, 0.5rem);
}
#column hgroup h3 span {
  font-size: clamp(1.6rem, 1.5vw, 2.2rem);
}
#column hgroup h3 span.ques {
  display: inline-block;
  font-size: clamp(3.8rem, 5.3vw, 7.6rem);
  font-weight: 700;
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #fff;
  margin: 0 0.2em;
  line-height: 1;
  transform: translateY(15%);
}
#column .detail {
  padding: 4rem 4rem 5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #column .detail {
    display: block;
    padding: 1.8rem;
    --boxmore-bgcolor: #dae7ee;
  }
  #column .detail:not(.open) .btn_more {
    bottom: 3.5rem;
  }
}
#column .detail .image {
  flex-basis: 290px;
}
#column .detail .image img {
  border-radius: 1.5rem;
  border: solid 1px #fff;
}
#column .detail .text {
  flex-basis: 590px;
  border-radius: 1rem;
  background: #fff;
  position: relative;
  padding: clamp(1.5rem, 1.5vw, 2.2rem);
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  color: #0a2e5a;
}
#column .detail .text ul + *,
#column .detail .text p + * {
  margin-top: 1.8em;
}
#column .detail .text ul li {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
}
#column .detail .text ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
#column .detail .text::after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  border-style: solid;
  border-width: 1rem 2.2rem 1rem 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% -50%;
}
@media screen and (max-width: 768px) {
  #column .detail .text {
    margin-bottom: 3rem;
  }
  #column .detail .text::after {
    top: auto;
    bottom: 0;
    left: 50%;
    border-width: 2rem 1.1rem 0 1.1rem;
    border-color: #fff transparent transparent;
    translate: -50% 100%;
  }
}

/* ------------------------------------
// message
------------------------------------ */
#message {
  background: url(../img/treatment/bg_message.webp) no-repeat 0 0/cover;
  border-radius: 0 0 2rem 2rem;
  padding: 6rem 4rem 5rem;
}
@media screen and (max-width: 768px) {
  #message {
    padding: 3rem 2rem 2.5rem;
  }
}
#message hgroup {
  font-weight: 700;
  margin-bottom: clamp(2rem, 2.1vw, 3rem);
  font-family: "Noto Serif JP", serif;
}
#message hgroup p {
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  color: #72c199;
}
#message hgroup h3 {
  font-size: clamp(2rem, 1.8vw, 2.6rem);
  color: #2a5e8d;
}
#message > p {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  color: #0a2e5a;
}