/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px){
    body, .mainvisual_wrap, #mainvisual, header, footer{
        min-width: 1300px;
    }
	.tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
		width: 320px;
	}
}
@media screen and (max-width:640px) {
body {
    font-size: 15px;
	line-height: 1.5;
	text-align: left;
}

body, #mainvisual .inner, header, footer {
    min-width: 100%;
}

/* ナビ展開時スクロール禁止処理 */
body.nav-open{
    overflow: hidden!important;
}
/*============================================================================

	header

============================================================================*/
	header {
		background: none;
	}
	header .inner {
		width: auto;
		padding-bottom: 0;
	}
	.header_top {
		padding-top: 0;
	}
	.header_info,.header_logo {
		display: none;
	}
	h1{
		position: absolute;
		font-size: 12px;
	}
/*============================================================================

	nav

============================================================================*/
	.nav_wrap.fixed {
		padding: 0;
	}	
	.nav_wrap.fixed .innerNav {
		width: 100%;
	}
.nav_wrap{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
	align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
	padding-top: 0;
    background: #fff;
}
	.nav_wrap::before {
		position: absolute;
		top: 0;
    width: 100%;
    height: 8px;
    background: url("../images/line01.png") repeat-x;
    content: "";
	}
.nav_wrap .header_logo{
	position: relative;
    width: calc(100% - 56px);
}
.nav_wrap .header_logo a{
    display: flex;
	align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 0 5px 20px;
}
.nav_wrap .header_logo img{
    width: 72%;
	max-width: 230px;
	padding-top: 10px;
}

/* ハンバーガーボタン */
.btn_tgl_menu{
		position: relative;
		right: 0;
		height: 48px;
		width: 48px;
		margin-top: 3px;
		margin-right: 6px;
		padding: 0;
		background: #83b6ca;
		border-radius: 4px;
		border: none;
		text-align: center;
		color: #fff;
		transition: right 0.6s cubic-bezier(.19,1,.22,1);
}
.btn_tgl_menu i{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-family: quicksand, sans-serif;
		font-weight: 600;
	letter-spacing: 0.06em;
}
.btn_tgl_menu span{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(.19,1,.22,1);
    opacity: 1;
}
.btn_tgl_menu span:nth-of-type(1){
    top: 8px;
}
.btn_tgl_menu span:nth-of-type(2){
    top: 16px;
}
.btn_tgl_menu span:nth-of-type(3){
    top: 24px;
}

/* MENUボタン押下時 */
.btn_tgl_menu.active{
    right: 16.25rem;
}
.btn_tgl_menu.active span:nth-of-type(1){
    top: 18px;
    transform: rotate(225deg);
}
.btn_tgl_menu.active span:nth-of-type(2){
    opacity: 0;
}
.btn_tgl_menu.active span:nth-of-type(3){
    top: 18px;
    transform: rotate(-225deg);
}

/* ドロップダウンメニュー */
.tgl_menu_list{
    position: fixed;
    top: 0;
    right: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(.19,1,.22,1);
    background: #83b6ca;
    padding: 15px;
}
.tgl_menu_list ul{
    flex-flow: column wrap;
}
.tgl_menu_list ul li{
    display: block;
    border-bottom: 1px dashed #fff;
    width: 100%;
	padding-bottom: 0;
}
.tgl_menu_list ul li:first-child{
    border-top: 1px dashed #fff;
}
.tgl_menu_list ul li::after{
    display: none;
}
.tgl_menu_list ul li a,
.tgl_menu_list ul li p{
    display: block;
    text-align: left;
    padding: 14px 10px;
    width: auto;
    color: #fff;
    font-weight: normal;
}
.tgl_menu_list ul li a .nav_en,
.tgl_menu_list ul li p .nav_en{
    display: none;
}

.tgl_menu_list ul li a:hover{
    color: #fff;
}
	.tgl_menu_list ul li a::after, .tgl_menu_list ul li p::after {
		display: none;
	}

body.nav-open .tgl_menu_list{
    overflow-y: scroll;
    right:0;
}

