@charset "utf-8";
/* カスタムCSS */
/**********************************
サンプル作成時　追加分
**********************************/
/* ヘッダー　施設情報 */	
.gHeader_contTitle,
.gHeader_contTitle i::before {
    background: #fff;
    color: #72a951;
}
.gHeader_contBody {
    background-color: #72a951;
}

/* Gナビ */
.gNav {
    background: rgb(114,169,81)!important;
}

/* フッター */
.gFooter {
    background: #72a951;
}
.gFooter_copyright {
    background: #72a951;
}



/**********************************
全体・共通設定
**********************************/
/* フォント設定 */
.bold {
	font-weight: bold;
}
.red {
	color: red;
}
.blue {
	color: blue;
}

/* 文字揃え */
.align_l {
	text-align: left;
}
.align_c {
	text-align: center;
}
.align_r {
	text-align: right;
}

/* リンクホバー時　ゆっくり変化 */
a,
a:hover {
	transition: 0.3s ease-in-out;
}

/* エディタ内　テキストリンク（ボタン除く）　下線装飾 */
.editor a:not(.btn-animation-02) {
	text-decoration: underline;
}

/* テーブル関連設定 */
.editor table th,
.editor table td {
	text-align: center;
	vertical-align: middle;
}
.common_img_table h3 {
	text-align: left;
}
.scrollTable {
	margin-top: 20px;
}

/* メインビジュアル縦幅設定 */
.mainSlider li,
.mainSlider li img {
	height: auto;
}

/* グリーン線 */
.g_line {background:linear-gradient(transparent 60%, #F2FBDD 0%) ;}

/*アニメーションボタン*/
.btn-animation-02 {
  display: inline-block;
  width: 180px;
  text-align: center;
  background-color: #9ec34b;
  border: 2px solid #9ec34b;
  font-size: 16px;
  color: #9ec34b;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-animation-02 span {
  position: relative;
  z-index: 1;
}

.btn-animation-02::before,
.btn-animation-02::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}

.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-animation-02:hover {
  color: #FFF;
}

/**********************************
PC設定
**********************************/
@media (min-width: 768px) {

	/* flex */
	.flexbox {
		display: flex;
	}
	.flexbox > div {
		flex: 1;
	}
	
	/* ボタン */
	.btn {
		width: 250px;
		margin: 0 auto;
	}

	/* iframe設定 */
	p > iframe {
		display: block;
		margin: 0 auto;
		width: 900px;
		height: 600px;
	}

	/* PC中央揃え　スマホ中央揃え */
	.sp_left{
		text-align:center;
	}

}
	/* グローバルメニュー */
	.gNav_item > a {
		padding-left: 25px;
		padding-right: 25px; /* 段落ちする場合、両方を書き換え */
	}

/**********************************
スマホ設定
**********************************/
@media (max-width: 767px) {

	/* 汎用_画像テーブル（院内設備など） */
	.common_img_table th,
	.common_img_table td {
		display: block; /* スマホ時縦並び */
	}

	/* iframe設定 */
	p > iframe {
		height: 300px;
	}

	/* PC中央揃え　スマホ中央揃え */
	.sp_left{
		text-align:left;
	}

}
/* h1　背景画像差し替え　ページタイトルの後に背景画像を入れる */
.pageTitle {
	background: url(https://midori-hospital.jp/files/deco/h1_bg.png);) center center no-repeat;
}
/* 左右反転テーブル */
	.reverse_table tr {
		transform: scale(1, -1);
	}
	.reverse_table th {
		transform: scale(1, -1);
	}
	.reverse_table td {
		transform: scale(1, -1);
	}
