@charset "UTF-8";

/**
 * [id="content"]>.base_wrap
 * NOTE: スタイルの都合で、当サイトではコンテンツ wrapper直下の.base_wrapを無効にします。
**/

.page_detail [id="content"]>.base_wrap {
  max-width: none;
  width: auto;
  margin: 0;
  padding: 0;
}


/**
 * .detail_title
 * NOTE:
**/
.detail_2col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.detail_2col__main {
  width: calc(100% - 48px - 300px);
}

.detail_2col__side {
  width: 300px;
}

@media (max-width: 1200px) {
  .detail_2col {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }

  .detail_2col__main {
    width: auto;
  }

  .detail_2col__side {
    width: auto;
  }
}


/**
* .detail_title
* NOTE:
**/
/* title（本文共通の見出し、ビフォーアフター、基本情報、写真など） */
.detail_title__type01 {
  background: var(--main_c);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
  padding: 6px 12px;
}

.detail_title__type01 .eng {
  display: block;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
}

.detail_title__type01>span {
  display: block;
}

@media (max-width: 767px) {
  .detail_title__type01 {
    font-size: 18px;
  }
}

/* title（PR、スタッフなど） */
.detail_title__type02 {
  color: #502d0d;
  font-size: 16px;
  font-weight: 700;
  font-feature-settings: "palt";
  margin: 20px 0 0;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .detail_title__type02 {
    font-size: 16px;
    margin: 12px 0 0;
    padding: 0 16px;
  }
}

/* title（ビフォーアフターなど） */
.detail_title__type03 {
  display: inline-block;
  border-bottom: 4px double #e9be38;
  color: #e9be38;
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 4px;
  margin: 16px 0 8px;
}

@media (max-width: 959px) {
  .detail_title__type03 {
    font-size: 20px;
    padding-bottom: 4px;
    margin: 16px 0 8px;
  }
}

.detail_title__type04 {
  background-color: var(--sub_c);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 8px 16px;
  margin: 0 0 8px;
}

.detail_title__type05 {
  border-left: 4px solid var(--sub_c);
  color: var(--sub_c);
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  padding: 8px 8px;
  margin: 8px auto;
}

/* title（ビフォーアフター、基本情報、写真など） */
.detail_title__type06 {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 15px;
}

@media (max-width: 767px) {
  .detail_title__type06 {
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 16px;
  }
}

.detail_title__type07 {
  border-left: 4px solid #e9be38;
  color: #e9be38;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 16px;
  margin: 0 0 8px;
}

@media (max-width: 767px) {
  .detail_title__type07 {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 8px 8px 12px;
    margin: 0 0 8px;
  }
}

.detail_title__type08 {
  background-color: #e9be38;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 16px;
  margin: 0 0 8px;
}

@media (max-width: 767px) {
  .detail_title__type08 {
    font-size: 12px;
    line-height: 16px;
    padding: 8px;
    margin: 0 0 8px;
  }
}

/**
* .detail_box__type00
* /detail/[ID]/ページ 共通囲みスタイル
* 共通スタイルのためflex内を想定したorder、widthは以下に記述しない
* flex内を想定したorder、width付与する場合は
* 親要素（もしくはグループ名）のクラス名を前方に付加もしくは別クラス名をHTMLへ新たに追記し、CSS内該当パーツ記述箇所にて調整
**/
.detail_box__type01 {
  border-radius: 32px;
  background: #f2f3f4;
  padding: 32px;
  margin: 0 0 48px;
}

.detail_box__type01_title {
  color: #888;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 4px;
}

.detail_box__type01 p {
  font-size: 16px;
  line-height: 32px;
  margin: 0 0 16px;
}

@media (max-width: 767px) {
  .detail_box__type01 {
    border-radius: 3px;
    padding: 4px;
    margin: 0 0 48px;
  }

  .detail_box__type01_title {
    font-size: 12px;
    line-height: 18px;
    padding: 8px 4px 0;
    margin: 0 0 4px;
  }

  .detail_box__type01 p {
    font-size: 12px;
    line-height: 18px;
    padding: 0 4px;
    margin: 0 0 16px;
  }
}


/**
* .detail_top_box_btn
* /detail/[ID]/ページ トップボタン群
**/
[id="detail_top_box_btn"] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  max-width: none;
  margin: 0;
  gap: 8px;
}

[id="detail_top_box_btn"]>.base_wrap>*,
[id="detail_top_box_btn"]>* {
  width: 100%;
}

[id="detail_top_box_btn"]>.base_wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  gap: 8px;
}

@media (max-width: 959px) {

  [id="detail_top_box_btn"]>.base_wrap,
  [id="detail_top_box_btn"] {
    gap: 4px;
  }

  [id="detail_top_box_btn"]>.base_wrap>*,
  [id="detail_top_box_btn"]>* {
    width: 100%;
  }
}

@media (max-width: 767px) {
  [id="detail_top_box_btn"] {
    display: none;
  }
}


/**
* .detail_top_box_btn
* /detail/[ID]/ページ 各ボタンのスタイルの調整（基本のスタイルはcommon.btn.cssへ）
**/
[id="detail_top_box_btn"] .btn_net a,
[id="detail_top_box_btn"] .btn_tel a,
[id="detail_top_box_btn"] .btn_kuchikomi a,
[id="detail_top_box_btn"] .btn_like a {
  height: 55px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

[id="detail_top_box_btn"] .btn_net a {
  border: 1px solid var(--main_c);
  background: var(--main_c);
  color: #fff;
}

[id="detail_top_box_btn"] .btn_tel a {
  border: 1px solid var(--main_c);
  background: #fff;
  color: var(--main_c);
}

[id="detail_top_box_btn"] .btn_kuchikomi a,
[id="detail_top_box_btn"] .btn_like a {
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--sub_c);
  border: 1px solid var(--sub_c);
  color: #fff;
}

[id="detail_top_box_btn"] .btn_net a::before {
  transform: translate(0, 0) scale(1.375, 1.375);
  transform-origin: right center;
}

[id="detail_top_box_btn"] .btn_tel a::before {
  content: "\f4b9";
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: "Ionicons";
  speak: none;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  background: var(--main_c);
  color: #fff;
  width: 32px;
  height: 32px;
  margin: 0 8px 0 0;
}

[id="detail_top_box_btn"] .btn_tel>div {
  width: 100%;
}

@media (max-width: 920px) {

  [id="detail_top_box_btn"] .btn_kuchikomi,
  [id="detail_top_box_btn"] .btn_like {
    width: 64px;
  }

  [id="detail_top_box_btn"] .btn_kuchikomi a,
  [id="detail_top_box_btn"] .btn_like a {
    width: 64px;
    height: 64px;
    padding: 1px 0;
  }

  [id="detail_top_box_btn"] .btn_kuchikomi a::before,
  [id="detail_top_box_btn"] .btn_like a::before {
    transform-origin: center center;
    margin: 0;
  }

  [id="detail_top_box_btn"] .btn_kuchikomi a>span,
  [id="detail_top_box_btn"] .btn_like a>span {
    display: none;
  }
}


/**
* .detail_wrap
* /detail/[ID]/ページ ウィンドウ下部ボタン群
**/
/*@media (min-width: 768px) {*/
.detai_bottom__box_btn {
  display: flex;
  flex-flow: row wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin: 40px auto;
  gap: 20px;
}

.detai_bottom__box_btn .base_wrap {
  display: flex;
  flex-flow: row wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.detai_bottom__box_btn .btn_net,
.detai_bottom__box_btn .btn_tel {
  /* display: none; */
  max-width: 320px;
  /* width: calc((100% - 20px) / 2); */
  width: 100%;
  margin: 0;
}

.detai_bottom__box_btn .btn_net a,
.detai_bottom__box_btn .btn_tel a {
  border-radius: 6px;
  border: 1px solid var(--main_c);
  background: #fff;
  color: var(--main_c);
  font-size: 20px;
  font-weight: 700;
  line-height: 68px;
  text-align: center;
  height: 64px;
}

.detai_bottom__box_btn .btn_net a {
  background: var(--main_c);
  color: #fff;
}

.detai_bottom__box_btn .btn_tel {
  display: none;
}

/*}*/
/*
@media (max-width: 767px) {
  .detai_bottom__box_btn {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .detai_bottom__box_btn .btn_net, .detai_bottom__box_btn .btn_tel {
    width: 50%;
  }
  .detai_bottom__box_btn .btn_net a, .detai_bottom__box_btn .btn_tel a {
    padding: 0;
    margin: 0 auto;
    min-height: 50px;
    border-radius: 0;
    justify-content: center;
    box-shadow: none;
    border: 1px solid var(--main_c);
    background: #fff;
    color: var(--main_c);
    font-size: 14px;
  }
  .detai_bottom__box_btn .btn_net a {
    background: var(--main_c);
    color: #fff;
    border-right: none;
  }
  .detai_bottom__box_btn .btn_net a:focus, .detai_bottom__box_btn .btn_tel a:focus, .detai_bottom__box_btn .btn_net a:hover, .detai_bottom__box_btn .btn_tel a:hover {
    background: var(--main_c);
    color: #fff;
  }
  .detai_bottom__box_btn .btn_net a::before, .detai_bottom__box_btn .btn_tel a::before {
    display: none;
  }
}
*/

.detai_bottom__box_btn__desc {
  background: #ECECEC;
  color: var(--font_c);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  margin: 0 0 20px;
  padding: 16px;
}


/**
* .detail_wrap
* /detail/[ID]/ページ ラッパー
**/
.detail_wrap {
  background-color: transparent;
  position: relative;
}


/* NOTE: 疑似背景は使わない */
/*
.detail_wrap::before, .detail_wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: inherit;
  width: 50vw;
}
.detail_wrap::before {
  left: 0;
  transform: translate(-100%, 0);
}
.detail_wrap::after {
  right: 0;
  transform: translate(100%, 0);
}
*/


/**
 * .detail_head_parts
 * /detail/[ID]/ページ headerラッパー
**/
.detail_head_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 20px 0 32px;
  padding: 0;
}

@media (max-width: 767px) {
  .detail_head_parts {
    margin: 16px 0 32px;
  }
}


/**
* .detail_head_parts .name_parts
* /detail/[ID]/ページ 店舗・医院等の名称
**/
.detail_head_parts .name_parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: solid 1px #C4C4C4;
  color: var(--main_c);
  width: 100%;
  margin: 0 0 12px;
  padding: 0 0 8px;
  gap: 8px;
}

