@charset "UTF-8";
/* 基本情報 */
/***************************************************************
           基本
***************************************************************/
/*--------------------------------------------------------------
    本体
--------------------------------------------------------------*/
body {
  max-width: 736px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  -webkit-text-size-adjust: 100%;
}

/* ヘッダー */
/***************************************************************
           固定
***************************************************************/
/*--------------------------------------------------------------
    絶対位置
--------------------------------------------------------------*/
header {
  position: fixed;
  z-index: 5;
  width: 100%;
}

/***************************************************************
           共通（z-index設定の為のposition: relative）
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
header #common {
  position: relative;
  z-index: 4;
  background: #008000;
}

header #common h1 {
  padding: 5px 0;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

/***************************************************************
           タブレット&スマートフォン
***************************************************************/
/*--------------------------------------------------------------
    背景（z-index設定の為のposition: relative）
--------------------------------------------------------------*/
header #sp {
  position: relative;
}

/*--------------------------------------------------------------
    アイコン
--------------------------------------------------------------*/
header #sp .icon {
  z-index: 4;
  position: relative;
  width: 100%;
  height: 50px;
  background: #fbf6ef;
}

header #sp .icon a:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 100px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

header #sp .icon a:nth-of-type(1) img {
  display: inline-block;
  height: 20px;
}

header #sp .icon a:nth-of-type(1) span {
  display: block;
  color: #008000;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: #fff 1px 1px 2px,
 #fff -1px 1px 2px,
 #fff 1px -1px 4px,
 #fff -1px -1px 2px;
}

header #sp .icon a:nth-of-type(2) {
  position: absolute;
  top: 50%;
  right: 110px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  padding: 6px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #008000;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

header #sp .icon a:nth-of-type(2) span {
  display: block;
  color: #fff;
  font-size: 10px;
}

header #sp .icon a:nth-of-type(3) {
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  padding: 6px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #008000;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

header #sp .icon a:nth-of-type(3) span {
  display: block;
  color: #fff;
  font-size: 10px;
}

/*--------------------------------------------------------------
    ハンバーガーメニュー
--------------------------------------------------------------*/
/* 領域 */
.globalMenuSp {
  display: none;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.globalMenuSp.active {
  display: block;
  -ms-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -o-transform: translateY(50px);
}

/*--------------------------------------------------------------
    メニュー
--------------------------------------------------------------*/
.globalMenuSp .menu {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.2);
}

.globalMenuSp .menu p:nth-of-type(n+2) {
  margin: 5px 0 0 0;
}

.globalMenuSp .menu p a {
  display: block;
  padding: 5px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.globalMenuSp .menu p span.text_1 {
  display: block;
  padding: 5px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.globalMenuSp .menu p span.text_2 a {
  position: relative;
  display: block;
  padding: 5px 20px;
  background: #fff;
  border-style: solid;
  border-color: #d3d3d3;
  border-width: 1px 0 0 0;
  color: #000;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
}

.globalMenuSp .menu p span.text_2 a::before {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: ">";
  color: #000;
  font-size: 14px;
}

/*--------------------------------------------------------------
    トグル（タップ前）
--------------------------------------------------------------*/
.navToggle {
  display: block;
  position: absolute;
  /* bodyに対しての絶対位置指定 */
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #808080;
  border-radius: 5px;
  cursor: pointer;
  z-index: 4;
  text-align: center;
}

.navToggle p {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 22px;
  border-bottom: solid 3px #fff;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 9px;
}

.navToggle p:nth-child(1) {
  top: 7px;
}

.navToggle p:nth-child(2) {
  top: 14px;
}

.navToggle p:nth-child(3) {
  top: 21px;
}

.navToggle span {
  display: block;
  padding: 26px 0 0 0;
  color: #fff;
  font-size: 10px;
}

/*--------------------------------------------------------------
    トグル（タップ後）
--------------------------------------------------------------*/
/* 最初のspanをマイナス45度に */
.navToggle.active p:nth-child(1) {
  top: 15px;
  left: 9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active p:nth-child(2),
.navToggle.active p:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/***************************************************************
           パソコン
***************************************************************/
/*--------------------------------------------------------------
    基本情報
--------------------------------------------------------------*/
/* 背景
--------------------------------------------------------------*/
header #pc .basic {
  display: none;
}

/* 領域
--------------------------------------------------------------*/
header #pc .basic .flask {
  display: none;
}

/* ロゴ
--------------------------------------------------------------*/
header #pc .basic .flask .content_1 {
  display: none;
}

header #pc .basic .flask .content_1 a {
  display: none;
}

header #pc .basic .flask .content_1 a img {
  display: none;
}

header #pc .basic .flask .content_1 a span {
  display: none;
}

/* グーグルマップ
--------------------------------------------------------------*/
header #pc .basic .flask .content_2 {
  display: none;
}

header #pc .basic .flask .content_2 a {
  display: none;
}

header #pc .basic .flask .content_2 a:hover {
  display: none;
}

header #pc .basic .flask .content_2 a i {
  display: none;
}

header #pc .basic .flask .content_2 a span {
  display: none;
}

/* 予約
--------------------------------------------------------------*/
header #pc .basic .flask .content_3 {
  display: none;
}

header #pc .basic .flask .content_3 p.note {
  display: none;
}

header #pc .basic .flask .content_3 p.note span {
  display: none;
}

header #pc .basic .flask .content_3 p.reserve a:nth-of-type(1) {
  display: none;
}

header #pc .basic .flask .content_3 p.reserve a:nth-of-type(2) {
  display: none;
}

header #pc .basic .flask .content_3 p.reserve a:hover {
  display: none;
}

header #pc .basic .flask .content_3 p.reserve a i {
  display: none;
}

/*--------------------------------------------------------------
    グローバルナビゲーション
--------------------------------------------------------------*/
/* 背景
--------------------------------------------------------------*/
header #pc .gnav {
  display: none;
}

/* 領域
--------------------------------------------------------------*/
header #pc .gnav .flask {
  display: none;
}

/* メニュー
--------------------------------------------------------------*/
header #pc .gnav .flask a {
  display: none;
}

header #pc .gnav .flask a:hover {
  display: none;
}

header #pc .gnav .flask a:nth-of-type(n+2) {
  display: none;
}

/* フッター */
/***************************************************************
           グローバルナビゲーション_1
***************************************************************/
/*--------------------------------------------------------------
    背景
--------------------------------------------------------------*/
footer .gnav_1 {
  display: none;
}

/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
footer .gnav_1 .flask {
  display: none;
}

/*--------------------------------------------------------------
    リンク
--------------------------------------------------------------*/
footer .gnav_1 .flask a {
  display: none;
}

footer .gnav_1 .flask a:hover {
  display: none;
}

footer .gnav_1 .flask a:nth-of-type(n+2) {
  display: none;
}

footer .gnav_1 .flask a::before {
  display: none;
}

/***************************************************************
           グローバルナビゲーション_2
***************************************************************/
/*--------------------------------------------------------------
    背景
--------------------------------------------------------------*/
footer .gnav_2 {
  display: none;
}

/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
footer .gnav_2 .flask {
  display: none;
}

/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
footer .gnav_2 .flask p {
  display: none;
}

/*--------------------------------------------------------------
    リンク
--------------------------------------------------------------*/
footer .gnav_2 .flask a {
  display: none;
}

footer .gnav_2 .flask a:hover {
  display: none;
}

footer .gnav_2 .flask a:nth-of-type(n+2) {
  display: none;
}

