@charset "UTF-8";
/* 基本情報 */
/***************************************************************
基本
***************************************************************/
/*--------------------------------------------------------------
本体
--------------------------------------------------------------*/
body {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, "MS PGothic", arial, helvetica, 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: #492902;
}

header #common h1 {
  padding: 10px 0;
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
}

/***************************************************************
タブレット&スマートフォン
***************************************************************/
/*--------------------------------------------------------------
背景（z-index設定の為のposition: relative）
--------------------------------------------------------------*/
header #sp {
  position: relative;
}

/*--------------------------------------------------------------
アイコン
--------------------------------------------------------------*/
header #sp .icon {
  z-index: 4;
  position: relative;
  width: 100%;
  height: 90px;
  background: #fbf6ef;
}

header #sp .icon a:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  display: inline-block;
}

header #sp .icon a:nth-of-type(1) img {
  display: inline-block;
  width: auto;
  height: 60px;
}

header #sp .icon a:nth-of-type(2) {
  position: absolute;
  top: 50%;
  right: 160px;
  transform: translate(0, -50%);
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  background: #ff9901;
  border-radius: 5px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
}

header #sp .icon a:nth-of-type(2) span {
  display: block;
  color: #fff;
  font-size: 14px;
}

header #sp .icon a:nth-of-type(3) {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translate(0, -50%);
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  background: #ff9901;
  border-radius: 5px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
}

header #sp .icon a:nth-of-type(3) span {
  display: block;
  color: #fff;
  font-size: 14px;
}

/*--------------------------------------------------------------
ハンバーガーメニュー
--------------------------------------------------------------*/
/* 領域 */
.globalMenuSp {
  display: none;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.globalMenuSp.active {
  display: block;
  transform: translateY(90px);
}

/*--------------------------------------------------------------
メニュー
--------------------------------------------------------------*/
.globalMenuSp .menu {
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.2);
}

.globalMenuSp .menu p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

.globalMenuSp .menu p a {
  display: block;
  padding: 10px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.globalMenuSp .menu p span.text_1 {
  display: block;
  padding: 10px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}

.globalMenuSp .menu p span.text_2 a {
  position: relative;
  display: block;
  padding: 10px 50px;
  background: #fff;
  border-style: solid;
  border-color: #d3d3d3;
  border-width: 1px 0 0 0;
  color: #000;
  font-size: 20px;
  font-weight: normal;
  text-decoration: none;
}

.globalMenuSp .menu p span.text_2 a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  content: ">";
  color: #000;
  font-size: 20px;
}

/*--------------------------------------------------------------
トグル（タップ前）
--------------------------------------------------------------*/
.navToggle {
  display: block;
  position: absolute;
  /* bodyに対しての絶対位置指定 */
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #89b74f;
  border-radius: 5px;
  cursor: pointer;
  z-index: 4;
  text-align: center;
}

.navToggle p {
  display: block;
  position: absolute;
  /* .navToggleに対して */
  width: 30px;
  border-bottom: solid 3px #fff;
  transition: 0.35s ease-in-out;
  left: 14px;
}

.navToggle p:nth-child(1) {
  top: 14px;
}

.navToggle p:nth-child(2) {
  top: 24px;
}

.navToggle p:nth-child(3) {
  top: 34px;
}

.navToggle span {
  display: block;
  padding: 40px 0 0 0;
  color: #fff;
  font-size: 14px;
}

/*--------------------------------------------------------------
トグル（タップ後）
--------------------------------------------------------------*/
/* 最初のspanをマイナス45度に */
.navToggle.active p:nth-child(1) {
  top: 24px;
  left: 14px;
  transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active p:nth-child(2),
.navToggle.active p:nth-child(3) {
  top: 24px;
  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_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;
}

/* ドロップダウン
--------------------------------------------------------------*/
.dropmenu {
  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: #F1F8E0;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
}

footer .copyright small a {
  color: #1a0dab;
}

/***************************************************************
ページトップヘ戻る
***************************************************************/
/*--------------------------------------------------------------
テキスト
--------------------------------------------------------------*/
footer .back p.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: -ms-flexbox;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #FF9901;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* ビジュアル */
/***************************************************************
ビジュアル
***************************************************************/
/*--------------------------------------------------------------
背景
--------------------------------------------------------------*/
#visual {
  background: #fbf6ef;
}

/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#visual .flask {
  padding: 154px 0 0 0;
  box-sizing: border-box;
}

/*--------------------------------------------------------------
画像
--------------------------------------------------------------*/
/* タブレット&スマートフォン
--------------------------------------------------------------*/
#visual .flask p.sp img {
  display: inline-block;
  width: 100%;
}

/* パソコン
--------------------------------------------------------------*/
#visual .flask p.pc img {
  display: none;
}

