
/* CSS Document */
/*@media (min-width: 641px) and (max-width: 926px){
    body, .mainvisual_wrap, #mainvisual, header, footer{
        min-width: 1300px;
    }
    .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap{
        width: 1300px;
    }
}*/
@media screen and (max-width:760px) {
body {
    /*font-size: 15px;
				line-height:1.85;*/
}

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

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

	header

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

header {
    display: none;
}

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

	nav

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

.nav_wrap{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
}
.nav_wrap .header_logo{
    width: calc(100% - 56px);
				height: 55px;
}
.nav_wrap .header_logo a{
    display: block;
    width: 100%;
    height: 100%;
    padding:10px 0 0;
}
.header_logo img{
    width: 100%;
    height: 30px;
}

.nav_wrap2 {
    top: 368px;
}

/* ハンバーガーボタン */
.btn_tgl_menu{
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: #93ab65;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(.19,1,.22,1);
				cursor: pointer;
}
.btn_tgl_menu i{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.btn_tgl_menu span{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    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: 10px;
}
.btn_tgl_menu span:nth-of-type(2){
    top: 20px;
}
.btn_tgl_menu span:nth-of-type(3){
    top: 30px;
}

/* MENUボタン押下時 */
.btn_tgl_menu.active{
    right: 16.25rem;
}
.btn_tgl_menu.active span:nth-of-type(1){
    top: 20px;
    transform: rotate(225deg);
}
.btn_tgl_menu.active span:nth-of-type(2){
    opacity: 0;
}
.btn_tgl_menu.active span:nth-of-type(3){
    top: 20px;
    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: #93ab65;
    padding: 15px;
}
.tgl_menu_list ul{
    /*flex-flow: column wrap;*/
				display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tgl_menu_list ul li{
    display: block;
    border-bottom: 1px solid #fff;
    width: 50%;
}
.tgl_menu_list ul li:first-child{
    border-top: 1px solid #fff;
}
.tgl_menu_list ul li:first-child,
.tgl_menu_list ul li:nth-child(2),
.tgl_menu_list ul li:nth-child(3),
.tgl_menu_list ul li:nth-child(4){
width: 100%;
}
.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: 10px 5px;
    width: auto;
    color: #fff;
    font-weight: normal;
}
.tgl_menu_list ul li a span,
.tgl_menu_list ul li p span{
    display: none;
}

.tgl_menu_list ul li a:hover{
    color: #fff;
}

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;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    top: 0;
    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;
}
.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: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
}

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


.tgl_menu_list2 ul {
    width: 93%;
}

/* ナビ展開時の後ろの背景 */
.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_area2{
display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    height: 52px;
}

.btn_area ul,
.btn_area2 ul{
    display: flex;
    background: #fff;
}
.btn_area li.btn,
.btn_area2 ul li{
    width: 100%;
}
.btn_area li.btn a,
.btn_area2 ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: 600;
    padding: 13px 2%;
				font-size: 14px;
}
.btn_area li.btn a i,
.btn_area2 ul li a i{
    width: 15px;
    margin-right: 6px;
}
.btn_area li.btn_tel{
    background: #918077;
}
.btn_area li.btn_yoyaku{
    background: #a99991;
}
.btn_area li.btn_monshin{
    background: #bfb0a9;
}
.btn_area li.btn_access{
    background: #00C7A3;
}
.btn_area2 ul li.btn_online{
    /*background: #a6bd79;*/
	/*english 非表示に伴い、btn_engと背景色を入れ替えています。*/
	background: #b3c987;
}
.btn_area2 ul li.btn_eng{
    /*background: #b3c987;*/
	background: #a6bd79;
}



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

	#mainvisual

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



#mainvisual {
    background-position: center;
    background-attachment: scroll;
    height: 200px;
    margin-top: 108px;
}
#mainvisual .inner {
    width: auto;
    height: inherit;
}
/* 下層ページヘッドライン */
#mainvisual h2 {
    font-size: 22px;
}
/* トップページキャッチフレーズ */
.mainvisual_catch {
    position: absolute;
	width: 100%;
	top: -60px;
}
.mainvisual_catch h2 {
    margin-bottom: 10px;
    font-size: 22px;
}
.mainvisual_catch p {
    font-size: 25px;
				display: block;
				width: 100%;
				text-align: center;
}
.mainvisual_catch p + span{
width: 100%;
    text-align: center;
				font-size: 15px;
}
.mainvisual_catch p span {
    font-size: 16px;
}
.mainvisual_catch span{
    display: block;
}
.mainvisual_open{
	right: 10px;
	bottom: 10px;
	width: 150px;
}
.mainvisual_catch p.mc_span_box{
/*margin: 10px 0;
    padding: 0 3%;
    background: rgba(147, 171, 101, 0.8);
    width: 80%;
    max-width: 360px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;*/
				display: none;
}
.mainvisual_catch p.mc_span_box i {
    font-size: 50%;
				text-align: center;
}
.mainvisual_catch p.mc_span_box:before{
display: none;
}
.mainvisual_infection {
position: absolute;
    bottom: 20px;
    left: auto;
    right: auto;
    width: 100%;
    padding: 0 3%;
    margin: 0 auto;
    text-align: center;
}