/***************************************************************
           著作権
***************************************************************/
/*--------------------------------------------------------------
    テキスト
--------------------------------------------------------------*/
footer .copyright small {
  display: block;
  padding: 10px 0;
  background: #e2c395;
  color: #000;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

/***************************************************************
           ページトップヘ戻る
***************************************************************/
/*--------------------------------------------------------------
    テキスト
--------------------------------------------------------------*/
footer .back p.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #006400;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ビジュアル */
/***************************************************************
           ビジュアル
***************************************************************/
/*--------------------------------------------------------------
    背景
--------------------------------------------------------------*/
#visual {
  background: #fbf6ef;
}

/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#visual .flask {
  position: relative;
  padding: 92px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------------------------------------
    画像
--------------------------------------------------------------*/
/* タブレット&スマートフォン
--------------------------------------------------------------*/
#visual .flask p.sp img {
  display: inline-block;
  width: 100%;
}

/* パソコン
--------------------------------------------------------------*/
#visual .flask p.pc {
  display: none;
}

/*--------------------------------------------------------------
装飾
--------------------------------------------------------------*/
#visual .flask p.decoration {
position: absolute;
left: 5px;
bottom: 5px;
display: inline-block;
}
#visual .flask p.decoration a {
display: inline-block;
}
#visual .flask p.decoration a img {
display: inline-block;
width: 100%;
max-width: 65px;
}
@media (min-width: 501px) and (max-width: 736px) {
#visual .flask p.decoration a img {
    max-width: 100px;
}
}
#visual .flask p.decoration a:hover img {
opacity: 0.8;
}

/* コンテンツ */
/***************************************************************
           ベース
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#content {
  position: static;
  width: 95%;
  margin: 0 auto;
  padding: 0 0 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*--------------------------------------------------------------
    float解除
--------------------------------------------------------------*/
#content:after {
  display: block;
  content: "";
  clear: both;
}

/*--------------------------------------------------------------
    サイド
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
#content #side {
  display: none;
}

/* 受付時間
--------------------------------------------------------------*/
#content #side .time p.midashi {
  display: none;
}

#content #side .time table {
  display: none;
}

#content #side .time table thead tr th {
  display: none;
}

#content #side .time table tbody tr td {
  display: none;
}

#content #side .time table tfoot tr td {
  display: none;
}

/* 症状別施術メニュー
--------------------------------------------------------------*/
#content #side .symptoms p.midashi {
  display: none;
}

#content #side .symptoms a {
  display: none;
}

#content #side .symptoms a::before {
  display: none;
}

#content #side .symptoms a:hover {
  display: none;
}

#content #side .symptoms a:last-of-type {
  display: none;
}

/* 料金表
--------------------------------------------------------------*/
#content #side .price p.midashi {
  display: none;
}

#content #side .price a {
  display: none;
}

#content #side .price a::before {
  display: none;
}

#content #side .price a:hover {
  display: none;
}

#content #side .price a:last-of-type {
  display: none;
}

/* について
--------------------------------------------------------------*/
#content #side .about p.midashi {
  display: none;
}

#content #side .about a {
  display: none;
}

#content #side .about a::before {
  display: none;
}

#content #side .about a:hover {
  display: none;
}

#content #side .about a:last-of-type {
  display: none;
}

/*--------------------------------------------------------------
    メインコンテンツ
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
#content #main {
  float: static;
  width: 100%;
}

/* ホーム */
/***************************************************************
           悩み
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #home #trouble h2 {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

#content #main #home #trouble h2 strong {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #008000));
  background: linear-gradient(transparent 50%, #008000 50%);
}

#content #main #home #trouble h2 span {
  position: relative;
  color: #000;
  font-size: 25px;
  font-weight: bold;
}

#content #main #home #trouble h2 span::after {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "・";
  color: #008000;
  font-size: 20px;
}

/*--------------------------------------------------------------
    列挙
--------------------------------------------------------------*/
#content #main #home #trouble .enumeration {
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #808080;
  border-width: 5px;
  border-radius: 10px;
}

#content #main #home #trouble .enumeration ul {
  list-style: none;
  padding: 10px;
}

#content #main #home #trouble .enumeration ul li {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

#content #main #home #trouble .enumeration ul li:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

/* チェックマーク
--------------------------------------------------------------*/
#content #main #home #trouble .enumeration ul li.checkmark {
  position: relative;
  padding-left: 30px;
}

#content #main #home #trouble .enumeration ul li.checkmark::before,
#content #main #home #trouble .enumeration ul li.checkmark::after {
  position: absolute;
  content: "";
  display: block;
}

#content #main #home #trouble .enumeration ul li.checkmark::before {
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #deb887;
}

#content #main #home #trouble .enumeration ul li.checkmark::after {
  top: 0;
  left: 5px;
  width: 10px;
  height: 5px;
  border-left: 5px solid #808080;
  border-bottom: 5px solid #808080;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
    症状
--------------------------------------------------------------*/
#content #main #home #trouble .symptoms {
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0;
}

#content #main #home #trouble .symptoms a {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #808080;
  border-width: 5px;
  border-radius: 10px;
  text-decoration: none;
}

#content #main #home #trouble .symptoms a:nth-of-type(2) {
  margin: 0 0 0 2%;
}

#content #main #home #trouble .symptoms a:nth-of-type(n+3) {
  margin: 10px 0 0 0;
}

#content #main #home #trouble .symptoms a:nth-of-type(4),
#content #main #home #trouble .symptoms a:nth-of-type(6),
#content #main #home #trouble .symptoms a:nth-of-type(8) {
  margin: 10px 0 0 2%;
}

#content #main #home #trouble .symptoms a:hover {
  border-color: #008000;
}

#content #main #home #trouble .symptoms a span.text_1 {
  display: block;
  height: 100px;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #trouble .symptoms a:nth-of-type(1) span.text_1 {
  background-image: url("image.php?id=8");
  background-size: 50px;
}

#content #main #home #trouble .symptoms a:nth-of-type(2) span.text_1 {
  background-image: url("image.php?id=9");
  background-size: 60px;
}

#content #main #home #trouble .symptoms a:nth-of-type(3) span.text_1 {
  background-image: url("image.php?id=10");
  background-size: 50px;
}

#content #main #home #trouble .symptoms a:nth-of-type(4) span.text_1 {
  background-image: url("image.php?id=11");
  background-size: 100px;
}

#content #main #home #trouble .symptoms a:nth-of-type(5) span.text_1 {
  background-image: url("image.php?id=42");
  background-size: 80px;
}

#content #main #home #trouble .symptoms a:nth-of-type(6) span.text_1 {
  background-image: url("image.php?id=13");
  background-size: 100px;
}

#content #main #home #trouble .symptoms a:nth-of-type(8) span.text_1 {
  background-image: url("image.php?id=75");
  background-size: 100px;
}

#content #main #home #trouble .symptoms a span.text_2 {
  display: block;
  height: 20px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

#content #main #home #trouble .symptoms a span.text_2::after {
  display: block;
  content: "";
  clear: both;
}

#content #main #home #trouble .symptoms a span.text_2 i {
  float: right;
  color: #808080;
}

#content #main #home #trouble .symptoms a:hover span.text_2 i {
  color: #008000;
}

/***************************************************************
           改善
***************************************************************/
/*--------------------------------------------------------------
    見出し_1
--------------------------------------------------------------*/
#content #main #home #improvement h2 {
  margin: 40px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/*--------------------------------------------------------------
    テーブル_1
--------------------------------------------------------------*/
#content #main #home #improvement .table_1 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #improvement .table_1 .image {
  display: block;
  margin: 20px 0 0 0;
}

