@charset "UTF-8";


/**
 * 詳細ページのコンテンツ
**/
.bc_nav + [id="content"]:has(.detail_wrap) {
  padding-top: 8px;
}
@media (max-width: 959.98px) {
  .bc_nav + [id="content"]:has(.detail_wrap) {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .bc_nav + [id="content"]:has(.detail_wrap) {
    padding-top: 10px;
  }
}


/**
 * 詳細ページのbase_wrap
 * NOTE: max-widthのみ記述可能
**/
[id="content"]:has(.detail_wrap) .base_wrap {
  /*max-width: var(--site-container-width);*/
  max-width: 1280px;
}



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

@media (max-width: 767.98px) {
  .detail_title__type01 {
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 24px;
  }
}
/* title（PR、スタッフなど） */
.detail_title__type02 {
  font-size: 16px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 32px;
  color: #40ab2a;
  margin: 20px 0 0;
  padding: 0 16px;
}

@media (max-width: 767.98px) {
  .detail_title__type02 {
    font-size: 16px;
    line-height: 32px;
    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: 3em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  height: 64px;
  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: 64px;
  }
  .detail_top__box_btn .btn_kuchikomi a,
  .detail_top__box_btn .btn_like a {
    width: 64px;
    height: 64px;
    padding: 1px 0;
  }
  .detail_top__box_btn .btn_kuchikomi a > span,
  .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 nowrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    max-width: 720px;
    margin: 0 auto 40px;
  }
  .detai_bottom__box_btn .btn_net,
  .detai_bottom__box_btn .btn_tel {
    width: 100%;
    margin: 0 16px;
  }
  .detai_bottom__box_btn .btn_net a,
  .detai_bottom__box_btn .btn_tel a {
    border-radius: 3em;
    border: solid 1px var(--site-c-main);
    background: #fff;
    color: var(--site-c-main);
    font-size: 20px;
    font-weight: 700;
    line-height: 68px;
    text-align: center;
    height: 64px;
  }
  .detai_bottom__box_btn .btn_net a {
    background: var(--site-c-main);
    color: #fff;
  }
}
@media (max-width: 767.98px) {
  .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: solid 1px var(--site-c-main);
    background: #fff;
    color: var(--site-c-main);
    font-size: 14px;
  }
  .detai_bottom__box_btn .btn_net a {
    background: var(--site-c-main);
    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(--site-c-main);
    color: #fff;
  }
  .detai_bottom__box_btn .btn_net a::before,
  .detai_bottom__box_btn .btn_tel a::before {
    display: none;
  }
}


/**
 * .detail_wrap
 * /detail/[ID]/ページ ラッパー
**/
.detail_wrap {
  background: #fff;

  /* 通常スタイル */
  /*max-width: var(--site-container-width);*/
  /*margin: 0 auto 40px;*/

  /* 背景だけがウィンドウ100%になるスタイル */
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);

  position: relative;
}
@media (max-width: 767.98px) {
  .detail_wrap {
    margin: 0 calc( var(--site-container-padding) * -1 );
    padding: 12px var(--site-container-padding);
  }
}


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

@media (max-width: 767.98px) {
  .detail_head_parts {
    padding: 0 0 16px;
  }
}
/**
* .detail_head_parts .name_parts
* /detail/[ID]/ページ 店舗・医院等の名称
**/
.detail_head_parts .name_parts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 8px;
}

/* 店舗・医院等の名称 */
.detail_head_parts .name_parts_head {
  color: var(--site-c-black);
  font-size: 36px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 40px;
  width: 100%;
}

/* 店舗・医院等のアドレス情報 */
.detail_head_parts .name_parts dl {
  font-size: 12px;
  font-feature-settings: "palt";
  color: var(--site-c-gray);
  letter-spacing: 0.1ex;
  margin: 2px 0 4px;
}

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

.detail_head_parts .name_parts dl > dt {
  display: inline-block;
  vertical-align: middle;
}

.detail_head_parts .name_parts dl > dt::after {
  content: "：";
}

.detail_head_parts .name_parts dl > dd {
  display: inline-block;
  vertical-align: middle;
  padding-right: 8px;
}