.mainvisual_open img,
.mainvisual_infection img {
    width: 100%;
    max-width: 240px;
}

#container {
    padding-top: 250px;
				background:url(../images/main.jpg)top right 15% no-repeat;
}
.bg_reaf{
background: url(../images/main.jpg)top right 15% no-repeat;
}
/*============================================================================

	#contents

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

.box1 {
    width: auto;
    /*margin: 0 6% 80px;*/
				margin: 0 0 80px;
				padding-left: 5%;
				padding-right: 5%;
}
.box2 {
    width: auto;
    /*margin: 0 6% 80px;*/
				margin: 0 0 80px;
				padding-left: 5%;
    padding-right: 5%;
}
#contents {
    width: auto;
}
#contents_left,
.blog_layout #contents_left{
    width: auto;
    float: none;
    margin-right: 0;
}
#contents_right {
    width: auto;
    padding: 0 6%;
    float: none;
}
/*============================================================================

	footer

============================================================================*/
.footer{
    padding-bottom: 52px;
}


.footer_bg {
    padding: 70px 0;
}


.footer_info{
    width: auto;
    justify-content: center;
    padding: 0 5% 50px;
}
.footer_info_left,
.footer_info_right{
    width: 100%;
				padding: 0;
}
.footer_info dl {
    float: none;
    width: auto;
    padding: 0 6%;
}
.footer_info dl dt {
    float: none;
    text-align: center;
    margin: 0 auto 30px;
}
.footer_info_logo, .footer_info_logo img {
    width: 222px;
    height: 148px;
}

.footer_info_overview_tel {
    padding-bottom: 20px;
}
.footer_info_sche {
    float: none;
    width: 100%;
    font-size: 13.5px;
}
.footer_info_sche p {
    margin: 0;
}
.footer_navi .inner {
    width: 100%;
    padding: 30px 0;
}
.footer_navi ul {
    width: 100%;
	padding: 0 15px;
	display: block;
}
.footer_navi ul li {
    display: block;
	border-bottom: 1px dotted #1F2774;
}
.footer_navi ul li:last-child{
	border-bottom: none;
}
.footer_navi ul li a {
    display: block;
    padding: 5px;
    line-height: 1.5;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}
.footer_navi ul li a::after {
    display: none;
}
.footer_navi ul li a span::before{
    display: none;
}

.footer_info_right img + div {
    margin-top: 25px;
}
.footer_info_right img + div dl{
flex-wrap: wrap;
}
.footer_info_right img + div dl dt {
    display: block;
    width: 100%;
				margin: 3px;
}
.footer_info_right img + div dl dd {
    display: block;
    width: 100%;
}

.footer_info_overview_logo {
    width: 280px;
    height: auto;
    margin: 0 auto 60px;
}

.cal_box {
  /*position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow:auto; 
  -webkit-overflow-scrolling:touch;*/
}

.cal_box iframe {
    /*position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;*/
}





.schedule_note {
    margin-bottom: 30px;
}

.banner_box {
    width: 90%;
    padding: 20px 15px 20px;
}

.pagetop {
    right: 10px;
    bottom: 66px;
}