/* ------- スライドメニュー シングル------- */
.tgl_menu_list ul li.nav_single_menu div{
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-bottom: 10px;
    box-shadow: none;
}
.tgl_menu_list ul li.nav_single_menu div a{
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
    border-bottom: none;
}
.tgl_menu_list ul li.nav_single_menu div a::before{
    position: static;
    display: inline;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
}
.tgl_menu_list ul li.nav_single_menu div a i.nav_arrow{
    display: none;
}
.tgl_menu_list ul li.nav_single_menu div a:hover{
    color: #fff;
    background: none;
}

/* ------- スライドメニュー メガ------- */
.tgl_menu_list ul li.nav_mega_menu{
    position: relative;
}
.tgl_menu_list ul li.nav_mega_menu p::before{
    position: absolute;
    display: flex;
    width: auto;
    height: auto;
    border: none;
    top: 14px;
    bottom: 0;
    right: 0;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
}
.tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap{
    display: none;
    position: static;
    opacity: 0;
    visibility: hidden;
    background: none;
    box-shadow: none;
    transition: height 0.5s cubic-bezier(.19,1,.22,1);
}
.tgl_menu_list ul li.nav_mega_menu.active .mega_menu_wrap{
    opacity: 1;
    visibility: visible;
	width: 100%;
}
.tgl_menu_list .mega_menu_inner{
    display: block;
    padding: 0 0 10px 0;
    width: 100%;
}
.tgl_menu_list .mega_menu_top a{
    padding: 12px 12px 12px 0;
}
.tgl_menu_list .mega_menu_top a::before {
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
}
.tgl_menu_list .menu_list{
    margin-left: 0;
}
.tgl_menu_list ul li.nav_mega_menu .mega_menu_inner .menu_list p{
    display: none;
}
.tgl_menu_list ul li.nav_mega_menu .mega_menu_inner .menu_list li{
    border: none!important;
}
.tgl_menu_list ul li.nav_mega_menu div a{
    margin-left: 15px;
    background: none;
    padding: 0 3px 8px;
    text-indent: -1.2em;
	line-height: 1.4;
}

/* メガメニュー展開時 */
.tgl_menu_list ul li.nav_mega_menu.active p::before{
    content: "\f068";
}

/* ナビ展開時の後ろの背景 */
.nav_overlay{
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}
body.nav-open .nav_overlay{
    display: block;
    opacity: 1;
    visibility: visible;
}

/* ヘッダー固定ボタンエリア */
.btn_area{
    width: 100%;
}
.btn_area ul{
    display: flex;
    background: #fff;
}
.btn_area li.btn{
    width: 100%;
}
.btn_area li.btn a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-family: dnp-shuei-mgothic-std, sans-serif;
		font-weight: 600;
    padding: 10px 2%;
}
.btn_area li.btn a i{
    width: 15px;
    margin-right: 3px;
}
.btn_area li.btn_tel{
    background: #3cb371;
}
.btn_area li.btn_yoyaku{
    background: #e7aab1;
}
.btn_area li.btn_monshin{
    background: #e7aab1;
}
.btn_area li.btn_access{
    background: #83b6ca;
}

/* 準備中用のクラス */
.btn_area li.btn.coming{
    background: #aaa!important;
}
.btn_area li.btn.coming a{
    pointer-events: none;
    padding: 4px 2% 22px;
}
.btn_area li.btn.coming a::before{
    content: "（準備中）";
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
}
/*============================================================================

	#mainvisual

============================================================================*/



#mainvisual {
    background-position: center;
    background-attachment: scroll;
    height: 200px;
    margin-top: 104px;
}
#mainvisual .inner {
    width: auto;
    height: inherit;
	padding-top: 56px;
}
/* 下層ページヘッドライン */
#mainvisual h2 {
    font-size: 22px;
}
	.mainvisual_headline p.headline {
		font-size: 22px;
	}
/* トップページキャッチフレーズ */
.mainvisual_catch {
  position: absolute;
	top: 200px;
	width: 92%;
}
.mainvisual_open{
	bottom: auto;
	top: 50px;
	right: 4%;
	left: auto;
	width: 28%;
	max-width: 120px;
}
	.mainvisual_schedule {
		top: 424px;
		right: 0;
		left: 0;
		width: 88%;
		margin: auto;
		padding: 16px 0 14px;
	}
	.mainvisual_schedule::after {
		left: 32px;
		height: auto;
		width: 88px;
		max-width: 82px;
		padding-bottom: 20.5%;
	}
	.mainvisual_schedule .tb01 td, .mainvisual_schedule .tb01 th {
		padding: 8px 0;
	}
	.mainvisual_schedule .schedule_note {
		flex-wrap: wrap;
		flex-direction: column;
		font-size: 14px;
		line-height: 1.4;
	}