@media (max-width: 767.98px) {
  .detail_head_parts .name_parts {
    width: 100%;
    margin: 0 0 8px;
  }
  /* 店舗・医院等の名称 */
  .detail_head_parts .name_parts_head {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 4px;
  }
  /* 店舗・医院等のアドレス情報 */
  .detail_head_parts .name_parts dl {
    font-size: 10px;
    letter-spacing: 0.2ex;
    color: var(--site-c-gray);
    width: 100%;
    margin: 0;
  }
  .detail_head_parts .name_parts dl + dl {
    margin: 0;
  }
  .detail_head_parts .name_parts dl > dt {
    padding: 0;
  }
  .detail_head_parts .name_parts dl > dd {
    padding: 0;
  }
}
/**
* .detail_head_parts .grade_parts
* /detail/[ID]/ページ 口コミ評価・件数
**/
.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]/ページ 店舗・医院のカテゴリ
**/
.detail_head_parts .cta_parts {
  display: none;
}
@media (max-width: 767.98px) {
  .detail_head_parts .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;
  }
  .detail_head_parts .cta_parts [class*="btn"] {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .detail_head_parts .cta_parts [class*="btn"] a {
    border-radius: 2px;
    font-size: 10px;
    height: 40px;
    margin: 0;
    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;
  }
}
/**
* .detail_head_parts .tag_left_parts
* /detail/[ID]/ページ 店舗・医院のカテゴリ
**/
.detail_head_parts .tag_left_parts {
  border-top: solid 1px var(--site-border-c);
  padding: 12px 0 4px;
  width: 100%;
}

@media (max-width: 767.98px) {
  .detail_head_parts .tag_left_parts {
    border-top: none;
    padding: 12px 0 4px;
  }
}
.detail_head_parts .grade_parts_tags {
  display: flex;
  flex-flow: row 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 {
  margin-top: 8px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .detail_head_parts .tag_right_parts {
    width: 100%;
    margin: 0;
  }
  .detail_head_parts *+.tag_right_parts {
    margin-top: 8px;
  }
}

/**
 * .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 .link_box a {
  color: var(--site-c-main);
  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-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 {
  padding: 24px 28px 28px;
  position: relative;
  z-index: 5; /* .detail_wrap::before、::afterよりも上にする */
}

@media (max-width: 767.98px) {
  .detail_main_parts {
    padding: 16px 0 16px;
  }
}
/**
* .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_main
 * /detail/[ID]/ページ スライダー
**/
/* スライドのラッパー（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
 * /detail/[ID]/ページ スライダー下PR文
**/
.detail_main_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 16px;
}

@media (max-width: 959.98px) {
  .detail_main_title {
    font-size: 18px;
    line-height: 28px;
    order: 1; /* Tabletビュー（.detail_main_mainimageと関係） */
  }
}
.detail_main_prcomment {
  line-height: 1.8;
}

@media (max-width: 959.98px) {
  .detail_main_prcomment {
    padding: 8px;
    border-radius: 4px;
    background: var(--site-bg-c-sub);
    font-size: 14px;
    line-height: 22px;
    margin: 12px 0 0;
    order: 3; /* Tabletビュー（.detail_main_mainimageと関係） */
  }
}