/* コンテンツ */
/***************************************************************
ベース
***************************************************************/
/*--------------------------------------------------------------
領域
--------------------------------------------------------------*/
#content {
  position: static;
  width: 95%;
  margin: 0 auto;
  padding: 20px 0;
  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 tbody tr td:nth-of-type(n+2) {
  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 .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%;
}

/* ホーム */
/***************************************************************
バナーエリア
***************************************************************/
.home-banner {
  margin-bottom: 20px;
}

.home-banner img {
  display: block;
  height: auto;
  margin: 0 auto 10px;
  max-width: 100%;
}

.home-banner img:last-child {
  margin-bottom: 0;
}

/***************************************************************
はじめ
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #home #beginning h2 {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

#content #main #home #beginning h2 strong {
  display: inline-block;
  background: linear-gradient(to bottom, transparent 50%, #ffd79c 50%);
}

#content #main #home #beginning h2 span {
  position: relative;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

#content #main #home #beginning h2 span::after {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  content: "・";
  color: #f99400;
  font-size: 30px;
}

/*--------------------------------------------------------------
文章
--------------------------------------------------------------*/
#content #main #home #beginning .sentence p {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #home #beginning .sentence p br {
  display: none;
}

/***************************************************************
ポイント
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #home #point h2 {
  margin: 50px 0 0 0;
  padding: 0 0 20px 0;
  box-sizing: border-box;
  border-style: solid;
  border-color: #ffc0cc;
  border-width: 0 0 3px 0;
  color: #400000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
}

#content #main #home #point h2 span {
  display: inline-block;
  font-size: 35px;
  font-weight: bold;
}

/*--------------------------------------------------------------
各ポイント
--------------------------------------------------------------*/
/* 開時
--------------------------------------------------------------*/
#content #main #home #point .accordion article {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  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;
  box-sizing: border-box;
}

#content #main #home #point .accordion article > div p.number img {
  display: inline-block;
  width: 100%;
}

#content #main #home #point .accordion article > div h3 {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
  padding: 0 0 0 10px;
  box-sizing: border-box;
  color: #400000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

#content #main #home #point .accordion article > div h3 {
  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;
  box-sizing: border-box;
  color: #400000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #home #point .accordion article > p span.image {
  display: block;
  width: 100%;
  margin: 10px 0 0 0;
  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;
  transition: all 0.3s;
  box-sizing: border-box;
}

#content #main #home #point .accordion article .accordion_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  background: #400000;
  border-radius: 50%;
}

#content #main #home #point .accordion article .accordion_icon i {
  position: absolute;
  top: 46%;
  left: 14%;
  transform: translate(-14%, -46%);
  width: 30px;
  height: 6px;
  background: #fff;
}

#content #main #home #point .accordion article .accordion_icon i:nth-of-type(1) {
  transform: rotate(0deg);
}

#content #main #home #point .accordion article .accordion_icon i:nth-of-type(2) {
  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) {
  transform: rotate(180deg);
}

/***************************************************************
改善方法
***************************************************************/
/*--------------------------------------------------------------
背景
--------------------------------------------------------------*/
#content #main #home #method {
  margin: 50px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #ffa500;
  text-align: center;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #home #method h2 span {
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-style: solid;
  border-color: #fff;
  border-width: 0 0 5px 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

#content #main #home #method h2 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
}

/*--------------------------------------------------------------
テキスト_1
--------------------------------------------------------------*/
#content #main #home #method p.text_1 {
  margin: 20px 0 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

/*--------------------------------------------------------------
テキスト_2
--------------------------------------------------------------*/
#content #main #home #method p.text_2 {
  margin: 20px 0 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

/*--------------------------------------------------------------
youtube
--------------------------------------------------------------*/
.link-youtube {
  background: #fff;
  margin-top: 15px;
}

.link-youtube a {
  background: #fff;
  display: block;
  padding: 15px;
}

.link-youtube a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.link-youtube img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.link-youtube span {
  color: #89b74f;
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

/***************************************************************
なごみ整体院の施術理論
***************************************************************/
/*--------------------------------------------------------------
見出し_1
--------------------------------------------------------------*/
#content #main #home #improvement h2 {
  margin: 50px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
見出し_2
--------------------------------------------------------------*/
#content #main #home #improvement h3 {
  margin: 20px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  border-style: solid;
  border-color: #89B74F;
  border-width: 0 0 3px 5px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}

/*--------------------------------------------------------------
テーブル
--------------------------------------------------------------*/
#content #main #home #improvement .table {
  margin: 20px 0 0 0;
  box-sizing: border-box;
  font-size: 0;
}

#content #main #home #improvement .table .image {
  display: inline-block;
  width: 40%;
  vertical-align: middle;
  box-sizing: border-box;
}

#content #main #home #improvement .table .image p img {
  display: block;
  width: 100%;
}

#content #main #home #improvement .table .midashi {
  display: inline-block;
  width: 60%;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 0 0 0 50px;
}

