@charset "UTF-8";
/**
 * NOTE: 
 * 本サイトでは .detai_bottom__boxを stickyにするため [id="wrapper"]の overflowを visibleにする必要があります。
**/
body > .page_detail[id="wrapper"] {
  overflow: visible;
}
/* title（ビフォーアフター、基本情報、写真など） */
.detail_title__type01 {
  background: var(--site-c-lightgray);
  color: var(--font-c);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 30px;
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
}
.detail_title__type01::before {
  content: '';
  display: block;
  border-left: solid 4px var(--site-c-main);
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .detail_title__type01 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
/* title（PR、スタッフなど） */
.detail_title__type02 {
  font-size: 20px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.4;
  color: var(--site-c-main);
  margin: 20px 0 0;
  padding: 0 16px;
}
@media (max-width: 767.98px) {
  .detail_title__type02 {
    font-size: 16px;
    margin: 12px 0 0;
    padding: 0 16px;
  }
}
/* title（ビフォーアフターなど） */
.detail_title__type03 {
  display: inline-block;
  border-bottom: 4px double var(--site-c-sub);
  color: var(--site-c-sub);
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 4px;
  margin: 16px 0 8px;
}
@media (max-width: 959.98px) {
  .detail_title__type03 {
    font-size: 20px;
    padding-bottom: 4px;
    margin: 16px 0 8px;
  }
}
.detail_title__type04 {
  background-color: #40ab2a;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 8px 16px;
  margin: 0 0 8px;
}
.detail_title__type05 {
  border-left: 4px solid #40ab2a;
  color: #40ab2a;
  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: 767.98px) {
  .detail_title__type06 {
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 16px;
  }
}
.detail_title__type07 {
  border-left: 4px solid var(--site-c-sub);
  color: var(--site-c-sub);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 16px;
  margin: 0 0 8px;
}
@media (max-width: 767.98px) {
  .detail_title__type07 {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 8px 8px 12px;
    margin: 0 0 8px;
  }
}
.detail_title__type08 {
  background-color: var(--site-c-sub);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 8px 16px;
  margin: 0 0 8px;
}
@media (max-width: 767.98px) {
  .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: var(--site-bg-c-underlayer);
  padding: 32px;
  margin: 0 0 48px;
}
.detail_box__type01_title {
  color: var(--site-c-gray);
  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: 767.98px) {
  .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]/ページ トップボタン群
**/
.detail_top__box_btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 0 8px;
  gap: 8px;
}
.detail_top__box_btn > * {
  width: 100%;
}
@media (max-width: 959.98px) {
  .detail_top__box_btn {
    gap: 8px;
  }
}
@media (max-width: 767.98px) {
  .detail_top__box_btn {
    display: none;
  }
}
/**
 * .detail_top__box_btn
 * /detail/[ID]/ページ 各ボタンのスタイルの調整（基本のスタイルはcommon.btn.cssへ）
**/
.detail_top__box_btn .btn_net a, .detail_top__box_btn .btn_tel a, .detail_top__box_btn .btn_kuchikomi a, .detail_top__box_btn .btn_like a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: var(--site-input-radius);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  height: 3em;
  position: relative;
}
.detail_top__box_btn .btn_tel > div {
  width: 100%;
}
@media (max-width: 920.98px) {
  .detail_top__box_btn .btn_kuchikomi, .detail_top__box_btn .btn_like {
    width: 3em;
  }
  .detail_top__box_btn .btn_kuchikomi a, .detail_top__box_btn .btn_like a {
    width: 3em;
    height: 3em;
    padding: 1px 0;
  }
  .detail_top__box_btn .btn_kuchikomi a > span, .detail_top__box_btn .btn_like a > span {
    display: none;
  }
}
/**
 * .detai_cta__box_btn
 * /detail/[ID]/ページ CTA
**/
.detai_cta__box_btn {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  background: var(--site-c-main-hue);
  /*background-color: #9cd9ff;*/
  /*background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);*/
  background-size: 1.2rem 1.2rem;
  color: #fff;
  max-width: none;
  margin: 0 auto;
  padding: 20px;
  gap: 12px;
}
* + .detai_cta__box_btn {
  margin-top: 20px;
}
.detai_cta__box_btn [class*="btn_"] {
  flex: 1 1;
  max-width: 350px;
  width: auto;
  margin: 0;
}
.detai_cta__box_btn [class*="btn_"] a {
  border-radius: var(--site-input-radius);
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-size: 18px;
  font-weight: 700;
  height: 60px;
}
.detai_cta__box_btn .btn_req a, .detai_cta__box_btn .btn_tel a {
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
.detai_cta__box_btn .btn_inq a, .detai_cta__box_btn .btn_net a {
  border: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
@media (max-width: 767.98px) {
  .detai_cta__box_btn {
    margin-inline: calc(var(--site-container-padding) * -1);
    padding-inline: 10px;
    margin-right: auto;
    margin-left: auto;
    gap: 4px;
  }
  .detai_cta__box_btn .btn_req, .detai_cta__box_btn .btn_inq, .detai_cta__box_btn .btn_net, .detai_cta__box_btn .btn_tel {
    width: auto;
    flex: 1 1;
  }
  .detai_cta__box_btn .btn_req a, .detai_cta__box_btn .btn_inq a, .detai_cta__box_btn .btn_net a, .detai_cta__box_btn .btn_tel a {
    font-size: 13px;
    min-height: 48px;
    padding: 0 1rem
  }
}

.detai_cta__touch {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  line-height: 1.1;
  width: 100%;
  gap: 6px;
}
@media (max-width: 959.98px) {
  .detai_cta__touch {
    gap: 3px;
  }
  *+.detai_cta__touch {
    margin-top: 4px;
  }
}

.detai_cta__touch_ttl {
  font-size: 13px;
  font-weight: 400;
  line-height: inherit;
  text-align: center;
}
@media (max-width: 959.98px) {
  .detai_cta__touch_ttl {
    font-size: 13px;
  }
}
.detai_cta__touch_number {
  font-size: 24px;
  font-weight: 700;
  font-feature-settings: 'palt';
  font-family: "Segoe UI", "San Francisco", "Roboto", Arial, Helvetica, sans-serif;
  line-height: inherit;
  text-align: center;
}
.detai_cta__touch_number a {
  color: inherit;
}
.detai_cta__touch_number a>i {
  display: inline-block;
  margin-right: 0.125ex;
  transform: scale(0.7);
  transform-origin: left center;
}
.detai_cta__touch_number a>span {
  color: inherit;
}
@media (max-width: 959.98px) {
  .detai_cta__touch_number {
    font-size: 24px;
  }
}
.detai_cta__touch_notes {
  font-size: 13px;
  font-weight: 400;
  font-feature-settings: 'palt';
  line-height: inherit;
  text-align: center;
}
@media (max-width: 959.98px) {
  .detai_cta__touch_notes {
    font-size: 13px;
  }
}


/**
 * .detai_bottom__box_btn
 * /detail/[ID]/ページ ウィンドウ下部ボタン群
**/
@media (max-width: 767.98px) {
  .detai_bottom__box_btn {
    flex-flow: row wrap;
    text-align: center;
    margin-inline: calc(var(--site-container-padding) * -1);
    padding-inline: .5rem;
    padding-block: 4px;
    position: fixed;
    position: sticky;
    right: calc(var(--site-container-padding) * -1);
    left: calc(var(--site-container-padding) * -1);
    bottom: 0;
    z-index: 800;
  }
  .detai_bottom__box_btn .btn_req, .detai_bottom__box_btn .btn_inq, .detai_bottom__box_btn .btn_net, .detai_bottom__box_btn .btn_tel {
    width: auto;
    flex: 1 1;
  }
}
/**
 * .detail_wrap
 * /detail/[ID]/ページ ラッパー
 * NOTE: 
 * 本サイトでは [id="wrapper"]の代わりにここで overflow: hidden;しています。
 * ※.detai_bottom__boxを stickyにするため [id="wrapper"]の overflowを visibleにする必要があります。
**/
.detail_wrap {
  margin: 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .detail_wrap {
    margin: 0;
  }
}
/**
 * .detail_head_parts
 * /detail/[ID]/ページ headerラッパー
**/
.detail_head_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0 0 20px;
  padding: 0 0 15px;
  border-bottom: 2px solid var(--site-border-c);
  gap: 8px;
}
@media (max-width: 767.98px) {
  .detail_head_parts {
    margin: 0 0 15px;
    padding: 0 0 10px
  }
}
/**
* .detail_head_parts .name_parts
* /detail/[ID]/ページ 店舗・医院等の名称
**/
.detail_head_parts .name_parts {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 200px;
  margin: 0;
  gap: 12px;
  order: 0;
  border-left: 4px solid var(--site-c-main);
  padding: 5px 10px;
}
@media (max-width: 767.98px) {
  .detail_head_parts .name_parts {
    width: 100%;
    min-width: 0;
  }
}
/* 店舗・医院等の名称 */
.detail_head_parts .name_parts_head {
  color: var(--site-c-black);
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1;
  width: auto;
}
/* 店舗・医院等のアドレス情報 */
.detail_head_parts .name_parts dl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  color: var(--site-c-gray);
  font-size: 12px;
  font-feature-settings: "palt";
  letter-spacing: 0.1ex;
  line-height: 1;
  margin: 0;
  gap: 8px;
}
.detail_head_parts .name_parts dl > dt {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.detail_head_parts .name_parts dl > dt::after {
  content: '：';
}
.detail_head_parts .name_parts dl > dd {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
/**
* .detail_head_parts .grade_parts
* /detail/[ID]/ページ 口コミ評価・件数
**/
.detail_head_parts .grade_parts {
  order: 10;
}
.detail_head_parts .grade_parts_score {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  color: var(--site-c-gray);
}
.detail_head_parts .grade_parts_score label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0.66;
}
.detail_head_parts .grade_parts_score p {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}
.detail_head_parts .grade_parts_score b {
  display: inline-block;
  font-size: 10px;
  font-weight: inherit;
  line-height: 14px;
}
.detail_head_parts .grade_parts_score b > a {
  display: inline-block;
  color: #e2ac40;
  font-size: 14px;
  font-weight: inherit;
  line-height: 14px;
}
.detail_head_parts .grade_parts_score small {
  display: inline-block;
  font-size: 10px;
  font-weight: inherit;
  line-height: 14px;
}
.detail_head_parts .grade_parts_score b + small {
  margin-left: 4px;
}
@media (max-width: 767.98px) {
  .detail_head_parts .grade_parts_score {
    width: calc(100% - 88px);
  }
  .detail_head_parts .grade_parts_score label {
    text-align: left;
    width: auto;
    margin-right: 4px;
  }
  .detail_head_parts .grade_parts_score p {
    justify-content: flex-end;
    width: auto;
  }
  .detail_head_parts .grade_parts_score b {
    font-size: 10px;
    line-height: 16px;
  }
  .detail_head_parts .grade_parts_score b > a {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
  }
  .detail_head_parts .grade_parts_score small {
    font-size: 10px;
    line-height: 16px;
  }
}
/**
 * .detail_head_parts .cta_parts
 * /detail/[ID]/ページ 店舗・医院のカテゴリ
**/
.cta_parts {
  /*display: none;*/
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  gap: inherit;
  order: 3;
}
.cta_parts [class*="btn"] a {
  border-radius: 4px;
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  height: var(--site-btn-small-height);
  padding: 0 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}
.cta_parts [class*="btn"] a::before {
  display: none;
}
@media (max-width: 767.98px) {
  /*
  .cta_parts {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
    background: var(--site-bg-c-underlayer);
    width: 100%;
    padding: 4px;
    gap: 4px;
  }
  .cta_parts [class*="btn"] {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .cta_parts [class*="btn"] a {
    border-radius: 2px;
    font-size: 10px;
    height: 40px;
    margin: 0;
    padding: 0;
  }
  .cta_parts .btn_net a::before {
    transform: translate(0, 0) scale(1.333, 1.333);
    transform-origin: right center;
    margin-right: 4px;
  }
  .cta_parts .btn_kuchikomi a::before,
  .cta_parts .btn_like a::before {
    transform: translate(0, 0) scale(1.25, 1.25);
    transform-origin: right center;
    margin-right: 4px;
  }
*/
}
/**
 * .detail_head_parts .tag_left_parts
 * /detail/[ID]/ページ 店舗・医院のカテゴリ
**/
.detail_head_parts .tag_left_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  /*border-top: solid 1px var(--site-border-c);*/
  width: auto;
  padding: 0;
  gap: 4px;
  order: 1;
}
@media (max-width: 767.98px) {
  .detail_head_parts .tag_left_parts {
    /*border-top: none;*/
    padding: 0;
  }
}
.detail_head_parts .grade_parts_tags {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 4px;
}
/*
.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 {
  margin: 0;
  width: 100%;
  order: 20;
}
/**
 * .tag_parts
 * /detail/[ID]/ページ 店舗・医院のこだわりアイコン
**/
/* NOTE: こだわりアイコンは、詳細ページと検索結果で共有 */
.tag_parts > .list, .search_result_item .tag_parts > .list, .detail_head_parts .tag_right_parts > .list {
  --list-gap: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  margin: 0 0 12px;
  gap: var(--list-gap);
}
@media (min-width: 768px) {
  .tag_parts .list, .search_result_item .tag_parts .list, .detail_head_parts .tag_right_parts .list {
    --list-gap: 8px;
    margin: 0 0 12px;
    gap: var(--list-gap);
  }
}
@media (max-width: 767.98px) {
  .tag_parts .list, .search_result_item .tag_parts .list, .detail_head_parts .tag_right_parts .list {
    --list-gap: 4px;
    margin: 0 0 12px;
    gap: var(--list-gap);
  }
}
.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;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background: var(--site-bg-c-sub);
  color: var(--site-c-silvergray);
  font-size: 12px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.25;
  text-align: center;
  margin: 0;
}
/* on */
.tag_parts .list > .on, .search_result_item .tag_parts .list > .on, .detail_head_parts .tag_right_parts .list > .on {
  background: #b2afaa;
  color: #fff;
}
@media (min-width: 768px) {
  .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 {
    font-size: 12px;
    width: calc((100% - var(--list-gap)*4) / 5);
    height: 36px;
  }
}
@media (max-width: 767.98px) {
  .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 {
    font-size: 8px;
    width: calc((100% - var(--list-gap)*2) / 3);
    height: 28px;
  }
}
.detail_head_parts .box_links a {
  color: var(--site-c-main);
  text-decoration: underline;
}
.detail_head_parts .box_links 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-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 12px 0 0;
  gap: 3px;
}
@media (max-width: 767.98px) {
  .skill_parts {
    margin: 8px 0 0;
  }
}
.skill_parts > li > a {
  display: block;
  border: solid 2px #e1ecc7;
  border-radius: 4px;
  color: var(--site-c-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  padding: 4px 1ex;
  text-align: center;
}
/**
 * .detail_main_parts
 * /detail/[ID]/ページ 本文ラッパー
**/
.detail_main_parts {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  padding: 0;
  /*position: relative;*/
  /*z-index: 5;*/ /* .detail_wrap::before、::afterよりも上にする */
}
@media (max-width: 767.98px) {
  .detail_main_parts {
    /*padding: 0;*/
  }
}
/**
 * .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 > a {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .detail_tab_parts::after {
    content: '';
    display: block;
    border-bottom: solid 4px var(--site-c-main);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    z-index: 1;
  }
}
@media (max-width: 767.98px) {
  .detail_tab_parts {
    border-radius: 3px;
    background: var(--site-bg-c-underlayer);
    margin: 0 0 24px;
    padding: 4px;
    gap: 4px;
  }
  .detail_tab_parts > a {
    position: relative;
  }
  /* ページ下部のボタン群 */
  .detail_tab_parts ~ .detail_tab_parts {
    margin-top: 48px;
  }
}
/* タブ１つ */
.detail_tab {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 6px 6px 0 0;
  border: solid 1px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  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: solid 1px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
@media (max-width: 959.98px) {
  .detail_tab {
    height: 56px;
    font-size: 13px;
    letter-spacing: 0.1ex;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .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: solid 5px transparent;
    border-top-color: var(--site-c-main);
    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: solid 5px transparent;
    border-bottom-color: var(--site-c-main);
    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: 767.98px) {
  .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-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 44px;
    font-size: 8px;
  }
}
/**
 * .detail_main
 * /detail/[ID]/ページ メイン
**/
.detail_main {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.detail_main > * {
  width: 100%;
}
/**
 * .detail_slider
 * /detail/[ID]/ページ スライダー
 * NOTE: 不使用
**/
/* スライドのラッパー（SPビュー(Tabletビュー)の順番の調整に使用） */
@media (max-width: 959.98px) {
  .detail_main_mainimage {
    order: 2;
  }
}
/* スライドの余白 */
.detail_slider {
  position: relative;
  z-index: 999;
}
@media (min-width: 1335px) {
  .detail_slider {
    margin-left: calc((50vw - 50%) * -1);
    margin-right: calc((50vw - 50%) * -1);
  }
}
@media (max-width: 1334.98px) {
  .detail_slider {
    margin-left: calc((50vw - 50%) * -1);
    margin-right: calc((50vw - 50%) * -1);
  }
}
/* slick */
.detail_slider_item {
  max-width: 1124px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  position: relative;
  transition: all 0.4s ease;
}
/* パララックス効果用 */
.detail_slider.active .detail_slider_item {
  /*max-width: 100%;*/
}
@media (min-width: 1335px) {
  .detail_slider.active .detail_slider_item {
    /*max-width: 1334px;*/
  }
}
.detail_slider_mask > img {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.detail_slider_nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 10px 0 0;
}
.detail_slider_nav > button {
  border: none;
  background: transparent;
  width: 96px;
  height: 64px;
  margin: 0 8px;
  cursor: pointer;
}
.detail_slider_nav > button > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  .detail_slider_nav {
    margin: 12px 0 0;
  }
  .detail_slider_nav > button {
    border: none;
    background: transparent;
    width: 64px;
    height: 48px;
    margin: 0 6px;
    cursor: pointer;
  }
}
/**
 * .detail_main_imagetile
 * /detail/[ID]/ページ タイル状レイアウト
**/
.detail_main_imagetile {
  position: relative;
}
.detail_main_imagetile__list {
  --imagetile-gap: 12px;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: var(--imagetile-gap);
  aspect-ratio: 5 / 2;
}
.detail_main_imagetile__list > li {
  background: var(--site-c-gray);
  width: calc((100% - var(--imagetile-gap) * 3) / 4);
  height: calc((100% - var(--imagetile-gap) * 1) / 2);
}
.detail_main_imagetile__list > li:nth-child(1) {
  width: calc((100% - var(--imagetile-gap) * 1) / 2);
  height: 100%;
}
@media (max-width: 560.98px) {
  .detail_main_imagetile__list {
    --imagetile-gap: 6px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    gap: var(--imagetile-gap);
    aspect-ratio: 2 / 3;
  }
  .detail_main_imagetile__list > li {
    background: var(--site-c-gray);
    width: calc((100% - var(--imagetile-gap) * 1) / 2);
    height: calc((100% - var(--imagetile-gap) * 3) / 4);
  }
  .detail_main_imagetile__list > li:nth-child(1) {
    width: 100%;
    height: calc((100% - var(--imagetile-gap) * 1) / 2);
  }
}
.detail_main_imagetile__list > li > label {
  display: block;
  width: 100%;
  height: 100%;
}
.detail_main_imagetile__list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail_main_imagetile__func {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}
/**
 * .detail_main_imagetile__modal
 * /detail/[ID]/ページ モーダル
**/
.detail_main_imagetile__modal {
  --imagetile-modal-padding: 20px;
}
@media (max-width: 767.98px) {
  .detail_main_imagetile__modal {
    --imagetile-modal-padding: 8px;
  }
}
@media (max-height: 959px) {
  .detail_main_imagetile__modal {
    --imagetile-modal-padding: 8px;
  }
}
/* modal switch */
.detail_main_imagetile__modal .modal_close, .detail_main_imagetile__modal [id="modal_close"] {
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
}
.detail_main_imagetile__modal .modal_switch:checked ~ .modal_close, .detail_main_imagetile__modal [id="modal_input"]:checked ~ [id="modal_close"] {
  opacity: 1;
}
/* modal content */
.detail_main_imagetile__modal_content {
  background: #000;
  padding: 0;
  width: calc(100% - var(--site-container-padding) * 2);
  height: calc(100% - var(--site-container-padding) * 2);
  top: 50%;
  left: 50%;
  z-index: 1001;
  transform: translate(-50%, -50%);
}
/* header */
.detail_main_imagetile__modal_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: inherit;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  padding: var(--imagetile-modal-padding);
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
}
.detail_main_imagetile__modal_header.item--absolute {
  background: transparent;
  color: #fff;
  position: absolute;
}
.detail_main_imagetile__modal_header p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-inline: 0 auto;
}
.detail_main_imagetile__modal_header label {
  font-size: 1.5em;
  text-shadow:
    0 3px 9px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.2);
  padding-right: var(--imagetile-modal-padding);
}
.detail_main_imagetile__modal_header i {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media (max-width: 767.98px) {
  .detail_main_imagetile__modal_header {
    padding: 20px var(--imagetile-modal-padding);
  }
}
@media (max-height: 959px) {
  .detail_main_imagetile__modal_header {
    padding: 20px var(--imagetile-modal-padding);
  }
}
/* body */
.detail_main_imagetile__modal_body {
  padding: 0 var(--imagetile-modal-padding) var(--imagetile-modal-padding);
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .detail_main_imagetile__modal_body:has(.detail_main_imagetile__modal_slider) {
    min-height: calc(100svh - var(--site-container-padding) * 2);
  }
}
@media (max-height: 959px) {
  .detail_main_imagetile__modal_body:has(.detail_main_imagetile__modal_slider) {
    min-height: calc(100svh - var(--site-container-padding) * 2);
  }
}
/* list */
.modal_content .detail_main_imagetile__modal_list,
.detail_main_imagetile__modal_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 4px;
}
@media (max-width: 960.98px) {
  .modal_content .detail_main_imagetile__modal_list,
  .detail_main_imagetile__modal_list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 560.98px) {
  .modal_content .detail_main_imagetile__modal_list,
  .detail_main_imagetile__modal_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.detail_main_imagetile__modal_list img {
  display: block;
  background: #f1f1f1;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.detail_main_imagetile__modal_list .cover {
  object-fit: cover;
}
.detail_main_imagetile__modal_list .contain {
  object-fit: contain;
}
/* slider */
.detail_main_imagetile__modal_slider {}
.detail_main_imagetile__modal_slider img {
  display: block;
  background: #f1f1f1;
  width: 100%;
  height: calc(100svh - var(--site-container-padding) * 2 - var(--imagetile-modal-padding));
  object-fit: cover;
}
.detail_main_imagetile__modal_slider .cover {
  object-fit: cover;
}
.detail_main_imagetile__modal_slider .contain {
  object-fit: contain;
}
@media (max-width: 560.98px) {
  .detail_main_imagetile__modal_slider.slick-slider, .detail_main_imagetile__modal_slider {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: stretch;
    min-height: calc(100svh - var(--site-container-padding) * 2 - var(--imagetile-modal-padding));
  }
  .detail_main_imagetile__modal_slider img {
    width: 100%;
    height: auto;
    max-height: calc(100svh - var(--site-container-padding) * 2 - var(--imagetile-modal-padding));
    object-fit: contain;
  }
  .detail_main_imagetile__modal_slider .cover {
    object-fit: contain;
  }
  .detail_main_imagetile__modal_slider .contain {
    object-fit: contain;
  }
  .detail_main_imagetile__modal_slider .slick-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
/**
 * .detail_main
 * /detail/[ID]/ページ スライダー下PR文
**/
.detail_main_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
  padding-left: 14px;
  position: relative;
}
.detail_main_title:before {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--site-c-main-hue);
}
* + .detail_main_title {
  margin-top: 30px;
}
@media (max-width: 959.98px) {
  .detail_main_title {
    font-size: 16px;
    order: 1; /* Tabletビュー（.detail_main_mainimageと関係） */
  }
}
.detail_main_prcomment {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
* + .detail_main_prcomment {
  margin-top: 12px;
}
@media (max-width: 959.98px) {
  .detail_main_prcomment {
    border-radius: 4px;
    background: var(--site-bg-c-sub);
    padding: 12px;
    order: 3; /* Tabletビュー（.detail_main_mainimageと関係） */
  }
}
/**
 * .detail_publicrelations
 * /detail/[ID]/ページ PRレイアウト
**/
.detail_publicrelations {
  --pr-gap-col: 30px;
  --pr-gap-row: 30px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: var(--pr-gap-row) var(--pr-gap-col);
}
.detail_publicrelations.detail_publicrelations--madori {
  --pr-gap-col: 30px;
  --pr-gap-row: 30px;
  gap: var(--pr-gap-row) var(--pr-gap-col);
}
.detail_publicrelations > * {
  width: calc((100% - var(--pr-gap-col) * 2) / 3);
}
@media (max-width: 959.98px) {
  .detail_publicrelations {
    --pr-gap-col: 40px;
    --pr-gap-row: 30px;
    gap: var(--pr-gap-row) var(--pr-gap-col);
  }
  .detail_publicrelations.detail_publicrelations--madori {
    --pr-gap-col: 30px;
    --pr-gap-row: 30px;
    gap: var(--pr-gap-row) var(--pr-gap-col);
  }
  .detail_publicrelations > * {
    width: calc((100% - var(--pr-gap-col) * 2) / 3);
  }
}
@media (max-width: 767.98px) {
  .detail_publicrelations {
    --pr-gap-col: 16px;
    --pr-gap-row: 16px;
    gap: var(--pr-gap-row) var(--pr-gap-col);
  }
  .detail_publicrelations.detail_publicrelations--madori {
    --pr-gap-col: 16px;
    --pr-gap-row: 16px;
    gap: var(--pr-gap-row) var(--pr-gap-col);
  }
  .detail_publicrelations > * {
    width: calc((100% - var(--pr-gap-col) * 1) / 2);
  }
}
/**
 * .detail_pr_parts
 * /detail/[ID]/ページ 各PR
**/
.detail_pr_parts {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}
.detail_publicrelations > .detail_pr_parts.detail_pr_parts--2col {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: var(--pr-gap-row) var(--pr-gap-col);
}
.detail_publicrelations.detail_publicrelations--madori > .detail_pr_parts {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  border-radius: 4px;
  border: 1px solid var(--site-border-c);
  padding: var(--pr-gap-row);
  gap: var(--pr-gap-row);
}
@media (min-width: 960px) {
  /* 2col */
  .detail_publicrelations > .detail_pr_parts.detail_pr_parts--2col {
    width: 100%;
  }
  /* 1col (movie style) */
  .detail_publicrelations > .detail_pr_parts.detail_pr_parts--movie {
    width: 100%;
  }
  /* 間取り */
  .detail_publicrelations.detail_publicrelations--madori > .detail_pr_parts {
    width: calc((100% - var(--pr-gap-col) * 1) / 2);
  }
}
@media (min-width: 768px) {
  .detail_publicrelations > .detail_pr_parts.detail_pr_parts--2col > * {
    flex: 1 1;
  }
  /* レイアウトを互い違いにする場合 */
  .detail_publicrelations > .detail_pr_parts.detail_pr_parts--2col:nth-child(odd) {
    flex-flow: row nowrap;
  }
}
@media (max-width: 959.98px) {
  /* 2col */
  .detail_publicrelations > .detail_pr_parts.detail_pr_parts--2col {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    width: 100%;
  }
  /* 1col (movie style) */
  .detail_publicrelations > .detail_pr_parts.detail_pr_parts--movie {
    width: 100%;
  }
  /* 間取り */
  .detail_publicrelations.detail_publicrelations--madori > .detail_pr_parts {
    width: calc((100% - var(--pr-gap-col) * 1) / 2);
  }
}
/* title */
.detail_pr_title {
  order: 2;
}
@media (max-width: 767.98px) {
  .detail_pr_title {
    order: 2;
  }
}
/* image */
.detail_pr_parts .left_parts {
  order: 1;
}
.detail_pr_parts figure {
  border: 3px solid var(--site-border-c);
  position: relative;
  overflow: hidden;
}
.detail_pr_parts iframe, .detail_pr_parts img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 5;
}
.detail_publicrelations--madori .detail_pr_parts img {
  aspect-ratio: 1 / 1;
}
.detail_pr_parts img {
  object-fit: cover;
}
.detail_pr_parts .cover {
  object-fit: cover;
}
.detail_pr_parts .contain {
  object-fit: contain;
}
.detail_pr_parts [src*="s.gif"] {
  background: #ddd;
  object-fit: contain;
}
.detail_pr_parts .caption {
  color: var(--font-c);
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.2;
  margin: 8px 0 0;
  padding: 0;
  text-align: center;
  position: relative;
}
.detail_pr_parts figure + .caption {
  margin-top: 12px;
}
.detail_pr_parts .caption:empty {
  display: none;
}
.detail_pr_parts .notes {
  color: var(--font-c);
  font-size: 14px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.2;
  margin: 8px 0 0;
  padding: 0;
  text-align: center;
  position: relative;
  opacity: 0.75;
}
.detail_pr_parts figure + .notes {
  margin-top: 12px;
}
.detail_pr_parts .notes:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .detail_pr_parts .caption {
    font-size: 14px;
  }
  .detail_pr_parts .notes {
    font-size: 14px;
  }
}
/* text */
.detail_pr_parts .right_parts {
  order: 3;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 4rem;
  min-width: 120px;
  max-width: 100%;
  color: var(--font-c);
  background: var(--site-bg-c-sub);
}
.detail_pr_parts .right_parts:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid var(--site-bg-c-sub);
}
@media (max-width: 767.98px) {
  .detail_pr_parts .right_parts {
    font-size: 14px;
    padding: 2rem;
  }
}
.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_outline_parts
 * /detail/[ID]/ページ 情報欄（様々なhtmlを格納する想定）