/* 店舗・医院等の名称 */
.detail_head_parts .name_parts_head {
  display: block;
  color: inherit;
  font-size: 26px;
  font-weight: 700;
  font-feature-settings: 'palt';
  line-height: 34px;
  width: 100%;
}

/* 店舗・医院等のアドレス情報 */
.detail_head_parts .name_parts dl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: inherit;
  font-size: 12px;
  font-feature-settings: 'palt';
  font-weight: 700;
  letter-spacing: 0.2ex;
  line-height: 1;
  margin: 0;
  gap: 8px;
}

.detail_head_parts .name_parts dl+dl {
  margin-left: 12px;
}

.detail_head_parts .name_parts dl>dt {
  display: block;
  font-size: inherit;
  font-feature-settings: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.detail_head_parts .name_parts dl>dd {
  display: block;
  font-size: inherit;
  font-feature-settings: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

@media (max-width: 767px) {
  .detail_head_parts .name_parts {
    flex-flow: column nowrap;
    align-items: stretch;
    gap: 4px;
  }

  /* 店舗・医院等の名称 */
  .detail_head_parts .name_parts_head {
    font-size: 20px;
    line-height: 22px;
  }

  /* 店舗・医院等のアドレス情報 */
  .detail_head_parts .name_parts dl {
    font-size: 10px;
  }
}

/**
* .detail_head_parts .grade_parts
* /detail/[ID]/ページ 口コミ評価・件数
**/
.grade_parts:has(.grade_parts_score)::after {
  content: '';
  display: table;
  clear: both;
}

.grade_parts .grade_parts_score {
  margin-right: 24px;
  padding: 12px 0 8px;
  float: left;
}

.detail_head_parts .grade_parts_score {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: #a49e9e;
  font-size: 14px;
  gap: 2ex;
}

.detail_head_parts .grade_parts_score label {
  display: block;
  font-size: inherit;
  font-weight: 400;
  text-align: left;
  position: relative;
  z-index: 1;
  opacity: 1;
}

.detail_head_parts .grade_parts_score p {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
  gap: 2ex;
}

.detail_head_parts .grade_parts_score b {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.detail_head_parts .grade_parts_score [class*="fa-"] {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  transform: scale(1.3333);
  transform-origin: center bottom;
}

.detail_head_parts .grade_parts_score b>a {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.detail_head_parts .grade_parts_score small {
  display: block;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

@media (max-width: 767px) {
  .detail_head_parts .grade_parts_score {
    width: calc(100% - 88px);
  }

  .detail_head_parts .grade_parts_score label {
    text-align: left;
    width: auto;
  }

  .detail_head_parts .grade_parts_score b {
    font-size: 12px;
  }

  .detail_head_parts .grade_parts_score b>a {
    font-size: 12px;
  }

  .detail_head_parts .grade_parts_score small {
    font-size: 12px;
  }
}

.grade_parts_score.grade_parts_score--rating {}

.grade_parts_score.grade_parts_score--rating-01 {
  font-size: 14px;
}

.grade_parts_score.grade_parts_score--rating-02 {
  font-size: 13px;
}

.grade_parts_score.grade_parts_score--rating-03 {
  font-size: 13px;
}

.grade_parts_score.grade_parts_score--rating-01 p {
  color: var(--sub_c_dark);
}

.grade_parts_score.grade_parts_score--rating-02 p {
  color: var(--sub_c);
}

.grade_parts_score.grade_parts_score--rating-03 p {
  color: var(--font_c_green);
}

.grade_parts_score.grade_parts_score--rating-02+.grade_parts_score--rating-01,
.grade_parts_score.grade_parts_score--rating-03+.grade_parts_score--rating-01 {
  clear: both;
}

.grade_parts_score.grade_parts_score--rating-01+.grade_parts_score--rating-02,
.grade_parts_score.grade_parts_score--rating-03+.grade_parts_score--rating-02 {
  clear: both;
}

.grade_parts_score.grade_parts_score--rating-01+.grade_parts_score--rating-03,
.grade_parts_score.grade_parts_score--rating-02+.grade_parts_score--rating-03 {
  clear: both;
}


/**
* .detail_head_parts .cta_parts
* /detail/[ID]/ページ 店舗・医院のカテゴリ
**/
.detail_head_parts .cta_parts {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
  border-radius: 0;
  width: 100%;
  background: transparent;
  padding: 0;
  gap: 4px;
}

.detail_head_parts .cta_parts:has(.base_wrap) {
  padding-inline: 0;
}

.detail_head_parts .cta_parts>.base_wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  gap: 4px;
}

.detail_head_parts .cta_parts .btn_net,
.detail_head_parts .cta_parts .btn_kuchikomi,
.detail_head_parts .cta_parts .btn_like {
  width: 100%;
  padding: 0;
}

.detail_head_parts .cta_parts .btn_net a,
.detail_head_parts .cta_parts .btn_kuchikomi a,
.detail_head_parts .cta_parts .btn_like a {
  font-size: 10px;
  border-radius: 2px;
  height: 40px;
  padding: 0;
}

.detail_head_parts .cta_parts .btn_net a::before {
  transform: translate(0, 0) scale(1.333, 1.333);
  transform-origin: right center;
  margin-right: 4px;
}

.detail_head_parts .cta_parts .btn_kuchikomi a::before,
.detail_head_parts .cta_parts .btn_like a::before {
  transform: translate(0, 0) scale(1.25, 1.25);
  transform-origin: right center;
  margin-right: 4px;
}



/* fav */
.detail_head_parts .btn_bookmark {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--main_c);
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  text-align: center;
  min-width: 28px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0 2.25em 0 0;
  opacity: 1;
  transition: all 0.2s ease;
  position: relative;
}

.page_detail .detail_head_parts .btn_bookmark {
  margin-bottom: -90px;
  z-index: 6;
}

@media (max-width: 767px) {
  .page_detail .detail_head_parts .btn_bookmark {
    margin-bottom: 0;
    z-index: 5;
  }
}

@media (min-width: 768px) {

  .detail_head_parts .btn_bookmark:focus,
  .detail_head_parts .btn_bookmark:hover {
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--main_c);
    opacity: 1;
  }
}

.detail_head_parts .btn_bookmark.active {
  opacity: 1;
}

/* default style */
.detail_head_parts .btn_bookmark::before,
.detail_head_parts .btn_bookmark::after {
  content: '';
  display: block;
  background-image: url("/common/images/icon_search_fav.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 2em;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transition: opacity 0.2s ease;
}

.detail_head_parts .btn_bookmark::before {
  background-image: url("/common/images/icon_search_fav.svg");
  opacity: 1;
}

.detail_head_parts .btn_bookmark::after {
  background-image: url("/common/images/icon_search_fav_active.svg");
  opacity: 0;
}

/* active style */
@media (min-width: 768px) {

  .detail_head_parts .btn_bookmark:hover::before,
  .detail_head_parts .btn_bookmark:focus::before {
    background-image: url("/common/images/icon_search_fav.svg");
    opacity: 0;
  }

  .detail_head_parts .btn_bookmark:hover::after,
  .detail_head_parts .btn_bookmark:focus::after {
    background-image: url("/common/images/icon_search_fav_active.svg");
    opacity: 1;
  }
}

.detail_head_parts .btn_bookmark.active::before {
  background-image: url("/common/images/icon_search_fav.svg");
  opacity: 0;
}

.detail_head_parts .btn_bookmark.active::after {
  background-image: url("/common/images/icon_search_fav_active.svg");
  opacity: 1;
}


/**
* .detail_head_parts .tag_left_parts
* /detail/[ID]/ページ 店舗・医院のカテゴリ
**/
.detail_head_parts .tag_left_parts {
  display: none;
  width: 100%;
}

@media (max-width: 767px) {
  .detail_head_parts .tag_left_parts {}
}

.detail_head_parts .grade_parts_tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}

/*
.grade_parts_tag1～23 の色の設定は content.search.result.cssへ
content.search.result.cssにて、.grade_parts_tags .grade_parts_tag1で検索
*/
/*
.detail_head_parts .grade_parts_tags .grade_parts_tag1,
.detail_head_parts .grade_parts_tags .grade_parts_tag2,
.detail_head_parts .grade_parts_tags .grade_parts_tag3,
.detail_head_parts .grade_parts_tags .grade_parts_tag4,
.detail_head_parts .grade_parts_tags .grade_parts_tag5,
.detail_head_parts .grade_parts_tags .grade_parts_tag6,
.detail_head_parts .grade_parts_tags .grade_parts_tag7,
.detail_head_parts .grade_parts_tags .grade_parts_tag8,
.detail_head_parts .grade_parts_tags .grade_parts_tag9,
.detail_head_parts .grade_parts_tags .grade_parts_tag10,
.detail_head_parts .grade_parts_tags .grade_parts_tag11,
.detail_head_parts .grade_parts_tags .grade_parts_tag12,
.detail_head_parts .grade_parts_tags .grade_parts_tag13,
.detail_head_parts .grade_parts_tags .grade_parts_tag14,
.detail_head_parts .grade_parts_tags .grade_parts_tag15,
.detail_head_parts .grade_parts_tags .grade_parts_tag16,
.detail_head_parts .grade_parts_tags .grade_parts_tag17,
.detail_head_parts .grade_parts_tags .grade_parts_tag18,
.detail_head_parts .grade_parts_tags .grade_parts_tag19,
.detail_head_parts .grade_parts_tags .grade_parts_tag20,
.detail_head_parts .grade_parts_tags .grade_parts_tag21,
.detail_head_parts .grade_parts_tags .grade_parts_tag22,
.detail_head_parts .grade_parts_tags .grade_parts_tag23 {}
*/
/**
* .detail_head_parts .tag_left_parts
* /detail/[ID]/ページ 店舗・医院のこだわりアイコン
**/
.detail_head_parts .tag_right_parts {
  display: none;
  width: 100%;
  margin: 12px 0 0;
}


/* こだわりアイコンは、詳細ページと検索結果で共有 */
.tag_parts .list,
.search_result_item .tag_parts .list,
.detail_head_parts .tag_right_parts .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 6px 6px;
}

.tag_parts .list>div,
.search_result_item .tag_parts .list>div,
.detail_head_parts .tag_right_parts>.list>div,
.tag_parts .list>.cell,
.search_result_item .tag_parts .list>.cell,
.detail_head_parts .tag_right_parts .list>.cell {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background: #ECECEC;
  border: 1px solid #ECECEC;
  color: #bbb;
  font-size: 14px;
  font-weight: 400;
  width: auto;
  height: 26px;
  padding: 0 6px;
  opacity: 0.6;
}

.tag_parts .list>.on,
.search_result_item .tag_parts .list>.on,
.detail_head_parts .tag_right_parts .list>.on {
  background: #ECECEC;
  border: 1px solid #ECECEC;
  color: var(--font_c);
  opacity: 1;
}



.detail_head_parts .link_box a {
  color: var(--main_c);
  text-decoration: underline;
}

.detail_head_parts .link_box a+a {
  margin-left: 10px;
}

.detail_head_parts .box_btn {
  display: block;
  max-width: none;
  width: 100%;
  text-align: center;
}

.detail_head_parts .box_btn .btn {
  width: 100%;
  max-width: 670px;
}


/**
* .detail_head_parts .skill_parts
* /detail/[ID]/ページ スキル表
**/
.skill_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 15px 0 0;
}