#content #main #home #improvement .table .midashi h4 {
  color: #F99400;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
}

#content #main #home #improvement .table .text {
  display: inline-block;
  margin: 20px 0 0 0;
  width: 100%;
  vertical-align: top;
  box-sizing: border-box;
}

#content #main #home #improvement .table .text p {
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #home #improvement .table .text p:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}

#content #main #home #improvement .table .text p span {
  display: block;
  margin: 0 0 10px 0;
  color: #000;
  font-weight: bold;
  font-size: 30px;
}

/***************************************************************
新着情報
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #home #news h2 {
  margin: 50px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
リスト
--------------------------------------------------------------*/
#content #main #home #news a {
  display: block;
  padding: 20px 0;
  border-style: solid;
  border-color: #89b74f;
  border-width: 0 0 1px 0;
  font-size: 0;
  text-decoration: none;
}

#content #main #home #news a:hover {
  opacity: 0.8;
}

#content #main #home #news a span:nth-of-type(1) {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #home #news a span:nth-of-type(2) {
  display: inline-block;
  width: 70%;
  vertical-align: top;
  color: #000;
  font-size: 20px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/***************************************************************
悩み
***************************************************************/
/*--------------------------------------------------------------
症状
--------------------------------------------------------------*/
#content #main #home #trouble .symptoms {
  margin: 50px 0 0 0;
  box-sizing: border-box;
  font-size: 0;
}

#content #main #home #trouble .symptoms a {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #89b74f;
  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: #F99400;
}

#content #main #home #trouble .symptoms a span.text_1 {
  display: block;
  height: 150px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right center;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #home #trouble .symptoms a:nth-of-type(1) span.text_1 {
  background-image: url("/image.php?id=7");
}

#content #main #home #trouble .symptoms a:nth-of-type(2) span.text_1 {
  background-image: url("/image.php?id=8");
}

#content #main #home #trouble .symptoms a:nth-of-type(3) span.text_1 {
  background-image: url("/image.php?id=9");
}

#content #main #home #trouble .symptoms a:nth-of-type(4) span.text_1 {
  background-image: url("/image.php?id=10");
}

#content #main #home #trouble .symptoms a:nth-of-type(5) span.text_1 {
  background-image: url("/image.php?id=11");
}

#content #main #home #trouble .symptoms a:nth-of-type(6) span.text_1 {
  background-image: url("/image.php?id=12");
}

#content #main #home #trouble .symptoms a:nth-of-type(7) span.text_1 {
  background-image: url("/image.php?id=13");
}

#content #main #home #trouble .symptoms a:nth-of-type(8) span.text_1 {
  background-image: url("/image.php?id=29");
}

#content #main #home #trouble .symptoms a:nth-of-type(9) span.text_1 {
  background-image: url("/image.php?id=52");
}

#content #main #home #trouble .symptoms a span.text_2 {
  display: block;
  margin: 10px 0 0 0;
  height: 20px;
  color: #000;
  font-size: 20px;
  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: #89b74f;
}

#content #main #home #trouble .symptoms a:hover span.text_2 i {
  color: #F99400;
}

/***************************************************************
グーグルカレンダー
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #home #calendar {
  text-align: center;
}

#content #main #home #calendar h2 {
  position: relative;
  display: inline-block;
  margin: 50px 0 20px 0;
  padding: 0 100px;
  color: #400000;
  font-size: 30px;
  font-weight: bold;
}

#content #main #home #calendar h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 50px;
  height: 5px;
  background-color: #F99400;
  transform: rotate(70deg);
}

#content #main #home #calendar h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 50px;
  height: 5px;
  background-color: #F99400;
  transform: rotate(-70deg);
}

#content #main #home #calendar h2 span {
  color: #89b74f;
  font-size: 50px;
  font-weight: bold;
}

/*--------------------------------------------------------------
iframe
--------------------------------------------------------------*/
#content #main #home #calendar iframe {
  width: 100%;
  height: 600px;
}

/***************************************************************
アクセス
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #home #access h2 {
  margin: 50px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
余白0
--------------------------------------------------------------*/
#content #main #home #access {
  font-size: 0;
}

/*--------------------------------------------------------------
画像
--------------------------------------------------------------*/
#content #main #home #access .image {
  display: block;
  margin: 20px 0 0 0;
  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;
  box-sizing: border-box;
}

/* 診療時間
--------------------------------------------------------------*/
#content #main #home #access .basic table {
  width: 100%;
}

#content #main #home #access .basic table thead tr th {
  padding: 5px 0;
  background: #89b74f;
  border-style: solid;
  border-color: #D0F5A9;
  border-width: 1px;
  color: #fff;
  font-size: 20px;
}

#content #main #home #access .basic table tbody tr td {
  vertical-align: middle;
  padding: 5px 0;
  border-style: solid;
  border-color: #D0F5A9;
  border-width: 1px;
  color: #000;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}