/*============================================================================

	#contents

============================================================================*/

.box1 {
    width: auto;
}
	.bg_box1::before {
		width: 40%;
		height: 60%;
	}
	.bg_box1::after {
		width: 40%;
		height: 40%;
	}
	.bg_box1 {
		margin-bottom: 60px;
	}
.box2 {
    width: auto;
    margin: 0 6% 0;
	padding-bottom: 60px;
}
	.box2:last-child {
		padding-bottom: 80px;
	}
#contents {
    width: auto;
}
#contents_left {
    width: auto;
    float: none;
    margin-right: 0;
}
#contents_right {
    width: auto;
    padding: 0 6%;
    float: none;
}
/*============================================================================

	footer

============================================================================*/
	footer {
		padding-top: 60px;
	}
	footer::before {
		top: -32px;
		width: 46%;
		height: auto;
		padding-bottom: 13%;
		background-size: contain;
	}
	footer::after {
		top: -32px;
		width: 46%;
		height: auto;
		padding-bottom: 15%;
		background-size: contain;
	}
	.footer_info {
		grid-template-columns: auto;
		padding: 0 6% 130px;
	}
	.footer_info::before {
		top: -60px;
	}
	.footer_logo {
		width: 90%;
		max-width: 392px;
		height: auto;
	}
	.footer_ad {
		margin-bottom: 12px;
		line-height: 1.6;
	}
	.tel-box {
		flex-direction: column;
	}
	.tel-box_text {
		margin-left: 0;
		margin-bottom: 4px;
	}
	.footer_schedule {
		margin-bottom: 40px;
	}
	.footer_right {
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: auto auto;
		grid-row-gap: 10px;
	}
	.footer_map {
		height: 280px;
	}
	.footer_map .footer_map_btn {
		right: 0;
		left: 0;
		margin: auto;
	}
	.pagetop {
		right: 10%;
		bottom: 4px;
		transform: scale(0.8);
	}
	.pagetop:hover {
		transform: scale(0.8);
	}
	.footer_bottom {
		padding: 24px 6% 16px;
	}