**/
.detail_outline_parts {}
@media (min-width: 960px) {
  * + .detail_outline_parts {
    margin-top: 40px;
  }
}
@media (max-width: 959.98px) {
  * + .detail_outline_parts {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  * + .detail_outline_parts {
    margin-top: 24px;
  }
}
.info-osusume_wrap {
  background: var(--site-bg-c-sub);
  padding: 2rem
}
/**
 * .detail_info_parts
 * /detail/[ID]/ページ 情報欄（ビフォーアフター 対応時間）
**/
.detail_info_parts {
  border: 3px solid var(--site-border-c);
  border-radius: 6px;
  padding: 2rem 4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 20px;
}
.detail_info_parts > * {
  width: 100%;
}
@media (min-width: 960px) {
  * + .detail_info_parts {
    margin-top: 40px;
  }
}
@media (max-width: 959.98px) {
  * + .detail_info_parts {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .detail_info_parts {
    gap: 16px;
  }
  * + .detail_info_parts {
    margin-top: 24px;
  }
}
/* title */
.detail_info_title {
  margin: 0;
  order: 0;
}
.detail_info_title + * {
  margin-top: 0;
}
.detail_info_title.detail_info_title--small {
  border-bottom: solid 1px var(--site-border-c);
  color: var(--site-c-main);
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 24px;
  padding: 6px 0;
}
@media (max-width: 767.98px) {
  .detail_info_title.detail_info_title--small {
    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-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 40px;
}
.detail_info_parts > .center_parts .arrow {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .detail_info_parts {
    padding: 1rem
  }
  .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 {
  flex: 1 1;
  position: relative;
}
@media (max-width: 959.98px) {}
@media (max-width: 767.98px) {
  .detail_info_parts > .left_parts, .detail_info_parts > .right_parts {
    flex: initial;
    width: 100%;
  }
}


/* left_parts, right_parts (Before After) */
.detail_info_parts > .center_parts ~ .left_parts {
  flex: auto;
  padding-right: 0;
}
.detail_info_parts > .center_parts ~ .right_parts {
  flex: auto;
  padding-left: 0;
}
.detail_info_parts > .center_parts ~ .left_parts img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.detail_info_parts > .center_parts ~ .right_parts img {
  width: 100%;
  height: 100%;
  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(--site-c-main);
  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: var(--site-c-sub);
  color: #fff;
}
@media (max-width: 959.98px) {
  .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: 959.98px) {
  .detail_info_parts > .bottom_parts p {
    margin: 0 0 5px;
    line-height: 1.8;
  }
}
/* 基本情報 テーブルスタイル */
.detail_info_parts ul {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.detail_info_parts ul > li {
  display: flex;
  align-items: center;
  font-size: inherit;
  font-weight: inherit;
}
.detail_info_parts ul > li:nth-child(even) {
  /*background: var(--site-bg-c-underlayer);*/
}
.detail_info_parts ul > li:last-child {}
@media (max-width: 767.98px) {
  .detail_info_parts > .left_parts + .right_parts ul:first-child > li:first-child {
    border-top: none;
  }
}
.detail_info_parts ul > li .info_title {
  color: var(--font-c);
  font-size: 1.3rem;
  font-weight: inherit;
  line-height: 1.4;
  width: 150px;
  background: var(--site-bg-c-sub);
  padding: .5rem .8rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail_info_parts ul > li .info_text {
  font-size: inherit;
  font-weight: 700;
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.4;
  width: 100%;
}
.detail_info_parts ul > li .info_title + .info_text {
  width: calc(100% - 96px);
}
@media (max-width: 959.98px) {
  .detail_info_parts ul > li .info_title {
    font-size: 14px;
  }
  .detail_info_parts ul > li .info_text {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .detail_info_parts ul > li .info_title {
    width: 120px;
    font-size: 13px;
  }
  .detail_info_parts ul > li .info_text {
    font-size: 13px;
  }
}

.detail_info_parts ul > li .info_title em,
.detail_info_parts ul > li .info_text em {
  font-size: 1.5em;
  font-weight: 900;
  vertical-align: baseline;
}


/* detail_info_parts table style */
.detail_info_parts.style--table {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  gap: 0;
}

.detail_info_parts.style--table .left_parts,
.detail_info_parts.style--table .right_parts {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  padding: 0;
}
.detail_info_parts.style--table .left_parts ul,
.detail_info_parts.style--table .right_parts ul {
  display: table-row-group;
}
.detail_info_parts.style--table .left_parts ul > li,
.detail_info_parts.style--table .right_parts ul > li {
  display: table-row;
}

.detail_info_parts.style--table .left_parts ul > li .info_title+.info_text,
.detail_info_parts.style--table .right_parts ul > li .info_title+.info_text,
.detail_info_parts.style--table .left_parts ul > li .info_title,
.detail_info_parts.style--table .right_parts ul > li .info_title,
.detail_info_parts.style--table .left_parts ul > li .info_text,
.detail_info_parts.style--table .right_parts ul > li .info_text {
  display: table-cell;
  border: solid 1px var(--site-border-c);
  padding: 8px;
}
.detail_info_parts.style--table .left_parts ul > li .info_title+.info_text,
.detail_info_parts.style--table .right_parts ul > li .info_title+.info_text {
  width: auto;
}
.detail_info_parts.style--table .left_parts ul > li .info_title,
.detail_info_parts.style--table .right_parts ul > li .info_title {
  font-feature-settings: 'palt';
  font-weight: 400;
}
.detail_info_parts.style--table .left_parts ul > li .info_text,
.detail_info_parts.style--table .right_parts ul > li .info_text {
  font-feature-settings: 'palt';
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .detail_info_parts.style--table .left_parts ul > li .info_title,
  .detail_info_parts.style--table .right_parts ul > li .info_title {
    font-size: 11px;
    width: 72px;
  }
}



/**
 * .detail_after_table_notes
 * /detail/[ID]/ページ テーブル隣接の注釈
**/


.detail_after_table_notes {
  font-size: 14px;
}
.detail_after_table_notes>dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  margin-right: -2em;
}
.detail_after_table_notes>dl>dt {
  margin-right: 0.5em;
}
.detail_after_table_notes>dl>dd {
  margin-right: 2em;
}
@media (min-width: 960px) {
  *+.detail_after_table_notes {
    margin-top: 16px;
  }
}
@media (max-width: 959.98px) {
  *+.detail_after_table_notes {
    margin-top: 16px;
  }
}
@media (max-width: 767.98px) {
  .detail_after_table_notes {
    font-size: 11px;
  }
  *+.detail_after_table_notes {
    margin-top: 8px;
  }
}



/**
 * .detail_flexible_information
 * /detail/[ID]/ページ 自由内容定型入力欄ラッパー
**/
* + .detail_flexible_information {
  margin-top: 60px;
}
/* 背景色を交互に変更する場合 */
/*
.detail_flexible_information > .bg__full_width:nth-child(odd) {
  background: var(--site-bg-c-underlayer);
}
.detail_flexible_information > .bg__full_width:nth-child(even) {
  background: #fff;
}
*/
@media (min-width: 768px) {
  .detail_flexible_information > * {
    padding-block: 64px;
    padding-block: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .detail_flexible_information > * {
    padding-block: 32px;
    padding-block: 20px 0;
  }
}
/**
 * .detail_flexible_info_parts
 * /detail/[ID]/ページ 自由内容定型入力欄
**/
.detail_flexible_info_parts {
  --info-gap: 80px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  box-shadow: none;
  border-radius: 0;
  gap: var(--info-gap);
}
@media (max-width: 959.98px) {
  .detail_flexible_info_parts {
    --info-gap: 40px;
    gap: var(--info-gap);
  }
}
@media (max-width: 767.98px) {
  .detail_flexible_info_parts {
    --info-gap: 16px;
    flex-flow: column nowrap;
    gap: var(--info-gap);
  }
}
.detail_flexible_info_image {
  flex: 1 1;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.detail_flexible_info_image > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.detail_flexible_info_text {
  flex: 1 1;
  background: #fff;
}
@media (min-width: 768px) {
  .detail_flexible_info_image {}
  .detail_flexible_info_text {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    padding: 0;
  }
  /* レイアウトを互い違いにする場合 */
  .detail_flexible_information > *:nth-child(odd) .detail_flexible_info_image {
    order: 1;
  }
  .detail_flexible_information > *:nth-child(even) .detail_flexible_info_image {
    order: 2;
  }
  .detail_flexible_information > *:nth-child(odd) .detail_flexible_info_text {
    order: 2;
  }
  .detail_flexible_information > *:nth-child(even) .detail_flexible_info_text {
    order: 1;
  }
}
@media (max-width: 767.98px) {
  .detail_flexible_info_image {
    width: 100%;
  }
  .detail_flexible_info_text {
    display: block;
    width: 100%;
    padding: 0;
  }
}
/* タイトル */
.detail_flexible_info_title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  width: 100%;
  margin: 0;
}
.detail_flexible_info_title:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .detail_flexible_info_title {
    font-size: 16px;
  }
}
/* エリア（暫定 サイトにより領域の使用用途、意味合いが変化） */
.detail_flexible_info_area {
  display: inline-block;
  color: var(--font-c);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.56;
}
.detail_flexible_info_cate + .detail_flexible_info_area {
  margin-left: 16px;
}
.detail_flexible_info_area:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .detail_flexible_info_area {
    font-size: 12px;
  }
}
/* カテゴリ（暫定 サイトにより領域の使用用途、意味合いが変化） */
.detail_flexible_info_cate {
  display: inline-block;
  color: var(--font-c);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.56;
}
.detail_flexible_info_area + .detail_flexible_info_cate {
  margin-left: 16px;
}
.detail_flexible_info_cate:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .detail_flexible_info_cate {
    font-size: 12px;
  }
}
/* 複数行テキスト */
.detail_flexible_info_text > p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.56;
  width: 100%;
}
.detail_flexible_info_text > * + p {
  margin-top: 1em;
}
.detail_flexible_info_text > p:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .detail_flexible_info_text > p {
    font-size: 12px;
  }
}
/* リスト */
.detail_flexible_info_list {
  --list-gap: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  background: var(--site-bg-c-underlayer);
  width: 100%;
  padding: 12px 16px;
  gap: var(--list-gap);
}
* + .detail_flexible_info_list {
  margin-top: 24px;
}
.detail_flexible_info_list:empty {
  display: none;
}
.detail_flexible_info_list > li {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.detail_flexible_info_list > li::after {
  content: '／';
  margin-left: var(--list-gap);
}
.detail_flexible_info_list > li:last-child::after {
  display: none;
}
@media (max-width: 767.98px) {
  .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;
  }
}


/**
 * .detail_gallery_parts
 * /detail/[ID]/ページ ギャラリー
**/
.detail_gallery_parts {}
@media (min-width: 960px) {
  *+.detail_gallery_parts {
    margin-top: 64px;
  }
}
@media (max-width: 959.98px) {
  *+.detail_gallery_parts {
    margin-top: 64px;
  }
}
@media (max-width: 767.98px) {
  *+.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: 959.98px) {
  /* heightはBricks.jsにて自動実装されます */
  .detail_gallery_parts li {
    width: calc((100% - 24px) / 4);
  }
}
@media (max-width: 767.98px) {
  /* 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: 8px;
  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%;
  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);
}
/**
 * .gglmap
 * /detail/[ID]/ページ グーグルマップ
**/
[class*="detail_"] .gglmap {
  width: 100%;
  aspect-ratio: 24 / 11;
  border: 3px solid var(--site-border-c);
  border-radius: 6px;
}
[class*="detail_"] .gglmap img, [class*="detail_"] .gglmap iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  [class*="detail_"] .gglmap {
    aspect-ratio: 24 / 11;
  }
}
/**
 * .box_links
 * /detail/[ID]/ページ .box_links
**/
[class*="detail_"] .box_links a {
  color: var(--site-c-main);
  text-decoration: underline;
}
[class*="detail_"] .box_links a + a {
  margin-left: 10px;
}
/**
 * .box_func
 * /detail/[ID]/ページ もっと見る など
**/
[class*="detail_"] .box_func {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
[class*="detail_"] * + .box_func {
  margin-top: 8px;
}
/**
 * .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);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  margin: 0 auto 32px;
}
.opening_hours table th, .opening_hours table td {
  border: solid 1px var(--site-border-c);
  height: 50px;
  vertical-align: middle;
}
.opening_hours table th {
  font-weight: 400;
}
.opening_hours table th:nth-child(2n+3), .opening_hours table td:nth-child(2n+3) {
  background: #f2f6f9;
}
.opening_hours table td {
  line-height: 1.3;
  width: 11%;
  padding: 8px 0;
}
.opening_hours .timetable_head {
  font-size: 13px;
}
.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: var(--font-c);
  font-size: 16px;
  position: unset;
}
.opening_hours table td img {
  width: auto;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .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 .timetable_head {
    font-size: 11px;
  }
}
.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: 767.98px) {
  .opening_hours_description {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .opening_hours_description div {
    width: 33.33%;
  }
  .opening_hours_description div img {
    max-width: 15px;
  }
}
/**
 * .paging
 * /detail/[ID]/ページ ページャー
**/
.paging {
  margin: 20px 0;
  padding: 0;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .paging {
    padding: 0 0 28px;
  }
}
.paging li {
  margin: 2px 2px;
  display: inline-block;
}
.paging li a {
  display: block;
  border: solid 1px var(--site-c-black);
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  min-width: 36px;
  padding: 0 12px;
}
.paging li a:focus, .paging li a:hover {
  text-decoration: none;
  background: var(--site-c-black);
  color: #fff;
}
.paging li .current {
  display: block;
  border: solid 1px var(--site-c-black);
  background: var(--site-c-black);
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  min-width: 36px;
  padding: 0 12px;
}
.paging li .ten {
  display: block;
  border: solid 1px var(--site-c-black);
  background: #fff;
  color: var(--site-c-black);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  min-width: 36px;
  padding: 0 12px;
}
.paging li a.prev {
  padding: 0;
  width: 35px;
  line-height: 36px;
  text-align: left;
  text-indent: -9999px;
  background: #fff url("../images/prev.png") no-repeat center center;
  background-size: 25% 25%;
  border-radius: 6px;
}
.paging li a.next {
  padding: 0;
  width: 35px;
  line-height: 36px;
  text-align: left;
  text-indent: -9999px;
  background: #fff url("../images/next.png") no-repeat center center;
  background-size: 25% 25%;
  border-radius: 6px;
}
/**
 * .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: 8px;
    overflow: hidden;
  }
  .bnr_kuchikomi li:last-child {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .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: 8px;
    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: 767.98px) {
  .kuchikomi_point {
    margin: 0 0 2.5px;
  }
}
.kuchikomi_number {
  color: var(--site-c-sub);
  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: var(--site-c-sub);
  font-size: 11.25px;
  font-weight: 700;
  padding-right: 3px;
}
@media (max-width: 959.98px) {
  .kuchikomi_head_parts {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .kuchikomi_count {
    width: auto;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .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: 959.98px) {
  .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-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  border-radius: 6px;
  border: solid 1px var(--site-border-c);
  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: 767.98px) {
  .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: 767.98px) {
  .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-flow: row 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: var(--site-c-sub);
  font-size: 24px;
  line-height: 24px;
  margin-left: 0;
}
.kuchikomi_osusume > ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  width: calc(100% - 128px);
}
@media (max-width: 767.98px) {
  .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: var(--site-bg-c-underlayer);
  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: 767.98px) {
  .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-flow: row 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-flow: row 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: var(--site-c-silvergray);
  color: #fff;
  transform: rotate(45deg);
}
.kuchikomi_comment .view_more_btn span {
  display: block;
  width: calc(100% - 18px);
}
@media (max-width: 767.98px) {
  .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: var(--site-bg-c-underlayer);
  font-size: 14px;
  padding: 16px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .kuchikomi_reply {
    width: 100%;
    margin: 0 0 8px;
  }
}
/**
* .detail_recommended_parts
* /detail/[ID]/cinfo/ページ おすすめの他店舗、他医院
**/
.recommended_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--site-bg-c-underlayer);
  color: rgba(0, 0, 0, 0.2);
  padding: 28px;
}
.recommended_list > dt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  border-radius: 6px;
  border: solid 1px var(--site-border-c);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
  color: var(--site-c-gray);
  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-flow: row 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: var(--site-c-gray);
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  left: auto;
  z-index: 1;
  transition: color 0.2s ease;
}
.recommended_list > dt a {
  color: var(--site-c-main);
  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(--site-c-main);
  background-color: var(--site-c-main);
  color: #fff;
}
.recommended_list > dt:hover::after {
  color: inherit;
}
.recommended_list > dt:hover a {
  color: #fff;
}
.recommended_list > dt:hover + dd {
  border-color: var(--site-c-main);
  background-color: var(--site-c-main);
  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 var(--site-border-c);
  border-bottom: solid 1px var(--site-border-c);
  border-left: solid 1px var(--site-border-c);
  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: var(--site-c-black);
  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: 767.98px) {
  .recommended_list > dt {
    padding: 16px;
  }
}
/**
 * .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-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  margin: 0 -16px;
}
.service_table > tbody > tr {
  display: block;
  border: solid 2px var(--site-c-main);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  background: var(--site-c-main);
  width: calc((100% - 96px) / 3);
  margin: 0 16px 32px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 959.98px) {
  .service_table > tbody > tr {
    width: calc((100% - 64px) / 2);
  }
}
@media (max-width: 767.98px) {
  .service_table > tbody {
    margin: 0;
  }
  .service_table > tbody > tr {
    border: solid 2px var(--site-c-main);
    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-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  background: var(--site-c-main);
  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 var(--site-border-c);
}
/* 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 var(--site-border-c);
  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-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #40ab2a;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 1ex;
  height: 48px;
}
@media (max-width: 767.98px) {
  .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-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}
* + .menu_parts {
  margin-top: 48px;
}
@media (max-width: 767.98px) {
  * + .menu_parts {
    margin-top: 24px;
  }
}
.menu_title {
  font-size: 28px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 38px;
  color: #40ab2a;
  width: 100%;
  margin: 0 0 16px;
  padding: 0 144px 0 0;
  position: relative;
  order: 0;
}
@media (max-width: 767.98px) {
  .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: 8px;
  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: 767.98px) {
  .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: 767.98px) {
  .menu_subtitle {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 16px;
  }
}
.menu_parts .img_parts {
  display: flex;
  flex-flow: column 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: 959.98px) {
  .menu_parts .img_parts {
    width: 100%;
    height: 40vw;
  }
}
@media (max-width: 767.98px) {
  .menu_parts .img_parts {
    width: 100%;
    height: 40vw;
    margin-bottom: 0;
  }
}
.menu_parts .img_parts .main_img {
  border-radius: 8px;
  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%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}
.menu_parts .img_parts .sub_img {
  border-radius: 8px;
  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%;
  object-fit: cover;
  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: 959.98px) {
  .menu_parts .text_parts {
    width: 100%;
    padding: 0;
    margin-top: 16px;
    order: 5;
  }
}
@media (max-width: 767.98px) {
  .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: solid 1px var(--site-border-c);
  height: 50px;
  vertical-align: middle;
}
.menu_detail_table th {
  vertical-align: middle;
  background-color: var(--site-c-disabledgray);
  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: 767.98px) {
  .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-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
* + .staff_parts {
  margin-top: 48px;
}
@media (max-width: 767.98px) {
  * + .staff_parts {
    margin-top: 24px;
  }
}
.staff_parts .img_parts {
  display: flex;
  flex-flow: column 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: 959.98px) {
  .staff_parts .img_parts {
    width: 50%;
    height: 40vw;
  }
}
@media (max-width: 767.98px) {
  .staff_parts .img_parts {
    width: 100%;
    height: 40vw;
  }
}
.staff_parts .img_parts .main_img {
  border-radius: 8px;
  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%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}
.staff_parts .img_parts .sub_img {
  border-radius: 8px;
  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%;
  object-fit: cover;
  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: 959.98px) {
  .staff_parts .text_parts {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .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 #40ab2a;
}
.detail_staff_title > .staff_name {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  padding-right: 32px;
}
.detail_staff_title > .staff_class {
  color: #40ab2a;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 767.98px) {
  .detail_staff_title {
    padding: 16px 0 12px;
    margin: 0 0 16px;
  }
  .detail_staff_title::after {
    width: 32px;
    border-bottom: solid 2px #40ab2a;
  }
  .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: var(--site-bg-c-sub);
  font-size: 14px;
  line-height: 25px;
  width: 100%;
  padding: 16px;
}
@media (max-width: 767.98px) {
  .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: 767.98px) {
  .detail_staff_history {
    font-size: 12px;
    line-height: 32px;
    padding: 16px;
  }
  .detail_staff_history > .detail_title__type06 {
    color: var(--site-c-gray);
    margin-bottom: 8px;
  }
}



/**
 * shop page style
 * 店舗ページのスタイルです
**/

