@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 599px) {
  /************************

　共通

  ************************/
	body {
		font-size: 14px;
		line-height: 1.8;
	}
	body.fixed {
		overflow: hidden;
		position: fixed;
	}
  /* レスポンシブ表示・非表示切り替え */
  .pc-show {
    display: none !important;
  }
  .sp-show {
    display: inline-block!important;
  }
  /* レイアウト */
  #container {
		min-width: inherit;
	}
	#contents {
		margin-top: 74px;
	}
	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-right: 20px;
		padding-left: 20px;
		height: 74px;
		max-height: 74px;
	}
	#header header {
		width: 100%;
	}
	#header header .logo {
		width: 150px;
	}
	/********************************
		グローバルナビゲーション
	********************************/
	#header #gnav {
		padding-bottom: 0;
		border-bottom: none;
	}
	#header #gnav .pc-nav {
		display: none;
	}
	#header #gnav .sp-nav {
		display: block;
	}
	/*----------------------------
	* メニュー本体
	*----------------------------*/
	#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;
	}
	/* ハンバーガーメニュー */
  .sp-nav-btn {
		width: 36px;
		height: 32px;
		position: fixed;
		top: 40px;
		-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);
	}
  /********************************
		フッター
	********************************/
	#footer {
		padding-top: 40px;
	}
	/* フッター情報 */
	#footer .f-info {
		margin-bottom: 30px;
	}
	#footer .f-info .logo {
		width: 100%;
	}
	#footer .f-info .logo a {
		display: block;
	}
	#footer .f-info .logo a img {
		max-width: 100%;
		height: auto;
	}
	#footer .f-info ul {
		text-align: center;	
	}
	#footer .copyright {
		font-size: 12px;
		text-align: center;
	}
	#footer .copyright p:first-child {
		text-align: left;
	}
	/********************************
		TOPページ
	********************************/
	/* メインイメージ */
	#index #main-img {
		height: 240px;
		margin-bottom: 40px;
	}
	#index #main-img .catch-copy {
		font-size: 20px;
		line-height: 1.5;
		padding-right: 20px;
		padding-left: 20px;
	}
	/* セクション共通 */
	#index #contents .top-section {
	}
	#index #contents .top-section .section-head {
		font-size: 22px;
		margin-bottom: 26px;
		padding-bottom: 10px;
	}
	#index #contents .top-section .contents-head {
		font-size: 18px;
		margin-bottom: 20px;
	}
	/********************************
		TOPページ / 二部脊椎とは
	********************************/
	#index #contents #about {
		margin-top: -84px;
		margin-bottom: 40px;
		padding-top: 84px;	
	}
	#index #contents #about .message-txt {
		margin-bottom: 30px;
	}
	#index #contents #about .message-txt p {
		text-align: left;
	}
	/***** 主な病態・症状 *****/
	#index #contents #about .symptoms-block-wrap {
		margin: 40px 0 40px 0;
	}
	#index #contents #about .symptoms-block {
		width: 100%;
		margin-bottom: 50px;
	}
	#index #contents #about .symptoms-block:nth-last-child(1),
	#index #contents #about .symptoms-block:nth-last-child(2),
	#index #contents #about .symptoms-block:nth-last-child(3) {
		margin-top: 0;
	}
	#index #contents #about .symptoms-block:nth-last-child(1) {
		margin-bottom: 0;
	}
	#index #contents #about .symptoms-block h4 {
		font-size: 15px;
	}
	#index #contents #about .support-txt {
		font-size: 16px;
		text-align: left;
	}
	/********************************
		TOPページ / 診療体制
	********************************/
	#index #contents #system {
		margin-top: -44px;
		margin-bottom: 40px;
		padding-top: 44px;
	}
	#index #contents #system .top-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#index #contents #system .desc-txt {
		text-align: left;
		margin-bottom: 26px;
	}
	/***** 1.大阪大学二部脊椎多職種専門外来 *****/
	#index #contents #system .system01 {
		margin-bottom: 40px;
	}
	#index #contents #system .system01 .thought-block dl {
		padding: 20px;
		flex-direction: column;
	}
	#index #contents #system .system01 .thought-block dt {
		border-radius: 50%;
		width: 86px;
		height: 86px;
		margin-right: 0;
		margin-bottom: 1em;
	}
	#index #contents #system .system01 .thought-block dd {
		color: #1a3491;
		font-size: 16px;
		font-weight: bold;
	}
	/***** 2.専門チームメンバー *****/
	#index #contents #system .system02 .team-block-wrap .team-block {
		width: 100%;
	}
	#index #contents #system .system02 .team-block-wrap .team-block dl {
		margin-bottom: 30px;
		padding: 20px;
	}
	#index #contents #system .system02 .team-block-wrap .team13.team-block dl {
		margin-bottom: 30px;
	}
	#index #contents #system .system02 .team-block-wrap .team15.team-block dl {
		margin-bottom: 0;
	}
	#index #contents #system .system02 .team-block-wrap .team-block dt {
		font-size: 15px;
	}
	/********************************
		TOPページ / 受診を希望される患者さんへ
	********************************/
	#index #contents #medical {
		margin-top: -84px;
		margin-bottom: 40px;
		padding-top: 84px;
	}
	#index #contents #medical .top-section {
	}
	/***** 受診予約方法 *****/
	#index #contents #medical .appointment-block-wrap {
		padding: 15px;
	}
	#index #contents #medical .appointment-block-wrap .appointment-block dl {
		padding: 20px;
	}
	#index #contents #medical .appointment-block-wrap .appointment-block dt {
		font-size: 15px;
	}
	#index #contents #medical .appointment-block-wrap .link-btn-wrap {
		width: 100%;
	}
	/********************************
		TOPページ / お問い合わせ
	********************************/
	#index #contents #contact {
		margin-top: -84px;
		margin-bottom: 40px;
		padding-top: 84px;
	}
	#index #contents #contact .top-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#index #contents #contact .top-section li.tel-number {
		font-size: 18px;
	}
	/********************************
		TOPページ / 関連リンク
	********************************/
	#index #contents #link {
		margin-top: -84px;
		margin-bottom: 40px;
		padding-top: 84px;
	}
	#index #contents #link .link-block {
		width: 100%;
		flex-direction: column;
	}
	#index #contents #link .link-block li {
		width: 100%;
		margin-bottom: 30px;
		display: flex;
		justify-content: center;
	}
	#index #contents #link .link-block li:last-child {
		margin-bottom: 0;
	}
	#index #contents #link .link-block li img {
		max-width: 100%;
		height: auto;
	}
	/********************************
		404ページ
	********************************/
	.box-404 {
		padding: 20px;
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.box-404 .title {
	}
}