/*sitemap*/
	.footer_sitemap {
		width: auto;
		grid-template-columns:auto;
		margin-bottom: 32px;
	}
    .footer_clinic-img{
        width: 100%;
    }
	.sitemap_tit {
		height: auto;
		margin-right: 0;
		margin-bottom: 16px;
		padding: 12px 0;
		-webkit-writing-mode: horizontal-tb;
		-moz-writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	.sitemap_list {
		justify-content: space-between;
		padding-top: 0;
		border: none;
		border-bottom: 1px solid #fff;
	}
	.sitemap_list_item {
		width: 48%;
		margin-right: 0;
	}
	.sitemap_list_item:first-child {
		width: 48%;
	}
	.sitemap_list_item2 {
		width: 100%;
		order: 3;
	}
	.sitemap_item_tit {
		margin-bottom: 10px;
		padding-top: 12px;
	}
	.sitemap_list2 {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-column-gap: 12px;
		grid-row-gap: 12px;
	}
	.sitemap_list2_item {
		margin: 0;
		line-height: 1.2;
	}

.copy {
	text-align: center;
}
/*============================================================================

	$top

============================================================================*/
	
/*.top-topics */
	.top-topics {
		margin-top: 0;
		padding-top: 40px;
		padding-bottom: 80px;
	}
	.top-topics::before {
		display: none;
	}
	.top-topics::after {
		bottom: 10px;
		width: 34%;
		padding-bottom: 15%;
		height: auto;
		background: url("../images/deco01_sp.png") no-repeat center / contain;
	}
	.top-topics .box1 {
		padding: 0 6%;
		flex-direction: column;
	}
	.top-topics_left {
		display: contents;
	}
	.top-topics_tit-wrap {
		margin-bottom: 16px;
		padding-top: 0;
	}
	.top-topics_en-tit {
		font-size: 48px;
		margin-bottom: 8px;
	}
	.top_news_frame .news_list li {
		align-items: center;
		flex-wrap: wrap;
		padding: 8px 0;
	}
	.top_news_frame .news_list time,.news_text_list dd p span {
		margin-right: 14px;
	}
	.top_news_frame .news_list .cate,.news_text_list em {
		padding: 6px 10px;
		font-size: 13px;
	}
	.top_news_frame .news_list li a {
		width: 100%;
		padding-top: 2px;
		font-size: 15px;
	}
	.top-topics_btn {
		order: 3;
	}
	.top-topics_right {
		width: 100%;
		margin-bottom: 24px;
	}
	
	
/*.top-concept*/
	.top-concept_top::before {
		top: -52px;
		width: 24%;
		height: auto;
		padding-bottom: 32%;
		background-size: contain;
	}
	.top-concept_bottom::before {
		top: -20px;
		width: 24%;
		height: auto;
		padding-bottom: 30%;
		background-size: contain;
	}
	.top-concept_top_inner {
		max-width: inherit;
		width: 88%;
		border-bottom-left-radius: 60px;
		border-top-right-radius: 60px;
		padding-bottom: 40px;
	}
	.top-concept_tit .tit01 {
		top: 1.9em;
		left: 0;
	}
	.top-concept_tit .tit-wrap_en-tit {
		margin-top: 0;
	}
	.top-concept_top-box {
		grid-template-columns: auto;
		width: auto;
		padding: 24px 0 0;
	}
	.top-concept_text {
		margin-bottom: 24px;
		padding: 0 6%;
		line-height: 1.5;
		text-align: left;
	}
	.top-concept_text_tit {
		width: auto;
		margin-bottom: 16px;
		font-size: 18px;
		text-align: center;
	}
	.top-concept_text br {
		display: none;
	}
	.top-concept_illust {
		width: 80%;
		margin: auto;
	}
	.top-concept_list {
		grid-template-columns: 1fr;
		grid-row-gap: 36px;
		padding: 0 6% 80px;
	}
	.top-concept_list_item::before {
		margin-bottom: 6px;
		font-size: 68px;
	}
	.top-concept_list_tit {
		margin-bottom: 12px;
		font-size: 18px;
		line-height: 1.5;
	}
	.top-concept_list_img {
		text-align: center;
	}
	.top-concept_list_icon {
		width: 80px;
		height: 80px;
		margin-top: -40px;
		margin-bottom: 8px;
	}
	.top-concept_list_icon::before {
		top: -24px;
		right: -24px;
		width: 58px;
		height: 42px;
		background-size: contain;
	}
	.top-concept_list02 .top-concept_list_icon::before,
	.top-concept_list03 .top-concept_list_icon::before{
		background-size: contain;
	}
	.top-concept_point_item {
		font-size: 13px;
	}
	.top-concept_point_item::before {
		top: -2px;
	}

/*.top-medical*/
	.top-medical {
		padding-bottom: 60px;
	}
	.top-medical::before {
		top: -33vw;
		left: 4%;
		width: 36%;
		height: auto;
		padding-bottom: 43%;
		background-size: contain;
	}
	.top-medical::after {
		top: -36vw;
		right: 2%;
		width: 42%;
		height: auto;
		padding-bottom: 46%;
		background-size: contain;
	}
	.top-medical .box1 {
		flex-wrap: wrap;
		padding-top: 54px;
	}
	.top-medical_tit {
		margin: auto;
	}
	.top-medical_tit .tit01 {
		left: 0;
	}
	.top-medical_list {
		grid-template-columns: repeat(2,1fr);
		grid-template-rows:auto;
		grid-column-gap: 16px;
		grid-row-gap: 16px;
		padding: 0 6% 0;
	}
	.top-medical_item a {
		padding: 16px 6%;
	}
	.top-medical_item_icon {
		width: 60px;
		height: 60px;
		margin-bottom: 12px;
	}
	.top-medical_item_tit {
		margin-bottom: 8px;
		padding-bottom: 8px;
		font-size: 16px;
	}
	.top-medical_item_tit_small {
		font-size: 15px;
		line-height: 1.2;
	}
	.top-medical_symptoms_item {
		margin-bottom: 4px;
		font-size: 13px;
		line-height: 1.2;
	}
	.top-medical_symptoms_item:last-child {
		margin-bottom: 0;
	}
/*.top-greeting*/
	.top-greeting {
		padding: 40px 0 40px;
	}
	.top-greeting .box1 {
		flex-direction: column;
		padding: 0 6%;
	}
	.top-greeting_tit {
		order: -2;
	}
	.top-greeting_tit .tit-wrap_en-tit {
		padding: 0;
	}
	.top-greeting_text {
		width: 100%;
		margin-bottom: 24px;
		margin-right: 0;
		padding-top: 0;
		line-height: 1.5;
	}
	.top-greeting_text p:not(:last-child) {
		margin-bottom: 8px;
	}
	.top-greeting_doctor {
		display: contents;
		padding-top: 0;
	}
	.top-greeting_doctor-img {
		order: -1;
		width: auto;
		text-align: center;
	}
	.top-greeting_about {
		margin-bottom: 40px;
		align-items: flex-end;
		flex-direction: column;
	}
	.top-greeting_clinic-name {
		width: 88%;
		height: auto;
		margin-bottom: 14px;
	}
	.top-greeting_btn {
		margin: auto;
	}
	
/*loop_slide_wrap */
	.loop_slide_wrap .slick-initialized .slick-slide img {
		width: 240px;
	}
    .pc_ver{
        margin-top: 0;
    }
/*============================================================================

	$breadcrumbs ぱんくず

============================================================================*/

.breadcrumbs {
    width: 92%;
	margin-bottom: 24px;
	padding-top: 20px;
}
.breadcrumbs li {
    display: inline-block;
}
/*============================================================================

	$共通

============================================================================*/

.box {
    width: auto;
    padding: 0 6% 8%;
}
.text {
    float: none;
    width: auto;
	margin-bottom: 40px;
    padding: 0;
    border: none;
}
	
	.text-box {
		padding: 8% 0;
	}
	p.text-box_tit {
		margin-bottom: 16px;
	}

/*============================================================================

	$見出し

============================================================================*/

	.h1-tit {
		top: 120px;
		width: 96%;
		left: 2%;
		padding-top: 0;
		z-index: 1;
		color: rgba(255,255,255,0.8);
		font-size: 10px;
	}
	_::-webkit-full-page-media, _:future, :root .h1-tit {
    top: 14px;
	}
	.tit-wrap {
		margin-bottom: 24px;
	}
	.tit01,.tit-vertical .tit01 {
		justify-content: center;
		top: 2em;
		right: 0;
		left: 0;
		font-size: 24px;
		-webkit-writing-mode: horizontal-tb;
		-moz-writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		text-align: center;
		line-height: 1.3;
	}
	.tit01::before,.tit-vertical .tit01::before {
		display: none;
	}
	.tit-wrap_en-tit,.tit-vertical .tit-wrap_en-tit {
		margin: 0 auto 0;
		padding: 0 0px 0px;
		font-size: 70px;
		background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.49), rgba(207, 253, 157, 1));
		-webkit-writing-mode: horizontal-tb;
		-moz-writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		text-align: center;
	}


	.tit02 {
		margin-bottom: 16px;
		font-size: 20px;
		letter-spacing: 0.08em;
		text-align: left;
		font-feature-settings : "palt";
	}
	.tit02::before {
		flex: none;
		width: 24px;
		height: 24px;
		margin-right: 12px;
		margin-top: 2px;
		margin-bottom: auto;
	}
	.tit02::after {
		left: 3px;
		width: 18px;
		height: 18px;
	}
	
	.tit03 {
		width: 100%;
		margin-bottom: 14px;
		padding-top: 12px;
		font-size: 17px;
		line-height: 1.3;
	}
	.tit04 {
		padding-top: 8px;
		margin-bottom: 8px;
		font-size: 16px;
	}