#content #main #home #access .basic table tbody tr td:nth-of-type(n+2) {
  color: #89b74f;
}

#content #main #home #access .basic table tfoot tr td {
  color: #000;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
}

/* 住所 & アクセス
--------------------------------------------------------------*/
#content #main #home #access .basic p {
  margin: 10px 0 0 0;
  box-sizing: border-box;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#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: 300px;
}

/*--------------------------------------------------------------
予約
--------------------------------------------------------------*/
#content #main #home #access .reserve p {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 30px;
  line-height: 35px;
}

#content #main #home #access .reserve p span {
  display: inline-block;
  color: #F99400;
  font-size: 35px;
  font-weight: bold;
  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: 20px 0;
  box-sizing: border-box;
  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: 30px;
  text-align: center;
  text-decoration: none;
}

#content #main #home #access .reserve a:nth-of-type(2) {
  display: block;
  margin: 10px 0 0 0;
  padding: 20px 0;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #F5D0A9, #FE9A2E 50%, #F5D0A9);
  border-style: solid;
  border-color: #FE9A2E;
  border-width: 2px;
  border-radius: 5px;
  color: #fff;
  font-size: 30px;
  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 .banner {
  position: relative;
  margin: 20px 0 0 0;
}

#content #main #home #access .banner a:nth-of-type(1) {
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  border-style: solid;
  border-color: #F99400;
  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: 20%;
  vertical-align: middle;
  box-sizing: border-box;
}

#content #main #home #access .banner a:nth-of-type(1) span.logo img {
  display: inline-block;
  width: auto;
  height: 100px;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_1 {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  box-sizing: border-box;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_1 strong {
  display: block;
  margin: 5px 0 0 0;
  color: #688A08;
  font-size: 30px;
  font-weight: bold;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_2 {
  display: inline-block;
  width: 20%;
  vertical-align: middle;
  box-sizing: border-box;
  margin: 0 0 0 20px;
  padding: 5px 0;
  background: #ff5c5c;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_3 {
  display: block;
  box-sizing: border-box;
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #home #access .banner a:nth-of-type(1) span.text_3 i {
  display: inline-block;
  font-size: normal;
  color: #ff5c5c;
}

#content #main #home #access .banner a:nth-of-type(1) span.tel {
  display: block;
  box-sizing: border-box;
  margin: 20px 0 0 0;
  color: #89b74f;
  font-size: 40px;
}

#content #main #home #access .banner a:nth-of-type(1) span.tel i {
  display: inline-block;
  margin: 0 10px 0 0;
}

#content #main #home #access .banner a:nth-of-type(2) {
  display: block;
  padding: 20px;
  box-sizing: border-box;
  background: #F99400;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

#content #main #home #access .banner a:hover {
  opacity: 0.8;
}

#content #main #home #access .banner p img {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0, 0);
  width: 250px;
}

/* 下層ページ */
/***************************************************************
ぱんくずリスト
***************************************************************/
/*--------------------------------------------------------------
リスト
--------------------------------------------------------------*/
#content #main #lower #breadcrumbs ol {
  padding: 154px 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: 20px;
}

#content #main #lower #breadcrumbs ol li a {
  color: #1a0dab;
  font-size: 20px;
  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;
}

/***************************************************************
文字装飾
***************************************************************/
.sentence {
  margin-top: 2em;
}

.paragraph {
  line-height: 1.5;
}

.paragraph:not(:last-child) {
  margin-bottom: 1em;
}

.dec-color {
  color: #FF8199 !important;
  font-weight: bold !important;
}

.dec-bg {
  background: #FF9901 !important;
  color: #FFF !important;
  font-weight: bold !important;
}

.dec-bg02 {
  background: #fef6ea !important;
}

.dec-ud {
  border-bottom: 1px dotted #400000 !important;
  display: inline !important;
  font-weight: bold !important;
  line-height: 30px !important;
}

p.dec-ud::before {
  content: "";
  display: block;
  padding: 10px 0;
}

.dec-ud02 {
  border-bottom: 1px solid #000 !important;
}

.dec-marker {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}

/***************************************************************
店舗紹介
***************************************************************/
/*--------------------------------------------------------------
ページ内リンク
--------------------------------------------------------------*/
#content #main #lower #about .select {
  margin: 20px 0 0 0;
  box-sizing: border-box;
  font-size: 0;
  text-align: center;
}

#content #main #lower #about .select a {
  position: relative;
  display: inline-block;
  width: 22%;
  height: 150px;
  vertical-align: middle;
  padding: 30px 0 0 0;
  box-sizing: border-box;
  background: #fff;
  border-style: solid;
  border-color: #F99400;
  border-width: 5px;
  color: #F99400;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-decoration: none;
}

#content #main #lower #about .select a:nth-of-type(n+2) {
  margin: 0 0 0 4%;
  padding: 40px 0 0 0;
}