@media (max-width: 767px) {
  .skill_parts {
    margin: 10px 0 0;
  }
}

.skill_parts>li+li {
  margin-left: 2.5px;
}

.skill_parts>li>a {
  display: block;
  border: solid 2px #e1ecc7;
  border-radius: 4px;
  color: var(--main_c);
  font-size: 8.75px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  padding: 5px 7.5px;
  text-align: center;
}

/**
* .detail_main_parts
* /detail/[ID]/ページ 本文ラッパー
**/
.detail_main_parts {
  max-width: var(--basewrap-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--basewrap-padding-inline);
  position: relative;
  z-index: 5;
  /* .detail_wrap::before、::afterよりも上にする */
}


/**
* .detail_tab_parts
* /detail/[ID]/ページ タブ
**/
.detail_tab_parts {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 0 48px;
  gap: 8px;
  position: relative;
}

/* ページ下部のボタン群 */
.detail_tab_parts~.detail_tab_parts {
  margin-top: 48px;
}

.detail_tab_parts>.base_wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  position: relative;
}

.detail_tab_parts>.base_wrap>a,
.detail_tab_parts>a {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .detail_tab_parts::after {
    content: '';
    display: block;
    border-bottom: solid 6px var(--main_c);
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: -5px;
    z-index: 1;
  }
}

@media (max-width: 959px) {
  .detail_tab_parts::after {
    left: 0;
    right: 0;
  }
}

@media (max-width: 767px) {

  /* ページ下部のボタン群 */
  .detail_tab_parts~.detail_tab_parts {
    margin-top: 48px;
  }

  .detail_tab_parts>*+*::before {
    content: '';
    display: block;
    position: absolute;
    left: -1px;
    top: 50%;
    z-index: 5;
    border-left: solid 1px #e1e1e1;
    height: 24px;
    transform: translate(0, -50%);
    pointer-events: none;
  }

  .detail_tab_parts>.on::before {
    display: none;
  }

  .detail_tab_parts>.on+*::before {
    display: none;
  }
}

/* タブ１つ */
.detail_tab {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 6px 6px 0 0;
  border: 1px solid var(--main_c);
  background: #fff;
  color: var(--main_c);
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.1ex;
  line-height: 24px;
  position: relative;
}

/* タブ中バルーン */
.detail_tab_balloon {
  display: block;
  position: absolute;
  right: -4px;
  top: 0;
  z-index: 10;
  transform: translate(0, -75%);
  font-size: 10px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1;
  border-radius: 4px;
  background: #fa5882;
  color: #fff;
  padding: 4px;
}

.detail_tab_balloon::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 3px 3px;
  border-color: #fa5882 transparent transparent #fa5882;
  position: absolute;
  left: 66.66%;
  bottom: 1px;
  z-index: 10;
  transform: translate(0, 100%);
}

a:focus .detail_tab,
a:hover .detail_tab,
a.on .detail_tab {
  border: 1px solid var(--main_c);
  background: var(--main_c);
  color: #fff;
}

@media (max-width: 959px) {
  .detail_tab {
    height: 56px;
    font-size: 13px;
    letter-spacing: 0.1ex;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  .detail_tab {
    border-radius: 2px;
    border: solid 1px #fff;
    flex-wrap: wrap;
    font-size: 9px;
    line-height: 12px;
    text-align: center;
    margin: 0;
    height: 48px;
    position: relative;
    z-index: 5;
  }

  .detail_tab>* {
    display: block;
    width: 100%;
  }

  .detail_tab br {
    display: none;
  }

  .detail_tab_parts a.on .detail_tab::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 5px solid transparent;
    border-top-color: var(--main_c);
    top: 100%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0);
  }

  .detail_tab_balloon {
    right: 2px;
    top: 0;
    transform: translate(0, -75%);
    font-size: 8px;
    border-radius: 4px;
    width: auto;
    padding: 4px;
  }

  /* ページ下部のボタン群 */
  .detail_tab_parts~.detail_tab_parts a.on .detail_tab::after {
    border: 5px solid transparent;
    border-bottom-color: var(--main_c);
    bottom: 100%;
    top: auto;
  }
}

/* ウィンドウ下部のタブ（.detai_bottom__box_btnへの修正は、このファイルの160行目辺りへ） */
@media (min-width: 768px) {
  .detai_bottom__box_btn .detail_tab_parts {
    display: none;
  }
}

@media (max-width: 767px) {
  .detai_bottom__box_btn .detail_tab_parts {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
  }

  .detai_bottom__box_btn .detail_tab_parts a {
    display: block;
    width: 100%;
  }

  .detai_bottom__box_btn .detail_tab {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 44px;
    font-size: 8px;
  }
}

/**
* .detail_main
* /detail/[ID]/ページ メイン
**/
.detail_main {
  --detail-main-mainimage-width: 440px;
  --detail-main-gap: 28px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0 0 44px;
  gap: var(--detail-main-gap);
}

.detail_main>* {
  width: 100%;
}

@media (max-width: 959px) {
  .detail_main {
    --detail-main-mainimage-width: 300px;
    --detail-main-gap: 20px;
    gap: var(--detail-main-gap);
  }
}

@media (max-width: 767px) {
  .detail_main {
    --detail-main-mainimage-width: 300px;
    --detail-main-gap: 20px;
    margin: 0 0 20px;
    gap: var(--detail-main-gap);
  }
}


/**
* .detail_main
* /detail/[ID]/ページ スライダー
**/
.detail_main_mainimage {
  width: var(--detail-main-mainimage-width);
}