.copy {
padding-bottom: 72px !important;
}
/*============================================================================

	$top

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


.doctor_flex{
	flex-direction: column-reverse;
}

.top_doctor .box1 {
    width: 100%;
}

.top_doctor h2 {
    width: 100%;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.top_doctor h2 span {
    z-index: 2;
    position: absolute;
    font-family: Hiragino Maru Gothic W5 JIS2004;
    color: #feffff;
    font-size: 140%;
    line-height: 1;
    padding: 0 0 0 0;
    letter-spacing: 0.1em;
}
.top_doctor h2::after {
    position: absolute;
    top: 21px;
    left: 50%;
    margin-left: -71px;
    width: 140px;
    height: 140px;
    border-radius: 100%;
    content: "";
    transition: all .3s ease-out;
    transform: scale(.2);
				z-index: 1;
				background-color: #fff;
				opacity: 0;
}
.top_doctor h2:hover::after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
				opacity: 0.8;
}.top_doctor h2:hover span {
color: #333;
}

.top_doctor .text {
    width: auto;
}
.top_doctor_img {
    width: auto;
	margin-bottom: 15px;
}
.top_doctor_img p{
	text-align: center;
}
.top_doctor_img p img{
	width: 60%;
	margin: 0 auto 15px;
	display: block;
}
.top_doctor_img dt {
    margin-bottom: 17px;
    padding: 0 10%;
    text-align: center;
}
.top_doctor_img dd {
    text-align: center;
}
.top_medical2_list a {
    width: 46%;
    margin-right: 8%;
}
.top_medical2_list a:nth-child(even) {
    margin-right: 0;
}
.top_medical3_list li {
    width: 46%;
    margin-right: 8%;
}
.top_medical3_list li:nth-child(even) {
    margin-right: 0;
}
.top_medical4_list {
    width: auto;
    margin: 0 8%;
}
.top_medical4_list dl {
    width: 45%;
    margin-right: 0;
}
/*============================================================================

	$breadcrumbs ぱんくず

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

.breadcrumbs {
    width: 92%;
    margin: -10px 4% 40px;
}
.breadcrumbs li {
    display: inline-block;
}
/*============================================================================

	$共通

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

#contents {
    padding-bottom: 70px;
}
.box {
    width: auto;
    padding: 0 6% 8%;
}
.side_area .box {
    margin-bottom: 0;
}
.text {
    float: none;
    width: auto;
    padding: 0;
    border: none;
}

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

	$見出し

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

h1{
font-size: 12px;
line-height: 1.5;
    width: auto;
    text-align: center;
    padding: 0px 15px !important;
    position: static;
    top: 0;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tit01,
.tit03,
.tit04 {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
}

.tit02{
    text-align: justify;
}

/*.tit02::before {
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 57px;
    background-image: url(../images/tit02_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}*/

.top_news_headline .tit02{
margin-bottom: 0;
}

.tit15 {
    font-size: 25px;
}

.nowrap {
    white-space: normal;
}



/* テーブル */
.tb01 {
    white-space: inherit;
}
.tb01 th {
	width: 30%;
	font-size: 15px;
}
.tb01 td {
	font-size: 15px;
	text-align: center;
}
.tb01 tr:first-child td sup {
    font-size: 70%;
}
.tb02 {
    white-space: inherit;
}
.tb02 th,
.tb02 td{
	width: 100% !important;
display: block;
text-align: justify;
}
.tb02 th{
border: none;
padding-bottom: 5px;
padding-top: 13px;
}
.tb02 td{
padding-bottom: 13px;
padding-top: 0;
}
/*.tb02 tr:first-child th{
padding-top: 0;
}*/


.tb03, .tb03 th {
    white-space: inherit;
}
.tb03 th {
border-bottom: none;
}
.tb03 th, .tb03 td {
display: block;
width: 100%;
}
.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;
}

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


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



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

.img_fr_illust img {
	max-width: 75% !important;
	width: auto;
}

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

	$doctor

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

/* ごあいさつ */
.doctor_greet .text {
    float: none;
    width: auto;
}
/* 経歴、資格 */
.doctor_carr_sec1 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
}

.doctor_file img{
  max-width: 288px;
}
.doctor_file_2 img{
  max-width: 100%;
}
/*============================================================================

	$clinic

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

/* 医院概要 */
.clinic_sec1 dt,
.clinic_sec1 dd {
    width: 100%;
				display: block;
}

.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_slides1 {
    margin-bottom: 20px;
}
.clinic_slides1 .flexslider {
    float: none;
    width: 100%;
}
.clinic_slides1 .flexslider li div {
    display: block;
    margin-top: 5%;
    margin-left: 0;
    text-align: center;
}
.clinic_slides1 .flexslider p {
    display: block;
}
.clinic_slides1 .flex-control-nav.flex-control-thumbs {
    position: absolute;
    right: auto;
    width: auto;
    top: auto;
    bottom: 7%;
    z-index: 2;
}
.clinic_slides1 .flex-control-thumbs li {
    position: relative;
    width: 14.3%;
    margin: 0 0 4% 2%;
}
.clinic_slides1 .flex-control-thumbs img {
    border: 3px solid #e0e0e0;
}


