
.consultation_step, .consultation_desc, .symptom_item:last-child{
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .consultation_step, .consultation_desc, .symptom_item:last-child {
    font-size: 1.6rem;
  }
}


/* チェックリスト */
.symptom {
  padding: 48px 0;
  background-color: var(--color-accent-02);
}
@media only screen and (min-width: 768px) {
  .symptom {
    padding: 60px 0;
  }
}

.symptom_box {
  background: #fff;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 12px;
}
@media only screen and (min-width: 768px) {
  .symptom_box {
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 24px;
  }
}

.symptom_title {
  font-weight: 700;
  color: var(--color-accent-03);
  border-bottom: 1px dashed var(--color-main-04);
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 4px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 1025px) {
  .symptom_title {
    transform: translateX(10px);
    margin-bottom: 38.3px;
    border-bottom: 3px dashed var(--color-main-04);
    padding-bottom: 0;
    font-size: 2.4rem;
  }
}

.symptom_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  row-gap: 15px;
  transform: translateX(10px);
  /* grid-template-columns: repeat(2, auto); */
}
@media only screen and (min-width: 1025px) {
  .symptom_list {
    grid-template-columns: none;
  }
}
@media only screen and (max-width: 767px) {
  .symptom_list {
    width: 80%;
    max-width: 500px;
    transform: translateX(20px);
  }
}

.symptom_item {
  font-weight: 700;
  color: var(--color-accent-03);
  display: flex;
  align-items: center;
  gap: 8.6px;
  line-height: 1.5;
  padding-right: 20px;
}
.symptom_item:last-child {
  padding-right: 0;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .symptom_item {
    padding-right: 60px;
  }
  .symptom_item:nth-child(5) {
    padding-right: 0px;
  }
  .symptom_item:nth-child(8) {
    padding-right: 40px;
  }
  .symptom_item:last-child {
    padding-right: 0;
    vertical-align:text-bottom;
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .symptom_item {
    padding-right: 50px;
  }
  .symptom_item:nth-child(7) {
    padding-right: 42px;
  }
}

.symptom_icon {
  width: 28px;
  height: 25px;
}
.symptom_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* 施術メニュー */
/* 20251215 kawai */
.medical_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
}

.medical_head {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main-01);
  color: white;
  border-radius: 3px;
  height: 55px;
  font-weight: 500;
}

.medical_head::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 6.4px;
  right: 6.4px;
  width: 10px;
  height: 10px;
  background-color: white;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.medical_head, .medical_item {
  font-size: 1.6rem;
}

.medical_col_item {
  transition: all 0.35s ease-in-out;
  list-style: none;
}

@media only screen and (min-width: 1025px) {
  .medical_head {
    height: 69px;
    transition: opacity 150ms linear;
  }
  .medical_head:hover {
    opacity: 0.7;
  }
  .medical_col:nth-child(2) .medical_col_item .text {
    transform: translate(16px, 0px);
  }
}




/* 診療の流れ */

.consultation_title {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transform: translate(7px, -10px);
}
@media only screen and (min-width: 1025px) {
  .consultation_title {
    margin-bottom: 50px;
  }
}

.consultation_title .txt_wrap {
  width: fit-content;
  position: relative;
}
.consultation_title .txt {
  display: block;
  font-weight: 700;
  color: var(--color-accent-03);
}
@media only screen and (min-width: 1025px) {
  .consultation_title .txt {
    letter-spacing: 0em;
    transform: translateX(-8px);
  }
}

.consultation_title .icon {
  position: absolute;
  height: auto;
  width: 84px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1025px) {
  .consultation_title .icon {
    bottom: -6px;
    left: 45.7%;
    width: 124.05px;
  }
}