#content #main #home #improvement .table_1 .image p img {
  display: block;
  width: 100%;
}

#content #main #home #improvement .table_1 .text {
  display: block;
  margin: 10px 0 0 0;
}

#content #main #home #improvement .table_1 .text p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #improvement .table_1 .text p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

/*--------------------------------------------------------------
    見出し_2
--------------------------------------------------------------*/
#content #main #home #improvement h3 {
  margin: 20px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-color: #808080;
  border-width: 0 0 3px 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/*--------------------------------------------------------------
    テーブル_2
--------------------------------------------------------------*/
#content #main #home #improvement .table_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#content #main #home #improvement .table_2 .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #improvement .table_2 .text p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #improvement .table_2 .text p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

#content #main #home #improvement .table_2 .text p span {
  display: inline-block;
  color: #808080;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-decoration: underline;
}

#content #main #home #improvement .table_2 .text p:nth-of-type(n+2) span {
  margin: 20px 0 0 0;
}

#content #main #home #improvement .table_2 .image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #improvement .table_2 .image p img {
  display: block;
  width: 100%;
}

/***************************************************************
           ポイント
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #home #point h2 {
  margin: 40px 0 0 0;
  padding: 0 0 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-color: #ffc0cc;
  border-width: 0 0 3px 0;
  color: #400000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
  text-align: center;
}

#content #main #home #point h2 span {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
}

/*--------------------------------------------------------------
    各ポイント
--------------------------------------------------------------*/
/* 開時
--------------------------------------------------------------*/
#content #main #home #point .accordion article {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-color: #ffc0cc;
  border-width: 0 0 1px 0;
}

#content #main #home #point .accordion article > div {
  position: relative;
  display: block;
  font-size: 0;
  text-decoration: none;
  cursor: pointer;
}

#content #main #home #point .accordion article > div p.number {
  display: inline-block;
  width: 15%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  background: #ff8199;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

#content #main #home #point .accordion article > div p.number span {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

#content #main #home #point .accordion article > div p.midashi {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
  padding: 0 0 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #400000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

#content #main #home #point .accordion article > div p.midashi span {
  display: inline-block;
  color: #ff8199;
  font-weight: bold;
}

/* 閉時
--------------------------------------------------------------*/
#content #main #home #point .accordion article > p {
  display: none;
  font-size: 0;
}

#content #main #home #point .accordion article > p span.text {
  display: block;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #400000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #point .accordion article > p span.image {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #point .accordion article > p span.image img {
  display: block;
  width: 100%;
}

/* ボタン
--------------------------------------------------------------*/
#content #main #home #point .accordion article .accordion_icon,
#content #main #home #point .accordion article .accordion_icon i {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #point .accordion article .accordion_icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: #400000;
  border-radius: 50%;
}

#content #main #home #point .accordion article .accordion_icon i {
  position: absolute;
  top: 46%;
  left: 14%;
  -webkit-transform: translate(-14%, -46%);
  transform: translate(-14%, -46%);
  width: 15px;
  height: 3px;
  background: #fff;
}

#content #main #home #point .accordion article .accordion_icon i:nth-of-type(1) {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

#content #main #home #point .accordion article .accordion_icon i:nth-of-type(2) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#content #main #home #point .accordion article .accordion_icon.active i:nth-of-type(1) {
  display: none;
}

#content #main #home #point .accordion article .accordion_icon.active i:nth-of-type(2) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/***************************************************************
           施術の流れ
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #home #flow h2 {
  margin: 40px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/*--------------------------------------------------------------
    余白0
--------------------------------------------------------------*/
#content #main #home #flow {
  font-size: 0;
}

/*--------------------------------------------------------------
    各流れ
--------------------------------------------------------------*/
#content #main #home #flow article {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 0 0 0;
}

#content #main #home #flow article:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

#content #main #home #flow article span.image {
  display: block;
}

#content #main #home #flow article span.image img {
  display: block;
  width: 100%;
}

#content #main #home #flow article span.number {
  display: inline-block;
  width: 15%;
  vertical-align: middle;
  margin: 10px 0 0 0;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  background: #808080;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

#content #main #home #flow article span.midashi {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
  margin: 10px 0 0 0;
  padding: 0 0 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

#content #main #home #flow article span.text {
  display: block;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #flow p {
  display: none;
}

#content #main #home #flow p i {
  display: none;
}

/***************************************************************
           あいさつ
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #home #greeting h2 {
  margin: 40px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

/*--------------------------------------------------------------
    テーブル
--------------------------------------------------------------*/
#content #main #home #greeting .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#content #main #home #greeting .table .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #greeting .table .text p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #greeting .table .image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #greeting .table .image img {
  display: block;
  width: 100%;
}

#content #main #home #greeting .table .image p {
  margin: 10px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
}

/***************************************************************
           アクセス
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #home #access h2 {
  margin: 40px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/*--------------------------------------------------------------
    余白0
--------------------------------------------------------------*/
#content #main #home #access {
  font-size: 0;
}

/*--------------------------------------------------------------
    画像
--------------------------------------------------------------*/
#content #main #home #access .image {
  display: block;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #home #access .image img {
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
    基本情報
--------------------------------------------------------------*/
#content #main #home #access .basic {
  display: block;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 受付時間
--------------------------------------------------------------*/
#content #main #home #access .basic table {
  width: 100%;
}

#content #main #home #access .basic table caption {
  margin: 0 0 10px 0;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

#content #main #home #access .basic table thead tr th {
  padding: 5px 0;
  background: #808080;
  border-style: solid;
  border-color: #EFFBEF;
  border-width: 1px;
  color: #fff;
  font-size: 14px;
}

#content #main #home #access .basic table tbody tr td {
  padding: 5px 0;
  border-style: solid;
  border-color: #EFFBEF;
  border-width: 1px;
  color: #808080;
  font-size: 14px;
  text-align: center;
}

#content #main #home #access .basic table tfoot tr td {
  color: #808080;
  font-size: 14px;
  line-height: 20px;
}

/* 住所 & アクセス
--------------------------------------------------------------*/
#content #main #home #access .basic p {
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #access .basic p span {
  display: inline-block;
  font-weight: bold;
}

/*--------------------------------------------------------------
    グーグルマップ
--------------------------------------------------------------*/
#content #main #home #access .map {
  margin: 20px 0 0 0;
}

#content #main #home #access .map iframe {
  width: 100%;
  height: 250px;
}

/*--------------------------------------------------------------
    予約
--------------------------------------------------------------*/
#content #main #home #access .reserve p {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  line-height: 25px;
}

#content #main #home #access .reserve p span {
  display: inline-block;
  color: #008000;
  font-size: 25px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ebf9da));
  background: linear-gradient(transparent 50%, #ebf9da 50%);
}