/*院内スライド2 サムネイル横*/
.clinic_slide_wrap2{
  display: block;
  flex-direction: unset;
  justify-content: unset;
  max-width: 400px;
  margin: 0 auto;
  /* height: 440px; */
}
.clinic_slide_wrap_flex{
	display: block;
	flex-wrap: unset;
}
.clinic_slide_wrap_flex #slider{
  margin:0 auto 15px 0;
  width: auto;
}
.clinic_slide_wrap_flex #thumbnail-list{
	width: auto;
}
.clinic_slide_wrap_flex .thumbnail-item{
  flex: 0 1 15%;
}

.clinic_slide_wrap{
    max-width: 400px;
    margin: 0 auto;
	/* height: 440px; */
}

.clinic_slide_wrap2 + .tb02 {
    width: 100%;
}

.usage_env img {
    width: 48%;
    height: auto;
    margin-bottom: 15px;
}


.about {
    padding: 14% 5% 7%;
				    background-position: bottom right -300px;
}
	.for_virus_img {
		display: block;
	}
	.for_virus_img p {
		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: 100%;
    margin: 0 0 30px;
}
.facilities_equip2 dl:nth-child(even) {
    margin-right: 0;
}
.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: 40px;
    width: 100%;
}
.access_wrap [class^="access"]:last-child{
    margin-bottom: 0;
}
.access_wrap [class^="access"] iframe{
    height: 300px;
}
.access_list{
	padding: 30px 15px 0;
}
.access_list dl {
	width: 100%;
	margin-bottom: 30px;
}




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

	$first

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





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

	$medical

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

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

	.layout

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

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

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

  .layout01 dt {
    width: 100%;
				padding: 5%;
  }

  .layout01 dd {
    width: 100%;
				padding: 3%;
  }

  .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;
  }

  .layout03 .layout03_title {
    width: 100%;
  }

  .layout03 .layout03_title img {
    width: 70%;
    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%;
    padding: 2%;
  }

  .layout04 .layout04_title img {
    width: 70%;
    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;
  }

  .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: 6%;
	}
    .layout10 .flow_box::before{
        display: none;
    }
	.layout10 .flow_box .number{
		width: 42px;
		height: 42px;
		margin-right: 0;
		font-size: 20px;
	}
	.layout10 .flow_box .layout10_box{
		width: 80%;
	}
	.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;
	}
	
	
	
	.layout11 {
    display: block;
}
.layout11 div {
    width: 100%;
    padding: 5% 6% 6%;
    margin-bottom: 10%;
}
.layout11 div::before,
.layout11 div:nth-child(3)::before {
    display: block;
    position: absolute;
    -webkit-clip-path: polygon(50% 80%, 100% 0, 0 0);
    clip-path: polygon(50% 80%, 100% 0, 0 0);
    right: auto;
    left: 50%;
    top: auto;
    bottom: -30px;
    z-index: 1;
    content: "";
    transform: rotate(0deg);
}


.course_ablation::before{
		display: none;
}

.symptoms_box_txt{
text-align: justify;
    line-height: 1.7;
}

.symptoms_box dl {
    width: 100%;
}
.symptoms_box dl:last-child {
margin-bottom: 0;
}

.w080par{
width: 100%;
}
	
/*============================================================================

	$news

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

.news_list li a{
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

	$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 screen and (max-width:640px) {
.top_info .box1 {
    margin-bottom: 70px;
				    padding: 0 5%;
}

.top_info_item{
    width: 100%;
    margin-top: 40px;
}
.top_info_item:first-child{
    margin-top: 0;
				margin-bottom: 30px;
}
.top_info .top_news .scroll_area,
.top_info .top_blog .scroll_area{
    height: 170px;
				    overflow: auto;
}
	.submit_btn input[type="reset"],
	.submit_btn input[type="submit"] {
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}
	input#email,
	form textarea {
		width: 100%;
	}

}


@media screen and (max-width:320px) {
.header_logo img {
    width: 100%;
    height: 25px;
}
.main_open {
    position: absolute;
    top: auto;
    bottom: 50px;
    right: 0;
    left: 0;
    width: 50%;
    margin: auto;
}
.sp_inline_iP{
	display:inline!important
}
.tgl_menu_list2 ul li a,
.tgl_menu_list2 ul li p {
    font-size: 70% !important;
				padding-top: 59px;
}
}