.shoppage_header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.shoppage_header:has(.shoppage_header__cate):has(.shoppage_header__qr) {
  grid-template-columns: 4fr 3fr 3fr;
}
@media (max-width: 959.98px) {
  .shoppage_header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.shoppage_header__name {
  color: var(--site-c-black);
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.4;
  padding: 8px 0;
}
.shoppage_header__name>a {}

.shoppage_header__cate {
  padding: 8px 0;
}
.shoppage_header__cate_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 8px;
}
.shoppage_header__cate_list>li {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: solid 1px var(--site-c-main-light);
  background: var(--site-c-main-light);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  min-width: 120px;
  margin: 0;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}

.shoppage_header__qr {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  background: var(--site-c-lightgray);
  padding: 8px;
  gap: 8px;
}
@media (max-width: 959.98px) {
  .shoppage_header__qr {
    display: none;
  }
}

.shoppage_header__qr_icon {
  display: block;
  font-size: 32px;
}
.shoppage_header__qr_desc {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.shoppage_header__qr_code {
  display: block;
  min-width: 64px;
  max-width: 64px;
  margin: 0 0 0 auto;
}
.shoppage_header__qr_code>img {
  width: 100%;
  height: auto;
}

.shoppage_header__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  width: 100%;
}


.shoppage__more {
  text-align: right;
}
*+.shoppage__more {
  margin-top: 16px;
}
.shoppage__more>a {
  color: var(--font-c-link);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

.shoppage_image {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border: 1px solid var(--site-border-c);
  padding: 12px 20px 20px;
  gap: 16px;
}
*+.shoppage_image {
  margin-top: 16px;
}
@media (max-width: 959.98px) {
  .shoppage_image {
    grid-template-columns: 1fr;
    padding: 12px 12px 20px;
    gap: 12px;
  }
}


.shoppage_image__item {}
.shoppage_image__title {
  background: var(--site-bg-c-sub);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  width: fit-content;
  margin: 0 0 8px;
  padding: 4px 8px;
}
.shoppage_image__title>span {}

.shoppage_image__shop_image {
  border: 1px solid var(--site-border-c);
  background: var(--site-c-lightgray);
}
.shoppage_image__shop_image>img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3 / 2;
}

