@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 599px) {
  /************************

　共通

  ************************/
	html, body {
		scroll-padding-top: 64px;
	}
	body {
		font-size: 14px;
		line-height: 1.8;
	}
	body.fixed {
		overflow: hidden;
		position: fixed;
	}
  /* レスポンシブ表示・非表示切り替え */
  .pc-show {
    display: none !important;
  }
  .sp-show {
    display: block !important;
  }
  /* レイアウト */
  #container {
		min-width: inherit;
	}
	main {
		width: 100%;
		min-width: inherit;
		position: static;
		top: 0;
		left: 0;
	}
  .inner {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
  /* ボタン */
	.link-btn-wrap a.btn {
		font-size: 15px;
		padding: 10px 24px;
	}
	/********************************
		共通パーツ
	********************************/
  /********************************
    ヘッダー
  ********************************/
	#header {
		padding: 12px 14px;
		height: 64px;
	}
	#header header {
		width: 100%;
		padding: 0;
	}
	#header header .logo {
		width: 220px;
	}
	#header header .osaka-u-logo {
		display: none;
	}
	/********************************
		グローバルナビゲーション
	********************************/
	#gnav {
		padding-bottom: 0;
		border-bottom: none;
	}
	#gnav .pc-nav {
		display: none;
	}
	#gnav .sp-nav {
		display: block;
	}
	/*----------------------------
	* メニュー開閉ボタン
	*----------------------------*/
	#gnav .sp-nav .menu-btn {
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 202;
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #000;
	}
	/*----------------------------
	* メニュー本体
	*----------------------------*/
	#gnav .sp-nav {
	}
	#gnav .sp-nav .sp-link-list {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 201;
		width: 100vw;
		height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		/*background-color: rgba(0,0,0,0.50);*/
		background-color: #FFFFFF;
		overflow-y: scroll;
		padding: 60px 20px 170px 20px;
	}
	#gnav .sp-nav .sp-link-list ul {
		width: 100%;
	}
	#gnav .sp-nav .sp-link-list .link-item a.btn {
		color: #1a3491;
		font-size: 16px;
		font-weight: bold;
		display: inline-block;
		border-top: 1px solid #1a3491;
		background-color: #fff;
		padding: 12px 0px;
		width: 100%;
		position: relative;
	}
	#gnav .sp-nav .sp-link-list .link-item:last-child a.btn {
		border-bottom: 1px solid #1a3491;
	}
	#gnav .sp-nav .sp-link-list .link-item a.btn:after {
		font: var(--fa-font-regular);
		font-weight: 900;
		content: "\f054";
		display: block;
		margin-right: 6px;
		position: absolute;
		top: calc(50% - 6px);
		right: 0;
	}
	#gnav .sp-nav .sp-link-list .link-item a.btn.more-btn:after {
		content: "\f055";
	}
	#gnav .sp-nav .sp-link-list .link-item a.btn.more-btn.open:after {
		content: "\f056";
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link {
		display: none;
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link li a {
		border-top: 1px dotted #1a3491;
		padding: 16px 0 16px 16px;
		width: 100%;
		display: block;
		position: relative;
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link li.first a {
		border-top: none;
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link li a:after {
		color: #1a3491;
		font: var(--fa-font-regular);
		font-weight: 900;
		content: "\f054";
		display: block;
		margin-right: 6px;
		position: absolute;
		top: calc(50% - 6px);
		right: 0;
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link .contents-cat-title {
		font-size: 16px;
		position: relative;
		margin-top: 20px;
		padding-bottom: 16px;
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link .contents-cat-title:before {
		content: "";
		display: block;
		background-color: #e4e4e4;
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	#gnav .sp-nav .sp-link-list .link-item .nav-contents-link .contents-cat-title:after {
		content: "";
		display: block;
		background-color: #1a3491;
		width: 16%;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
	}
	/* ハンバーガーメニュー */
  .sp-nav-btn {
		width: 36px;
		height: 32px;
		position: fixed;
		top: 35px;
		-webkit-transform: translateY(-50%);
						transform: translateY(-50%);
		right: 15px;
		cursor: pointer;
		z-index: 202;
  }
  .sp-nav-btn::before {
		content: "MENU";
		display: block;
		position: absolute;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
						transform: translateX(-50%);
		text-align: center;
		font-size: 12px;
		color: #1a3491;
  }
  .sp-nav-btn div {
		background: #1a3491;
		width: 100%;
		height: 2px;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
						transform: translateX(-50%);
		-webkit-transition: 0.4s ease;
		transition: 0.4s ease;
  }
  .sp-nav-btn div:nth-of-type(2) {
	  top: 6px;
  }
  #gnav.on {
		border-bottom: none;
		z-index: 9999;
  }
  #gnav.on .sp-nav-_btn::after {
	  display: none;
  }
  #gnav.on .sp-nav-btn::before {
		content: "閉じる";
		display: block;
		position: absolute;
		top: 55%;
		left: 50%;
		-webkit-transform: translateX(-50%);
						transform: translateX(-50%);
		text-align: center;
		line-height: 1;
		letter-spacing: 0;
		font-size: 12px;
		white-space: nowrap;
		color: #1a3491;
  }
  #gnav.on .sp-nav-btn div {
		width: 36px;
		background: #1a3491;
  }
  #gnav.on .sp-nav-btn div:nth-of-type(1) {
		top: 3px;
		-webkit-transform: translateX(-50%) rotate(150deg);
						transform: translateX(-50%) rotate(150deg);
  }

  #gnav.on .sp-nav-btn div:nth-of-type(2) {
		top: 3px;
		-webkit-transform: translateX(-50%) rotate(-150deg);
						transform: translateX(-50%) rotate(-150deg);
  }
	/* メニュー展開動作 */
	#gnav .sp-nav .sp-link-list {
		transform: translateX(100vw);
		transition: all .3s linear;
	}
	#gnav .sp-nav .sp-link-list.is-active {
		transform: translateX(0);
	}
	
	/********************************
		メインイメージ
	********************************/
	/********************************
		共通パーツ
	********************************/
	/********************************
		共通コンテンツ部分
	********************************/
	#contents {
		padding-top: 0;
	}
  /********************************
		フッター
	********************************/
	#footer {
	}
	/* リンクバナー */
	#footer #f-link {
		padding: 30px 0;
	}
	#footer #f-link ul {
		flex-wrap: wrap;
	}
	#footer #f-link li {
		width: 100%;
		border-right: 1px solid #1a3491;
		margin-bottom: 30px;
		padding: 0 30px;
	}
	#footer #f-link li:last-child {
		margin-bottom: 0;
	}
	/* フッター情報 */
	#footer #f-info {
		padding: 30px 0;
	}
	#footer #f-info .flex-c-sa {
		flex-wrap: wrap;
	}
	#footer #f-info .flex-c-sa .logo {
		margin-bottom: 20px;
		width: 100%;
	}
	#footer .copyright {
		color: #fff;
		font-size: 13px;
		text-align: center;
		background-color: #1a3491;
		padding: 26px 0;
	}
	/********************************
		TOPページ
	********************************/
	#index #main-img {
		height: 56.25vh;
		padding: 20px 15px 20px 15px;
	}
	#index #main-img .catch-copy {
		font-size: 16px;
		width: 100%;
		margin: 0;
	}
	#contents .top-section {
		width: 100%;
	}
	/* セクション共通 */
	#contents .top-section .txt-block .section-head {
		font-size: 20px;
		text-align: center;
		line-height: 1.4;
		height: inherit;
		min-height: 90px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		background-position: center;
	}
	#contents .top-section .txt-block .section-head.section-head2 {
		text-align: center;
		line-height: 1.5;
		height: auto;
		min-height: inherit;
	}
	#contents .top-section .txt-block .section-head.section-head2 span {
		font-size: 16px;
	}
	#contents .top-section .txt-block .section-desc {
		font-size: 14px;
	}
	/* コンセプト */
	#contents #top-concept.top-section {
		margin-bottom: 30px;
		flex-wrap: wrap;
	}
	#contents #top-concept.top-section .img-block {
		background-repeat: repeat-y;
		background-size: 50px 100%;
		background-position: right top;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		padding: 40px 20px 20px 0px; 
	}
	#contents #top-concept.top-section .txt-block {
		width: 100%;
		margin-left: 0;
		padding-right: 20px;
		padding-left: 20px;
	}
	#contents #top-concept.top-section .txt-block .section-head-sub {
		font-size: 15px;
		text-align: center;
		margin: -14px 0 24px 0;
	}
	/* 目標 */
	#contents #top-objective.top-section {
		margin-bottom: 60px;
		flex-wrap: wrap;
	}
	#contents #top-objective.top-section .img-block {
		width: 100%;
		min-height: inherit;
		margin-right: 0;
		position: inherit;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		order: 2;
	}
	#contents #top-objective.top-section .img-block .circle {
		width: 162px;
		height: 164px;
		position: inherit;
		box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.6);
	}
	#contents #top-objective.top-section .img-block .circle dt {
		font-size: 24px;
	}
	#contents #top-objective.top-section .img-block .circle dd {
		font-size: 15px;
	}
	#contents #top-objective.top-section .img-block .circle01 {
		top: 0;
		left: 0;
		z-index: inherit;
	}
	#contents #top-objective.top-section .img-block .circle02 {
		top: 0;
		left: 0;
		z-index: inherit;
	}
	#contents #top-objective.top-section .img-block .circle03 {
		top: 0;
		right: 0;
		z-index: inherit;
	}
	#contents #top-objective.top-section .img-block .circle03 dd {
		font-size: 14px;
	}
	#contents #top-objective.top-section .txt-block {
		width: 100%;
		margin-left: 0;
		margin-bottom: 30px;
		order: 1;
	}
	#contents #top-objective.top-section .txt-block .objective-img {
		background-size: 40px 100%;
		background-position: left top;
		margin-bottom: 30px;
		padding: 30px 0 0 0; 
	}
	#contents #top-objective.top-section .txt-block .section-head {
		margin-right: 20px;
		margin-left: 20px;
	}
	#contents #top-objective.top-section .txt-block table {
		font-size: 15px;
		margin-right: auto;
		margin-bottom: 24px;
		margin-left: auto;
		width: calc(100% - 40px);
	}
	#contents #top-objective.top-section .txt-block .section-desc {
		padding-right: 20px;
		padding-left: 20px;
	}
	/* 診察チーム紹介 */
	#contents #top-team {
		background-size: 40px 100%;
		background-position: left top;
		margin-bottom: 30px;
		padding: 0px 0 30px 0; 
	}
	#contents #top-team.top-section .txt-block .section-head {
		padding-top: 24px;
	}
	#contents #top-team.top-section .link-btn-wrap {
		width: calc(100% - 60px);
	}
	/* お知らせ */
	#contents #top-news {
		margin-bottom: 60px;
		padding-right: 20px;
		padding-left: 20px;
	}
	#contents #top-news.top-section .inner {
		padding: 30px 16px;
		position: inherit;
	}
	#contents #top-news.top-section .article {
		border-bottom: 1px dotted #e4e4e4;
		padding: 18px 0;
		margin-right: 0;
		flex-wrap: wrap;
	}
	#contents #top-news.top-section .article.last {
		margin-bottom: 30px;
	}
	#contents #top-news.top-section .article .cat-name {
		font-size: 13px;
		margin-bottom: 8px;
	}
	#contents #top-news.top-section .article dl {
		flex-wrap: wrap;
	}
	#contents #top-news.top-section .article dt {
		margin-right: 0.5em;
	}
	#contents #top-news.top-section .article dd {
		width: 100%;
	}
	#contents #top-news.top-section .more-link {
		position: inherit;
		top: 0;
		right: 0;
		display: none;
	}
	/* 診察内容 */
	#contents #top-mtc {
		margin-bottom: 60px;
	}
	#contents #top-mtc.top-section .txt-block .section-head {
		margin-bottom: 20px;
	}
	#contents #top-mtc.top-section .mtc-list {
		background-color: #edf4f7;
		width: 100%;
		padding: 30px 20px;
	}
	#contents #top-mtc.top-section .mtc-list .mtc-block {
		width: 100%;
	}
	#contents #top-mtc.top-section .mtc-list .mtc-block.mtc-block01,
	#contents #top-mtc.top-section .mtc-list .mtc-block.mtc-block02,
	#contents #top-mtc.top-section .mtc-list .mtc-block.mtc-block03,
	#contents #top-mtc.top-section .mtc-list .mtc-block.mtc-block04,
	#contents #top-mtc.top-section .mtc-list .mtc-block.mtc-block05 {
		margin-bottom: 60px;
	}
	#contents #top-mtc.top-section .link-btn-wrap {
		width: 100%;
	}
	/* アクセス&お問い合わせ共通 */
	#contents #top-guide.top-section {
		padding: 20px 0;
	}
	#contents #top-guide.top-section .inner.flex-st-sb {
		flex-wrap: wrap;
	}
	#contents #top-guide.top-section .txt-block .section-head {
	margin-bottom: 20px;
}
	/* アクセス */
	#contents #top-guide.top-section #top-access {
		margin-bottom: 40px;
		padding: 20px;
		width: 100%;
	}
	#contents #top-guide.top-section #top-access .map {
		margin-bottom: 30px;
		height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
	}
	#contents #top-guide.top-section #top-access .map iframe {
		position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
	}
	#contents #top-guide.top-section .link-btn-wrap {
		width: 100%;
	}
	/********************************
  下層ページ / 共通コンテンツ部分
********************************/
	.lowerpage #contents {
		padding-top: 64px;
	}
	/* 下層ページ用 メインイメージ */
	.lowerpage #main-img {
		height: 160px;
	}
	.lowerpage #main-img .head-block h1 {
		font-size: 22px;
	}
	.lowerpage #main-img .head-block .head-sub {
		font-size: 16px;
	}
	/* ページコンテンツ見出し */
	.lowerpage .contents-head {
		font-size: 20px;
		margin-bottom: 40px;
		padding-right: 20px;
		padding-left: 20px;
	}
	.lowerpage .contents-head2 {
		font-size: 20px;
	}
	/* セクション見出し */
	.lowerpage-section .section-head {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.lowerpage-section .section-head2 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	/* ページ内リンクブロック */
	.inpage-link {
		margin-bottom: 40px;
	}
	.inpage-link ul.flex-s-sb,
	.inpage-link ul.flex-s-s {
		flex-wrap: wrap;
	}
	.inpage-link ul.flex-s-sb li,
	.inpage-link ul.flex-s-s li {
		margin-bottom: 30px;
	}
	.inpage-link ul.flex-s-sb li:last-child,
	.inpage-link ul.flex-s-s li:last-child {
		margin-bottom: 0;
	}
	/* 詳細説明ブロック */
	.lowerpage-section .detail-explanation {
		margin-top: 20px;
		padding: 20px;
	}
	.lowerpage-section .detail-explanation .detail-block dl.detail-txt dt {
		font-size: 16px;
	}
	/* 流れ説明ブロック */
	.lowerpage-section .flow-details {
		margin-top: 20px;
		padding: 20px;
	}
	.lowerpage-section .flow-details .flow-block {
		margin-bottom: 40px;
	}
	.lowerpage-section .flow-details .flow-block .flow-number {
		font-size: 18px;
		width: 40px;
	}
	.lowerpage-section .flow-details .flow-block .flow-number:after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -20px;
		border: 20px solid transparent;
		border-top: 14px solid #1a3491;
	}
	.lowerpage-section .flow-details .flow-block.last {
		margin-bottom: 0;
	}
	.lowerpage-section .flow-details .flow-block.last .flow-number:after {
		content: none;
	}
	.lowerpage-section .flow-details .flow-block .flow-txt {
		padding: 15px;
		width: calc(100% - 40px);
	}
	.lowerpage-section .flow-details .flow-block .flow-txt dt {
		font-size: 16px;
		line-height: 1.6;
	}
	.lowerpage-section .flow-details .flow-block .flow-txt dt span {
		font-size: 14px;
	}
	/* 下層ページへのリンクブロック */
	.lowerpage-section .link-block {
		padding: 20px;
	}
	.lowerpage-section .link-block table.link-table td {
		width: 100%;
		display: block;
	}
	/* ぱんくずリスト */
	#breadcrumb {
		overflow-y: scroll;
		white-space: nowrap;
		word-break: keep-all;
	}
	#breadcrumb ul {
	}
	/********************************
		ご挨拶 - 患者さま
	********************************/
	#patient #patient-section .greeting-txt {
		padding: 30px 0 0 0;
	}
	#patient #patient-section .greeting-txt p {
		margin-bottom: 20px;
	}
	#patient #patient-section .greeting-txt .copy {
		font-size: 20px;
		line-height: 1.4;
	}
	#patient #patient-section .greeting-txt dl {
		justify-content: flex-start;
	}
	#patient #patient-section .greeting-txt dd {
		font-size: 18px;
	}
	/********************************
		外来紹介・外来への受診の仕方 - 患者さま
	********************************/
	/* セクション */
	#outpatient .lowerpage-section {
		margin-bottom: 40px;
	}
	/********************************
		診療チーム紹介 - 患者さまへ
	********************************/
	#our-team .contents-head {
		font-size: 16px;
		text-align: left;
	}
	#our-team .inpage-link {
	}
	#our-team .inpage-link li {
		width: 100%;
	}
	/* スタッフ一覧 */
	#our-team #staff-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#our-team #staff-section .staff-list {
		margin-bottom: -30px;
	}
	#our-team #staff-section .staff-list .staff-block {
		width: 47.5%;
		margin-right: 5%;
		margin-bottom: 30px;
	}
	#our-team #staff-section .staff-list .staff-block:nth-child(2n),
	#our-team #staff-section .staff-list .staff-block:last-child {
		margin-right: 0;
	}
	#our-team #staff-section .staff-list .staff-block .staff-img img {
		width: 100%;
	  height: auto;
	}
	/* 診療科・部門からスタッフを検索 */
	#our-team #search-section {
		margin-bottom: 40px;
	}
	#our-team #search-section .department-link ul {
		margin-bottom: -24px;
	}
	#our-team #search-section .department-link li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 24px;
	}
	/********************************
  診療科・部門ページ共通 - 患者さまへ
********************************/
	#clinical-department .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	#clinical-department #staff-details-section {
		margin-bottom: 40px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block {
		margin-bottom: 40px;
		padding: 20px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info {
		flex-wrap: wrap;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile {
		order: 2;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile h3 {
		font-size: 20px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile h3 span {
		font-size: 14px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile th {
		width: 100%;
		display: block;
		padding-bottom: 4px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile td {
		padding-bottom: 16px;
		width: 100%;
		display: block;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile tr.last th,
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-profile tr.last td {
		padding-bottom: 0;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-img {
		width: 100%;
		position: relative;
		order: 1;
		margin-bottom: 24px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-info .staff-img img {
		width: 100%;
	  height: auto;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-message {
		margin-bottom: 26px;
	}
	#clinical-department #staff-details-section .staff-details .staff-block .staff-message dt {
		font-size: 16px;
	}
	/********************************
		胎児診断治療センター受診後の流れ - 患者さまへ
	********************************/
	/* セクション */
	#flow .lowerpage-section {
		margin-bottom: 40px;
	}
	/********************************
		受診前のアドバイス - 患者さまへ
	********************************/
	/* セクション */
	#advice .lowerpage-section {
		margin-bottom: 40px;
	}
	/* 胎児診断治療センターを受診される方へのお願い */
	#advice #advice-section .advice-details {
		width: 100%;
		flex-wrap: wrap;
	}
	#advice #advice-section .advice-details .img-block {
		width: 100%;
		order: 1;
		margin-bottom: 24px;
	}
	#advice #advice-section .advice-details .txt-block {
		padding-right: 20px;
		padding-left: 20px;
		order: 2;
	}
	#advice #advice-section #advice01.advice-details {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	#advice #advice-section #advice01.advice-details .img-block {
		background-size: 20px 100%;
		background-position: right top;
		padding: 20px 0 0 20px; 
	}
	#advice #advice-section #advice02.advice-details .img-block {
		background-size: 20px 100%;
		background-position: left top;
		padding: 20px 20px 0 0; 
	}
	#advice #advice-section .advice-details .txt-block {
		width: 100%;
		margin-left: 0;
	}
	#advice #advice-section #advice01.advice-details .txt-block {
		margin-left: 0;
	}
	#advice #advice-section #advice02.advice-details .txt-block {
		margin-right: 0;
	}
	#advice #advice-section .advice-details .txt-block h3 {
		font-size: 20px;
	}
	/* もしご自身でお調べになる場合 */
	#advice #advice-section .site-block {
		width: 100%;
	}
	#advice #advice-section .site-block .flex-s-sb {
		flex-direction: column;
	}
	#advice #advice-section .site-block ul {
		width: 100%;
	}
	#advice #advice-section .site-block ul.left-block {
		margin-bottom: 30px;
	}
	#advice #advice-section .site-block ul li.bnr {
		margin-bottom: 15px;
		min-height: inherit;
	}
	#advice #advice-section .site-block ul.left-block li.bnr {
		padding: 20px 20px;
	}
	#advice #advice-section .site-block ul.right-block li.bnr {
		padding: 20px 20px;
	}
	/********************************
		外来診療内容 - 患者さまへ
	********************************/
	#outpatient-care .inpage-link ul {
		margin-bottom: -30px;
	}
	#outpatient-care .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	#outpatient-care .lowerpage-section {
		margin-bottom: 40px;
	}
	#outpatient-care .medical-section .desc-block {
		flex-wrap: wrap;
	}
	#outpatient-care .medical-section .img-block {
		width: 100%;
		margin-bottom: 20px;
	}
	#outpatient-care .medical-section .txt-block {
		width: 100%;
	}
	#outpatient-care .medical-section .detail-explanation dl {
		width: 100%;
		margin-bottom: 20px;
	}
	#outpatient-care .medical-section .detail-explanation dl:nth-last-child(2) {
		margin-bottom: 20px;
	}
	/********************************
		入院時の説明 - 患者さまへ
	********************************/
	#explanation .lowerpage-section {
		margin-bottom: 40px;
	}
	#explanation .lowerpage-section .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	/********************************
		入院時の説明 - 患者さまへ
	********************************/
	#explanation .lowerpage-section {
		margin-bottom: 40px;
	}
	/********************************
		母と子の治療のサポート - 患者さまへ
	********************************/
	#support .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	#support .lowerpage-section {
		margin-bottom: 40px;
	}
	#support .lowerpage-section .detail-explanation {
		margin-bottom: 40px;
	}
	/********************************
  対象疾患説明 - 患者さまへ
	********************************/
	#disease .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	#disease .lowerpage-section {
		margin-bottom: 40px;
	}
	/********************************
	 対象疾患説明詳細・胎児治療説明詳細 - 共通
	********************************/
	.desc-section .inner.flex-s-sb {
		flex-wrap: wrap;
	}
	/***** 説明リストブロック *****/
	.desc-section .desc-list {
		width: 100%;
		order: 2;
	}
	.desc-section .desc-list .cat-block .list-head {
		font-size: 15px;
	}
	/***** 詳細説明ブロック *****/
	.desc-section .desc-txt {
		width: 100%;
		order: 1;
	}
	.desc-section .desc-txt .desc-block .section-head span {
		font-size: 15px;
	}
	.desc-section .desc-txt .desc-block ul.img-list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.desc-section .desc-txt .desc-block ul.img-list li {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.desc-section .desc-txt .desc-block ul.img-list li:last-child {
		margin-bottom: 0;
	}
	.desc-section .desc-txt .desc-block .table-block {
		overflow: auto;
  	white-space: nowrap;
	}
	.desc-section .desc-txt .desc-block .head-sub {
		font-size: 16px;
	}
	/********************************
		胎児治療説明TOP - 患者さまへ
	********************************/
	#fetal-therapy #fetal-therapy-section.lowerpage-section .desc-txt {
		margin-bottom: 40px;
	}
	/********************************
		胎児治療説明詳細 - 患者さまへ
	********************************/
	#fetal-therapy .lowerpage-section {
		margin-bottom: 40px;
	}
	#fetal-therapy .lowerpage-section .inpage-link li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	#fetal-therapy .lowerpage-section .inpage-link li:nth-last-child(2) {
		margin-bottom: 30px;
	}
	#disease #disease-desc.desc-section .desc-txt .desc-block ul.img-list.img-list2 li {
		width: 100%;
	}
	/********************************
		臨床実績ページ共通 - 医療関係者の皆様へ
	********************************/
	#medical-record .lowerpage-section {
		margin-bottom: 40px;
	}
	/********************************
		臨床実績TOP - 医療関係者の皆様へ
	********************************/
	#medical-record .lowerpage-section {
		margin-bottom: 40px;
	}
	#medical-record .inpage-link {
	}
	#medical-record .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	#medical-record .inpage-link li:nth-last-child(2),
	#medical-record .inpage-link li:nth-last-child(3) {
		margin-bottom: 30px;
	}
	/********************************
		臨床実績詳細 - 医療関係者の皆様へ
	********************************/
	#medical-record .lowerpage-section .table-block {
		overflow: auto;
  	white-space: nowrap;
	}
	/********************************
		アクセス
	********************************/
	#access .inpage-link li {
		width: 100%;
		margin-right: 0;
	}
	#access .inpage-link li:nth-last-child(2),
	#access .inpage-link li:nth-last-child(3) {
		margin-bottom: 30px;
	}
	#access .lowerpage-section {
		margin-bottom: 40px;
	}
	#access .lowerpage-section .map-block {
		height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
	}
	#access .lowerpage-section .map-block iframe {
		position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
	}
	#access .lowerpage-section .desc-block .head-sub {
		font-size: 16px;
	}
	/********************************
		お知らせページ共通
	********************************/
	#news .lowerpage-section {
		margin-bottom: 40px;
	}
	#news #news-section .inner.flex-s-sb {
		flex-wrap: wrap;
	}
	/***** カテゴリーブロック *****/
	#news #news-section .cat-list {
		width: 100%;
		order: 2;
	}
	#news #news-section .cat-list .cat-block .list-head {
		font-size: 15px;
	}
	/* ページネーション */
	#news #news-section #pagination {
		margin-top: 40px;
	}
	#news #news-section #pagination ul {
		flex-wrap: wrap;
	}
	/********************************
		お知らせTOPページ
	********************************/
	/***** 記事ブロック *****/
	#news #news-section .article-list {
		width: 100%;
		order: 1;
		margin-bottom: 40px;
	}
	#news #news-section .article-list #pagination li.first {
		width: 100%;
		margin-right: 0;
		margin-bottom: 18px;
	}
	#news #news-section .article-list #pagination li.prev {
		width: 100%;
		margin-right: 0;
		margin-bottom: 18px;
	}
	#news #news-section .article-list #pagination li.next {
		width: 100%;
		margin-top: 18px;
		margin-right: 0;
		margin-bottom: 18px;
	}
	#news #news-section .article-list #pagination li.last {
		width: 100%;
		margin-right: 0;
	}
	/********************************
		お知らせ詳細ページ
	********************************/
	/***** 記事ブロック *****/
	#news #news-section .article-single {
		width: 100%;
		order: 1;
		margin-bottom: 40px;
	}
	#news #news-section .article-single #pagination li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 18px;
	}
	#news #news-section .article-single #pagination li:last-child {
		margin-bottom: 0;
	}
	/********************************
		よくあるご質問ページ
	********************************/
	#faq .inpage-link li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	#faq .inpage-link li:last-child {
		margin-bottom: 0;
	}
	#faq .lowerpage-section {
		margin-bottom: 40px;
	}
	/********************************
		お問い合わせページ共通
	********************************/
	#contact .inpage-link li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	#contact .inpage-link li:last-child {
		margin-bottom: 0;
	}
	#contact .lowerpage-section {
		margin-bottom: 40px;
	}
	/* フォーム */
	#contact #contact-mail-section table {
	}
	#contact #contact-mail-section table th {
		text-align: left;
		padding: 12px;
		width: 100%;
		display: block;
		border-bottom: none;
	}
	#contact #contact-mail-section table td {
		width: 100%;
		display: block;
		border-bottom: none;
	}
	#contact #contact-mail-section table tr.last td {
		border-bottom: 1px solid #1a3491;
	}
	/* 個人情報保護方針 */
	#contact #contact-mail-section .privacy-check .message {
		font-size: 14px;
		text-align: left;
		margin-bottom: 20px;
	}
	#contact #contact-mail-section .privacy-check .privacy-desc {
		padding: 20px;
		margin-bottom: 20px;
		height: 300px;
	}
	#contact #contact-mail-section .privacy-check .privacy-desc dt {
		font-size: 15px;
		margin-bottom: 4px;
	}
	#contact #contact-mail-section .privacy-check .submit-btn {
		width: 100%;
	}
	#contact #contact-mail-section .privacy-check .submit-btn input[type="submit"] {
		font-size: 15px;
		padding-top: 16px;
		padding-bottom: 16px;
	}
	/********************************
		404ページ
	********************************/
	.box-404 {
		padding: 20px;
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.box-404 .title {
	}
}