@charset "UTF-8";
:root {
    --color-light-gray: #F4F3EF; 	/* ベージュ背景色 bgbge */
    --color-brown: #5D4C2E; 		/* 濃いブラウン fcbr */
    --color-orange: #E87F00; 		/* オレンジ fcog */
    --color-green: #779851; 		/* 濃い緑 bggn */
    --color-light-green: #85B74C; 	/* 薄い緑 bglgn */
}

/* 共通のスタイル　------------------------------------------------------------------- */

@media only screen and (max-width: 500px) {
  .breadcrumb_lists._pfs{
    font-size: 1rem;
  }
}
@media only screen and (max-width: 330px) {
  .breadcrumb_lists._pfs{
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 360px) {
  .treatment .dermatology_heading br,
  .slimming .dermatology_heading.__mw560 br{
    display: none;
  }
}
/* =============================
    症状チェックマップ(symptom)
============================= */

.symptom_box {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 22px 0 70px;
}


@media only screen and (max-width: 768px) {
  .symptom_box {
    width: 90%;
    max-width: 600px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 34px;
    padding-bottom: 24px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .symptom_box {
    width: 80%;
    padding-top: 20px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 24px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .symptom_box {
      width: 85%;
  }
}
@media only screen and (max-width: 500px) {
  .symptom_box {
    width: 90%;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 12px;
    padding-bottom: 24px;
  }
}

.symptom_title {
  font-size: 1.8rem;
  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;
}

@media only screen and (min-width: 1025px) {
  .symptom_title {
    font-size: 2.4rem;
    transform: translateX(10px);
    margin-bottom: 38.3px;
    border-bottom: 3px dashed var(--color-main-04);
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .symptom_title {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }
}

.symptom_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 99%;
  margin: 0 auto;
  row-gap: 15px;
  column-gap: 24px;
  transform: translateX(10px);
  /* grid-template-columns: repeat(2, auto); */
}
@media only screen and (min-width: 1025px) {
    .symptom_list {
        /* grid-template-columns: none; */
    }
}


.symptom_item {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-accent-03);
  display: flex;
  align-items: center;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .symptom_item {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 500px) {
  .symptom_item {
    font-size: 1.4rem;
  }
}

.symptom_icon {
  width: 27px;
  height: 24px;
  padding-right: 2px;
}

.symptom_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* =============================
  施術効果(effect)
============================= */

.p_effect_container {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: 70px 20px;

  /* 20251210 kawai 横に入りきらなかった要素を次の行に送る */
  flex-wrap: wrap;
  justify-content: flex-start;

}

.p_effect_item {
  position: relative;

  /* 20251210 kawai 3つギリギリ収まる幅 */
  /* width: 33.33333%; */
  width: calc((100% - 30px) / 3);

  max-width: 390px;
  height: 171px;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
  align-items: center;
  padding-bottom: 40px;
  background-image: url('./../images/common/skincare_bg_frame.png');
  background-size: cover;
  background-position: center;
  /* 画像がなかった時の代用 */
  border-radius: 10px;
  background-color: var(#FFDAD1);
}

/* 20251210 kawai  */
.p_effect_item.is-over-4 {
  margin-bottom: 74px; /* ← 下だけ74pxの余白を追加！ */
}
@media screen and (max-width: 600px) {
  .p_effect_item.is-over-4 {
    margin-bottom: 0px;
  }
}



.p_effect_number {
  width: 79px;
  height: 79px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #E5876D;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.p_effect_number span:first-child{
  font-size: 1.5rem;
  position: absolute;
  top: 4px;
}

.p_effect_number span:last-child{
  font-size: 4.7rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding-top: 8px;
}

.p_effect_text {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 650;
  text-align: center;
  color: var(#515151);
}

@media screen and (min-width: 1200px) {
  .p_effect_item {
    padding-bottom: 30px;
  }
  .p_effect_text {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .p_effect_container {
    margin: 60px 20px;
    gap: 10px;
  }
  .p_effect_item {
    height: 150px; 
    padding-bottom: 40px;
  }

  .p_effect_number {
    width: 65px;
    height: 65px;
    top: -35px; 
  }

  .p_effect_number span:first-child{
    font-size: 1.3rem;
    top: 4px;
  }

  .p_effect_number span:last-child{
    font-size: 4rem;
    margin-top: 5px;
  }

  .p_effect_text {
    font-size: 2rem;
  }

}
@media screen and (min-width: 601px) and (max-width: 768px) {
  .p_effect_container {
    margin: 40px 0;
    gap: 10px;
  }
  .p_effect_item {
    max-height: 120px;
    padding-bottom: 28px;
  }

  .p_effect_number {
    width: 55px;
    height: 55px;
    top: -28px; 
  }

  .p_effect_number span:first-child{
    font-size: 1.2rem;
    top: 2px;
  }

  .p_effect_number span:last-child{
    font-size: 3.2rem;
    margin-top: 5px;
  }

  .p_effect_text {
    font-size: 1.7rem;
  }

}
@media screen and (max-width: 600px) {

  .p_effect_container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 50px auto;
  }

  .p_effect_item {
    width: 90%;
    max-width: 500px;
    max-height: 120px;
    padding-bottom: 20px;
  }

  .p_effect_number {
    width: 55px;
    height: 55px;
    top: -28px; 
  }

  .p_effect_number span:first-child{
    font-size: 1.2rem;
    top: 2px;
  }

  .p_effect_number span:last-child{
    font-size: 3.2rem;
    margin-top: 5px;
  }

  .p_effect_text {
    font-size: 2.0rem;
  }
}

/* =============================
  施術メニュー(menu) 
============================= */
.p_menu_conteiner{
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.p_menu_item {
  width: 100%;
  justify-content: center;
  border: 3px solid #F4F3EF; 
  background-color: #fff;
  padding: 38px 35px 50px 40px;
  position: relative; 
  border-radius: 15px;
  margin-bottom: 30px;
}

.p_menu_head_column,
.p_menu_body_column {
  display: flex;
  align-items: center;
}

.p_menu_ttl,
.p_menu_ttl_column{
  display: flex;
  align-items: start;
}

.p_menu_ttl_column{
  margin-left: 1rem;
  gap: 10px;
}

.p_menu_ttl h4{
  font-size: 2.0rem;
  text-align: left;
  font-weight: bold;
  color: var(--color-brown);
}

.p_menu_ttl span{
  width: auto;
  min-width: 90px;
  height: 30px;
  font-size: 1.6rem;
  font-weight: 450;
  color: #FFF;
  background-color: #E5876D;
  padding-top: 0.3rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  border-radius: 5px;
}


.p_menu_body_column{
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.p_menu_img{
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.p_menu_img img{
  width: 100%;
  height: auto;
}


.p_menu_text{
  margin: 25px auto 0;
  text-align: left;
}

.p_menu_body_column > .p_menu_text{
  margin-top: 0;
}

.p_menu_text p.__bold{
  font-weight: bold;
}

@media screen and (min-width: 1400px) {
  .p_menu_conteiner{
    padding: 0;
  }
}
@media screen and (max-width: 1110px) {
  .p_menu_ttl._w1100{
    flex-direction: column;
    gap: 4px;
  }
  .p_menu_ttl._w1100 h4{
    font-size: 1.85rem;
  }
  .p_menu_ttl._w1100 .p_menu_ttl_column{
    margin-left: 0;
    gap: 4px;
  }
}
@media screen and (max-width: 767px) {
  .p_menu_conteiner{
    padding: 0;
  }
  .p_menu_item {
    margin: 0 auto;
    margin-bottom: 18px;
    flex-direction: column;
    padding: 18px 16px;
  }

  .p_menu_item:not(:last-of-type)::after {
    left: 50%;
    bottom: -16px;
  }

  .p_menu_head_column {
    flex-direction: column;
    align-items: start;
  }

  .p_menu_ttl h4{
    font-size: 1.6rem;
  }
   .p_menu_ttl._w1100 h4{
    font-size: 1.55rem;
   }

  .p_menu_text{
    margin: 14px auto 0;
  }

  .p_menu_ttl span{
    height: 25px;
    width: auto;
    font-size: 1.2rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .p_menu_ttl{
    flex-direction: column;
    gap: 4px;
  }

  .p_menu_ttl_column{
    margin-left: 0;
    gap: 4px;
    flex-wrap: wrap;
  }

  .p_menu_body_column{
    margin-top: 8px;
    flex-direction: column-reverse;
    gap: 18px;
  }

  .p_menu_img{
    width: 90%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .p_menu_img img{
    width: 50%;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .p_menu_item {
    padding: 26px 18px;
  }
}

@media screen and (max-width: 500px) {

  .p_menu_item {
    padding: 14px 14px;
  }
  
  .p_menu_ttl{
    flex-direction: column;
    gap: 8px;
  }

  .p_menu_ttl span{
    height: 25px;
    font-size: 1.4rem;
    margin-right: 2px;
    margin-left: 0;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }

  .p_menu_body_column{
    margin-top: 10px;
    gap: 8px;
  }
}

/* =============================
  料金表(price)
============================= */
/* コース */
.price_table_course-title {
    font-size: 2.0rem;
    color: #515151;
    font-weight: 500;
    margin: 45px 0 15px 0;
    text-align: left;
}

/* テーブル本体 */
.price_table {
    width: 100%;
    border-collapse: collapse;
    border-left: none;
    border-right: none;
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
  .p_price .container > div {
    margin-right: 20px;
  }
}

/* テーブルのセルの線を消す */
.price_table tr > *:first-child,
.price_table_col-volume {
    border-left: none !important;
}
.price_table tr > *:last-child,
.price_table_col-name,
.price_table_col-name--wide {
    border-right: none !important;
}

.price_table th,
.price_table td {
    padding: 20px;
    border: 1px solid #A29B8A;
    font-size: 1.6rem;
}

.price_table_text {
    display: block;
    padding-left: 10px;
}

/* （カテゴリ & メニュー & 時間 & 料金 & 注意書き）共通スタイル */
.price_table_col-category,
.price_table_col-name,
.price_table_col-name--wide,
.price_table_col-volume,
.price_table_col-price,
.price_table_note-row {
    color: #515151;
    font-weight: 500;
}

/* 1列目：カテゴリー */
.price_table_col-category {
    width: 18%;
    background-color: #F4F3EF;
    text-align: left;
    vertical-align: middle;
}

/* 2列目：メニュー */
.price_table_col-name {
    width: 32%;
    background-color: #F4F3EF;
    text-align: left;
}

/* カテゴリー+メニュー */
.price_table_col-name--wide {
    width: 50%;
    background-color: #F4F3EF;
    text-align: left;
    vertical-align: middle; /* 追加 */
}

/* 3列目：時間 */
.price_table_col-volume {
    width: 25%;
    text-align: center;
    vertical-align: middle; /* 追加 */
}

/* 4列目：料金 */
.price_table_col-price {
    width: 25%;
    text-align: right;
    vertical-align: middle; /* 追加 */
}

/* 20251210 kawai */
/* 時間+料金 */
.price_table_col-price--wide {
    width: 50%;
    text-align: right;
    vertical-align: middle; /* 追加 */
}

/* 注意書き */
.price_table_note-row {
    margin-top: 8px;
    font-weight: 400;
    text-align: right;
}

.__w400br{
  display: none;
}

@media screen and (max-width: 767px) {
    /* 1列目：カテゴリー */
    .price_table_col-category {
        width: 30%;
    }
    /* 2列目：メニュー */
    .price_table_col-name {
        width: 30%;
    }
    /* カテゴリー+メニュー */
    .price_table_col-name--wide {
        width: 60%;
    }
    /* 3列目：時間 */
    .price_table_col-volume {
        width: 20%;
    }
    /* 4列目：料金 */
    .price_table_col-price {
        width: 20%;
    }
    .price_table_note-row {
        text-align: left;
    }

    .price_table th,
    .price_table td {
      font-size: 1.4rem;
    }

    .price_table_course-title {
      font-size: 1.75rem;
    }
}
@media screen and (max-width: 500px) {
    .price_table th,
    .price_table td {
        padding: 20px 5px;
    }

    .price_table_course-title {
      font-size: 1.6rem;
    }
}
@media screen and (max-width: 400px) {
    .__w400br{
    display: block;
  }
}



/* =============================
  よくある質問(faq)
============================= */
.faq_content{
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .faq_content{
    padding-right: 10px;
  }
}

.faq_item_body{
    font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
    .faq_item_body{
    font-size: 1.6rem;
  }
}
.faq_item_head .txt{
    font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
    .faq_item_head .txt{
        font-size: 2rem;
    }
}

.faq_item_head .hilight{
    font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .faq_item_head .hilight{
        font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1025px) {
    .faq_item_head .hilight{
        font-size: 2.4rem;
    }
}

.faq_title .txt{
  font-size: 2.4rem;
}

@media only screen and (min-width: 768px) {
    .faq_title .txt{
        font-size: clamp(2.5rem, 2.5rem + 0.0174050633 * (100vw - 768px), 3.6rem);
    }
}
@media only screen and (min-width: 1025px) {
    .faq_title .txt{
        font-size: 3.6rem;
    }
}

@media only screen and (min-width: 1025px) {
    .faq_item_body{
        font-size: 1.6rem;
    }
}

@media only screen and (min-width: 1025px) {
  .faq_item_head .txt{
    font-size: 2rem;
  }
}

.faq_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) {
  .faq_title {
    margin-bottom: 44px;
  }
}
.faq_title .txt_wrap {
  width: fit-content;
  position: relative;
}
.faq_title .txt {
  display: block;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  color: var(--color-accent-03);
}
.faq_title .icon {
  position: absolute;
  height: auto;
  width: 84px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .faq_title .icon {
    width: 124.05px;
  }
}
.faq_title .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq_item {
  margin-bottom: 27px;
}
@media only screen and (min-width: 1025px) {
  .faq_item {
    margin-bottom: 32px;
  }
}
.faq_item:nth-child(2) {
  margin-bottom: 39px;
}
.faq_item:last-child {
  margin-bottom: 0;
}
.faq_item_head {
  display: flex;
  margin-bottom: 8px;
  gap: 6px;
  transform: translate(5px, 4px);
}
.faq_item_head .hilight {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-main-04);
  display: inline-block;
}
@media only screen and (min-width: 1025px) {
  .faq_item_head .hilight {
    transform: translate(-6px, -2px);
  }
}
.faq_item_head .txt {
  position: relative;
  top: -1px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: var(--color-accent-03);
}


/* =============================
  施術をご検討の方へ(info)
============================= */

.p_info_content{
  display: flex;
  padding-right: 30px;
  margin-top: 60px;
  justify-content: center;
  gap: 18px;
}

.p_info_btn{
  width: 50%;
  max-width: 424px;
  height: 50px;
}

.p_info_btn a {
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
	align-items: center;
	border-radius: 40px;
	padding: 11px 14px;
  color: #fff;
  font-weight: 450;
  cursor: pointer;
}

.p_info_btn .ttl {
    flex-grow: 1;
    text-align: center;
}

.p_info_btn .icon {
    flex-shrink: 0;
    width: 16px; 
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p_info_btn .icon img {
    height: 100%;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);;
}


@media only screen and (min-width: 1025px) {
  .p_info_content{
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p_info_content{
    margin-top: 30px;
    padding-right: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .p_info_btn{
    width: 90%;
    height: 40px;
  }

  .p_info_btn a {
    padding: 8px 10px;
    font-size: 1.6rem;
  }

}
@media only screen and (max-width: 500px) {
  .p_info_content{
    margin-top: 24px;
    gap: 8px;
  }
  .p_info_btn a {
    padding: 8px 8px;
    font-size: 1.4rem;
  }

  .p_info_btn .icon {
    width: 14px;
    height: 14px;
  }

  .p_info_text{
    text-align: left;
  }

  .p_info_text br.__w500{
    display: none;
  }
}

.p_info_text br.__w800br{
  display: none;
}

@media only screen and (min-width: 501px) and (max-width: 800px) {
  .p_info_text br.__w800br{
    display: block;
  }
}


/* treatment ----------------------------------*/

@media only screen and (min-width: 1025px){
    .treatment > .dermatology{
      padding-bottom: 170px !important; 
    }

    .treatment .dermatology_heading{
      margin-bottom: 40px;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .treatment .symptom_list {
    padding-left: clamp(30px, 4.5vw + 1.4rem, 120px);
    column-gap: 40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1220px) {
  .treatment .dermatology_heading{
    margin-bottom: 20px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 1024px) {
  .treatment .symptom_list {
    flex-direction: column;
    align-items: center;
  }
}

.p_menu_img.__w96 img{
  max-width: 96px;
}
@media only screen and (max-width: 767px) {
  .p_menu_img.__w96 img{
    width: 30%;
    max-width: 80px;
  }
}

.information_text p.__pl,
.information_text_new p.__pl{
  position: relative;
  padding-left: 1.0em;
}

.information_text p.__pl::before,
.information_text_new p.__pl::before{
  content:  "・";
  position: absolute;
  left: 0;
}

/* facial ----------------------------------*/
/* 見出し（■施術後の症状など） */
.facial .p_menu_subttl {
    font-weight: 700;
    margin-top: 25px;
}

/* ページタイトル：折り返し防止のため微調整 */
@media only screen and (max-width: 330px) {
  .facial .dermatology_title br{
    display: none;
  }
}

/* 区切り線 */
.facial .p_menu_subttl::before {
    content: "";
    display: block;
    border-bottom: 2px dashed #B7A99A;
    margin: 28px 0;
}

/* このような方におすすめ：全体を中央寄せ */
.facial .symptom_list {
    display: flex;
    justify-content: center;
    /* gap: 24px; */
}

/* li内のアイコン＋文字を中央寄せ */
.facial .symptom_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.facial .price_table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.facial .price_table_col-name--wide {
  vertical-align: middle;
}


.facial .p_info_text {
  color: var(--color-accent-03);
}

/* .information_note & .p_menu_itemを流用 */
.information_note_new {
  border: 3px solid var(--color-accent-02);
  border-radius: 15px;
  text-align: left;
  padding-top: 18px;
  padding-bottom: 28px;
  margin-bottom: 38px;
  color: var(--color-accent-03);
}

/* .information_textの一部を流用 */
.information_text_new {
  padding-left: 3.5%;
  padding-right: 3.5%;
}

/* .info-notice_titleを流用 */
.info-notice_title_new {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent-03);
  padding-bottom: 20px;
}

/* 1218滝川追加 */
/* 施術メニュー内の注意書き */
.p_menu_note {
    margin-bottom: 20px;
    text-align: left;
}

/* laser ----------------------------------*/
/* このような方におすすめ：全体を中央寄せ */
.laser .symptom_list {
    display: flex;
    justify-content: center;
    /* gap: 24px; */
}

/* li内のアイコン＋文字を中央寄せ */
.laser .symptom_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 脱毛・レーザー系ページ共通：注意事項ボックス */
/* .information_noteを流用 */
.note-box {
  border: 3px solid var(--color-accent-02);
  border-radius: 10px;
  text-align: left;
  padding-top: 18px;
  padding-bottom: 28px;
  margin-bottom: 38px;
}

/* .information_textの一部を流用 */
.note-content {
  padding-left: 3.5%;
  padding-right: 3.5%;
}

/* .info-notice_titleを流用 */
.note-title {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent-03);
  padding-bottom: 30px;
}

/* 各注意グループ */
.note-group {
  margin-bottom: 30px;
}

.note-heading {
  font-weight: 700;
  margin-bottom: 8px;
}

/* li の標準リストマーカーを消す */
.note-group ul {
  list-style: none;
  padding-left: 0;
}

/* ● を疑似要素で表示 */
.note-group li {
  position: relative;
  padding-left: 1.0em;   /* ●分の余白 */
}

.note-group li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;            /* 文字位置の微調整 */
  font-size: 0.9em;      /* ●の大きさ */
}

.laser .price_table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.laser .p_info_text {
  color: var(--color-accent-03);
}

/* slimming ----------------------------------*/
/* このような方におすすめ：全体を中央寄せ */
.slimming .symptom_list {
    display: flex;
    justify-content: center;
    /* gap: 24px; */
}

/* li内のアイコン＋文字を中央寄せ */
.slimming .symptom_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slimming .p_info_text {
  color: var(--color-accent-03);
}

.slimming .price_table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}


.slimming .dermatology_heading.__mw560 {
  max-width: 560px;
  white-space: nowrap;
}
/* 20251223 見切れ防止のため微調整 */
@media screen and (min-width: 1025px) and (max-width: 1120px) {
  .slimming .dermatology_heading.__mw560  {
    font-size: 2.3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .slimming .dermatology_heading.__mw560 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 400px) {
  .slimming .dermatology_heading.__mw560 {
    max-width: 400px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 360px) {
  .slimming .dermatology_heading.__mw560 {
    white-space: wrap;
  }
}

/* =========================================
   slimming / fractional 共通
   施術内容と効果：テキスト＋画像 横並び
========================================= */
.p_effect_flex {
  display: flex;
  align-items: flex-start;
  gap: 0;                 /* テキストと画像の間隔 */
  margin-top: 40px;
}

/* 左：説明文 */
.p_effect_textarea {
  flex: 1;
  max-width: 600px;
  margin-top: 50px;
  text-align: left;
}

/* 右：機器画像 */
.p_effect_img {
  /* width: 150px; */
  width: 100px;
  margin: 0 auto;
  flex-shrink: 0;
}

/* 画像本体 */
.p_effect_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 20251216レスポンシブ微調整のため追加 */
@media screen and (min-width: 768px) {
  .p_effect_textarea {
    width: 60%;
  }

  .p_effect_img {
    width: 40%;
    display: flex;
    justify-content: center;
  }

  /* 画像本体 */
  .p_effect_img img {
    width: 100%;
    height: 100%;
    max-width: 140px;
    max-height: 400px;
    display: block;
  }

}

@media screen and (max-width: 767px) {
  .p_effect_flex {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .p_effect_textarea {
    margin-top: 0;
    max-width: 100%;
  }

  .p_effect_img {
    width: 90px; /* 1216前田修正 */
    margin: 0 auto;
  }
}


/* injection ----------------------------------*/

/* 20251223 折り返し防止のため微調整 */
.injection .__w330br{
  display: none;
}

@media only screen and (max-width: 330px) {
  .injection .__w330br{
    display: block;
  }
}

/* 20251210 kawai */
.injection .symptom_list {
  display: flex;
  justify-content: center;
  column-gap: 84px;
}

.medical_injection {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 0px;
}

.medical_textbox {
  width: 100%;
}

.medical_injection_desc {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.medical_images {
  width: 100%;
  padding-left: 0;
  padding-top: 30px;
}

.medical_images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 0;
}

.injection-site_image img{
    width: 56%;
    max-width: 676px;
    height: auto;
    margin: 0 auto;
}

/* ↓ここから　他のページでも流用 */
.information_note {
  border: 3px solid var(--color-accent-02);
  border-radius: 10px;
  text-align: left;
  height: 100%;
  padding-top: 18px;
  padding-bottom: 28px;
  margin-bottom: 38px;
}

.information_text {
  padding-left: 7.0%;
}

.info-notice_title {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent-03);
  padding-bottom: 30px;
}
/* ↑ここまで　他のページでも流用 */

@media screen and (max-width: 767px) {
  .injection-site_image img{
      width: 90%;
      max-width: 270px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .injection-site_image img{
        width: 50%;
    }
}
@media only screen and (min-width: 768px) {
  .injection .symptom_item {
    font-size: 2.0rem;
    font-weight: 700;
  }

  .medical_injection {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 48px;
  }

  .medical_textbox {
    width: 50%;
  }

  .medical_injection_desc {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
  
  .medical_images {
    width: 50%;
    padding-left: 50px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .medical_textbox {
    margin-top: -25px;
  }
  .medical_injection_desc {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }
}

/* fractional ----------------------------------*/

/* 1216 折り返し防止のため微調整 */
@media screen and (max-width: 375px) {
  .fractional .breadcrumb_lists{
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 330px) {
  .fractional .breadcrumb_lists{
    font-size: 0.8rem;
  }
}


@media only screen and (min-width: 1025px) {
  .fractional .symptom_list {
    width: 90%;
    max-width: 1000px;
  }
}
/* レスポンシブの微調整対応 */
@media only screen and (min-width: 1100px) and (max-width: 1400px) {
  .fractional .symptom_list {
    width: 85%;
    max-width: 1000px;
  }
}

/* このような方におすすめ（複数行対応） */
.fractional .symptom_item {
  display: flex;
  align-items: flex-start; /* 複数行でもチェックを1行目に合わせる */
  text-align: left;
}

.fractional .symptom_icon {
  flex-shrink: 0;
  margin-top: 2px; /* 1行目中央に微調整 */
}

.fractional .laser .p_info_text {
  color: var(--color-accent-03);
}

.fractional .price_table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.fractional .price_table_col-name--wide {
  vertical-align: middle;
}

.fractional .price_table tr:last-child td[colspan="2"] {
  border-left: none;
}

/* 20251218滝川追加 */
/* アンカー位置ずらし用（ヘッダー対策） */
.s-c-anchor-offset {
  position: relative;
  top: -50px;   /* ヘッダー高さに合わせて調整 */
  height: 0;
}