#content #main #home #access .reserve a:nth-of-type(1) {
  display: block;
  margin: 10px 0 0 0;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(#d3d3d3), color-stop(50%, #808080), to(#d3d3d3));
  background: linear-gradient(to bottom, #d3d3d3, #808080 50%, #d3d3d3);
  border-style: solid;
  border-color: #808080;
  border-width: 2px;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

#content #main #home #access .reserve a:nth-of-type(2) {
  display: block;
  margin: 10px 0 0 0;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(#D8F781), color-stop(50%, #688A08), to(#D8F781));
  background: linear-gradient(to bottom, #D8F781, #688A08 50%, #D8F781);
  border-style: solid;
  border-color: #688A08;
  border-width: 2px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

#content #main #home #access .reserve a:nth-of-type(3) {
  display: block;
  margin: 10px 0 0 0;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(#fae9d2), color-stop(50%, #f4a460), to(#fae9d2));
  background: linear-gradient(to bottom, #fae9d2, #f4a460 50%, #fae9d2);
  border-style: solid;
  border-color: #f4a460;
  border-width: 2px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

#content #main #home #access .reserve a:hover {
  opacity: 0.8;
}

#content #main #home #access .reserve a i {
  display: inline-block;
  margin: 0 10px 0 0;
}

/*--------------------------------------------------------------
ライン
--------------------------------------------------------------*/
#content #main #home #access .line {
  margin: 20px 0 0 0;
  text-align: center;
}

#content #main #home #access .line a {
  display: inline-block;
  width: 250px;
  height: 250px;
  padding: 40px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: dashed;
  border-color: #008000;
  border-width: 5px;
  border-radius: 50%;
  -webkit-box-shadow: 10px 5px 5px #000;
          box-shadow: 10px 5px 5px #000;
  text-decoration: none;
}

#content #main #home #access .line a span.text_1 {
  display: block;
  color: #ff8199;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 4px;
}

#content #main #home #access .line a span.text_2 {
  display: block;
  margin: 10px 0 0 0;
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
}

#content #main #home #access .line a span.text_3 {
  display: block;
  margin: 5px 0 0 0;
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
}

#content #main #home #access .line a span.image {
  margin: 10px 0 0 0;
}

#content #main #home #access .line a span.image img {
  display: inline-block;
  width: 100%;
  max-width: 100px;
}

/*--------------------------------------------------------------
    予約バナー
--------------------------------------------------------------*/
#content #main #home #access .banner {
  position: relative;
  margin: 20px 0 0 0;
}
@media (min-width: 501px) and (max-width: 736px) {
#content #main #home #access .banner {
    width: 70%;
    margin: 20px auto 0 auto;
    box-sizing: border-box;
}
}

#content #main #home #access .banner a:nth-of-type(1) {
  display: block;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-style: solid;
  border-color: #008000;
  border-width: 5px 5px 0 5px;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
}

#content #main #home #access .banner a:nth-of-type(1) span.logo {
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

#content #main #home #access .banner a:nth-of-type(1) span.logo img {
  display: inline-block;
  height: 20px;
}

#content #main #home #access .banner a:nth-of-type(1) span.logo i {
  display: block;
  color: #008000;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: #fff 1px 1px 2px,
 #fff -1px 1px 2px,
 #fff 1px -1px 4px,
 #fff -1px -1px 2px;
  font-style: normal;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_1 {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 5px 0;
  background: #ff5c5c;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_2 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_2 i {
  display: inline-block;
  font-size: normal;
  color: #ff5c5c;
}

#content #main #home #access .banner a:nth-of-type(1) span.tel {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 0 0 0;
  color: #808080;
  font-size: 25px;
}

#content #main #home #access .banner a:nth-of-type(2) {
  display: block;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #008000;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
}

#content #main #home #access .banner a:hover {
  opacity: 0.8;
}

#content #main #home #access .banner p img {
  position: absolute;
  bottom: 35px;
  right: 5px;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  width: 100px;
}
@media (min-width: 501px) and (max-width: 736px) {
#content #main #home #access .banner p img {
    width: 120px;
}
}

/* 下層ページ */
/***************************************************************
           ぱんくずリスト
***************************************************************/
/*--------------------------------------------------------------
    リスト
--------------------------------------------------------------*/
#content #main #lower #breadcrumbs ol {
  padding: 112px 0 0 0;
  font-size: 0;
  list-style: none;
  text-align: center;
}

#content #main #lower #breadcrumbs ol li {
  display: inline-block;
  color: #000;
  font-size: 14px;
}

#content #main #lower #breadcrumbs ol li a {
  color: #1a0dab;
  font-size: 14px;
  text-decoration: underline;
}

#content #main #lower #breadcrumbs ol li a::after {
  content: ">";
  display: inline-block;
  margin: 0 20px;
  color: #000;
  text-decoration: none;
}

#content #main #lower #breadcrumbs ol li a:hover {
  text-decoration: none;
}

/***************************************************************
           当院について
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #lower #about h2 {
  margin: 20px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/*--------------------------------------------------------------
    当院について
--------------------------------------------------------------*/
#content #main #lower #about .about_1 .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#content #main #lower #about .about_1 .table .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #about .about_1 .table .text p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #about .about_1 .table .image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #about .about_1 .table .image img {
  display: block;
  width: 100%;
}

/***************************************************************
           料金表
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #lower #price h2 {
  margin: 20px 0 0 0;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/*--------------------------------------------------------------
連絡ツール
--------------------------------------------------------------*/
#content #main #lower #price .contact_tool {
    display: block;
    width: 100%;
    margin: 20px auto 20px auto;
    box-sizing: border-box;
}
#content #main #lower #price .contact_tool .left {
    display: block;
    box-sizing: border-box;
    font-size: 0;
}
#content #main #lower #price .contact_tool .left article {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
}
#content #main #lower #price .contact_tool .left article:nth-of-type(n+3) {
    margin: 20px 0 0 0;
}
#content #main #lower #price .contact_tool .left article a {
    display: block;
    text-decoration: none;
}
#content #main #lower #price .contact_tool .left article a span.name {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: bold;  
}
#content #main #lower #price .contact_tool .left article a span.icon {
    display: block;
    margin: 5px 0 0 0;
}
#content #main #lower #price .contact_tool .left article a span.icon i {
    font-size: 50px;
}
#content #main #lower #price .contact_tool .left article:nth-of-type(1) a span.icon i {
    color: #ff8199;
}
#content #main #lower #price .contact_tool .left article:nth-of-type(2) a span.icon i {
    color: #F4B400;
}
#content #main #lower #price .contact_tool .left article:nth-of-type(3) a span.icon i {
    color: #0000ff;
}
#content #main #lower #price .contact_tool .left article:nth-of-type(4) a span.icon i {
    color: #00B900;
}
#content #main #lower #price .contact_tool .left article a span.text {
    display: block;
    margin: 5px 0 0 0;
    color: #808080;
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
}
#content #main #lower #price .contact_tool .right {
    display: block;
    margin: 20px 0 0 0;
    padding: 0 10%;
    box-sizing: border-box;
}
#content #main #lower #price .contact_tool .right p img {
    display: inline-block;
    width: 100%;
    box-shadow: 0 10px 10px -10px #000;
}

/*--------------------------------------------------------------
    保険適用
--------------------------------------------------------------*/
/* 紹介
--------------------------------------------------------------*/
#content #main #lower #price .price_1 .introduction {
  margin-top: -92px;
  padding-top: 92px;
}

#content #main #lower #price .price_1 .introduction h3 {
  margin: 20px 0 0 0;
  padding: 10px 0 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-color: #7d7d7d;
  border-width: 0 0 1px 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/* メニュー
--------------------------------------------------------------*/
#content #main #lower #price .price_1 .menu h4 {
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 10px 20px;
  border: solid #808080 1px;
  border-radius: 10px;
  color: #808080;
  font-size: 20px;
  font-weight: bold;
}

#content #main #lower #price .price_1 .menu article {
  margin: -75px 0 0 0;
  padding: 75px 0 0 0;
}

#content #main #lower #price .price_1 .menu article .flask {
  margin: 20px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
}

#content #main #lower #price .price_1 .menu article .flask p.name {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

#content #main #lower #price .price_1 .menu article .flask p.sentence {
  margin: 10px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #price .price_1 .menu article .flask ul.asterisk {
  margin: 10px 0 0 0;
  list-style: none;
}

