.page-title {
  background-image: url("../images/symptoms/title_bg.webp");
}

.page-title.youtsu {
  background-image: url("../images/symptoms/title_bg_youtsu.webp");
}

.page-title.katakori {
  background-image: url("../images/symptoms/title_bg_katakori.webp");
}

.page-title.zutsu {
  background-image: url("../images/symptoms/title_bg_zutsu.webp");
}

.page-title.hiza {
  background-image: url("../images/symptoms/title_bg_hiza.webp");
}

.page-title.jiritsushinkei {
  background-image: url("../images/symptoms/title_bg_jiritsushinkei.webp");
}

.page-title.zakotsu {
  background-image: url("../images/symptoms/title_bg_kogao.webp");
}

.page-title.kotsuban {
  background-image: url("../images/symptoms/title_bg_kotsuban.webp");
}

.page-title.kogao {
  background-image: url("../images/symptoms/title_bg_kogao.webp");
}

article .symptoms__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 1.8rem;
}
article .symptoms__inner .symptoms__inner__box {
  width: calc((100% - 3.6rem) / 3);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  background: #fff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}
article .symptoms__inner .symptoms__inner__box .symptoms__inner__box__img img {
  margin-bottom: 3px;
}
article .symptoms__inner .symptoms__inner__box .symptoms__inner__box__img .symptoms__inner__box__text__title {
  font-weight: 700;
  letter-spacing: 0.05em;
}
article .symptoms__inner .symptoms__inner__box .symptoms__inner__box__button {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
article .symptoms__inner .symptoms__inner__box .symptoms__inner__box__button .btn01 {
  width: 200px;
  max-width: 100%;
  height: 45px;
}
article .symptoms__inner .symptoms__inner__box .symptoms__inner__box__button .btn01.small {
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  article .symptoms__inner {
    gap: 1.25rem;
  }
  article .symptoms__inner .symptoms__inner__box {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
  }
  article .symptoms__inner .symptoms__inner__box .symptoms__inner__box__img {
    width: 20%;
  }
}

.page-child article {
  padding-top: 0;
}

.problem {
  padding-bottom: 80px;
}
.problem .problem__title {
  text-align: center;
}
.problem .problem__title h2 {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: clamp(1.125rem, 0.869rem + 1.17vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 0;
  margin-bottom: 0;
}
.problem .problem__inner {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.5rem;
  background-color: var(--bg-highlight);
  padding: 4.2rem 2.54rem 2.5rem;
  margin-top: -2.1rem;
  margin-bottom: 2.5rem;
}
.problem .problem__inner .problem__inner__img {
  flex: 1;
}
.problem .problem__inner .problem__inner__img img {
  width: 100%;
}
.problem .problem__inner .problem__inner__list {
  width: 50%;
}
.problem .problem__inner .problem__inner__list ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.problem .problem__inner .problem__inner__list ul li {
  font-size: clamp(0.93rem, 0.838rem + 0.42vw, 1.1rem);
  font-weight: 700;
  position: relative;
  padding-left: 2rem;
}
.problem .problem__inner .problem__inner__list ul li::before {
  content: "";
  width: 22px;
  height: 19px;
  background: url("../images/icon_check.svg") center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.problem .problem__catch {
  background: linear-gradient(150deg, #D1C4BB 0%, #B6A08F 34%, #AB907D 61%);
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.problem .problem__catch p {
  font-size: clamp(1.125rem, 0.869rem + 1.17vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 2.3px 3.5px rgba(0, 0, 0, 0.4);
}
.problem .problem__catch p span {
  font-size: clamp(1.5rem, 1.123rem + 1.72vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  .problem {
    padding-top: 40px;
  }
  .problem .problem__inner {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: -2.7rem;
    padding: 4.2rem 1rem 1.5rem;
  }
  .problem .problem__inner .problem__inner__list {
    width: 100%;
  }
  .problem .problem__inner .problem__inner__list ul li::before {
    top: 11px;
  }
  .problem .problem__catch {
    padding: 2rem 1rem;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}

article .main__content {
  padding-bottom: 40px;
}
article .main__content h2 {
  margin-bottom: 20px;
  border-left: 4px solid var(--color-sub04);
  padding-left: 1rem;
  font-size: clamp(1.375rem, 1.254rem + 0.55vw, 1.6rem);
}
article .main__content h3 {
  font-size: clamp(1.25rem, 1.169rem + 0.37vw, 1.4rem);
  margin-bottom: 10px;
}
article .main__content p {
  font-family: var(--font-family-gothic);
}
article .main__content p:has(+ h2), article .main__content p:has(+ h3) {
  margin-bottom: 40px;
}
article .main__content a {
  text-decoration: underline;
}
article .main__content ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 10px 15px;
  background: var(--bg-highlight);
  margin: 15px auto;
}
article .main__content ul.checklist li {
  position: relative;
  font-family: var(--font-family-gothic);
}
article .main__content ul.checklist li::before {
  content: "\e92d";
  font-family: "Material Icons";
  font-size: 1.2rem;
  margin-right: 5px;
  vertical-align: sub;
}
article .button__wrapper .btn01 {
  margin: 2.5rem auto 0;
  width: 360px;
  max-width: 100%;
}

.voice .voice__inner {
  padding-bottom: 6rem;
  position: relative;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box {
  padding: 1.85rem;
  background-color: var(--bg-highlight);
  display: grid;
  grid-template-columns: 1fr 195px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title img" "message img";
  gap: 1rem;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__title {
  grid-area: title;
  font-size: clamp(1.125rem, 1.058rem + 0.31vw, 1.25rem);
  font-weight: 700;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__message {
  grid-area: message;
  font-weight: 500;
  font-family: var(--font-family-gothic);
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__img {
  grid-area: img;
  width: 195px;
}
.voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__img img {
  width: 100%;
  aspect-ratio: 195/230;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 787px) {
  .voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide {
    width: 550px !important;
  }
}
.voice .voice__inner .swiper-container .swiper-button-prev, .voice .voice__inner .swiper-container .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  right: auto;
  left: auto;
  top: auto;
  bottom: 2rem;
}
.voice .voice__inner .swiper-container .swiper-button-prev::after, .voice .voice__inner .swiper-container .swiper-button-next::after {
  font-size: 15px;
}
.voice .voice__inner .swiper-container .swiper-button-prev svg, .voice .voice__inner .swiper-container .swiper-button-next svg {
  width: auto;
  height: auto;
}
.voice .voice__inner .swiper-container .swiper-button-prev {
  right: 4rem;
}
.voice .voice__inner .swiper-container .swiper-button-next {
  right: 0;
}
.voice .voice__inner .swiper-container .swiper-pagination {
  bottom: 3rem;
}
.voice .note {
  text-align: right;
  font-size: clamp(0.68rem, 0.642rem + 0.17vw, 0.75rem);
  font-family: var(--font-family-gothic);
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .voice .voice__inner {
    padding-bottom: 0.4rem;
  }
  .voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box {
    padding: 1rem;
    grid-template-columns: 126px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "img title" "message message";
    gap: 0.65rem;
    align-items: center;
  }
  .voice .voice__inner .swiper-container .swiper-wrapper .swiper-slide .voice__inner__box .voice__inner__box__img {
    width: 126px;
  }
  .voice .voice__inner .swiper-container .swiper-button-next,
  .voice .voice__inner .swiper-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    cursor: pointer;
  }
  .voice .voice__inner .swiper-container .swiper-button-next::after,
  .voice .voice__inner .swiper-container .swiper-button-prev::after {
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .voice .voice__inner .swiper-container .swiper-wrapper {
    margin-bottom: 1.3rem;
  }
  .voice .voice__inner .swiper-container .swiper-button-next {
    right: -10px;
  }
  .voice .voice__inner .swiper-container .swiper-button-prev {
    left: -10px;
  }
  .voice .voice__inner .swiper-container .swiper-pagination {
    bottom: -2rem;
  }
  .voice .voice__inner .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-sub04);
  }
}

@media screen and (max-width: 767px) {
  .swiper-container {
    position: relative;
  }
  .swiper-container .swiper-button-next,
  .swiper-container .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 55px;
    background-color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }
  .swiper-container .swiper-button-next::after,
  .swiper-container .swiper-button-prev::after {
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .swiper-container .swiper-wrapper {
    margin-bottom: 1.3rem;
  }
  .swiper-container .swiper-button-next {
    right: -10px;
  }
  .swiper-container .swiper-button-prev {
    left: -10px;
  }
  .swiper-container .swiper-pagination {
    bottom: -4rem;
  }
  .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-sub04);
  }
}/*# sourceMappingURL=symptoms.css.map */