@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*============================
base
============================*/
.side-nav-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
}
.side-nav-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  background: #8A5858;
  margin: 13px 10px 0 0;
}

span.nowrap {
  white-space: nowrap;
}

main .content {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  main .content {
    padding: 0;
  }
}
main .content .w900 {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  main .content .w900 {
    margin-inline: auto;
  }
}
main .content .content-section {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  main .content .content-section {
    margin-bottom: 50px;
  }
}
main .content .content-section .sttl-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 35px;
}
main .content .content-section .sttl-l .number {
  font-family: "Forum", sans-serif;
  color: #8A5858;
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-right: 20px;
  translate: 0 -1px;
}
@media screen and (max-width: 768px) {
  main .content .content-section .sttl-l .number {
    font-size: 18px;
    margin-right: 15px;
  }
}

.main-visual .main_ttl-l {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  padding-right: 4px;
}

/* ===========================
accordion
=============================*/
.symptoms_acc .acc_header .acc_btn {
  width: 100%;
  height: 100%;
  padding: 16px 25px;
  background: #EFE9DE;
  border-radius: 5px;
  border: 1px solid var(--brown03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_header .acc_btn {
    padding: 10px 15px;
  }
}
.symptoms_acc .acc_header .acc_btn .acc_btn_name {
  color: #654B3B;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_header .acc_btn .acc_btn_name {
    font-size: 18px;
  }
}
.symptoms_acc .acc_header .acc_btn .icon-wrap {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_header .acc_btn .icon-wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 5px;
  }
}
.symptoms_acc .acc_header .acc_btn .icon-wrap .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #654B3B;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.symptoms_acc .acc_header .acc_btn .icon-wrap .line:first-child {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.symptoms_acc .acc_header .acc_btn .icon-wrap .line:last-child {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.symptoms_acc .acc_header .acc_btn.active .icon-wrap .line:last-child {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.symptoms_acc .acc_content {
  margin-top: 30px;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_content {
    margin-top: 20px;
  }
}
.symptoms_acc .acc_content .content_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 4.33333333%;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_content .content_list {
    grid-template-columns: 1fr;
    gap: 5px;
    padding-bottom: 15px;
  }
}
.symptoms_acc .acc_content .content_list .content_item {
  border-bottom: 1px solid #CFC4BA;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_content .content_list .content_item {
    border-bottom: 0;
  }
}
.symptoms_acc .acc_content .content_list .content_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--brown03);
  position: absolute;
  left: -100%;
  bottom: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .symptoms_acc .acc_content .content_list .content_item:hover::before {
    left: 0;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .symptoms_acc .acc_content .content_list .content_item:hover::before {
    left: 0;
  }
}
.symptoms_acc .acc_content .content_list .content_item .modal_btn {
  width: 100%;
  height: 100%;
  padding-bottom: 15px;
}
.symptoms_acc .acc_content .content_list .content_item .modal_btn .modal_btn_name {
  display: inline-block;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .symptoms_acc .acc_content .content_list .content_item .modal_btn .modal_btn_name {
    font-size: 18px;
  }
}
.symptoms_acc .acc_content .content_list .content_item .modal_btn .modal_btn_name::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  aspect-ratio: 1/1;
  border-radius: 100vw;
  background: #A18679;
  position: absolute;
  top: 10px;
  left: 0;
}

/* =====================
modal
====================== */
.modal_wrapper {
  padding: 0;
  border-radius: 10px;
  border: 1px solid #707070;
  translate: 105px 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 1200px) {
  .modal_wrapper {
    translate: 0;
  }
}
.modal_wrapper.open {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal_wrapper::-ms-backdrop {
  background: rgba(0, 0, 0, 0);
  animation: fadeOutBg 0.3s forwards ease;
}
.modal_wrapper::backdrop {
  background: rgba(0, 0, 0, 0);
  -webkit-animation: fadeOutBg 0.3s forwards ease;
          animation: fadeOutBg 0.3s forwards ease;
}
@-webkit-keyframes fadeOutBg {
  from {
    background: rgba(0, 0, 0, 0.5);
  }
  to {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes fadeOutBg {
  from {
    background: rgba(0, 0, 0, 0.5);
  }
  to {
    background: rgba(0, 0, 0, 0);
  }
}
.modal_wrapper.open::-ms-backdrop {
  animation: fadeInBg 0.3s forwards ease;
}
.modal_wrapper.open::backdrop {
  -webkit-animation: fadeInBg 0.3s forwards ease;
          animation: fadeInBg 0.3s forwards ease;
}
@-webkit-keyframes fadeInBg {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}
@keyframes fadeInBg {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.5);
  }
}
.modal_wrapper .modal_content {
  max-width: 680px;
  padding: 60px 76px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content {
    max-width: 340px;
    padding: 40px 28px;
  }
}
.modal_wrapper .modal_content .m_title {
  color: #555;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 54px;
  padding-bottom: 4px;
  border-bottom: 1px solid #555;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .m_title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.modal_wrapper .modal_content .m_img {
  width: 63.37760911%;
  aspect-ratio: 334/241;
  background: #B5B5B5;
  margin-bottom: 48px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .m_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.modal_wrapper .modal_content .m_txt {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .m_txt {
    margin-bottom: 20px;
  }
}
.modal_wrapper .modal_content .cmn_btn_01 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .cmn_btn_01 a {
    min-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content:has(.m_img) .m_title {
    margin-bottom: 30px;
  }
}
.modal_wrapper .modal_content:has(.m_img) .m_txt {
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content:has(.m_img) .m_txt {
    margin-bottom: 20px;
  }
}
.modal_wrapper .modal_content .modal_btn-close {
  width: 23px;
  height: 23px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 29px;
  right: 27px;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .modal_btn-close {
    width: 16px;
    height: 16px;
    top: 16px;
    right: 16px;
  }
}
.modal_wrapper .modal_content .modal_btn-close .btn_inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.modal_wrapper .modal_content .modal_btn-close .btn_inner::before, .modal_wrapper .modal_content .modal_btn-close .btn_inner::after {
  content: "";
  display: block;
  width: 29px;
  height: 2px;
  background: #654B3B;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .modal_btn-close .btn_inner::before, .modal_wrapper .modal_content .modal_btn-close .btn_inner::after {
    width: 20px;
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.modal_wrapper .modal_content .modal_btn-close .btn_inner::before {
  top: 10px;
  left: -3px;
  rotate: 45deg;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .modal_btn-close .btn_inner::before {
    top: 0;
    left: 0;
  }
}
.modal_wrapper .modal_content .modal_btn-close .btn_inner::after {
  top: 10px;
  left: -3px;
  rotate: -45deg;
}
@media screen and (max-width: 768px) {
  .modal_wrapper .modal_content .modal_btn-close .btn_inner::after {
    top: 14px;
    left: 0;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .modal_wrapper .modal_content .modal_btn-close .btn_inner:hover::before, .modal_wrapper .modal_content .modal_btn-close .btn_inner:hover::after {
    opacity: 0.8;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .modal_wrapper .modal_content .modal_btn-close .btn_inner:hover::before, .modal_wrapper .modal_content .modal_btn-close .btn_inner:hover::after {
    opacity: 0.8;
  }
}

/*その他*/
.note {
  line-height: 2;
}

br.w400 {
  display: none;
}
@media screen and (max-width: 400px) {
  br.w400 {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .link_treatment_sec .inner {
    width: 100%;
  }
}/*# sourceMappingURL=symptoms.css.map */