/**
* .detail_publicrelations
* /detail/[ID]/ページ PRレイアウト
**/
.detail_publicrelations {
  --pr-gap: 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  gap: var(--pr-gap);
}
@media (min-width: 959px) {
  /* 3列表示 */
  .detail_publicrelations {
    --pr-gap: 40px;
    gap: var(--pr-gap);
  }
  *+.detail_publicrelations {
    margin-top: 64px;
  }
  .detail_publicrelations>* {
    width: calc((100% - var(--pr-gap)*2) / 3);
    margin: 48px 0 0;
  }
  /* 2col */
  .detail_publicrelations > .detail_pr_parts__always_2col_style {
    width: calc((100% - var(--pr-gap)*1) / 2);
  }
  /* 1col(movie style) */
  .detail_publicrelations > .detail_pr_parts__movie_style {
    width: 100%;
    margin: 32px 0 0;
    padding: 0 calc((100% - 800px) / 2); /* ( 領域幅 - 動画幅 ) / 2 */
  }
}
@media (max-width: 959.98px) {
  /* 2列表示 */
  .detail_publicrelations {
    --pr-gap: 20px;
    gap: var(--pr-gap);
  }
  *+.detail_publicrelations {
    margin-top: 48px;
  }
  .detail_publicrelations > * {
    width: calc((100% - var(--pr-gap)*1) / 2);
    margin: 32px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 959.98px) {
  /* 特殊な要素 */
  .detail_publicrelations > .detail_pr_parts__movie_style {
    width: 100%;
    margin: 48px 0 0;
    padding: 0 calc((100% - 800px) / 2); /* ( 領域幅 - 動画幅 ) / 2 */
  }
}
@media (max-width: 767.98px) {
  /* 1列表示 */
  .detail_publicrelations {
    --pr-gap: 12px;
    gap: var(--pr-gap);
    margin: 0;
  }
  *+.detail_publicrelations {
    margin-top: 32px;
  }
  .detail_publicrelations>* {
    width: 100%;
  }
  .detail_publicrelations>*+* {
    margin-top: 32px;
  }
}


/**
 * .detail_publicrelations
 * /detail/[ID]/ページ 各PR
**/
.detail_pr_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  /* 縦1列表示 */
  .detail_pr_parts>* {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  /* 縦1列表示 */
  .detail_pr_parts>* {
    width: 100%;
  }
}
/* 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 .left_parts figure {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.detail_pr_parts .left_parts figure iframe,
.detail_pr_parts .left_parts figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
.detail_pr_parts .left_parts figure img {
  object-fit: cover;
}
.detail_pr_parts .left_parts figure [src*="s.gif"] {
  background: #ddd;
  object-fit: contain;
}

.detail_pr_parts .left_parts .caption {
  color: var(--site-c-gray);
  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: 767.98px) {
  .detail_pr_parts .left_parts .caption {
    color: var(--site-c-gray);
    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-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;
  }
}
/**
 * .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: 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);
}

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

.detail_info_parts > * {
  width: 100%;
}

@media (min-width: 959px) {
  *+.detail_info_parts {
    margin-top: 64px;
  }
}
@media (max-width: 959.98px) {
  *+.detail_info_parts {
    margin-top: 64px;
  }
}
@media (max-width: 767.98px) {
  *+.detail_info_parts {
    margin-top: 25px;
  }
}


/* title */
.detail_info_title {
  order: 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 > .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: 959.98px) {
  .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;
  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;
}

.detail_info_parts ul > li {
  border-top: 1px solid var(--site-border-c);
  padding: 18px 8px;
  display: flex;
  align-items: center;
}

.detail_info_parts ul > li:nth-child(even) {
  background: var(--site-bg-c-underlayer);
}

.detail_info_parts ul > li:last-child {
  border-bottom: 1px solid var(--site-border-c);
}

.detail_info_parts ul > li .info_title {
  width: 21%;
  font-size: 14px;
  font-weight: 700;
  color: var(--site-c-gray);
}

.detail_info_parts ul > li .info_text {
  width: 79%;
  word-break: break-all;
  word-wrap: break-word;
}

@media (max-width: 959.98px) {
  .detail_info_parts ul > li .info_title {
    width: 128px;
    font-size: 12px;
  }
  .detail_info_parts ul > li .info_text {
    width: calc(100% - 80px);
    font-size: 12px;
  }
}
/* google map */
.detail_info_parts .gglmap {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.detail_info_parts .gglmap::before {
  content: "";
  display: block;
  padding: 50% 0 0;
  position: relative;
  z-index: 1;
}

.detail_info_parts .gglmap img,
.detail_info_parts .gglmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

/**
 * .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;
  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: 700;
}

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

.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: var(--font-c);
  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: 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_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;
}

/* js 捕捉書き換え時のタグ */
.pager__head {
  display: inline-block;
  color: var(--site-c-disabledgray);
  margin: 0 0.5ex;
}
.pager__head em {
  font-weight: 700;
}
.pager__shortcut {
  display: inline-block;
  border-radius: 3px;
  border: solid 1px var(--site-c-disabledgray);
  background: #fff;
  color: var(--site-c-disabledgray);
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  min-width: 36px;
  margin: 0 0.5ex;
  padding: 0 12px;
}


/**
 * .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_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-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 767.98px) {
  .detail_flexible_information > * {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
/**
* .detail_flexible_info_parts
* /detail/[ID]/ページ 自由内容定型入力欄
**/
.detail_flexible_info_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.detail_flexible_info_image {
  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 {
  background: #fff;
}

@media (min-width: 768px) {
  .detail_flexible_info_image {
    border-radius: 8px 0 0 8px;
    width: 50%;
  }
  .detail_flexible_info_text {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-end;
    align-items: flex-end;
    border-radius: 0 8px 8px 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: 8px 0 0 8px;
  }
  .detail_flexible_information > *:nth-child(even) .detail_flexible_info_image {
    order: 2;
    border-radius: 0 8px 8px 0;
  }
  .detail_flexible_information > *:nth-child(odd) .detail_flexible_info_text {
    order: 2;
    border-radius: 0 8px 8px 0;
  }
  .detail_flexible_information > *:nth-child(even) .detail_flexible_info_text {
    order: 1;
    border-radius: 8px 0 0 8px;
  }
}
@media (max-width: 767.98px) {
  .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 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2ex;
  line-height: 44px;
  width: 100%;
  margin: 0;
}

.detail_flexible_info_title:empty {
  display: none;
}

@media (max-width: 767.98px) {
  .detail_flexible_info_title {
    font-size: 32px;
    line-height: 32px;
    width: 100%;
  }
}
/* エリア（暫定 サイトにより領域の使用用途、意味合いが変化） */
.detail_flexible_info_area {
  display: inline-block;
  color: rgba(0, 0, 0, 0.33);
  font-size: 12px;
  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: 767.98px) {
  .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: 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: 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;
  }
}

/* ============================================================
   OpenEXPO Detail Page Overrides
   scoped to .page--detail
   ============================================================ */

/* --- Page background --- */
.page--detail {
  background-color: var(--oe-bg-light, #FAFAFA);
}

/* --- Hide unused original sections --- */
.page--detail .detail_slider,
.page--detail .detail_main_mainimage,
.page--detail .detail_publicrelations,
.page--detail .detail_flexible_information,
.page--detail .detail_gallery_parts,
.page--detail .opening_hours,
.page--detail .detail_info_parts:has(.table_timetable),
.page--detail .detail_info_parts:has(.gglmap),
.page--detail .detail_info_parts:has(.opening_hours),
.page--detail .box_btn.detail_top__box_btn,
.page--detail .box_btn.detai_bottom__box_btn,
.page--detail .detail_head_parts,
.page--detail .detail_head_tab,
.page--detail [S-TMP07],
.page--detail .detail_main_title,
.page--detail .detail_main_prcomment {
  display: none !important;
}

/* --- Base wrap max-width --- */
/* Design: max-w-5xl(1024px) mx-auto px-4 md:px-8(32px) */
.page--detail [id="content"] .base_wrap {
  max-width: 1024px;
  padding-left: 15px;
  padding-right: 15px;
}
/* Remove extra padding from detail_main_parts (design has no intermediate padding) */
.page--detail .detail_main_parts {
  padding-left: 0;
  padding-right: 0;
}

/* --- OE Detail Card --- */
/* Design: bg-white rounded-2xl shadow-sm border border-gray-200 p-6 md:p-10 mt-10 */
.page--detail .oe_detail_card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  padding: 40px;
  margin-bottom: 32px;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .page--detail .oe_detail_card {
	  margin: 0;
    padding: 24px;
    border-radius: 12px;
  }
}

/* --- Badges --- */
/* Design: flex flex-wrap gap-2(8px) mb-4(16px) */
.page--detail .oe_detail_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
/* Design: bg-blue-50 text-blue-600 text-[10px] font-bold px-2.5(10px) py-1(4px) rounded border border-blue-200 */
.page--detail .oe_badge_text {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #bfdbfe;
  border-radius: 4px;
  color: #2563eb;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #eff6ff;
}

/* --- Title Row --- */
/* Design: flex items-start justify-between gap-4(16px) */
.page--detail .oe_detail_title_row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
}
/* Design: text-2xl(24px) md:text-3xl(30px) font-bold text-deep-teal leading-tight */
.page--detail .oe_detail_title_row .name_parts_head {
  font-size: 30px;
  font-weight: 700;
  color: var(--oe-deep-teal, #0e4c5e);
  margin: 0;
  flex: 1;
  line-height: 1.25;
}
@media (max-width: 767.98px) {
  .page--detail .oe_detail_title_row .name_parts_head {
    font-size: 24px;
  }
}

/* --- Favorite Button (Detail) --- */
.page--detail .oe_fav_btn_detail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #d1d5db;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.page--detail .oe_fav_btn_detail:hover {
  border-color: var(--oe-primary, #14d9dc);
  color: var(--oe-primary, #14d9dc);
  background: rgba(20, 217, 220, 0.05);
}

/* --- Tagline --- */
/* Design: text-lg(18px) md:text-xl(20px) text-gray-700 font-bold mt-4(16px) leading-relaxed(1.625) */
.page--detail .oe_detail_tagline {
  font-size: 20px;
  font-weight: 700;
  color: #374151;
  line-height: 1.625;
  margin: 16px 0 32px 0;
}
@media (max-width: 767.98px) {
  .page--detail .oe_detail_tagline {
    font-size: 18px;
  }
}

/* --- Info Grid --- */
/* Design: grid grid-cols-2 gap-y-6(24px) gap-x-12(48px) border-t border-gray-100 pt-8(32px) pb-12(48px) */
.page--detail .oe_detail_info_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  border-top: 1px solid #f3f4f6;
  padding-top: 32px;
  padding-bottom: 48px;
}
@media (max-width: 767.98px) {
  .page--detail .oe_detail_info_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page--detail .oe_detail_info_item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
.page--detail .oe_detail_info_item > div {
  min-width: 0;
}
.page--detail .oe_detail_info_item--wide {
  grid-column: 1 / -1;
}

.page--detail .oe_info_icon {
  color: #9ca3af;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.page--detail .oe_info_label {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  margin: 0 0 4px 0;
}

.page--detail .oe_info_value {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin: 0;
  line-height: 1.5;
}

.page--detail .oe_link {
  color: var(--oe-primary, #14d9dc);
  text-decoration: none;
  word-break: break-all;
}
.page--detail .oe_link:hover {
  text-decoration: underline;
}

/* --- Tags --- */
.page--detail .oe_detail_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.page--detail .oe_tag_item {
  display: inline-block;
  padding: 2px 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #4b5563;
}

/* --- Content Sections (left border) --- */
/* Design: border-t border-gray-100 pt-12(48px) */
.page--detail .oe_detail_sections {
  border-top: 1px solid #f3f4f6;
  padding-top: 48px;
}
/* Design: space-y-10(40px) */
.page--detail .oe_detail_section {
  margin-bottom: 40px;
}
/* Design: text-xl(20px) font-bold text-deep-teal mb-4(16px) border-l-4 border-primary pl-3(12px) */
.page--detail .oe_section_title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--oe-deep-teal, #0e4c5e);
  margin: 0 0 16px 0;
  padding-left: 12px;
  border-left: 4px solid var(--oe-primary, #14d9dc);
}
/* Design: text-gray-600 leading-relaxed(1.625) */
.page--detail .oe_section_text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}
.page--detail .oe_section_text--bold {
  font-weight: 700;
  color: #374151;
}
.page--detail .oe_section_divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin: 0 0 40px 0;
}

/* --- Disclaimer --- */
/* Design: mt-10(40px) text-right */
.page--detail .oe_detail_disclaimer {
  margin-top: 40px;
  text-align: right;
}
.page--detail .oe_detail_disclaimer p {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

/* --- Info Box (teal) --- */
/* Design: bg-teal-50 border-teal-100 rounded-xl(12px) p-6(24px) md:p-8(32px) mb-10(40px) mt-12(48px) gap-4(16px) */
.page--detail .oe_info_box {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .page--detail .oe_info_box {
    padding: 24px;
  }
}
/* Design: text-3xl(30px) */
.page--detail .oe_info_box_icon {
  color: var(--oe-deep-teal, #0e4c5e);
  font-size: 30px;
  flex-shrink: 0;
  margin-top: 4px;
}
/* Design: text-lg(18px) font-bold text-deep-teal mb-2(8px) */
.page--detail .oe_info_box_title {
  font-size: 18px;
  font-weight: 700;
  color: var(--oe-deep-teal, #0e4c5e);
  margin: 0 0 8px 0;
}
/* Design: text-gray-700 leading-relaxed(1.625) font-medium */
.page--detail .oe_info_box_text {
  font-size: 16px;
  color: #374151;
  line-height: 1.625;
  margin: 0;
  font-weight: 500;
}
.page--detail .oe_info_box_text strong {
  color: var(--oe-deep-teal, #0e4c5e);
}

/* --- CTA Section --- */
/* Design: text-center py-4(16px) mb-8(32px) */
.page--detail .oe_detail_cta {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 32px;
}
/* Design: text-lg(18px) font-bold text-deep-teal mb-6(24px) */
.page--detail .oe_cta_lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--oe-deep-teal, #0e4c5e);
  margin: 0 0 24px 0;
}
/* Design: text-xl(20px) py-5(20px) px-16(64px) rounded-full shadow-lg w-full md:w-auto */
.page--detail .oe_cta_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffb800;
  color: var(--oe-deep-teal, #0e4c5e);
  font-size: 20px;
  font-weight: 800;
  padding: 20px 64px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
  width: 100%;
  max-width: 580px;
}
@media (max-width: 767.98px) {
  .page--detail .oe_cta_button {
    font-size: 16px;
    padding: 16px 32px;
  }
}
.page--detail .oe_cta_button:hover {
  background: #e6a600;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}
/* Design: text-sm(14px) text-gray-500 mt-4(16px) */
.page--detail .oe_cta_features {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.page--detail .oe_cta_features span {
  font-size: 14px;
  color: #6b7280;
}

/* --- Action Buttons --- */
/* Design: gap-4 md:gap-8(32px) mt-12(48px) pb-8(32px) border-t border-gray-200 pt-8(32px) */
.page--detail .oe_detail_actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 48px;
  flex-wrap: wrap;
}
/* Design: gap-1(4px) */
.page--detail .oe_action_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.2s;
}
.page--detail .oe_action_btn:hover {
  color: var(--oe-primary, #14d9dc);
}
.page--detail .oe_action_btn_circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}
.page--detail .oe_action_btn:hover .oe_action_btn_circle {
  border-color: var(--oe-primary, #14d9dc);
  box-shadow: 0 2px 8px rgba(20, 217, 220, 0.15);
}
.page--detail .oe_action_btn_label {
  font-size: 12px;
  font-weight: 700;
}

/* --- Breadcrumb override --- */
.page--detail .bc_nav ol {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}
.page--detail .bc_nav ol li + li::before {
  content: '>';
  margin-right: 4px;
  color: #d1d5db;
}
.page--detail .bc_nav ol li:last-child span {
  color: var(--oe-deep-teal, #08555f);
  font-weight: 700;
}

/* --- Related Exhibitions Section --- */
/* Design: max-w-5xl py-12(48px) border-t border-gray-100 mt-12(48px) px-4 md:px-8(32px) */
.page--detail .oe_related_section {
  max-width: 1024px;
  margin: 48px auto 0;
  padding: 48px 15px 0;
  border-top: 1px solid #f3f4f6;
}
/* Remove base_wrap constraints inside related section (already handled by section) */
.page--detail .oe_related_section .base_wrap {
  max-width: none;
  padding: 0;
}
/* Design: mb-8(32px) */
.page--detail .oe_related_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
/* Design: text-xl(20px) font-bold text-deep-teal */
.page--detail .oe_related_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--oe-deep-teal, #0e4c5e);
  margin: 0;
}
.page--detail .oe_related_viewall {
  font-size: 14px;
  font-weight: 700;
  color: var(--oe-deep-teal, #08555f);
  text-decoration: none;
  transition: color 0.2s;
}
.page--detail .oe_related_viewall:hover {
  color: var(--oe-primary, #14d9dc);
}
/* Design: grid grid-cols-3 gap-6(24px) */
.page--detail .oe_related_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767.98px) {
  .page--detail .oe_related_grid {
    grid-template-columns: 1fr;
  gap: 0
  }
}

/* --- Business Support Section (detail page wrapper) --- */
/* Constrained to match page layout width */
.page--detail .oe_support_section {
  max-width: 1024px !important;
  margin: 48px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box;
}
.page--detail .oe_support_section .base_wrap {
  max-width: none !important;
  padding: 0 !important;
}
@media (max-width: 767.98px) {
.page--detail .oe_support_section {
  margin: 20px auto !important;
}
	
}
.page--detail .oe_support {
  max-width: none !important;
  margin: 0 !important;
}