.nowrap {
    white-space: normal;
}



/* テーブル */
.tb01 {
    white-space: inherit;
}
.tb01 th {
	width: 30%;
	font-size: 14px;
}
.tb01 td {
	font-size: 14px;
	text-align: center;
}
	.tb01 td, .tb01 th {
		padding: 10px 0 10px;
	}
	.schedule .tb01 {
		margin-bottom: 6px;
	}
	.schedule_note li:first-child::after {
		display: none;
	}
	.schedule_note {
		font-size: 15px;
		flex-direction: column;
		line-height: 1.3;
	}

.tb03, .tb03 th {
    white-space: inherit;
}
.tb03.w075par {
    width: 100%;
}

/* 縦積みにした時 */
.tb03.ver th,
.tb03.ver td{
    display: block;
    width: 100%;
}
.tb03.ver td{
    border-top: none;
}
.tb03.ver th:not(:first-child){
    border-top: none;
}

/* 横スクロール */
.scroll_tb{
    overflow-x: scroll;
}
.scroll_tb table{
    width: 816px;
}
.scroll_tb table th{
    position: sticky;
    left: 0;
}
.scroll_tb table th::before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #00408f;
}

.tb04, .tb04 th {
    white-space: normal;
}
.tb04 th {
    font-size: 13px;
}
.tb04 td, .tb04 th {
    padding: 2%;
}
/* ボタン */
.btn01 a {
    display: flex;
}