.consultation_title .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.consultation_wrap {
  background-color: var(--color-accent-02);
  margin-bottom: 48px;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  .consultation_wrap {
    padding-top: 52px;
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .consultation_wrap {
    margin-bottom: 84px;
    padding-top: 48px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
}

.consultation_list {
  width: 893px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.consultation_item {
  display: flex;
  background-color: white;
  border-radius: 6px;
  margin-bottom: 11px;
  flex-direction: row;
  height: 100%;
  padding: 24px 12px;
  gap: 12px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .consultation_item {
    flex-direction: row;
    height: 80px;
    border-radius: 60px;
    padding: 0;
    gap: 0;
    margin-bottom: 17px;
  }
  .consultation_item:nth-child(2) {
    margin-left: 5%;
    height: auto;
    min-height: 110px;
  }
  .consultation_item:nth-child(5) {
    margin-left: 5%;
    height: auto;
    min-height: 130px;
  }

}

.consultation_icon {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background-color: #FFE7E1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .consultation_icon {
    transform: translateY(-5.5px);
  }
  .consultation_item:nth-child(2) .consultation_icon{
    transform: translate(-45px,4px);
  }
  .consultation_item:nth-child(5) .consultation_icon {
    transform: translate(-45px,15px);
  }
}

.consultation_head {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .consultation_head {
    align-items: center;
    padding-left: 15px;
    padding-right: 36px;
    flex-shrink: 0;
    width: 120px;
  }
}

.consultation_step {
  font-weight: 700;
  line-height: 1;
  color: #E5876D;
}

.consultation_label {
  font-weight: 700;
  color: var(--color-accent-03);
}

.consultation_desc {
  font-weight: 400;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .consultation_desc {
    padding-right: 1em;
  }
  .consultation_item:nth-child(2) .consultation_desc,
  .consultation_item:nth-child(5) .consultation_desc {
    padding-right: 0;
  }
}
/* transformにて調整のため幅指定により折り返しを改善 */
@media only screen and (min-width: 930px) {
  .consultation_item:nth-child(2) .consultation_desc,
  .consultation_item:nth-child(5) .consultation_desc {
    width: 650px;
    min-width: 0;
  }
}

.consultation_content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .consultation_content {
    flex-direction: row;
    align-items: center;
  }
  .consultation_item:nth-child(2) .consultation_content,
  .consultation_item:nth-child(5) .consultation_content {
    transform: translateX(-45px);
    flex-grow: 1;
    width: 100%;
  }
}


.consultation_item:not(:last-of-type)::after {
    content: '';
    display: block;
    position: absolute;
    left: 130px;
    bottom: -14px;
    width: 1px;
    height: 10px;
    border-right: 3.5px dotted #E5876D; 
}
.consultation_item:nth-child(2)::after {
    left: 87px;
  }
@media only screen and (min-width: 1025px) {
  .consultation_item:not(:last-of-type)::after {
    left: 15%;
  }
  .consultation_item:nth-child(2)::after {
    left: 88px;
  }
}
@media screen and (max-width: 767px) {
  .consultation_item:not(:last-of-type)::after {
    left: 55px;
    bottom: -10px;
  }
}


/* 当院のご案内とお願い */

.information {
  margin-bottom: 48px;
  padding-right: 2%;
}
@media only screen and (min-width: 768px) {
  .information {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .information {
    margin-bottom: 94px;
  }
}

.information_note {
  width: 100%;
  padding: 20px;
  padding-left: 4%;
  border: 1.5px solid var(--color-main-04);
  border-radius: 10px;
  height: 100%;
}

@media only screen and (min-width: 1025px) {
  .information_note {
    border: 3px solid var(--color-main-04);
    padding-top: 20px;
    padding-left: 56.5px;
    padding-bottom: 30px;
  }
}

.information_list:not(:last-child){
  margin-bottom: 35px;
}

.information_list p{
  color: #5D4C2E;
}

.information_list .ttl{
  font-size: 2.0rem;
  padding-bottom: 0.1rem;
  display: block;
  color: #E87F00;
  font-weight: bold;
}

.information_item{
  position: relative;
  padding-left: 1.0em;
  color: var(--color-accent-03);
  line-height: 1.875;
}
.information_item p::before{
  content:  "●";
  position: absolute;
  left: 0;
}

.information_list p.__pl{
  margin-left: 1em;
  position: relative;
  padding-left: 1.0em;
}
.information_list p.__pl::before{
  content:  "・";
  position: absolute;
  left: 0;
}




/* ---------------------------------------------
  自費美容医療 
-----------------------------------------------*/
.skincare .information_note{
  height: auto;
}

.director {
  padding: 0 0 48px 0;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  .director {
    padding: 0 0 60px 0;
  }
}
@media only screen and (min-width: 1025px) {
  .director {
    padding: 0 0 100px 0;
  }
}
.director_inner {
  padding-top: 40px;
}
@media only screen and (min-width: 1025px) {
  .director_inner {
    padding-top: 88px;
  }
}
.director_title {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 32px;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .director_title {
    margin-bottom: 50px;
  }
}
.director_title .txt_wrap {
  width: fit-content;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .director_title .txt_wrap {
    transform: translate(12px, 0px);
  }
}
.director_title .txt {
  display: block;
  font-weight: 700;
  color: var(--color-accent-03);
  letter-spacing: 0.1em;
  margin-bottom: 1px;
}
.director_title .icon {
  position: absolute;
  height: auto;
  width: 84px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .director_title .icon {
    width: 124.05px;
  }
}
.director_title .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.director_slider {
  width: 100%;
}
.director_slider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.director_slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}
.director_content {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .director_content {
    flex-direction: row;
  }
}

.director_text {
  width: 100%;
  padding: 0 12px;
}
@media only screen and (min-width: 768px) {
  .director_text {
    width: 50%;
  }
}

.director_heading {
  font-weight: 500;
  color: var(--color-accent-03);
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0rem;
}
@media only screen and (min-width: 768px) {
  .director_heading {
    margin-bottom: 24px;
    padding-top: 16px;
  }
}
@media only screen and (min-width: 1025px) {
  .director_heading {
    margin-bottom: 40px;
    font-size: 3.0rem;
  }
}

.director_desc {
  line-height: 1.5;
  margin-bottom: 12px;
}
@media only screen and (min-width: 1025px) {
  .director_desc {
    margin-bottom: 20px;
  }
}
.director_desc br {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .director_desc {
    margin-bottom: 35px;
  }
  .director_desc br {
    display: block;
  }
}
.director_name {
  margin-bottom: 24px;
}
@media only screen and (min-width: 1025px) {
  .director_name {
    margin-bottom: 43px;
  }
}
.director_name .director_sub {
  display: block;
}
.director_btn {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .director_btn {
    width: 394px;
    display: flex;
    margin-left: 0;
    margin-right: 0;
  }
}
.director_image {
  width: 100%;
  margin-top: 24px;
  padding: 0 12px;
}
@media only screen and (min-width: 768px) {
  .director_image {
    width: 50%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .director_image {
    transform: translateX(10px);
  }
}
.director_image .img {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .director_image .img {
    margin-left: 0;
    margin-right: 0;
  }
}
.director_image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}
@media only screen and (min-width: 1025px) {
  .director_image img {
    border-radius: 30px;
  }
}


/* おすすめの施術メニュー */


.service {
  padding-top: 28px;
  background-color: #fff;
}
@media only screen and (min-width: 1025px) {
  .service {
    padding-top: 32px;
  }
}
.service_title {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .service_title {
    margin-bottom: 54px;
  }
}
.service_title .txt_wrap {
  width: fit-content;
  position: relative;
}
.service_title .txt {
  display: block;
  font-weight: 700;
  color: var(--color-accent-03);
}
.service_title .icon {
  position: absolute;
  height: auto;
  width: 84px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .service_title .icon {
    width: 124.05px;
  }
}
.service_title .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
}
.service_item {
  width: 100%;
  max-width: 375px;
}
@media only screen and (min-width: 768px) {
  .service_item {
    width: calc(50% - 8px);
    max-width: 390px;
  }
}
@media only screen and (min-width: 1025px) {
  .service_item {
    min-width: 390px;
    width: 33.3333333333%;
  }
}
.service_item_inner {
  height: 100%;
  background-color: var(--color-accent-08);
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .service_item_inner {
    padding: 19px 11px 7px 11px;
    transition: all 0.5s;
  }
  .service_item_inner:hover {
    opacity: 0.7;
  }
}
.service_item:nth-child(1) .service_item_icon {
  transform: translateY(-4px);
}