.shoppage_image__staff {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.shoppage_image__staff>li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 80px;
  gap: 8px;
}
.shoppage_image__staff_image {}
.shoppage_image__staff_image>img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.shoppage_image__staff_name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}



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


.shoppage_table {
  width: 100%;
}
.shoppage_table>tbody {}
.shoppage_table>tbody>tr {}
.shoppage_table>tbody>tr>th,
.shoppage_table>tbody>tr>td {
  border: 1px solid var(--site-border-c);
  font-size: 14px;
  font-weight: inherit;
  line-height: 1.4;
  padding: 8px 8px;
}
.shoppage_table>tbody>tr>th {
  background: var(--site-bg-c-sub);
  color: var(--font-c);
}
.shoppage_table>tbody>tr>td {
  background: #fff;
  color: var(--font-c);
}
@media (max-width: 959.98px) {
  .shoppage_table {
    display: block;
    width: auto;
  }
  .shoppage_table>tbody {
    display: block;
    width: auto;
  }
  .shoppage_table>tbody>tr {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-item: stretch;
    width: auto;
  }
  .shoppage_table>tbody>tr>th,
  .shoppage_table>tbody>tr>td {
    display: block;
    border: none;
    text-align: left;
  }
  .shoppage_table>tbody>tr>th {
    background: var(--site-bg-c-sub);
    color: var(--font-c);
  }
  .shoppage_table>tbody>tr>td {
    background: #fff;
    color: var(--font-c);
  }
}