/* スライドのラッパー（SPビュー(Tabletビュー)の順番の調整に使用） */
@media (max-width: 959px) {
  .detail_main_mainimage {
    order: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .detail_main_mainimage {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* スライドの余白 */
.detail_slider {
  position: relative;
  z-index: 999;
}

/* slick */
.detail_slider_item {
  position: relative;
  max-width: 1124px;
  margin: 0 auto;
  transition: all 0.4s ease;
  background-color: #E2E2E2;
}

.detail_slider_mask>img {
  border-radius: 0;
  background: #E2E2E2;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: contain;
}

.detail_slider_nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 20px 0 0;
  gap: 20px;
}

.detail_slider_nav>button {
  border: none;
  background: transparent;
  width: 96px;
  height: auto;
  margin: 0;
  cursor: pointer;
}

.detail_slider_nav>button>img {
  border-radius: 0;
  background: #E2E2E2;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: contain;
}

@media (max-width: 767px) {
  .detail_slider_nav {
    margin: 12px 0 0;
  }

  .detail_slider_nav>button {
    border: none;
    background: transparent;
    width: 64px;
    height: auto;
    margin: 0 6px;
    cursor: pointer;
  }
}

/**
* .detail_main
* .detail_main_desc
* /detail/[ID]/ページ スライダー隣テーブルなど
**/
.detail_main_desc {
  width: calc(100% - var(--detail-main-gap) - var(--detail-main-mainimage-width));
}

/* スライドのラッパー（SPビュー(Tabletビュー)の順番の調整に使用） */
@media (max-width: 959px) {
  .detail_main_desc {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .detail_main_desc {
    width: 100%;
    margin-top: -25px;
  }
}


/**
* .detail_main
* /detail/[ID]/ページ スライダー下PR文
**/
.detail_main_title {
  border-bottom: solid 1px #C4C4C4;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
  margin: 0 0 16px;
  padding: 0 40px 15px 0;
}

@media (max-width: 959px) {
  .detail_main_title {
    font-size: 18px;
    line-height: 24px;
    order: 1;
  }
}

.detail_main_emcomment {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  line-height: 1.8;
  width: 100%;
  margin: 0 0 16px;
}

@media (max-width: 959px) {
  .detail_main_emcomment {
    font-size: inherit;
    line-height: inherit;
  }
}

.detail_main_prcomment {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  line-height: 1.8;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 959px) {
  .detail_main_prcomment {
    /*border-radius: 4px;*/
    /*background: #f4f4f1;*/
    font-size: inherit;
    line-height: inherit;
    margin: 12px 0 0;
    /*padding: 8px;*/
    /*order: 3;*/
    /* Tabletビュー（.detail_main_mainimageと関係） */
  }
}

.detail_main_table {
  color: var(--font_c);
  width: 100%;
}

*+.detail_main_table {
  margin-top: 20px;
}

.detail_main_table>caption {
  background: var(--main_c);
  color: #fff;
  text-align: left;
  padding: 0.5em 1em;
}

.detail_main_table>thead {}

.detail_main_table>thead>tr {}

.detail_main_table>thead>tr>th {
  border: solid 1px #E2E2E2;
  background: #E2E2E2;
  font-weight: 400;
  text-align: center;
  padding: 1em;
  font-size: 14px;
}

.detail_main_table>tbody {}

.detail_main_table>tbody>tr {}

.detail_main_table>tbody>tr>th,
.detail_main_table>tbody>tr>td {
  border-bottom: solid 1px;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  padding: 1em;
}


/**
* .detail_publicrelations
* /detail/[ID]/ページ PRレイアウト
**/
.detail_publicrelations {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;

  align-content: stretch;
  align-items: stretch;
}

@media (min-width: 959px) {

  /* 3列表示 */
  .detail_publicrelations {
    margin: 0 -24px;
  }

  *+.detail_publicrelations {
    margin-top: 64px;
  }

  .detail_publicrelations>* {
    width: calc((100% - 144px) / 3 - 1px);
    margin: 48px 24px 0;
  }

  .detail_publicrelations>*:nth-child(-n+3) {
    margin-top: 0;
  }

  /* 特殊な要素 */
  .detail_publicrelations>.detail_pr_parts__always_2col_style {
    width: calc((100% - 96px) / 2);
  }

  .detail_publicrelations>.detail_pr_parts__movie_style {
    margin-top: 30px;
    padding: 0 calc((100% - 800px) / 2);
    /* ( 領域幅 - 動画幅 ) / 2 */
    width: 100%;
  }
}

@media (max-width: 959px) {

  /* 2列表示 */
  .detail_publicrelations {
    margin: 0 -12px;
  }

  *+.detail_publicrelations {
    margin-top: 64px;
  }

  .detail_publicrelations>* {
    width: calc((100% - 30px) / 2);
    margin: 30px 12px 0;
  }

  .detail_publicrelations>*:nth-child(-n+2) {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 959px) {

  /* 特殊な要素 */
  .detail_publicrelations>.detail_pr_parts__movie_style {
    margin-top: 48px;
    padding: 0 calc((100% - 800px) / 2);
    /* ( 領域幅 - 動画幅 ) / 2 */
    width: 100%;
  }
}

@media (max-width: 767px) {

  /* 1列表示 */
  .detail_publicrelations {
    margin: 0;
  }

  *+.detail_publicrelations {
    margin-top: 30px;
  }

  .detail_publicrelations>* {
    width: 100%;
  }

  .detail_publicrelations>*+* {
    margin-top: 32px;
  }
}

/**
* .detail_publicrelations
* /detail/[ID]/ページ 各PR
**/
.detail_pr_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  /*
  margin-left,margin-rightは使用不可
  .detail_publicrelationsにて余白設定
  */
}

@media (min-width: 768px) {

  /* 縦1列表示 */
  .detail_pr_parts>* {
    width: 100%;
  }
}

@media (max-width: 767px) {

  /* 縦1列表示 */
  .detail_pr_parts>* {
    width: 100%;
  }
}

/* title */
.detail_pr_title {
  order: 2;
}

@media (max-width: 767px) {
  .detail_pr_title {
    order: 2;
  }
}

/* image */
.detail_pr_parts .left_parts {
  order: 1;
}

.detail_pr_parts .left_parts figure {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.detail_pr_parts .left_parts figure::before {
  content: "";
  display: block;
  padding: 56.25% 0 0;
  position: relative;
  z-index: 1;
}

.detail_pr_parts .left_parts figure iframe,
.detail_pr_parts .left_parts figure img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.detail_pr_parts .left_parts figure img {
  -o-object-fit: cover;
  object-fit: cover;
}

.detail_pr_parts .left_parts .caption {
  color: #888;
  font-size: 11px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 20px;
  margin: 12px 0 0;
  padding: 0 16px 16px;
  position: relative;
}

.detail_pr_parts .left_parts .caption::after {
  content: "";
  display: block;
  width: 4em;
  border-bottom: solid 1px;
  position: absolute;
  left: 16px;
  bottom: 0;
  z-index: 1;
  opacity: 0.33;
}

.detail_pr_parts .left_parts .caption:empty {
  display: none;
}

@media (max-width: 767px) {
  .detail_pr_parts .left_parts .caption {
    color: #888;
    font-size: 9px;
    line-height: 18px;
    margin: 8px 0 0;
    padding: 0 16px 8px;
  }

  .detail_pr_parts .left_parts .caption::after {
    width: 4em;
    left: 16px;
  }
}

/* text */
.detail_pr_parts .right_parts {
  order: 3;
  font-size: 13px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 2;
  margin: 4px 0 0;
  padding: 0 16px;
}

.detail_pr_parts dt,
.detail_pr_parts dd {
  text-align: left;
  margin: 0 0 16px;
}

.detail_pr_parts dt a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.detail_pr_parts dd {
  margin: 0 0 8px 28px;
}

.detail_pr_parts dd::before {
  content: "┗";
  padding-right: 5px;
}

/**
* .detail_menu_parts
* /detail/[ID]/job/ページ 業務対応メニュー
**/
/* 価格表 */
.service_table {
  display: block;
}

.service_table>thead {
  display: none;
}

.service_table>thead>tr {
  display: block;
}

.service_table>thead>tr>th {
  display: block;
}

.service_table>tbody {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  margin: 0 -16px;
}

.service_table>tbody>tr {
  display: block;
  border: solid 2px var(--main_c);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  background: var(--main_c);
  width: calc((100% - 96px) / 3);
  margin: 0 16px 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 959px) {
  .service_table>tbody>tr {
    width: calc((100% - 64px) / 2);
  }
}

@media (max-width: 767px) {
  .service_table>tbody {
    margin: 0;
  }

  .service_table>tbody>tr {
    border: solid 2px var(--main_c);
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    width: 100%;
    margin: 0;
  }

  .service_table>tbody>tr+tr {
    margin-top: 8px;
  }
}

.service_table>tbody>tr>th,
.service_table>tbody>tr>td {
  display: block;
  background: #fff;
  padding: 16px 28px;
}

/* title1 */
.service_table>tbody>tr>td:nth-child(1) {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  background: var(--main_c);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 28px;
  padding-top: 24px;
  min-height: 104px;
}

/* title2 */
.service_table>tbody>tr>td:nth-child(2) {
  font-size: 16px;
  font-feature-settings: "palt";
  border-bottom: solid 1px #e1e1e1;
}

/* price */
.service_table>tbody>tr>td:nth-child(3) {
  font-size: 24px;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
  border-bottom: solid 1px #e1e1e1;
  padding-left: 0;
  padding-right: 0;
}

/* button */
.service_table>tbody>tr>td:nth-child(4) {
  padding: 0;
}

.service_table>tbody>tr>td:nth-child(4) a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: var(--sub_c);
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 1ex;
  height: 48px;
}

@media (max-width: 767px) {

  .service_table>tbody>tr>th,
  .service_table>tbody>tr>td {
    padding: 8px;
  }

  /* title1 */
  .service_table>tbody>tr>td:nth-child(1) {
    font-size: 16px;
    line-height: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
    min-height: 0;
  }

  /* title2 */
  .service_table>tbody>tr>td:nth-child(2) {
    font-size: 12px;
  }

  /* price */
  .service_table>tbody>tr>td:nth-child(3) {
    font-size: 16px;
  }

  /* button */
  .service_table>tbody>tr>td:nth-child(4) {
    font-size: 16px;
  }

  .service_table>tbody>tr>td:nth-child(4) a {
    font-size: 16px;
    letter-spacing: 1ex;
    height: 48px;
  }
}

.menu_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

*+.menu_parts {
  margin-top: 48px;
}

@media (max-width: 767px) {
  *+.menu_parts {
    margin-top: 24px;
  }
}

.menu_title {
  font-size: 28px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 38px;
  color: var(--sub_c);
  width: 100%;
  margin: 0 0 16px;
  padding: 0 144px 0 0;
  position: relative;
  order: 0;
}

@media (max-width: 767px) {
  .menu_title {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 8px;
    padding: 0 40px 0 0;
    order: 0;
  }
}

.menu_title .btn_like {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.menu_title .btn_like a {
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 0 16px 0 20px;
  height: 40px;
}

.menu_title .btn_like a::before {
  transform: translate(0, 0) scale(1.75, 1.75);
  margin: 0 8px 0 0;
}

@media (max-width: 767px) {
  .menu_title .btn_like a {
    border-radius: 50%;
    font-size: 10px;
    width: 32px;
    height: 32px;
    padding: 0;
  }

  .menu_title .btn_like a>span {
    display: none;
  }

  .menu_title .btn_like a::before {
    transform: translate(0, 3.33%) scale(1.75, 1.75);
    transform-origin: center center;
    margin: 0;
  }
}

.menu_subtitle {
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 28px;
  width: 100%;
  margin: 8px 0 16px;
  padding: 0;
  order: 1;
}

@media (max-width: 767px) {
  .menu_subtitle {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 16px;
  }
}

.menu_parts .img_parts {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  background: #fff;
  width: 480px;
  height: 319.968px;
  /* 3:2 */
  order: 3;
}

@media (max-width: 959px) {
  .menu_parts .img_parts {
    width: 100%;
    height: 40vw;
  }
}

@media (max-width: 767px) {
  .menu_parts .img_parts {
    width: 100%;
    height: 40vw;
    margin-bottom: 0;
  }
}

.menu_parts .img_parts .main_img {
  border-radius: 6px;
  width: calc(66.66% - 4px);
  height: 100%;
  overflow: hidden;
  position: relative;
  order: 0;
}

.menu_parts .img_parts .main_img:only-child {
  width: 100%;
}

.menu_parts .img_parts .main_img::before {
  content: "";
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.06) inset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.menu_parts .img_parts .main_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  position: relative;
  z-index: 1;
}

.menu_parts .img_parts .sub_img {
  border-radius: 6px;
  width: calc(33.33% - 4px);
  height: calc(50% - 4px);
  margin: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  order: 2;
}

.menu_parts .img_parts .sub_img+.sub_img {
  margin-top: 8px;
}

.menu_parts .img_parts .sub_img::before {
  content: "";
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06) inset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.menu_parts .img_parts .sub_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  position: relative;
  z-index: 1;
}

.menu_parts .text_parts {
  width: calc(100% - 480px);
  padding: 0 32px 0 0;
  order: 2;
}

@media (max-width: 959px) {
  .menu_parts .text_parts {
    width: 100%;
    padding: 0;
    margin-top: 16px;
    order: 5;
  }
}

@media (max-width: 767px) {
  .menu_parts .text_parts {
    width: 100%;
    padding: 0;
    margin-top: 16px;
    order: 5;
  }
}

/* table basic */
.menu_detail_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 0 auto 16px;
}

.menu_detail_table th,
.menu_detail_table td {
  border: 1px solid #d1d1d1;
  height: 50px;
  vertical-align: middle;
}

.menu_detail_table th {
  vertical-align: middle;
  background-color: #e8e8e8;
  font-size: 14px;
  text-align: center;
  width: 10%;
  min-width: 25px;
  height: 28px;
  padding: 8px;
}

.menu_detail_table th:first-child {
  width: 50%;
}

.menu_detail_table th:only-child {
  width: auto;
}

.menu_detail_table td {
  vertical-align: middle;
  height: 60px;
  padding: 20px;
}

.menu_detail_table .td_commnet {
  font-size: 14px;
  font-weight: 100;
  line-height: 26px;
  text-align: left;
}

.menu_detail_table .td_price {
  width: 50%;
  text-align: center;
}

.menu_detail_table td.td_price {
  font-size: 22px;
  font-weight: 700;
}

.menu_detail_table .td_place {
  width: 25%;
  text-align: center;
}

.menu_detail_table .td_wtime {
  width: 25%;
  text-align: center;
}

@media (max-width: 767px) {
  .menu_parts .sub_title {
    border: none;
    width: 100%;
    padding: 0;
  }

  .menu_parts .sub_title span {
    position: absolute;
    right: -24px;
    top: 50%;
    font-weight: 700;
    font-size: 160%;
    line-height: 1;
    margin-top: -13.5px;
  }

  .menu_detail_table th,
  .menu_detail_table td {
    padding: 8px;
  }

  .menu_detail_table th {
    font-size: 10px;
    line-height: 1.25;
    height: auto;
    padding: 8px;
  }

  .menu_detail_table td {
    font-size: 10px;
    line-height: 1.25;
    height: auto;
  }

  .menu_detail_table td:first-child {
    font-weight: 700;
  }

  .menu_detail_table td.td_price {
    font-size: 18px;
    font-weight: 700;
  }

  .menu_detail_table .td_commnet {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.66;
    text-align: left;
  }
}

/**
* .detail_staff_list
* /detail/[ID]/staff/ページ ラッパー
**/
/**
* .staff_parts
* /detail/[ID]/staff/ページ 各スタッフごとのスタイル
**/
.staff_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

*+.staff_parts {
  margin-top: 48px;
}

@media (max-width: 767px) {
  *+.staff_parts {
    margin-top: 24px;
  }
}

.staff_parts .img_parts {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  background: #fff;
  width: 480px;
  height: 319.968px;
  /* 3:2 */
}

@media (max-width: 959px) {
  .staff_parts .img_parts {
    width: 50%;
    height: 40vw;
  }
}

@media (max-width: 767px) {
  .staff_parts .img_parts {
    width: 100%;
    height: 40vw;
  }
}

.staff_parts .img_parts .main_img {
  border-radius: 6px;
  width: calc(66.66% - 4px);
  height: 100%;
  overflow: hidden;
  position: relative;
  order: 0;
}

.staff_parts .img_parts .main_img:only-child {
  width: 100%;
}

.staff_parts .img_parts .main_img::before {
  content: "";
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.06) inset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.staff_parts .img_parts .main_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  position: relative;
  z-index: 1;
}