#content #main #lower #about .select a:hover {
  background: #F99400;
  color: #fff;
}

#content #main #lower #about .select a i {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #F99400;
  font-size: 30px;
  font-weight: bold;
}

#content #main #lower #about .select a:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #lower #about .space {
  margin-top: -154px;
  padding-top: 154px;
}

#content #main #lower #about .space h2 {
  margin: 50px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
当院について
--------------------------------------------------------------*/
#content #main #lower #about .about_1 .table {
  display: flex;
  flex-wrap: wrap;
}

#content #main #lower #about .about_1 .table .text {
  order: 2;
  width: 100%;
  margin: 10px 0 0 0;
  box-sizing: border-box;
}

#content #main #lower #about .about_1 .table .text p {
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #lower #about .about_1 .table .text p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

#content #main #lower #about .about_1 .table .image {
  order: 1;
  width: 100%;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#content #main #lower #about .about_1 .table .image img {
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
施術の流れ
--------------------------------------------------------------*/
/* 余白0
--------------------------------------------------------------*/
#content #main #lower #about .about_2 {
  margin: 20px 0 0 0;
  font-size: 0;
}

/* 各流れ
--------------------------------------------------------------*/
#content #main #lower #about .about_2 article {
  display: block;
  box-sizing: border-box;
  margin: 20px 0 0 0;
}

#content #main #lower #about .about_2 article span.image {
  display: block;
}

#content #main #lower #about .about_2 article span.image img {
  display: block;
  width: 100%;
}

#content #main #lower #about .about_2 article span.number {
  display: inline-block;
  width: 15%;
  vertical-align: middle;
  margin: 10px 0 0 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #89b74f;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#content #main #lower #about .about_2 article span.midashi {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
  margin: 10px 0 0 0;
  padding: 0 0 0 10px;
  box-sizing: border-box;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
}

#content #main #lower #about .about_2 article span.text {
  display: block;
  margin: 10px 0 0 0;
  box-sizing: border-box;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #lower #about .about_2 p {
  display: none;
}

/*--------------------------------------------------------------
スタッフ紹介
--------------------------------------------------------------*/
/* 余白
--------------------------------------------------------------*/
#content #main #lower #about .about_3 article {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
}

#content #main #lower #about .about_3 article:nth-of-type(2) {
  margin: 60px 0 60px 0;
}

/* 名前
--------------------------------------------------------------*/
#content #main #lower #about .about_3 article p.name {
  order: 1;
}

#content #main #lower #about .about_3 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: #89b74f;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

#content #main #lower #about .about_3 article p.name span b {
  display: inline-blok;
  margin: 0 0 0 10px;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

/* 文章
--------------------------------------------------------------*/
/* 続きを読む（参照：https://metrograph.jp/css_gradation_paragraph/） */
.grad-wrap {
  order: 3;
  position: relative;
  display: block;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

.grad-wrap + .grad-wrap {
  margin-top: 40px;
}

.grad-btn {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  background: #fff;
  border: #045FB4 5px solid;
  color: #000;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.grad-btn::after {
  content: "続きを読む";
}

.grad-btn .fa {
  margin-right: 0.5em;
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

.grad-item p + p {
  margin-top: 1em;
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px;
  /*グラデーションで隠す範囲*/
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
}

.grad-trigger {
  display: none;
}

.grad-trigger:checked ~ .grad-btn {
  bottom: -3em;
}

.grad-trigger:checked ~ .grad-btn::after {
  content: "閉じる";
}

.grad-trigger:checked ~ .grad-btn .fa {
  transform: rotate(180deg);
}

.grad-trigger:checked ~ .grad-item {
  height: auto;
}

.grad-trigger:checked ~ .grad-item::before {
  display: none;
}

/* 画像
--------------------------------------------------------------*/
#content #main #lower #about .about_3 article p.image {
  order: 2;
  width: 100%;
  margin: 20px 0 0 0;
  box-sizing: border-box;
}

#content #main #lower #about .about_3 article p.image img {
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
施術の流れ
--------------------------------------------------------------*/
/* 余白0
--------------------------------------------------------------*/
#content #main #lower #about .about_4 {
  margin: 20px 0 0 0;
  font-size: 0;
}

/* 各流れ
--------------------------------------------------------------*/
#content #main #lower #about .about_4 article {
  display: block;
  box-sizing: border-box;
  margin: 20px 0 0 0;
}

#content #main #lower #about .about_4 article span.image {
  display: block;
}

#content #main #lower #about .about_4 article span.image img {
  display: block;
  width: 100%;
}

#content #main #lower #about .about_4 article span.number {
  display: inline-block;
  width: 15%;
  vertical-align: middle;
  margin: 10px 0 0 0;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #89b74f;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#content #main #lower #about .about_4 article span.midashi {
  display: inline-block;
  width: 85%;
  vertical-align: middle;
  margin: 10px 0 0 0;
  padding: 0 0 0 10px;
  box-sizing: border-box;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
}