/* shoppage 共通タイトル */
.shoppage__title {
  background: var(--site-c-lightgray);
  color: var(--font-c);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 16px;
  padding: 12px 16px;
  position: relative;
}
.shoppage__title::before {
  content: '';
  display: block;
  border-left: solid 4px var(--site-c-main);
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
}
@media (max-width: 959.98px) {
  .shoppage__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}


.shoppage__section>.btn {}
.shoppage__section>.btn>a {}


.shoppage_cta {
  background: var(--site-c-lightgray);
  padding: 0 0 16px;
}
*+.shoppage_cta {
  margin-top: 16px;
}

.shoppage_cta__title {
  background: var(--site-bg-c-sub);
  color: var(--font-c);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 16px;
  padding: 12px 16px;
}

.shoppage_cta__info {
  font-weight: 700;
  text-align: center;
}
.shoppage_cta__info_small {
  text-align: center;
}

.shoppage_cta__list {
  display: grid;
  grid-template-columns: 3fr 2fr;
  max-width: 588px;
  margin: 0 auto 16px;
  gap: 16px;
}
*+.shoppage_cta__list {
  margin-top: 16px;
}
@media (max-width: 959.98px) {
  .shoppage_cta__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.shoppage_cta__item {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
}
.shoppage_cta__item_title {
  background: var(--site-bg-c-sub);
  color: var(--font-c);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  margin: 0 0 8px;
  padding: 8px;
}
.shoppage_cta__item_button {
  max-width: 112px;
  flex: 1 1;
}
.shoppage_cta__item_button>a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  border-radius: var(--site-btn-radius);
  border: solid 2px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 20px 0 8px;
  gap: 8px;
  aspect-ratio: 1 / 1;
  position: relative;
  cursor: pointer;
}
.shoppage_cta__item_button.btn--fill>a {
  border: solid 2px var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}