#content #main #lower #price .price_1 .menu article .flask ul.asterisk li {
  position: relative;
  display: block;
  padding: 0 0 0 20px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #price .price_1 .menu article .flask ul.asterisk li::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  content: '\203B';
  color: #000;
  font-size: 14px;
}

/* 注意事項（モーダルウィンドウ）
--------------------------------------------------------------*/
/* スイッチ */
#content #main #lower #price .price_1 .menu article .flask ul.modal_trigger {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0;
  list-style: none;
}

#content #main #lower #price .price_1 .menu article .flask ul.modal_trigger li.modal_btn {
  display: inline-block;
  margin: 10px 0 0 0;
  color: #0000ff;
  font-size: 14px;
  text-decoration: underline;
}

/* モーダルウィンドウ */
#content #main #lower #price .price_1 .menu article .flask .modal_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 95%;
  height: 50vh;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
  color: #008000;
  font-size: 30px;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block p.midashi {
  padding: 0 0 0 20px;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 0 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block p.midashi:nth-of-type(n+2) {
  margin: 40px 0 0 0;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block p.description {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 20px 0 0 0;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table caption {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  background: #b6dbdc;
  border-style: solid;
  border-color: #dcdcdc;
  border-width: 1px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table thead {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 0 0 0;
  background: #d4e8e8;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table thead tr th {
  padding: 10px;
  border-style: solid;
  border-color: #dcdcdc;
  border-width: 1px;
  color: #000;
  font-size: 12px;
  text-align: center;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table thead tr th:nth-of-type(1) {
  width: 50%;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table thead tr th:nth-of-type(2),
#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table thead tr th:nth-of-type(3) {
  width: 25%;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tbody {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 0 0 0;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tbody tr th {
  width: 25%;
  vertical-align: middle;
  padding: 10px;
  border-style: solid;
  border-color: #dcdcdc;
  border-width: 1px;
  color: #000;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tbody tr td {
  width: 25%;
  vertical-align: middle;
  padding: 10px;
  border-style: solid;
  border-color: #dcdcdc;
  border-width: 1px;
  color: #000;
  font-size: 12px;
  text-align: center;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tfoot {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 0 0 0;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tfoot tr {
  width: 100%;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tfoot tr td {
  position: relative;
  width: 100%;
  padding: 0 0 0 20px;
  color: #ff0000;
  font-size: 12px;
  line-height: 20px;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block table tfoot tr td::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  content: '\203B';
  color: #ff0000;
  font-size: 12px;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block ul {
  margin: 20px 0 0 0;
  list-style: none;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block ul li {
  position: relative;
  display: block;
  padding: 0 0 0 20px;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #price .price_1 .menu article .flask .modal_box .modal_inner .modal_block ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  content: '\203B';
  color: #000;
  font-size: 14px;
}

/*--------------------------------------------------------------
    自費診療
--------------------------------------------------------------*/
/* 紹介
--------------------------------------------------------------*/
#content #main #lower #price .price_2 .introduction {
  margin-top: -92px;
  padding-top: 92px;
}

#content #main #lower #price .price_2 .introduction h3 {
  margin: 40px 0 0 0;
  padding: 10px 0 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-color: #7d7d7d;
  border-width: 0 0 1px 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/* メニュー
--------------------------------------------------------------*/
#content #main #lower #price .price_2 .menu h4 {
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 10px 20px;
  border: solid #808080 1px;
  border-radius: 10px;
  color: #808080;
  font-size: 20px;
  font-weight: bold;
}

#content #main #lower #price .price_2 .menu article {
  margin: 20px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  font-size: 0;
}

#content #main #lower #price .price_2 .menu article:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

#content #main #lower #price .price_2 .menu article p.name {
  display: inline-block;
  width: 80%;
  vertical-align: top;
  padding: 0 5% 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

#content #main #lower #price .price_2 .menu article p.fee {
  display: inline-block;
  width: 20%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #008000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #price .price_2 .menu article p.description {
  display: block;
  width: 100%;
  vertical-align: top;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/*--------------------------------------------------------------
詳しくはこちら
--------------------------------------------------------------*/
.more-btn {
  margin-top: 30px;
  text-align: center;
}

.more-btn a {
  background: #008000;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto;
  padding: 15px;
  position: relative;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  width: 90%;
  max-width: 250px;
}

@media (max-width: 480px) {
  .more-btn a {
    font-size: 16px;
    padding: 10px;
  }
}

.more-btn a:hover {
  opacity: 0.8;
}

.more-btn a:hover::after {
  right: 15px;
}

.more-btn a::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  margin-top: -5px;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: .3s;
  transition: .3s;
  width: 10px;
  height: 10px;
}

/*--------------------------------------------------------------
キャンセルポリシー
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
#content #main #lower #price .price_6 {
    margin: 40px 0 0 0;
    padding: 20px;
    box-sizing: border-box;
    background: #f5f5f5;
    border: solid 2px #008000;
}
/* 見出し
--------------------------------------------------------------*/
#content #main #lower #price .price_6 .midashi p {
    color: #191970;
    font-size: 20px;
    font-weight: bold;
}
/* テキスト
--------------------------------------------------------------*/
#content #main #lower #price .price_6 .description p {
    margin: 20px 0 0 0;
    color: #191970;
    font-size: 14px;
    line-height: 20px;
}
#content #main #lower #price .price_6 .description p span {
    display: block;
    font-weight: bold;
}
#content #main #lower #price .price_6 .description p br.pc {
    display: none;
}

/*--------------------------------------------------------------
不調
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
#content #main #lower #price .price_3 {
    margin: 40px 0 0 0;
}
/* 画像
--------------------------------------------------------------*/
#content #main #lower #price .price_3 p img {
    display: inline-block;
    width: 100%;
}
#content #main #lower #price .price_3 p img.pc {
    display: none;
}

/*--------------------------------------------------------------
メッセージ
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
#content #main #lower #price .price_4 {
  margin: 40px 0 0 0;
  text-align: center;
}

/* テキスト
--------------------------------------------------------------*/
#content #main #lower #price .price_4 p {
  color: #400000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-decoration: underline;
}

#content #main #lower #price .price_4 p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

/*--------------------------------------------------------------
当院ではクレジットカード、電子マネーをご利用いただけます
--------------------------------------------------------------*/
/* 領域
--------------------------------------------------------------*/
#content #main #lower #price .price_5 {
  margin: 40px 0 0 0;
}

/* 見出し
--------------------------------------------------------------*/
#content #main #lower #price .price_5 .midashi {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0;
}

#content #main #lower #price .price_5 .midashi p.left {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #price .price_5 .midashi p.left img {
  display: inline-block;
  width: 100%;
}

#content #main #lower #price .price_5 .midashi p.right {
  display: inline-block;
  width: 70%;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

#content #main #lower #price .price_5 .midashi p.right br {
  display: none;
}

/* クレジットカード
--------------------------------------------------------------*/
#content #main #lower #price .price_5 .credit {
  padding: 10px 5px;
  border-style: double;
  border-color: #fef6ea;
  border-width: 5px 5px 0 5px;
}

#content #main #lower #price .price_5 .credit p.komidashi {
  color: #808080;
  font-size: 14px;
  font-weight: bold;
}

#content #main #lower #price .price_5 .credit p.list {
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0;
}

#content #main #lower #price .price_5 .credit p.list span.image {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #price .price_5 .credit p.list span.image img {
  display: inline-block;
  width: 100%;
}