.staff_parts .img_parts .sub_img {
  border-radius: 6px;
  width: calc(33.33% - 4px);
  height: calc(50% - 4px);
  margin: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  order: 2;
}

.staff_parts .img_parts .sub_img+.sub_img {
  margin-top: 8px;
}

.staff_parts .img_parts .sub_img::before {
  content: "";
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 48px 0 rgba(0, 0, 0, 0.06) inset;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.staff_parts .img_parts .sub_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  position: relative;
  z-index: 1;
}

.staff_parts .text_parts {
  width: calc(100% - 480px);
  padding: 0 0 0 32px;
}

@media (max-width: 959px) {
  .staff_parts .text_parts {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .staff_parts .text_parts {
    width: 100%;
    padding: 0 16px;
  }
}

.detail_staff_title {
  padding: 48px 0 12px;
  margin: 0 0 32px;
  position: relative;
}

.detail_staff_title::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 32px;
  border-bottom: solid 2px var(--sub_c);
}

.detail_staff_title>.staff_name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  padding-right: 32px;
}

.detail_staff_title>.staff_class {
  color: var(--sub_c);
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
}

@media (max-width: 767px) {
  .detail_staff_title {
    padding: 16px 0 12px;
    margin: 0 0 16px;
  }

  .detail_staff_title::after {
    width: 32px;
    border-bottom: solid 2px var(--sub_c);
  }

  .detail_staff_title>.staff_name {
    font-size: 18px;
    line-height: 32px;
    padding-right: 16px;
  }

  .detail_staff_title>.staff_class {
    font-size: 10px;
    line-height: 32px;
  }
}

.detail_staff_comment {
  border-radius: 4px;
  background: #f4f4f1;
  font-size: 14px;
  line-height: 25px;
  width: 100%;
  padding: 16px;
}

@media (max-width: 767px) {
  .detail_staff_comment {
    border-radius: 4px;
    font-size: 12px;
    line-height: 32px;
    padding: 8px;
  }
}

/* 経歴 */
.detail_staff_history {
  font-size: 14px;
  line-height: 22px;
  padding: 16px;
}

.detail_staff_history>.detail_title__type06 {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .detail_staff_history {
    font-size: 12px;
    line-height: 32px;
    padding: 16px;
  }

  .detail_staff_history>.detail_title__type06 {
    color: #888;
    margin-bottom: 8px;
  }
}

/**
* .detail_gallery_parts
* /detail/[ID]/ページ ギャラリー
**/
.detail_gallery_parts {
  position: relative;
  z-index: 99;
}

@media (min-width: 959px) {
  *+.detail_gallery_parts {
    margin-top: 64px;
  }
}

@media (max-width: 959px) {
  *+.detail_gallery_parts {
    margin-top: 64px;
  }
}

@media (max-width: 767px) {
  *+.detail_gallery_parts {
    margin-top: 48px;
  }
}

/* title */
.detail_gallery_title {
  order: 0;
}

@media (min-width: 960px) {

  /* heightはBricks.jsにて自動実装されます */
  .detail_gallery_parts li {
    width: calc((100% - 24px) / 4);
  }
}

@media (max-width: 959px) {

  /* heightはBricks.jsにて自動実装されます */
  .detail_gallery_parts li {
    width: calc((100% - 24px) / 4);
  }
}

@media (max-width: 767px) {

  /* heightはBricks.jsにて自動実装されます */
  .detail_gallery_parts li {
    width: calc((100% - 16px) / 3);
  }
}

.detail_gallery_parts li a {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.detail_gallery_parts li a:focus,
.detail_gallery_parts li a:hover {
  opacity: 1;
}

.detail_gallery_parts li img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 1s ease;
}

.detail_gallery_parts li a:focus img,
.detail_gallery_parts li a:hover img {
  transform: translate(-50%, -50%) scale(2);
}

/**
* .detail_info_parts
* /detail/[ID]/ページ 情報欄（ビフォーアフター 対応時間）
**/
.detail_info_parts {
  --info-ul-title-width: 280px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  font-size: 18px;
}

.detail_info_parts>* {
  width: 100%;
}

.detail_main *+.detail_info_parts {
  margin-top: 0;
}

.detail_info_parts iframe {
  aspect-ratio: 560 / 315;
  height: auto;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 959px) {
  .detail_info_parts {
    font-size: 16px;
  }

  *+.detail_info_parts {
    margin-top: 24px;
  }

  .detail_main *+.detail_info_parts {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .detail_info_parts {
    --info-ul-title-width: 128px;
    font-size: 14px;
  }

  *+.detail_info_parts {
    margin-top: 20px;
  }

  .detail_main *+.detail_info_parts {
    margin-top: 0;
  }
}

/* title */
.detail_info_title {
  order: 0;
}

.detail_info_parts>h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: var(--main_c);
  margin: 0 0 24px;
  padding: 6px 0;
  border-bottom: solid 1px #efefef;
}

@media (max-width: 767px) {
  .detail_info_parts>h5 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 20px;
    padding: 4px 0;
  }
}

/* order */
.detail_info_parts>.center_parts {
  order: 2;
}

.detail_info_parts>.left_parts {
  order: 1;
}

.detail_info_parts>.right_parts {
  order: 3;
}

.detail_info_parts>.bottom_parts {
  order: 4;
}

/* center_parts（ビフォーアフターのみ使用） */
.detail_info_parts>.center_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 40px;
}

.detail_info_parts>.center_parts .arrow {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .detail_info_parts>.center_parts {
    width: 24px;
  }

  .detail_info_parts>.center_parts .arrow {
    width: 24px;
    height: 24px;
  }
}

/* left_parts, right_parts (default) */
.detail_info_parts>.left_parts,
.detail_info_parts>.right_parts {
  position: relative;
  width: calc((100% - 40px) / 2);
}

.detail_info_parts>.left_parts {
  padding-right: 20px;
}

.detail_info_parts>.right_parts {
  padding-left: 20px;
}

@media (max-width: 959px) {

  .detail_info_parts>.left_parts,
  .detail_info_parts>.right_parts {
    width: 100%;
  }

  .detail_info_parts>.left_parts {
    padding-right: 0;
  }

  .detail_info_parts>.right_parts {
    padding-left: 0;
    margin-top: -1px;
  }
}

/* left_parts, right_parts (Before After) */
.detail_info_parts>.center_parts~.left_parts {
  padding-right: 0;
}

.detail_info_parts>.center_parts~.right_parts {
  padding-left: 0;
}

.detail_info_parts>.center_parts~.left_parts img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail_info_parts>.center_parts~.right_parts img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail_info_parts>.center_parts~.left_parts>span,
.detail_info_parts>.center_parts~.right_parts>span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--main_c);
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  width: 120px;
  padding: 5px 0;
}

.detail_info_parts>.center_parts~.right_parts>span {
  background-color: #e9be38;
  color: #fff;
}

@media (max-width: 959px) {

  .detail_info_parts>.center_parts~.left_parts,
  .detail_info_parts>.center_parts~.right_parts {
    width: calc((100% - 24px) / 2);
    margin-top: 0;
  }

  .detail_info_parts>.center_parts~.left_parts>span,
  .detail_info_parts>.center_parts~.right_parts>span {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 50%);
    font-size: 10px;
    width: 96px;
    padding: 2px 0;
  }
}

.detail_info_parts>.bottom_parts p {
  margin: 0 0 5px;
  line-height: 1.8;
}