#content #main #lower #about .about_4 article span.text {
  display: block;
  margin: 10px 0 0 0;
  box-sizing: border-box;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #lower #about .about_4 p {
  display: none;
}

/***************************************************************
料金表
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #lower #price h2 {
  margin: 20px 0 0 0;
  padding: 10px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

/*--------------------------------------------------------------
自由診療
--------------------------------------------------------------*/
/* 紹介
--------------------------------------------------------------*/
#content #main #lower #price .price_1 .introduction h3 {
  margin: 20px 0 0 0;
  padding: 10px 0 10px 10px;
  box-sizing: border-box;
  border-style: solid;
  border-color: #7d7d7d;
  border-width: 0 0 1px 5px;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

/* メニュー
--------------------------------------------------------------*/
#content #main #lower #price .price_1 .menu article {
  margin: 20px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  font-size: 0;
}

#content #main #lower #price .price_1 .menu article:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

#content #main #lower #price .price_1 .menu article p.name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}

#content #main #lower #price .price_1 .menu article p.time {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  box-sizing: border-box;
  color: #808080;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

#content #main #lower #price .price_1 .menu article p.time i {
  display: inline-block;
  margin: 0 10px 0 0;
}

#content #main #lower #price .price_1 .menu article p.fee {
  display: inline-block;
  width: 70%;
  vertical-align: top;
  box-sizing: border-box;
  color: #008000;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

#content #main #lower #price .price_1 .menu article .description {
  display: block;
  width: 100%;
  margin: 30px 0 0 0;
  box-sizing: border-box;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

.symptom {
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1em;
}

.description__txt {
  line-height: 1.5;
  margin-bottom: 1em;
}

.description__txt:last-child {
  margin-bottom: 0;
}

.description__txt.-campaign {
  color: #f00;
  font-weight: bold;
}

.description__txt.-ud {
  font-weight: bold;
  text-decoration: underline;
}

/***************************************************************
症状別メニュー
〇坐骨神経痛
〇膝痛・股関節痛
〇尾骨痛・お尻の先の痛み
〇手のしびれ・頚椎神経根症
〇ぎっくり腰
〇突発性難聴
〇顔面神経麻痺
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #lower #menu h2,
#choose h2 {
  margin: 20px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
チェックマーク
--------------------------------------------------------------*/
#content #main #lower #menu .check,
#choose .check {
  margin: 20px 0 0 0;
}

#content #main #lower #menu .check p.checkmark,
#choose .check p.checkmark {
  position: relative;
  padding: 10px 0 0 40px;
  border-style: dotted;
  border-color: #000;
  border-width: 0 0 1px 0;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #lower #menu .check p.checkmark::after,
#choose .check p.checkmark::after {
  position: absolute;
  content: "";
  display: block;
  top: 20px;
  left: 5px;
  width: 15px;
  height: 10px;
  border-left: 5px solid #F99400;
  border-bottom: 5px solid #F99400;
  transform: rotate(-45deg);
}

/*--------------------------------------------------------------
小見出し
--------------------------------------------------------------*/
/* h3
--------------------------------------------------------------*/
#content #main #lower #menu h3 {
  margin: 40px 0 0 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

#content #main #lower #menu h3 strong {
  display: inline-block;
  background: linear-gradient(transparent 50%, #ffd79c 50%);
}

#content #main #lower #menu h3 span {
  position: relative;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

#content #main #lower #menu h3 span::after {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
  content: "・";
  color: #f99400;
  font-size: 30px;
}

/* h4
--------------------------------------------------------------*/
#content #main #lower #menu h4 {
  margin: 50px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  border-style: solid;
  border-color: #89B74F;
  border-width: 0 0 3px 5px;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/* h5
--------------------------------------------------------------*/
#content #main #lower #menu h5 {
  margin: 20px 0 0 0;
  padding: 0 0 20px 0;
  box-sizing: border-box;
  border-style: double;
  border-color: #FFC778;
  border-width: 0 0 10px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
テキスト
--------------------------------------------------------------*/
#content #main #lower #menu .text p {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #lower #menu .text p:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}

/*--------------------------------------------------------------
画像
--------------------------------------------------------------*/
#content #main #lower #menu .image p {
  margin: 20px 0 0 0;
}

#content #main #lower #menu .image p img {
  display: block;
  width: 100%;
}

/***************************************************************
お知らせ
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #lower #news h2 {
  margin: 20px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
記事
--------------------------------------------------------------*/
#content #main #lower #news .news article {
  margin: 20px 0 0 0;
  padding: 20px;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
}

#content #main #lower #news .news article p.midashi a {
  display: block;
  padding: 0 0 20px 0;
  border-color: #000;
  border-style: solid;
  border-width: 0 0 1px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  text-decoration: none;
}