#content #main #lower #price .price_5 .credit p.list span.text {
  display: inline-block;
  width: 20%;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  text-align: center;
}

/* 電子マネー
--------------------------------------------------------------*/
#content #main #lower #price .price_5 .electronic {
  padding: 10px 5px;
  border-style: double;
  border-color: #fef6ea;
  border-width: 0 5px 5px 5px;
}

#content #main #lower #price .price_5 .electronic p.komidashi {
  color: #808080;
  font-size: 14px;
  font-weight: bold;
}

#content #main #lower #price .price_5 .electronic p.list {
  margin: 10px 0 0 0;
}

#content #main #lower #price .price_5 .electronic p.list img {
  display: inline-block;
  width: 80%;
}

/***************************************************************
           スタッフ
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #lower #staff h2 {
  margin: 20px 0 0 0;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/*--------------------------------------------------------------
    スタッフ情報
--------------------------------------------------------------*/
/* 余白
--------------------------------------------------------------*/
#content #main #lower #staff .staff_1 article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0;
}

/* 名前
--------------------------------------------------------------*/
#content #main #lower #staff .staff_1 article p.name {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
}

#content #main #lower #staff .staff_1 article p.name span {
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 0 0 5px 0;
  border-style: solid;
  border-width: 0 0 5px 0;
  border-color: #808080;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

#content #main #lower #staff .staff_1 article p.name span b {
  display: inline-blok;
  margin: 0 0 0 10px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/* 文章
--------------------------------------------------------------*/
#content #main #lower #staff .staff_1 article p.sentence {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 3;
  order: 3;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/* 画像
--------------------------------------------------------------*/
#content #main #lower #staff .staff_1 article p.image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #staff .staff_1 article p.image img {
  display: block;
  width: 100%;
}

/* リスト
--------------------------------------------------------------*/
#content #main #lower #staff .staff_1 article dl {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 4;
  order: 4;
  width: 100%;
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  border-style: dotted;
  border-width: 1px 0 0 0;
  border-color: #808080;
  font-size: 0;
}

#content #main #lower #staff .staff_1 article dl dt {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #808080;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

#content #main #lower #staff .staff_1 article dl dd {
  display: inline-block;
  width: 70%;
  vertical-align: top;
  padding: 5px 0 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
}

#content #main #lower #staff .staff_1 article dl dt:nth-of-type(n+2),
#content #main #lower #staff .staff_1 article dl dd:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

/***************************************************************
           よくある質問
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #lower #qa h2 {
  margin: 20px 0 0 0;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/*--------------------------------------------------------------
    Q&A
--------------------------------------------------------------*/
#content #main #lower #qa article {
  margin: 20px 0 0 0;
  padding: 10px;
  border-style: solid;
  border-color: #fbe3be;
  border-width: 3px;
}

#content #main #lower #qa article dl {
  font-size: 0;
}

#content #main #lower #qa article dl:nth-of-type(1) {
  padding: 0 0 10px 0;
}

#content #main #lower #qa article dl:nth-of-type(2) {
  padding: 10px 0 0 0;
  border-style: dotted;
  border-color: #f99717;
  border-width: 1px 0 0 0;
}

#content #main #lower #qa article dl dt {
  display: inline-block;
  width: 10%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #qa article dl dt span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ff8199;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
}

#content #main #lower #qa article dl:nth-of-type(1) dt span {
  background: #ff8199;
}

#content #main #lower #qa article dl:nth-of-type(2) dt span {
  background: #87CEFA;
}

#content #main #lower #qa article dl dd {
  display: inline-block;
  width: 90%;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/***************************************************************
           新着情報
***************************************************************/
/***************************************************************
           ブログ
***************************************************************/
/***************************************************************
症状別メニュー
〇肩こり・肩周辺の痛み
〇腰痛・腰周辺の痛み
〇膝・脚の痛み、むくみ
〇鍼
〇美容鍼
〇交通事故
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#content #main #lower #menu h2 {
  margin: 20px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #008000;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/*--------------------------------------------------------------
連絡ツール
--------------------------------------------------------------*/
#content #main #lower #menu .contact_tool {
    display: block;
    width: 100%;
    margin: 20px auto 20px auto;
    box-sizing: border-box;
}
#content #main #lower #menu .contact_tool .left {
    display: block;
    box-sizing: border-box;
    font-size: 0;
}
#content #main #lower #menu .contact_tool .left article {
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
}
#content #main #lower #menu .contact_tool .left article:nth-of-type(n+3) {
    margin: 20px 0 0 0;
}
#content #main #lower #menu .contact_tool .left article a {
    display: block;
    text-decoration: none;
}
#content #main #lower #menu .contact_tool .left article a span.name {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: bold;  
}
#content #main #lower #menu .contact_tool .left article a span.icon {
    display: block;
    margin: 5px 0 0 0;
}
#content #main #lower #menu .contact_tool .left article a span.icon i {
    font-size: 50px;
}
#content #main #lower #menu .contact_tool .left article:nth-of-type(1) a span.icon i {
    color: #ff8199;
}
#content #main #lower #menu .contact_tool .left article:nth-of-type(2) a span.icon i {
    color: #F4B400;
}
#content #main #lower #menu .contact_tool .left article:nth-of-type(3) a span.icon i {
    color: #0000ff;
}
#content #main #lower #menu .contact_tool .left article:nth-of-type(4) a span.icon i {
    color: #00B900;
}
#content #main #lower #menu .contact_tool .left article a span.text {
    display: block;
    margin: 5px 0 0 0;
    color: #808080;
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
}
#content #main #lower #menu .contact_tool .right {
    display: block;
    margin: 20px 0 0 0;
    padding: 0 10%;
    box-sizing: border-box;
}
#content #main #lower #menu .contact_tool .right p img {
    display: inline-block;
    width: 100%;
    box-shadow: 0 10px 10px -10px #000;
}

/*--------------------------------------------------------------
    悩み
--------------------------------------------------------------*/
/* 見出し
--------------------------------------------------------------*/
#content #main #lower #menu .menu_1 h3 {
  margin: 30px 0 0 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

#content #main #lower #menu .menu_1 h3 strong {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffd79c));
  background: linear-gradient(transparent 50%, #ffd79c 50%);
}

#content #main #lower #menu .menu_1 h3 span {
  position: relative;
  color: #000;
  font-size: 25px;
  font-weight: bold;
}

#content #main #lower #menu .menu_1 h3 span::after {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "・";
  color: #008000;
  font-size: 20px;
}

/* テーブル
--------------------------------------------------------------*/
#content #main #lower #menu .menu_1 .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#content #main #lower #menu .menu_1 .table .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #menu .menu_1 .table .text p {
  padding: 10px 0;
  border-style: dotted;
  border-color: #000;
  border-width: 0 0 1px 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/* チェックマーク */
#content #main #lower #menu .menu_1 .table .text p.checkmark {
  position: relative;
  padding-left: 40px;
}

#content #main #lower #menu .menu_1 .table .text p.checkmark::after {
  position: absolute;
  content: "";
  display: block;
  top: 10px;
  left: 5px;
  width: 15px;
  height: 5px;
  border-left: 5px solid #008000;
  border-bottom: 5px solid #008000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#content #main #lower #menu .menu_1 .table .image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #menu .menu_1 .table .image p img {
  display: inline-block;
  width: 100%;
}

/*--------------------------------------------------------------
    原因
--------------------------------------------------------------*/
/* 見出し
--------------------------------------------------------------*/
#content #main #lower #menu .menu_2 h4 {
  margin: 40px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-color: #808080;
  border-width: 0 0 3px 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}