@media (max-width: 959px) {
  .detail_info_parts>.bottom_parts p {
    margin: 0 0 5px;
    line-height: 1.8;
  }
}

/* 基本情報 テーブルスタイル */
.detail_info_parts ul {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.3333;
}

@media (max-width: 959px) {
  .detail_info_parts ul {
    font-size: 14px;
  }
}

.detail_info_parts ul>li {
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.detail_info_parts ul>li+li {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .detail_info_parts ul>li+li {
    margin-top: 10px;
  }
}

.detail_info_parts ul>li .info_title {
  border-radius: var(--btn-radius-l);
  border: solid 1px #AFEBE1;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  width: var(--info-ul-title-width);
  padding: 1.25ex 2ex;
}

.detail_info_parts ul>li .info_text {
  font-size: inherit;
  font-weight: inherit;
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.5;
  width: calc(100% - var(--info-ul-title-width));
  padding: 1.25ex 0 1.25ex 2ex;
}

.detail_info_parts ul>li .info_text--full {
  width: 100%;
}

.detail_info_parts ul>li .info_title+.info_text {}

.detail_info_parts a:not([class]) {
  color: var(--text_link_c);
  text-decoration: underline;
}

.detail_info_parts .info_sns_icon {
  display: inline-block;
  text-decoration: none;
}

.detail_info_parts .info_sns_icon i:not([class]) {
  display: block;
  background-image: url("../images/info-sns-icon-share.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 36px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.detail_info_parts .info_sns_icon[href*="facebook"] i:not([class]) {
  background-image: url("../images/info-sns-icon-fb.png");
  background-size: contain;
}

.detail_info_parts .info_sns_icon[href*="x.com"] i:not([class]),
.detail_info_parts .info_sns_icon[href*="twitter"] i:not([class]) {
  background-image: url("../images/info-sns-icon-x.png");
  background-size: contain;
}

.detail_info_parts .info_sns_icon[href*="instagram"] i:not([class]) {
  background-image: url("../images/info-sns-icon-ig.png");
  background-size: contain;
}

.detail_info_parts .info_sns_icon i+i {
  margin-left: 32px;
}


/* google map */
.detail_info_parts .info_calendar {
  display: block;
}

.detail_info_parts *+.info_calendar {
  margin-top: 12px;
}

/* google map */
.detail_info_parts .gglmap {
  display: block;
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.detail_info_parts *+.gglmap {
  margin-top: 12px;
}

.detail_info_parts .gglmap img,
.detail_info_parts .gglmap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* link */
.detail_info_parts .link_box a {
  color: var(--main_c);
  text-decoration: underline;
}

.detail_info_parts .link_box a+a {
  margin-left: 10px;
}

.detail_info_parts .detail_info_icon {
  width: 80%;
  margin: 0 auto;
}


/**
* .opening_hours
* /detail/[ID]/ページ 営業（診療）時間
**/
.opening_hours {
  width: 100%;
  margin: 0 auto;
}

.opening_hours p {
  font-size: 14px;
  line-height: 1.8;
}

.opening_hours table {
  border-collapse: collapse;
  color: var(--font_c);
  text-align: center;
  width: 100%;
  margin: 0 auto 32px;
}

.opening_hours table th,
.opening_hours table td {
  border: 1px solid;
  height: 50px;
  vertical-align: middle;
}

.opening_hours table th {
  background: #AFEBE1;
  font-weight: 700;
}

.opening_hours table th:nth-child(2n+3) {
  background: #A1D9CF;
}

.opening_hours table td:nth-child(2n+3) {
  background: #F5F5F5;
}

.opening_hours table td {
  width: 11%;
  padding: 8px 0;
  line-height: 1.3;
}

.opening_hours table tr th:first-child,
.opening_hours table tr td:first-child {
  width: 22%;
  margin: 0 auto;
}

.opening_hours table td span {
  padding: 0;
  background-color: unset;
  color: #595757;
  font-size: 16px;
  position: unset;
}

.opening_hours table td img {
  width: auto;
  height: auto;
  margin: 0 auto;
}

.opening_hours_description {
  display: flex;
  justify-content: center;
}

.opening_hours_description div {
  width: 20%;
  padding: 0 32px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening_hours_description img {
  width: auto;
  height: auto;
  display: inline;
}

.opening_hours_description p {
  margin: 0 0 0 8px;
}

@media (max-width: 767px) {
  .opening_hours {
    table-layout: fixed;
  }

  .opening_hours table td {
    width: auto;
    padding: 4px 0;
  }

  .opening_hours table th:first-child,
  .opening_hours table td:first-child {
    font-size: 11px;
    line-height: 16px;
    width: 80px;
    padding: 4px;
  }

  .opening_hours table td img {
    max-width: 12px;
  }

  .opening_hours_description {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .opening_hours_description div {
    width: 33.33%;
  }

  .opening_hours_description div img {
    max-width: 15px;
  }
}



/**
* .detail_review_parts
* /detail/[ID]/ページ 口コミ（吹き出しデザイン）
**/
.detail_review_parts {
  --review-list-gap: 40px;
  --review-item-gap: 20px;
  --review-user-width: 144px;
  --review-shop-width: 96px;
  border-radius: 6px;
  background: #f6f3ee;
  overflow: hidden;
}

@media (max-width: 767px) {
  .detail_review_parts {
    --review-list-gap: 40px;
    --review-item-gap: 20px;
    --review-user-width: 128px;
    --review-shop-width: 128px;
  }
}

.detail_review_parts__title {
  background: var(--sub_c_dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2ex;
  margin: 0;
  padding: 1.5ex 2ex;
}

.detail_review_parts__list {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--review-list-gap);
  padding: var(--review-list-gap) 20px var(--review-list-gap) 0;
}

.detail_review_parts__item {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: var(--review-item-gap);
  position: relative;
}

@media (min-width: 768px) {
  .detail_review_parts__item {
    padding-left: calc(var(--review-user-width) + var(--review-item-gap));
  }
}

.detail_review_parts__user-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  width: var(--review-user-width);
  padding: 0 var(--review-item-gap);
}

@media (min-width: 768px) {
  .detail_review_parts__user-info {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
}

.detail_review_parts__user-info>.item--user-image {
  border-radius: 50%;
  border: solid 4px #fff;
  background: #fff;
  width: 80px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.detail_review_parts__user-info>.item--name {
  display: block;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.detail_review_parts__user-info>*+.item--name {
  margin-top: 12px;
}

.detail_review_parts__user-info>.item--name-suffix {
  display: block;
  color: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.detail_review_parts__user-info>.item--date {
  display: block;
  color: #aba3a1;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.detail_review_parts__user-info>*+.item--date {
  margin-top: 8px;
}

.detail_review_parts__user-info>.item--date-suffix {
  display: block;
  color: #aba3a1;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.detail_review_parts__user-text {
  border-radius: 6px;
  border: solid 1px #5d5958;
  background: #fff;
  width: calc(100% - var(--review-user-width) - var(--review-item-gap));
  padding: 20px;
  position: relative;
}

.detail_review_parts__user-text::before {
  content: '';
  display: block;
  border-style: solid;
  border-width: 12px 28px;
  border-color: transparent #5d5958 transparent transparent;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 5;
  transform: translate(-100%, 0);
}

.detail_review_parts__user-text::after {
  content: '';
  display: block;
  border-style: solid;
  border-width: 12px 28px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  left: 1.75px;
  top: 20px;
  z-index: 10;
  transform: translate(-100%, 0);
}

@media (min-width: 768px) {
  .detail_review_parts__user-text {
    width: 100%;
  }
}

.detail_review_parts__shop-info {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  width: var(--review-shop-width);
}

.detail_review_parts__shop-text {
  border-radius: 6px;
  border: solid 1px #5d5958;
  background: #fff;
  width: calc(100% - var(--review-shop-width) - var(--review-item-gap));
  padding: 20px;
}

.detail_review_parts__list>.btn {
  height: 44px;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 767px) {
  .detail_review_parts__shop-info {
    text-align: center;
  }
}



/**
* .paging
* /detail/[ID]/ページ ページャー
**/
.detail_main .c-card__list {}

@media (max-width: 767px) {
  .detail_main .c-card__list {}
}

.detail_main .c-card__item {
  max-width: calc((100% - var(--card-gap) * 4) / 5);
  border: 1px solid #d7d7d7;
  padding: 8px;
}

@media (max-width: 767px) {
  .detail_main .c-card__item {
    max-width: calc((100% - var(--card-gap) * 1) / 2);
  }
}

.detail_main .c-card__img {
  border-radius: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  object-fit: cover;
}

.detail_main .c-card__itemInner {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px 0 0;
  ;
}

.detail_main .c-card__area,
.c-card__time {
  font-size: 14px;
}

.detail_main .c-card__ttl {
  color: #008892;
}


/**
* .paging
* /detail/[ID]/ページ ページャー
**/
.detail_banner {
  margin: 0 0 40px;
}

*+.detail_banner {
  margin-top: 40px;
}

.detail_banner>.banner {
  max-width: 728px;
  margin-inline: auto;
}

.detail_banner>*+.banner {
  margin-top: 20px;
}


/**
* .paging
* /detail/[ID]/ページ ページャー
**/
.paging {
  margin: 10px 0;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .paging {
    padding: 0 0 28px;
  }
}

.paging li {
  margin: 2px 2px;
  display: inline-block;
}

.paging li>span,
.paging li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  border: 1px solid #707070;
  background: #fff;
  color: var(--font_c);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125;
  text-decoration: none;
  min-width: 64px;
  height: 64px;
  padding: 0 1em;
}

@media (max-width: 767px) {

  .paging li>span,
  .paging li>a {
    min-width: 44px;
    height: 44px;
  }
}

.paging li a:focus,
.paging li a:hover {
  text-decoration: none;
}

.paging li .current {
  border: 1px solid var(--main_c);
  background: var(--main_c);
  color: #fff;
}

.paging li .ten {}

.paging li a.prev {}

.paging li a.next {}

/**
* .detail_kuchikomi_parts
* /detail/[ID]/kuchikomi/ページ 口コミのラッパー
**/
/* 投稿フォーム */
.detail_kuchikomi_parts+.parts_wrap {
  margin-top: 48px;
}

/**
* .bnr_kuchikomi
* /detail/[ID]/kuchikomi/ページ バナー
**/
.bnr_kuchikomi {
  width: 100%;
}

@media (min-width: 576px) {
  .bnr_kuchikomi li:first-child {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
  }

  .bnr_kuchikomi li:last-child {
    display: none;
  }
}

@media (max-width: 575px) {
  .bnr_kuchikomi {
    padding: 0 0 16px;
  }

  .bnr_kuchikomi li:first-child {
    display: none;
  }

  .bnr_kuchikomi li:last-child {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
  }
}

/**
* .detail_kuchikomi_list
* /detail/[ID]/kuchikomi/ページ 口コミ一覧
**/
/**
* .kuchikomi_point
* /detail/[ID]/kuchikomi/ページ 口コミ点数・ソート
**/
.kuchikomi_point {
  font-size: 16.25px;
  font-weight: 700;
  line-height: 20.625px;
  text-align: center;
  margin: 28px 0 25px;
}

@media (max-width: 767px) {
  .kuchikomi_point {
    margin: 0 0 2.5px;
  }
}

.kuchikomi_number {
  color: #e9be38;
  font-weight: 700;
}

.kuchikomi_point .kuchikomi_number {
  font-size: 23.75px;
  padding: 0 3px;
}

.kuchikomi_head_parts {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 15px;
}

.kuchikomi_head_parts .kuchikomi_count {
  font-size: 6.875px;
}

.kuchikomi_head_parts .kuchikomi_count .kuchikomi_number {
  color: #e9be38;
  font-size: 11.25px;
  font-weight: 700;
  padding-right: 3px;
}

@media (max-width: 959px) {
  .kuchikomi_head_parts {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .kuchikomi_count {
    width: auto;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .kuchikomi_head_parts {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 10px;
  }

  .kuchikomi_count {
    width: auto;
    margin: 0 auto;
  }
}

/* sort */
.kuchikomi_head_parts .search_change_view {
  width: 55%;
  max-width: none;
}

.kuchikomi_head_parts .search_change_view p,
.kuchikomi_head_parts .search_change_view .option {
  margin: 0;
}

@media (max-width: 959px) {
  .kuchikomi_head_parts .search_change_view {
    width: 90%;
    margin: 0 0 5px;
  }

  .kuchikomi_head_parts .search_change_view {
    width: 100%;
    margin: 0 0 5px;
  }

  .kuchikomi_head_parts .search_change_view div {
    width: 48.5%;
  }

  .kuchikomi_head_parts .search_change_view div:first-child {
    width: 100%;
  }

  .kuchikomi_head_parts .search_change_view .option {
    font-size: 7.5px;
  }
}

/**
* .kuchikomi_parts
* /detail/[ID]/kuchikomi/ページ 各口コミ
**/
.kuchikomi_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  border-radius: 6px;
  border: solid 1px #e1e1e1;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
  padding: 40px;
  margin: 0 0 28px;
}

.kuchikomi_parts:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .kuchikomi_parts {
    padding: 16px;
  }
}

.kuchikomi_user {
  line-height: 1;
  width: 50%;
  padding: 0 0 0 56px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.kuchikomi_user::before {
  content: "";
  display: block;
  background-image: url("../images/icon_review_man.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
}

.kuchikomi_user .user_name {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  margin-right: 16px;
}

.kuchikomi_user .user_age {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 16px;
  margin-right: 8px;
}

.kuchikomi_user .user_age::after {
  content: "歳";
}

.kuchikomi_user .user_sex {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 16px;
  margin-right: 8px;
}

.kuchikomi_user time {
  display: block;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .kuchikomi_user {
    width: calc(100% - 128px);
    padding: 0 0 0 48px;
  }

  .kuchikomi_user::before {
    width: 40px;
    height: 40px;
  }

  .kuchikomi_user .user_name {
    display: block;
    font-size: 12px;
    margin-right: 0;
  }

  .kuchikomi_user .user_age {
    font-size: 8px;
    line-height: 1;
    margin-right: 8px;
  }

  .kuchikomi_user .user_age::after {
    content: "歳";
  }

  .kuchikomi_user .user_sex {
    font-size: 8px;
    line-height: 1;
    margin-right: 8px;
  }

  .kuchikomi_user time {
    font-size: 8px;
    line-height: 1;
    margin-top: 4px;
  }
}

.kuchikomi_osusume {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  width: 50%;
}

.kuchikomi_osusume>p {
  text-align: center;
  width: 128px;
}

.kuchikomi_osusume>p>span {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  margin-right: 8px;
}

.kuchikomi_osusume>p>.kuchikomi_number {
  color: #e9be38;
  font-size: 24px;
  line-height: 24px;
  margin-left: 0;
}

.kuchikomi_osusume>ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  width: calc(100% - 128px);
}

@media (max-width: 767px) {
  .kuchikomi_osusume {
    flex-wrap: wrap;
    width: 128px;
    padding: 0;
    border: none;
  }

  .kuchikomi_osusume>p {
    width: 100%;
  }

  .kuchikomi_osusume>p>span {
    font-size: 8px;
    line-height: 1;
  }

  .kuchikomi_osusume>p>.kuchikomi_number {
    font-size: 20px;
    line-height: 1;
  }

  .kuchikomi_osusume>ul {
    width: 100%;
    height: 20px;
    margin: 0;
  }
}

.kuchikomi_osusume>ul>li {
  width: 100%;
  height: 100%;
}

.kuchikomi_osusume>ul>li>div {
  background-color: #f1f1f1;
  height: 100%;
}

.kuchikomi_osusume>ul>li+li>div {
  border-left: 1px dotted rgba(0, 0, 0, 0.09);
}

.kuchikomi_osusume>ul>.on>div {
  background-color: #faa0a6;
  background-image: linear-gradient(to bottom, #faa0a6 0%, #f9d9db 100%);
}

.kuchikomi_osusume>ul>li+.on>div {
  border-left: 1px dotted rgba(255, 255, 255, 0.75);
}

.kuchikomi_comment {
  width: calc(50% + 128px);
  margin: 16px 0 0;
}

@media (max-width: 767px) {
  .kuchikomi_comment {
    width: 100%;
    margin: 8px 0;
  }
}

/* kuchikomi_comment dl(set view more) */
.kuchikomi_comment dl+dl {
  margin-top: 24px;
}

.kuchikomi_comment dl>dt {
  margin: 0;
}

.kuchikomi_comment dl>dd {
  padding: 8px 32px 0 18px;
}

.kuchikomi_comment dl>dd p {
  font-size: 12px;
  line-height: 26px;
}

/* view more style */
.kuchikomi_comment .view_more_btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding-right: 12px;
}

.kuchikomi_comment .view_more_btn::after {
  display: none;
  content: "\f218";
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  border: solid 1px;
  width: 18px;
  height: 18px;
  font-size: 12px;
  transition: all 0.4s ease;
}

.kuchikomi_comment .view_more_btn.active::after {
  background: #ccc;
  color: #fff;
  transform: rotate(45deg);
}

.kuchikomi_comment .view_more_btn span {
  display: block;
  width: calc(100% - 18px);
}

@media (max-width: 767px) {
  .kuchikomi_comment .view_more_btn::after {
    display: flex;
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .kuchikomi_comment .view_more_btn span {
    display: block;
    width: calc(100% - 16px);
  }
}

.kuchikomi_reply {
  width: calc(50% - 128px);
  margin: 16px 0;
}

.kuchikomi_reply_title {
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.kuchikomi_reply_text {
  background: #f1f1f1;
  font-size: 14px;
  padding: 16px;
  margin: 0;
}

@media (max-width: 767px) {
  .kuchikomi_reply {
    width: 100%;
    margin: 0 0 8px;
  }
}

/**
* .detail_recommended_parts
* /detail/[ID]/cinfo/ページ おすすめの他店舗、他医院
**/
.recommended_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: #f2f3f4;
  color: rgba(0, 0, 0, 0.2);
  padding: 28px;
}

.recommended_list>dt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  border-radius: 6px;
  border: solid 1px #e1e1e1;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  color: #999;
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 18px;
  padding: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.recommended_list>dt+dt,
.recommended_list>dd+dt {
  margin-top: 16px;
}

.recommended_list>dt::after {
  content: "\f125";
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #999;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  left: auto;
  z-index: 1;
  transition: color 0.2s ease;
}

.recommended_list>dt a {
  color: var(--main_c);
  margin-right: 16px;
  transition: color 0.3s ease;
}

.recommended_list>dt a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.recommended_list>dt a:focus,
.recommended_list>dt a:hover {
  opacity: 1;
}

.recommended_list>dt:hover {
  border-color: var(--main_c);
  background-color: var(--main_c);
  color: #fff;
}

.recommended_list>dt:hover::after {
  color: inherit;
}

.recommended_list>dt:hover a {
  color: #fff;
}

.recommended_list>dt:hover+dd {
  border-color: var(--main_c);
  background-color: var(--main_c);
  color: #fff;
}

.recommended_list>dd {
  border-radius: 0 0 6px 6px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  border-right: solid 1px #e1e1e1;
  border-bottom: solid 1px #e1e1e1;
  border-left: solid 1px #e1e1e1;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
  background-image: url("../images/icon_review_man.png");
  background-repeat: no-repeat;
  background-position: left 32px top 16px;
  background-size: auto 22px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 16px 16px 16px 56px;
  margin: -12px 0 0;
  transition: all 0.4s ease;
}

.recommended_list+* {
  margin-top: 48px;
}

@media (max-width: 767px) {
  .recommended_list>dt {
    padding: 16px;
  }
}

/**
* .detail_flexible_information
* /detail/[ID]/ページ 自由内容定型入力欄ラッパー
**/
*+.detail_flexible_information {
  margin-top: 60px;
}

/* 背景色を交互に変更する場合 */
.detail_flexible_information>.bg__full_width:nth-child(odd) {
  background: #f5f5f5;
}

.detail_flexible_information>.bg__full_width:nth-child(even) {
  background: #fff;
}

@media (min-width: 768px) {
  .detail_flexible_information>* {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .detail_flexible_information>* {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/**
* .detail_flexible_info_parts
* /detail/[ID]/ページ 自由内容定型入力欄
**/
.detail_flexible_info_parts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.detail_flexible_info_image {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.detail_flexible_info_image::before {
  content: "";
  display: block;
  padding: 66.66% 0 0;
  position: relative;
  z-index: 1;
}

.detail_flexible_info_image>img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail_flexible_info_text {
  background: #fff;
}

@media (min-width: 768px) {
  .detail_flexible_info_image {
    border-radius: 6px 0 0 6px;
    width: 50%;
  }

  .detail_flexible_info_text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    border-radius: 0 6px 6px 0;
    width: 50%;
    padding: 48px;
  }

  .detail_flexible_info_text:only-child {
    border-radius: inherit;
    display: block;
    width: 100%;
  }

  /* レイアウトを互い違いにする場合 */
  .detail_flexible_information>*:nth-child(odd) .detail_flexible_info_image {
    order: 1;
    border-radius: 6px 0 0 6px;
  }

  .detail_flexible_information>*:nth-child(even) .detail_flexible_info_image {
    order: 2;
    border-radius: 0 6px 6px 0;
  }

  .detail_flexible_information>*:nth-child(odd) .detail_flexible_info_text {
    order: 2;
    border-radius: 0 6px 6px 0;
  }

  .detail_flexible_information>*:nth-child(even) .detail_flexible_info_text {
    order: 1;
    border-radius: 6px 0 0 6px;
  }
}

@media (max-width: 767px) {
  .detail_flexible_info_parts {
    border-radius: 0;
  }

  .detail_flexible_info_image {
    border-radius: 0;
    width: 100%;
  }

  .detail_flexible_info_text {
    border-radius: 0;
    width: 100%;
    padding: 16px;
  }

  .detail_flexible_info_text:only-child {
    border-radius: inherit;
    display: block;
    width: 100%;
  }
}

/* タイトル */
.detail_flexible_info_title {
  color: var(--main_c);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2ex;
  width: 100%;
  margin: 0;
}

.detail_flexible_info_title:empty {
  display: none;
}

@media (max-width: 767px) {
  .detail_flexible_info_title {
    font-size: 18px;
    width: 100%;
  }
}

/* エリア（暫定 サイトにより領域の使用用途、意味合いが変化） */
.detail_flexible_info_area {
  display: inline-block;
  color: rgba(0, 0, 0, 0.33);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.detail_flexible_info_cate+.detail_flexible_info_area {
  margin-left: 16px;
}

.detail_flexible_info_area:empty {
  display: none;
}

/* カテゴリ（暫定 サイトにより領域の使用用途、意味合いが変化） */
.detail_flexible_info_cate {
  display: inline-block;
  color: rgba(0, 0, 0, 0.33);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.detail_flexible_info_area+.detail_flexible_info_cate {
  margin-left: 16px;
}

.detail_flexible_info_cate:empty {
  display: none;
}

@media (max-width: 767px) {
  .detail_flexible_info_area {
    font-size: 8px;
    line-height: 12px;
  }

  .detail_flexible_info_cate {
    font-size: 8px;
    line-height: 12px;
  }
}

/* 複数行テキスト */
.detail_flexible_info_text>p {
  line-height: 2;
  width: 100%;
}

.detail_flexible_info_text>*+p {
  margin-top: 24px;
}

.detail_flexible_info_text>p:empty {
  display: none;
}

@media (max-width: 767px) {
  .detail_flexible_info_text>p {
    font-size: 12px;
  }
}

/* リスト */
.detail_flexible_info_list {
  background: #ECECEC;
  width: 100%;
  padding: 16px;
}

*+.detail_flexible_info_list {
  margin-top: 24px;
}

.detail_flexible_info_list:empty {
  display: none;
}

.detail_flexible_info_list>li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.56);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.detail_flexible_info_list>li+li {
  margin-left: 8px;
}

.detail_flexible_info_list>li+li::before {
  content: "／";
  margin-right: 8px;
}

@media (max-width: 767px) {
  .detail_flexible_info_list {
    padding: 8px 16px;
  }

  *+.detail_flexible_info_list {
    margin-top: 16px;
  }

  .detail_flexible_info_list>li {
    font-size: 8px;
    line-height: 12px;
  }

  .detail_flexible_info_list>li+li {
    margin-left: 4px;
  }

  .detail_flexible_info_list>li+li::before {
    margin-right: 4px;
  }
}


/**
 * table
 * /detail/[ID]/ページ table
**/
.detail_info_table {
  color: var(--font_c);
  width: 100%;
}

.detail_info_table.table--fixed {
  table-layout: fixed;
}

.detail_info_table>thead {}

.detail_info_table>thead>tr {}

.detail_info_table>thead>tr>th,
.detail_info_table>thead>tr>td {
  border: solid 1px;
  background: #AFEBE1;
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: 'palt';
  text-align: center;
  padding: .6em;
}

.detail_info_table>thead>tr>th>small {
  font-size: 13px;
  font-weight: 400;
}

.detail_info_table>tbody {}

.detail_info_table>tbody>tr {}

.detail_info_table>tbody>tr>th,
.detail_info_table>tbody>tr>td {
  border: solid 1px;
  background: #fff;
  font-size: inherit;
  font-feature-settings: 'palt';
  text-align: center;
  padding: .6em;
}

.detail_info_table>tbody>tr>td.price_size {
  font-size: .9em;
}

@media (max-width: 767px) {

  .detail_info_table>thead>tr>th,
  .detail_info_table>thead>tr>td {
    font-size: 16px;
  }

  .detail_info_table>thead>tr>th>small {
    font-size: 12px;
  }

  .detail_info_table>tbody>tr>th,
  .detail_info_table>tbody>tr>td {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  .detail_info_table>thead>tr>th,
  .detail_info_table>thead>tr>td {
    font-size: 14px;
  }

  .detail_info_table>thead>tr>th>small {
    font-size: 10px;
  }

  .detail_info_table>tbody>tr>th,
  .detail_info_table>tbody>tr>td {
    font-size: 14px;
  }

  .detail_info_table>tbody>tr>td.price_size {
    font-size: .8em;
  }
}


/**
 * flow
 * /detail/[ID]/ページ flow
**/
.detail_info_flow {
  --flow-gap: 40px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  font-size: 18px;
  gap: var(--flow-gap);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .detail_info_flow {
    --flow-gap: 40px;
    flex-flow: column nowrap;
    font-size: 18px;
    gap: var(--flow-gap);
  }
}

.detail_info_flow>li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: var(--btn-radius-l);
  border: solid 1px #AFEBE1;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  max-width: 256px;
  /* width: 100%; */
  padding: 1.25ex 2ex;
  position: relative;
  min-width: 120px;
}

.detail_info_flow>li+li::before {
  content: '';
  display: block;
  border-style: solid;
  border-width: 0.5em 1em;
  border-color: transparent transparent transparent var(--font_c);
  position: absolute;
  left: calc(var(--flow-gap) * -0.5);
  top: 50%;
  z-index: 1;
  transform: translate(-25%, -50%);
}

@media (max-width: 767px) {
  .detail_info_flow>li {
    margin-inline: auto;
    width: 100%;
  }

  .detail_info_flow>li+li::before {
    border-width: 0.5em 1em;
    border-color: var(--font_c) transparent transparent;
    left: 50%;
    top: calc(var(--flow-gap) * -0.5);
    transform: translate(-50%, 0);
  }
}

.d-info_txt {
  margin: 0 20px;
}

.btn_new {
  max-width: 320px;
  width: 100%;
  margin: 0;
}

.btn_new>a {
  border-radius: 6px;
  color: var(--main_c);
  font-size: 20px;
  font-weight: 700;
  line-height: 68px;
  text-align: center;
  height: 64px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: linear-gradient(-331deg, #fac739 0%, #fac739 0%, #fb0d6a 100%, #fb0d6a 100%);
  background-size: 112% 112%;
  color: #fff;
  padding: 1px 16px 1px 20px;
  cursor: pointer;
}

.detail_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.detail_item>p {
  margin-top: 2.75em;
}

@media (max-width: 767px) {
  .d-info_txt {
    font-size: 14px;
  }

  .detail_item>p {
    font-size: 14px;
    margin-top: .75em;
  }
}

.tag_parts .list>.list_area {
  background-color: transparent;
  border: none;
  color: var(--font_c);
  height: auto;
  opacity: 1;
}

.detail_media_item {}

.detail_media_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.detail_media_item {
  width: calc((100% - 20px) / 3);
  background-color: #fff;
  padding: 1rem 1rem 0;
  margin-bottom: 10px;
  border: solid 1px #bbb;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.detail_media_box::before,
.detail_media_box::after {
  content: "";
  display: block;
  width: calc((100% - 20px) / 3);
}

.detail_media_box::before {
  order: 1;
}

.detail_media_box::after {
  content: "";
  display: block;
  width: calc((100% - 20px) / 3);
}

.media_name {
  font-size: 16px;
  width: 100%;
  text-align: center;
  background-color: #888;
  color: #fff;
  margin: 1rem 0;
  padding: .5em;
  font-weight: 500;
  letter-spacing: .1rem;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.detail_media_box img {
  width: 100%;
  max-height: 150px;
  aspect-ratio: 5 / 4;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .media_name {
    font-size: 14px;
    line-height: 1.25;
  }

  .detail_media_item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }

  .detail_media_box::before,
  .detail_media_box::after {
    content: "";
    display: block;
    width: calc((100% - 10px) / 2);
  }
}

.point_wrap {
  width: calc(100% - 120px);
  margin-left: 20px;
}

.detail_point {
  width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #AFEBE1;
  color: var(--font_c);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: .9em;
  margin-bottom: 15px;
}

.detail_point span {
  font-weight: bold;
  font-size: 1.5em;
}

.point_title {
  font-weight: bold;
  margin-bottom: .5rem;
  color: var(--main_c);
  font-size: 2rem;
}

.btn_dl>li,
.btn_dl>a {
  background-color: #ff8c00;
  color: #fff;
  max-width: 100%;
  font-weight: 700;
  border-color: #ff8c00;
}

.btn_dl>a {
  font-size: 16px;
  font-weight: 700;
  height: var(--btn-small-height);
  padding: 1px 16px;
  position: relative;
  cursor: pointer;
  display: block;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: var(--btn-radius);
  margin-right: 1rem;
}

.anchor {
  display: block;
  padding-top: 208px;
  margin-top: -208px;
}

@media (max-width: 767px) {
  .btn_dl>a {
    font-size: 12px;
    padding: 1px 12px;
  }

  .anchor {
    padding-top: 156px;
    margin-top: -156px;
  }
}