/* アンカーリンク */
.ank02 {
	width: 100%;
}
.ank02 li {
    width: 100%;
}
.ank03 {
	width: 100%;
}
.ank03 li {
    width: 100%;
}
.ank04 {
	width: 100%;
}
.ank04 li {
    width: 100%;
}

	
	.ank-link {
		width: 88%;
		margin: 0 auto 40px;
	}
	.ank-link_item {
		margin-right: 8px;
		margin-bottom: 8px;
	}
	.ank-link_item a {
		padding: 4px 10px;
		font-size: 14px;
	}
	.ank-link02_item {
		margin-right: 8px;
		margin-bottom: 8px;
	}
	.ank-link_item a {
		font-size: 13px;
	}

/* 画像右寄せ */
.img_fr {
    float: none;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
}
.img_fr img {
    margin-bottom: 15px;
}
/*============================================================================

	$doctor

============================================================================*/

/* ごあいさつ */
.doctor_greet .text {
    float: none;
    width: auto;
}
/* 経歴、資格 */
	.doctor {
		padding-bottom: 60px;
		padding-top: 0;
	}
	.doctor .doctor_carr {
		grid-template-columns: 1fr;
		grid-row-gap: 24px;
		width: 88%;
		margin: auto;
	}
	.doctor_carr_sec1 {
		padding: 6%;
	}
	.doctor_carr_tit {
		margin-bottom: 12px;
		padding-bottom: 12px;
		font-size: 18px;
	}
	.tb02 th,.tb02 td {
		display: block;
		width: 100%;
	}
	.tb02 th {
		padding-bottom: 0;
		border: none;
	}
	.tb02 td {
		padding-top: 0;
	}
	
	.doctor_carr {
		grid-template-columns: 1fr;
		grid-row-gap: 24px;
	}
	
/*============================================================================

	$clinic

============================================================================*/
.clinic_sec1{
    max-width: 100%;
}

/* 医院概要 */
.clinic_sec1 dt {
    width: 30%;
}

.clinic_sec1 dd a:hover{
    color: inherit;
}
.clinic_sec1 .schedule{
    width: 100%;
    margin: auto;
}
.clinic_sec1 .schedule .tb01 {
    width: 100%;
}

[class^="clinic_slide_wrap"]:not(.clinic_slide_wrap_flex){
    max-width: 100%;
}

/* 院内スライド横 */
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-slider{
    display: block!important;
}
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-list{
    width: 100%;
}
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots{
	grid-template-columns: repeat(5,1fr);
	grid-column-gap: 8px;
	grid-row-gap: 8px;
    margin-top: 16px;
    width: 100%;
    justify-content: space-between;
}
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li{
    width: 100%;
}
	.clinic_slide_wrap_flex .slide_text {
		padding: 6px 12px;
	}
	
	.layout12 {
		grid-template-columns: 1fr;
	}
	.layout12_tit {
		padding: 4%;
		font-size: 16px;
	}
	
	
	.illust_map_dmy {
		height: 230px;
		margin-bottom: 24px;
	}
	
	.access_wrap .access_clinic-img_box {
		grid-template-columns: 1fr;
		margin-top: 24px;
	}
    .layout12_img_dmy{
        width:100%;
    }