/* テーブル
--------------------------------------------------------------*/
#content #main #lower #menu .menu_2 .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#content #main #lower #menu .menu_2 .table .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #menu .menu_2 .table .text p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #menu .menu_2 .table .image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #menu .menu_2 .table .image p img {
  display: inline-block;
  width: 100%;
}

/* テキスト
--------------------------------------------------------------*/
#content #main #lower #menu .menu_2 > .text p {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/*--------------------------------------------------------------
    特徴
--------------------------------------------------------------*/
/* 見出し
--------------------------------------------------------------*/
#content #main #lower #menu .menu_3 h5 {
  margin: 40px 0 0 0;
  padding: 0 0 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: double;
  border-color: #FFC778;
  border-width: 0 0 5px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

/* テーブル
--------------------------------------------------------------*/
#content #main #lower #menu .menu_3 .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fef6ea;
}

#content #main #lower #menu .menu_3 .table .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #menu .menu_3 .table .text p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

#content #main #lower #menu .menu_3 .table .image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#content #main #lower #menu .menu_3 .table .image p img {
  display: inline-block;
  width: 100%;
}

/***************************************************************
美容鍼
***************************************************************/
.menu__container {
  margin-top: 50px;
}

.menu__container:first-child {
  margin-top: 0;
}

.menu__ttl01 {
  font-family: 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin: 30px 0;
}

@media (max-width: 600px) {
  .menu__ttl01 {
    font-size: 24px;
    font-size: 5.5vw;
  }
}

.menu__ttl02 {
  margin: 40px 0 0 0;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-color: #808080;
  border-width: 0 0 3px 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.menu__ttl03 {
  color: #f20000;
  font-family: 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 600px) {
  .menu__ttl03 {
    font-size: 20px;
    font-size: 5vw;
  }
}

.menu__ttl04 {
  margin: 40px 0 0 0;
  padding: 0 10px 15px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: double;
  border-color: #FFC778;
  border-width: 0 0 5px 0;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.menu__img.-center {
  text-align: center;
}

.menu__img img {
  height: auto;
  max-width: 100%;
}

.menu__txt {
  line-height: 1.5;
  margin-top: 1em;
}

.menu__txt.-center {
  text-align: center;
}

.menu__txt.-note {
  font-size: 90%;
  margin-left: 1em;
  text-indent: -1em;
}

/* menu-marker */
[class^="menu-marker"] {
  font-weight: inherit;
}

.menu-marker01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffd79c));
  background: linear-gradient(transparent 50%, #ffd79c 50%);
}

.menu-marker02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fdeed7));
  background: linear-gradient(transparent 50%, #fdeed7 50%);
}

/* menu-check-list */
.menu-check-list__item {
  border-bottom: 1px dotted #333;
  font-size: 18px;
  line-height: 1.5;
  list-style: none;
  padding: 10px 0 5px 40px;
  position: relative;
}

.menu-check-list__item::after {
  position: absolute;
  content: "";
  display: block;
  top: 20px;
  left: 5px;
  width: 15px;
  height: 5px;
  border-left: 5px solid #008000;
  border-bottom: 5px solid #008000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* menu-num-list */
.menu-num-list {
  counter-reset: num 0;
}

.menu-num-list__item {
  counter-increment: num 1;
  list-style: none;
  line-height: 1.5;
  padding: 1em 0 5px 34px;
  position: relative;
}

.menu-num-list__item::before {
  color: #28a828;
  content: counter(num);
  font-family: 'Hiragino Kaku Gothic Pro', "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  left: 0;
}

/* needle */
.needle__ttl {
  color: #8a4700;
  font-size: 18px;
  font-weight: bold;
  margin: 1em 0;
}

.needle__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.needle__thickness {
  position: relative;
  width: 20%;
}

.needle__thickness::before {
  border-bottom: 270px solid #ddd;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}

.needle__thin,
.needle__thick {
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.needle__thin {
  top: 3%;
}

.needle__thick {
  bottom: 3%;
}

.needle__txt {
  width: 75%;
}

@media (max-width: 480px) {
  .needle__box {
    display: block;
    position: relative;
  }
  .needle__thickness {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .needle__thickness::before {
    border-bottom: 400px solid #ddd;
    border-right: 70px solid transparent;
    border-left: 70px solid transparent;
  }
  .needle__thin,
  .needle__thick {
    display: none;
  }
  .needle__txt {
    width: 100%;
  }
}


/***************************************************************
ルート鍼
***************************************************************/
/* ビジュアル */
#menu .menu_5 .hari_1 p.satisfaction {
  text-align: center;
}
#menu .menu_5 .hari_1 p.satisfaction img {
  display: inline-block;
  width: 100%;
  max-width: 200px;
}
#menu .menu_5 .hari_1 h3 {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
#menu .menu_5 .hari_1 h3 span {
  color: #000;
  font-size: 25px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffd79c));
  background: linear-gradient(transparent 50%, #ffd79c 50%);
}
#menu .menu_5 .hari_1 p.visual {
  margin: 20px 0 0 0;
}
#menu .menu_5 .hari_1 p.visual img {
  display: inline-block;
  width: 100%;
}
#menu .menu_5 .hari_1 p.caution {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/* こんな悩みありませんか? */
#menu .menu_5 .hari_2 {
  background: url("image.php?id=60");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100px;
}
#menu .menu_5 .hari_2 h4 {
  margin: 40px 0 0 0;
  padding: 10px 5px;
  border-left: solid #808080 5px;
  border-bottom: solid #808080 3px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}
#menu .menu_5 .hari_2 p {
  padding: 15px 0;
  border-style: dotted;
  border-color: #000;
  border-width: 0 0 1px 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  z-index: 1;
}
#menu .menu_5 .hari_2 p.checkmark {
  position: relative;
  padding-left: 40px;
}
#menu .menu_5 .hari_2 p.checkmark::after {
  position: absolute;
  content: "";
  display: block;
  top: 18px;
  left: 5px;
  width: 10px;
  height: 5px;
  border-left: 4px solid #008000;
  border-bottom: 4px solid #008000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 辛い・重い・気だるい */
#menu .menu_5 .hari_3 p.image {
  margin: 40px 0 0 0;
}
#menu .menu_5 .hari_3 p.image img {
  display: inline-block;
  width: 100%;
}
#menu .menu_5 .hari_3 p.text {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
#menu .menu_5 .hari_3 p.text span.part_1 {
  display: inline-block;
  color: #ff4500;
  font-size: 25px;
  font-weight: bold; 
}
#menu .menu_5 .hari_3 p.text span.part_2 {
  display: inline-block;
  color: #dc143c;
  font-size: 25px;
  font-weight: bold; 
}

/* 当院の鍼へのこだわり */
#menu .menu_5 .hari_4 h4 {
  margin: 40px 0 0 0;
  padding: 0 10px 5px 10px;
  border-style: double;
  border-color: #FFC778;
  border-width: 0 0 5px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
} 
#menu .menu_5 .hari_4 .text {
  margin: 20px 0 0 0;
  padding: 20px 10px;
  background: #fef6ea;
}
#menu .menu_5 .hari_4 .text p.text_1 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #ffd090), color-stop(90%, #ff8d00));
  background: linear-gradient(#ffd090 10%, #ff8d00 90%);
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}
#menu .menu_5 .hari_4 .text p.text_2 {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
#menu .menu_5 .hari_4 .text p.text_2 span {
  display: inline-block;
  color: #ff4500;
  font-size: 20px;
  font-weight: bold;
}
#menu .menu_5 .hari_4 .text p.text_3 {
  margin: 20px 0 0 0;
  color: #808080;
  font-size: 14px;
  line-height: 20px;
}
#menu .menu_5 .hari_4 .text p.text_3 span {
  color: #dc143c;
  font-weight: bold;
}