#content #main #lower #news .news article p.date {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
}

#content #main #lower #news .news article p.theme {
  margin: 20px 0 0 0;
}

#content #main #lower #news .news article p.theme a {
  display: inline-block;
  padding: 5px;
  background: #000;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

#content #main #lower #news .news article div.text {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

#content #main #lower #news .news article p.image {
  margin: 20px 0 0 0;
}

#content #main #lower #news .news article p.image img {
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
ページャー
--------------------------------------------------------------*/
#content #main #lower #news .pager {
  margin: 50px 0 0 0;
}

#content #main #lower #news .pager::after {
  content: "";
  display: block;
  clear: both;
}

#content #main #lower #news .pager #pagination ul {
  display: none;
}

#content #main #lower #news .pager #pagination ul li {
  display: none;
}

#content #main #lower #news .pager #pagination ul li:nth-of-type(n+6) {
  display: none;
}

#content #main #lower #news .pager #pagination ul li a {
  display: none;
}

#content #main #lower #news .pager #nextpage {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  box-sizing: border-box;
}

#content #main #lower #news .pager #nextpage ul {
  list-style-type: none;
  text-align: right;
}

#content #main #lower #news .pager #nextpage ul li a {
  display: inline-block;
  padding: 20px;
  background: #000;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

#content #main #lower #news .pager #prevpage {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  box-sizing: border-box;
}

#content #main #lower #news .pager #prevpage ul {
  list-style-type: none;
}

#content #main #lower #news .pager #prevpage ul li a {
  display: inline-block;
  padding: 20px;
  background: #000;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

/*--------------------------------------------------------------
最新記事&テーマ&月別
--------------------------------------------------------------*/
#content #main #lower #news .sub {
  display: block;
  margin: 50px 0 0 0;
  box-sizing: border-box;
}

#content #main #lower #news .sub article {
  display: block;
  background: #ccc;
}

#content #main #lower #news .sub article p {
  padding: 10px 0;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

#content #main #lower #news .sub article ul {
  list-style-type: none;
  padding: 10px;
}

#content #main #lower #news .sub article ul li {
  display: block;
}

#content #main #lower #news .sub article ul li a {
  display: block;
  padding: 10px;
  background: #fff;
  color: #000;
  font-size: 20px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#content #main #lower #news .sub article ul li:nth-of-type(n+2) a {
  border-color: #D3D3D3;
  border-style: dashed;
  border-width: 1px 0 0 0;
}

#content #main #lower #news .sub article ul li a:hover {
  text-decoration: underline;
}

/***************************************************************
サイトマップ
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #lower #sitemap h2 {
  margin: 20px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
テキスト
--------------------------------------------------------------*/
/* テキスト_1
--------------------------------------------------------------*/
#content #main #lower #sitemap p.text_1 {
  position: relative;
  margin: 20px 0 0 0;
  padding: 0 0 0 20px;
}

#content #main #lower #sitemap p.text_1::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(0, -50%);
  content: "▶";
  color: #89b74f;
  font-size: 20px;
}

#content #main #lower #sitemap p.text_1 a {
  display: inline-block;
  color: #1a0dab;
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}

#content #main #lower #sitemap p.text_1 a:hover {
  text-decoration: none;
}

/* テキスト_2
--------------------------------------------------------------*/
#content #main #lower #sitemap p.text_2 {
  position: relative;
  margin: 20px 0 0 0;
  padding: 0 0 0 50px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

#content #main #lower #sitemap p.text_2::before {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
  content: "▶";
  color: #89b74f;
  font-size: 20px;
}

#content #main #lower #sitemap p.text_2 a {
  display: inline-block;
  color: #1a0dab;
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}

#content #main #lower #sitemap p.text_2 a:hover {
  text-decoration: none;
}

/* テキスト_3
--------------------------------------------------------------*/
#content #main #lower #sitemap p.text_3 {
  position: relative;
  margin: 10px 0 0 0;
  padding: 0 0 0 100px;
  color: #000;
  font-size: 20px;
}

#content #main #lower #sitemap p.text_3::before {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translate(0, -50%);
  content: "▶";
  color: #89b74f;
  font-size: 20px;
}

#content #main #lower #sitemap p.text_3 a {
  display: inline-block;
  color: #1a0dab;
  font-size: 20px;
  text-decoration: underline;
}

#content #main #lower #sitemap p.text_3 a:hover {
  text-decoration: none;
}

/***************************************************************
404リダイレクト
***************************************************************/
/*--------------------------------------------------------------
テキスト_1
--------------------------------------------------------------*/
#content #main #lower #redirect p.text_1 {
  padding: 154px 0 0 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

/*--------------------------------------------------------------
テキスト_2
--------------------------------------------------------------*/
#content #main #lower #redirect p.text_2 {
  margin: 20px 0 0 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