/*============================================================================

	$facilities

============================================================================*/


.facilities_equip dl {
    width: 100%;
    margin-left: 0;
    padding: 6% 10% 10%;
}
.facilities_equip_img {
    width: 100%;
    margin-bottom: 8%;
    margin-left: 0;
}
.facilities_equip2 dl, .facilities_equip2 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
}
.facilities_equip2 dl:nth-child(even) {
    margin-right: 5%;
}
.facilities_equip3 dl {
    width: 90%;
    margin: 0 5% 30px;
}
.facilities_equip3 dl:nth-child(even) {
    margin-right: 5%;
}
.facilities_equip3 dl, .facilities_equip3 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
}
/*============================================================================

	$access

============================================================================*/
.access_wrap [class^="access"]{
    margin-bottom: 24px;
    width: 100%;
}
.access_wrap [class^="access"]:last-child{
    margin-bottom: 0;
}
.access_wrap [class^="access"] iframe{
    height: 300px;
}
.access_list{
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 12px;
	grid-row-gap: 20px;
    display: block;
}
    .access_list dl{
        margin-bottom: 20px;
    }

	.access_list dt.access_list_dmy {
        width: 100%;
		height: auto;
        text-align: center;
	}
	.access_list dt {
		margin-bottom: 8px;
	}
	.access_list dl dd::before {
		margin-right: 8px;
		padding: 4px 7px;
		font-size: 16px;
	}




/*============================================================================

	$first

============================================================================*/





/*============================================================================

	$medical

============================================================================*/

/*============================================================================

	$contact

============================================================================*/
.contact th, .contact td{
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #1F2774;
    padding: 10px 5%;
}
.contact tr:last-child td{
    border-bottom: none;
}
.contact input[type="date"]{
    display: block;
    margin-bottom: 10px;
}
.contact select{
    display: block;
    margin-bottom: 20px;
}
.submit_btn input{
    max-width: 110px;
}
/*==================================================================

	.layout

==================================================================*/
.layout_tit{
  font-size: 18px;
}