/* 鍼の種類・本数 */
#menu .menu_5 .hari_5 h4 {
  margin: 40px 0 0 0;
  padding: 10px 5px;
  border-left: solid #808080 5px;
  border-bottom: solid #808080 3px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}
#menu .menu_5 .hari_5 p.explanation {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
#menu .menu_5 .hari_5 p span {
  display: block;
  margin: 10px 0 0 0;
}
#menu .menu_5 .hari_5 h5 {
  margin: 20px 0 0 0;
  color: #8a4700;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
#menu .menu_5 .hari_5 .table {
    display: table;
    width: 100%;
    margin: 20px 0 0 0;
    box-sizing: border-box;
}
#menu .menu_5 .hari_5 .table .left {
    display: table-cell;
    width: 80%;
    vertical-align: middle;
    box-sizing: border-box;
}
#menu .menu_5 .hari_5 .table .left dl {
  box-sizing: border-box;
  font-size: 0;
}
#menu .menu_5 .hari_5 .table .left dl dt {
  display: inline-block;
  width: 15%;
  vertical-align: top;
  box-sizing: border-box;
  color: #28a828;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}
#menu .menu_5 .hari_5 .table .left dl dt:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}
#menu .menu_5 .hari_5 .table .left dl dd {
  display: inline-block;
  width: 85%;
  vertical-align: top;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}
#menu .menu_5 .hari_5 .table .left dl dd br {
  display: none;
}
#menu .menu_5 .hari_5 .table .left dl dd:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}
#menu .menu_5 .hari_5 .table .right {
    display: table-cell;
    width: 20%;
    vertical-align: middle;
    box-sizing: border-box;
    text-align: center;
}
#menu .menu_5 .hari_5 .table .right p img {
    display: inline-block;
    width: 100%;
}
#menu .menu_5 .hari_5 p.caution {
  margin: 10px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/* 患者様の声 */
#menu .menu_5 .hari_6 p.concept {
  margin: 40px 0 0 0;
  color: #ff4500;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
#menu .menu_5 .hari_6 p.concept span {
  display: inline-block;
  color: #dc143c;
  font-size: 25px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffd79c));
  background: linear-gradient(transparent 50%, #ffd79c 50%);
}
#menu .menu_5 .hari_6 p.triangle {
  width: 100%;
  height: auto;
  margin: 20px 0 0 0;
  padding: 10px 0;
  background: url("image.php?id=65");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: 0;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
}
#menu .menu_5 .hari_6 h4 {
  margin: 20px 0 0 0;
  padding: 0 10px 5px 10px;
  border-style: double;
  border-color: #FFC778;
  border-width: 0 0 5px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}
#menu .menu_5 .hari_6 .voice {
  margin: 20px 0 0 0;
  padding: 20px 10px;
  background: #fef6ea;
}
#menu .menu_5 .hari_6 .voice article {
  padding: 20px 10px;
  box-sizing: border-box;
  background: #fff;
  font-size: 0;
}
#menu .menu_5 .hari_6 .voice article:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}
#menu .menu_5 .hari_6 .voice article p.sex {
  display: inline-block;
  width: 30%;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
#menu .menu_5 .hari_6 .voice article p.sex span.women {
  color: #ff0000;
  font-weight: bold;
}
#menu .menu_5 .hari_6 .voice article p.sex span.men {
  color: #0000ff;
  font-weight: bold;
}
#menu .menu_5 .hari_6 .voice article p.name {
  display: inline-block;
  width: 30%;
  box-sizing: border-box;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
#menu .menu_5 .hari_6 .voice article p.comment {
  margin: 10px 0 0 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
}

/* ラストメッセージ */
#menu .menu_5 .hari_7 p {
  margin: 40px 0 0 0;
  color: #400000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}


/***************************************************************
交通事故
***************************************************************/
/* そのお悩み、当院にお任せください! */
#menu .accident_1 {
    margin: 40px 0 0 0;
    background: url("image.php?id=55");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
#menu .accident_1 p {
    padding: 10px 0;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
/* 当院が選ばれる7つの理由 */
#menu .accident_2 {
    margin: 40px 0 0 0;
    padding: 40px 5px 0 5px;
    background: #fef6ea;
}

#menu .accident_2 h3 {
    position: relative;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    z-index: 1;
}
#menu .accident_2 h3 b {
    display: inline-block;
    color: #008000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
}
#menu .accident_2 h3 span {
    position: absolute;
    top: -50%;
    left: 5%;
    width: 50px;
    height: 50px;
    content: '';
    background: #fff;
    border-radius: 50%;
    z-index: -1;
}

#menu .accident_2 dl {
    margin: 40px 0 0 0;
    box-sizing: border-box;
    font-size: 0;
}
#menu .accident_2 dl dt {
    display: inline-block;
    width: 20%;
    vertical-align: top;
    padding: 20px 0;
    box-sizing: border-box;
}
#menu .accident_2 dl dt:nth-of-type(1) {
    padding: 0 0 20px 0;
}
#menu .accident_2 dl dt span {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 5px 0 0 0;
    box-sizing: border-box;
    background: #fff;
    border-radius: 50%;
    color: #ff8199;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}
#menu .accident_2 dl dd {
    display: inline-block;
    width: 80%;
    vertical-align: top;
    padding: 20px 0;
    box-sizing: border-box;
    color: #000;
    font-size: 14px;
    line-height: 20px;
}
#menu .accident_2 dl dd:nth-of-type(1) {
    padding: 0 0 20px 0;
}
#menu .accident_2 dl dd br {
    display: none;
}
#menu .accident_2 dl dd span {
    display: block;
    margin: 0 0 10px 0;
    color: #ff8199;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}
#menu .accident_2 dl dd span br {
    display: none;
}
#menu .accident_2 dl dt:nth-of-type(n+2),
#menu .accident_2 dl dd:nth-of-type(n+2) {
    border-style: dashed;
    border-color: #d3d3d3;
    border-width: 1px 0 0 0;
}


/***************************************************************
花粉症専用の特別オーダー鍼治療
***************************************************************/
.menu__container.osusume {
    background: url("image.php?id=69");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100px;
}
.menu__container.osusume p.checkmark {
    position: relative;
    padding: 15px 0 15px 40px;
    border-style: dotted;
    border-color: #000;
    border-width: 0 0 1px 0;
    color: #000;
  font-size: 14px;
  line-height: 20px;
}
.menu__container.osusume p.checkmark::after {
  position: absolute;
  content: "";
  display: block;
  top: 18px;
  left: 5px;
  width: 10px;
  height: 5px;
  border-left: 4px solid #008000;
  border-bottom: 4px solid #008000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu__container.osusume p.checkmark:nth-of-type(1) {
    margin: 20px 0 0 0;
}


/***************************************************************
自律神経
***************************************************************/
/* 工事中 */
#menu .nerves .preparation {
    position: relative;
    margin: 20px 0 20px 0;
}
#menu .nerves .preparation p.image {
    padding: 0;
    text-align: center;
}
#menu .nerves .preparation p.image img {
    display: inline-block;
    width: 100%;
    max-width: 400px;
}
#menu .nerves .preparation p.text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}
#menu .nerves .preparation p.text span {
    display: block;
    margin: 20px 0 0 0;
    color: #000;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}