.shoppage_cta__item_button.btn--outline>a {
  border: solid 2px var(--site-c-main);
  background: #fff;
  color: var(--site-c-main);
}
.shoppage_cta__item_button>a>i {
  font-size: 32px;
  align-self: center;
  width: 100%;
}
.shoppage_cta__item_button>a>span {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  width: 100%;
  height: 2lh;
}
.shoppage_cta__item_button>a>span:only-child {
  align-self: center;
}

.shoppage_cta__number {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.shoppage_cta__help {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.shoppage__bukken {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 1em;
}
.shoppage__bukken>li {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  /* border: 1px solid var(--site-border-c); */
  font-size: 14px;
  font-weight: inherit;
  line-height: 1.25;
  position: relative;
}
.shoppage__bukken>li:has(a) {
  padding: 0;
}
.shoppage__bukken>li>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--site-c-main-hue);
  width: 100%;
  position: relative;
}
.shoppage__bukken .item--id {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--site-bg-c-sub);
  width: 3em;
  height: 3em;
}
.shoppage__bukken .item--name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 8px;
}


.shoppage__sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid var(--site-border-c);
  padding: 32px 16px;
  gap: 40px 32px;
}
.shoppage__sns>li {
  max-width: 1.75em;
  text-align: center;
  position: relative;
}
.shoppage__sns>li a {
  display: block;
}
.shoppage__sns>li i {
  color: var(--site-c-main);
  font-size: 1.75em;
}
.shoppage__sns>li i.item--red {
  color: #F15A22;
}
.shoppage__sns>li i.item--gray {
  color: #999;
}
.shoppage__sns>li span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  inset: auto auto -1.5em 50%;
  transform: translate(-50%,0);
}
.txt_link {
  color: var(--site-c-main-hue);
}