.layout_tit em{
  font-size: 24px;
}

  /* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
  .layout01 dl {
    display: block;
  }

  .layout01 dt {
    width: 100%;
		padding: 8px 0;
  }

  .layout01 dd {
    width: 100%;
  }

  .layout01 dd img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
  .layout02 {
    display: block;
  }

  .layout02 .layout02_box{
    width: 100%;
  }

  .layout02 .layout02_box img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
  .layout03 {
    margin: 0 0 15px;
  }

  .layout03 .layout03_box {
    display: block;
		padding: 6%;
		border-radius: 16px;
  }
	.layout03_text p:last-child {
		margin-bottom: 0;
	}

  .layout03 .layout03_title {
    width: 100%;
		min-height: 120px;
  }

  .layout03 .layout03_title img {
    width: 50%;
    margin: 0 auto;
    display: block;
	padding: 0;
  }

  .layout03 .layout03_text {
    width: 100%;
    padding: 15px 3% 1%;
  }


  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
  .layout04 .layout04_box {
    display: block;
  }

  .layout04 .layout04_title {
    width: 100%;
		margin-bottom: 8px;
  }

  .layout04 .layout04_title img {
    margin: 0 auto;
    display: block;
  }

  .layout04 .layout04_text {
    width: 100%;
  }


  /* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
  .layout05 .layout05_box {
    display: block;
  }

  .layout05 .layout05_title {
    width: 100%;
    text-align: center;
    display: block;
  }

  .layout05 .layout05_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout05 .layout05_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout05 .layout05_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
  .layout06 {
    margin: 0 0 15px;
  }

  .layout06 .layout06_box {
    display: block;
  }

  .layout06 .layout06_title {
    width: 100%;
    padding: 3%;
    display: block;
    text-align: center;
  }

  .layout06 .layout06_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /* 数字 */
  .layout06 .layout06_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout06 .layout06_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 3つ並びのレイアウト。 */
  .layout07 {
    display: block;
  }
  .layout07 .layout07_box {
    display: block;
    width: 100%;
  }
  /* 3つ並びのレイアウト。矢印付き */
  .layout08 {
    display: block;
  }

  .layout08 dl {
    position: relative;
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .layout08 dl::before {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 110%;
    height: 7px;
    width: 7px;
    transform: rotate(135deg);
    background-color: transparent;
    border-top: 2px solid #1F2774;
    border-right: 2px solid #1F2774;
    content: "";
    bottom: 0;
    margin: auto;
  }

  .layout08 dl:nth-child(3n)::before {
    display: none;
  }

  .layout08 dl dt {
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px dashed #ddd;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
  }

  .layout08 dl dt em {
    margin-right: 8px;
    font-size: 24px;
    font-family: 'Quicksand', sans-serif;
  }

  .layout08 dl dd {
    line-height: 1.5;
  }




/* layout10 */
.layout10 .flow_box{
    justify-content: space-between;
    padding: 4%;
}
.layout10 .flow_box::before{
    display: none;
}
.layout10 .flow_box .number{
    width: 28px;
    height: 28px;
    margin-right: 0;
    font-size: 18px;
	border-radius: 6px;
}
.layout10 .flow_box .layout10_box{
    width: 85%;
}
.layout10 .flow_box .layout10_text .title{
    font-size: 14px;
    line-height: 1.4;
}
.layout10 .flow_box .layout10_text .title span{
    display: block;
    padding-bottom: 8px;
    font-weight: bold;
}
.layout10 .flow_box .layout10_text .title span::after{
    display: none;
}
.course_ablation::before{
    display: none;
}

/* layout11 */
[class^="layout11_text"] dl dt,
[class^="layout11_text"] dl dd{
    margin-left: 0;
    width: 100%;
}
[class^="layout11_text"] dl dt{
    margin-bottom: 0;
}
[class^="layout11_text"] dl dd{
    margin-bottom: 10px;
}
.layout11_image02{
    flex-wrap: wrap;
}
.layout11_image02 span{
    width: 100%;
}
.layout11_image02 span:last-child{
    margin-top: 40px;
}
.layout11_image02 span:last-child::before{
    top: -32px;
    bottom: auto;
    left: 0;
    right: 0;
    justify-content: center;
    content: "\f078";
}
	
	.list07 {
		padding: 5%;
		border-radius: 14px;
	}
	.list10 {
		border-radius: 12px;
	}
	.list10 li::before {
		padding: 6px 5px;
		font-size: 16px;
	}
	.list08 {
		margin-bottom: 16px;
		padding: 4% 2% 5% 5%;
		border-radius: 12px;
	}
	.list08 li:last-child {
		margin-bottom: 0;
	}
/*============================================================================

	$news

============================================================================*/

.news_list li a{
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
	
	.news_text_list dd p:first-child {
		margin-bottom: 18px;
	}

/*============================================================================

	$mpcloud_schedule

============================================================================*/

#mpcloud_schedule{
	width: 100%;
	right: 0;
	left: 0;
	border-radius: 0;
}
.time_close{
	right: 20px;
	font-size: 17px;
}
.schedule_time{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.schedule_time dt{
	width: 35%;
	margin-bottom: 5px;
}
.schedule_time dd{
	width: 65%;
	margin-bottom: 5px;
}
.schedule_time dd i{
	margin: 0 3px 0 15px;
	vertical-align: text-bottom;
}




/*common*/
.pc{display:none!important}.sp{display:block!important}.pc_inline{display:none!important}.sp_inline{display:inline!important}.pc_table{display:table!important}.sp_table{display:table!important}img{max-width:100%;height:auto}.sp_mb00{margin-bottom:0!important}.sp_mr00{margin-right:0!important}.sp_ml00{margin-left:0!important}.sp_mt00{margin-top:0!important}.sp_pb00{padding-bottom:0!important}.sp_pr00{padding-right:0!important}.sp_pl00{padding-left:0!important}.sp_pt00{padding-top:0!important}.sp_center{text-align:center}


}
@media (min-width: 430px) and (max-width: 640px) {
	.mainvisual_schedule::after {
		top: -54px;
	}
}
@media screen and (max-width:340px) {
	.top-concept_text_tit {
		font-size: 16px;
	}
}

@media screen and (max-width:320px) {
.main_open {
    position: absolute;
    top: auto;
    bottom: 50px;
    right: 0;
    left: 0;
    width: 50%;
    margin: auto;
}
.sp_inline_iP{
	display:inline!important
}
}