/***************************************************************
よくあるご質問
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#content #main #lower #qa h2 {
  margin: 20px 0 0 0;
  padding: 20px;
  box-sizing: border-box;
  background: #fef6ea;
  border-style: solid;
  border-color: #F99400;
  border-width: 0 0 3px 0;
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

/*--------------------------------------------------------------
質問一覧
--------------------------------------------------------------*/
.q-area-ttl__touch {
  font-weight: bold;
}

.q-area-ttl__click {
  display: none;
}

/*-----------------------
q-area
-----------------------*/
.q-area {
  background-color: #b1e6b1;
  background-image: url(image.php?id=58);
  margin-top: 20px;
  padding: 25px 15px;
}

.q-area-ttl {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
}

/*-----------------------
q-list
-----------------------*/
.q-list__item {
  border-bottom: 1px dashed #EEE;
  list-style: none;
  margin-top: 30px;
  padding-bottom: 10px;
}

.q-list__num,
.q-list__link {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  vertical-align: top;
}

.q-list__num {
  width: 50px;
}

.q-list__link {
  color: #333;
  width: 90%;
  width: calc(100% - 50px);
}

.q-list__link:hover {
  text-decoration: none;
}

.q-list__txt {
  font-weight: bold;
}

/*--------------------------------------------------------------
解答一覧
--------------------------------------------------------------*/
/*-----------------------
qa-area
-----------------------*/
.qa-area {
  margin-top: -154px;
  padding-top: 154px;
}

.qa-q {
  margin-top: 20px;
  background: #ff8d00;
  color: #FFF;
  font-size: 18px;
  padding: 20px;
}

.qa-q__num,
.qa-q__txt {
  display: inline-block;
  font-weight: bold;
  line-height: 1.3;
  vertical-align: top;
}

.qa-q__num {
  width: 55px;
}

.qa-q__txt {
  width: 80%;
  width: calc(100% - 55px);
}

.qa-a {
  line-height: 1.5;
  margin: 15px auto 0;
  width: 95%;
}

.qa-a__note {
  font-size: 14px;
  margin-top: 10px;
}

/***************************************************************
失敗しない整体院・鍼灸院の選び方
***************************************************************/
/*--------------------------------------------------------------
見出し
--------------------------------------------------------------*/
#choose h3 {
  box-sizing: border-box;
  border-style: solid;
  border-color: #89B74F;
  border-width: 0 0 3px 5px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 2em;
  padding: 15px 10px;
}

#choose p {
  line-height: 1.7;
  margin-top: 1em;
}

/***************************************************************
姿勢と身体の歪み計測器
***************************************************************/
.posture-flow__item {
  margin: 0 0 30px 1.5em;
}

.posture-flow__item:lsat-child {
  margin-bottom: 0;
}

.posture-flow__item p {
  font-weight: bold;
}

.posture-flow__red,
.posture-flow__blue {
  font-weight: bold;
}

.posture-flow__red {
  color: red;
}

.posture-flow__blue {
  color: blue;
}

/***************************************************************
頭痛
***************************************************************/
.headache-table {
  margin-top: 15px;
}

.headache-table th {
  text-align: left;
  white-space: nowrap;
}

.headache-table th,
.headache-table td {
  line-height: 1.5;
  padding: 10px 5px;
}

/***************************************************************
利用者喜びの声
***************************************************************/
#content #main #lower #menu h3.voice__ttl {
  margin: 10px 0 0 0;
  padding: 15px 10px;
  box-sizing: border-box;
  border-style: solid;
  border-color: #89B74F;
  border-width: 0 0 3px 5px;
  color: #000;
  font-size: 22px;
  font-weight: bold;
}

.voice__inner {
  border-bottom: 5px double #ccc;
  margin-top: 10%;
  padding-bottom: 10%;
}

.voice__inner:first-child {
  margin-top: 10%;
}

.voice__profile {
  font-size: 14px;
  margin-top: 15px;
  text-align: right;
}

.voice__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.voice__content {
  width: 70%;
}

.voice__img {
  width: 27%;
}

.voice__img a {
  border: 3px solid #ccc;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  position: relative;
}

.voice__img a::after {
  color: #fff;
  content: "\f00e";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.voice__img a:hover {
  border-color: #333;
  opacity: 0.8;
}

.voice__img a:hover::after {
  color: #333;
}

.voice__list dt {
  color: #89b74f;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  padding-left: 2.2em;
  position: relative;
}

.voice__list dt::before {
  content: "＿＿";
  position: absolute;
  top: 0;
  left: 0;
}

.voice__list dd {
  line-height: 1.5;
  margin-bottom: 30px;
}

.voice__list dd p:not(:first-child) {
  margin-top: 1em;
}

.voice__comment p {
  background: #fff5e8;
  border: 3px dashed #ffbe8f;
  line-height: 1.5;
  margin-top: 15px;
  padding: 15px;
}