@media only screen and (min-width: 1025px) {
  .service_item:nth-child(1) .service_item_label {
    transform: translate(-5px, 0px);
  }
}
@media only screen and (min-width: 1025px) {
  .service_item:nth-child(2) .service_item_label {
    transform: translate(2px, 0px);
  }
}

@media only screen and (min-width: 1025px) {
  .service_item:nth-child(3) .service_item_label {
    transform: translate(-1px, 0px);
  }
}
.service_item_label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: var(--color-main-01);
  border-radius: 50px;
  padding: 2px 16px;
  margin-bottom: 3px;
  font-weight: 500;
  line-height: 1.4444444444;
  min-height: 30px;
  width: 100%;
  max-width: 275px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .service_item_label {
    max-width: 302px;
    width: 302px;
    transform: translate(-10px, 0px);
  }
}

.service_item_title {
  font-size: 2.4rem;
  color: var(--color-main-01);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.1em;
  margin-bottom: 8px;
  font-family: "Noto Serif JP", serif;
}
@media only screen and (min-width: 1025px) {
  .service_item_title {
    white-space: nowrap;
    font-size: 2.95rem;
  }
}

.service_item_title .small {
  letter-spacing: -0.1em;
}
.service_item_icon {
  width: 125.38px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.service_item_icon.style_pri {
  padding-bottom: 12px;
}
@media only screen and (min-width: 1025px) {
  .service_item_icon.style_pri {
    transform: translate(17px, -1px) scale(1.06);
  }
}
.service_item_icon.style_second {
  width: 98px;
  padding-bottom: 5.7px;
}
.service_item_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service_item_tags {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 13px;
  margin-top: 1px;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .service_item_tags {
    white-space: unset;
  }
}
.service_item_tags li {
  background-color: var(--color-main-01);
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 12px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 33.3333333333%;
}
.service_item_tags li.style_pri {
  padding: 6px 2px;
  width: 236px;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .service_item_tags li.style_pri {
    white-space: unset;
  }
}
.service_item_desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 8px;
  text-align: left;
  margin-top: auto;
  height: 100%;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1025px) {
  .service_item_desc {
    transform: translateY(-4px);
    padding: 9px 4px 7px 12px;
  }
}
/* @media only screen and (min-width: 1025px) {
  .service_item:nth-child(1) .service_item_desc {
    transform: translateY(-4px);
    padding: 5px 4px 7px 2px;
  }
} */
@media only screen and (min-width: 1025px) {
  .service_item:nth-child(3) .service_item_desc {
    padding: 13px 4px 7px 17px;
  }
}

.service_item_desc::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 7.4px;
  right: 7.1px;
  width: 11.7px;
  height: 11.7px;
  background-color: var(--color-main-01);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.service_item_desc ul li {
  color: var(--color-accent-03);
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
  font-weight: 500;
}
.service_item_desc ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--color-main-01);
  top: -1px;
}

.service_item_desc ul li:not(:last-child) {
  margin-bottom: 2px;
}
@media only screen and (min-width: 768px) {
  .service_item_desc ul li:not(:last-child) {
    margin-bottom: 0;
  }
}

.service_item_desc .note {
  line-height: 1.4166666667;
  letter-spacing: -0.05em;
  margin-top: 7px;
  font-weight: 500;
  padding-left: 6px;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .service_item_desc .note {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .service_item_desc .note {
    font-size: 1.2rem;
  }
}
