@charset "utf-8";

/* -----------------------------------------------------------
	message-area
-------------------------------------------------------------- */
#doctor .message-area{
    margin: 0 auto 70px;
}
#doctor .message-wrap{
    display: flex;
}
#doctor .txt-area{
    width: 800px;
    margin: 0 80px 0 0;
}
#doctor .txt-area .txt.style2{
    margin: 20px 0 0;
}
#doctor .img-area{
    width: 320px;
    position: relative;
}
#doctor .img-area img{
    width: 320px;
    height: 320px;
}
#doctor .img-area .doctor-name{
    /*font-family: 'Noto Serif JP', serif;*/
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    background: #E7F3F9;
    width: 100%;
    padding: 15px 0;
    border-radius: 20px;
    box-shadow: 0px 3px 6px rgba(204,204,204,0.5);
    position: absolute;
    top: 280px;
    left: 0;
}
#doctor .img-area .doctor-name span{
    font-size: 3.0rem;
    font-weight: 700;
    padding: 0 0 0 15px;
}

@media screen and (max-width: 768px){
    #doctor .message-area{
        margin: 0 auto 50px;
    }
    #doctor .message-wrap{
        flex-direction: column-reverse;
    }
    #doctor .txt-area{
        width: 100%;
        margin: 0;
    }
    #doctor .txt-area .txt.style2{
        margin: 15px 0 0;
    }
    #doctor .img-area{
        width: 100%;
        position: static;
        margin: 0 0 20px;
    }
    #doctor .img-area img{
        width: 100%;
        height: auto;
    }
    #doctor .img-area .doctor-name{
        padding: 10px 0;
        border-radius: 0 0 20px 20px;
        box-shadow: none;
        position: static;
    }
    
}


/* -----------------------------------------------------------
	doctor-area
-------------------------------------------------------------- */
#doctor .doctor-area {
	margin: 80px 0 0;
    padding: 0 0 70px;
    width: 800px;
}
#doctor .table {
    width: 100%;
	border-top: 1px solid #ddd;
	vertical-align: top;
}
#doctor .table tr th{
	font-weight: 400;
	border-bottom: 1px solid #ddd;
	padding: 20px 30px;
	width: 25%;
	vertical-align: top;
}
#doctor .table tr td{
	width: 75%;
	border-bottom: 1px solid #ddd;
	padding: 20px;
	vertical-align: top;
	line-height: 2;
}
#doctor iframe{
    margin: 20px 0 0 0;
}

@media screen and (max-width: 768px){
    #doctor .doctor-area {
        margin: 0 auto;
        padding: 0 0 30px;
        width: auto;
    }
	
	#doctor .table {
		margin: 30px 0 0 0;
	}
	
	#doctor .table tr th{
		width: 100%;
		padding: 15px 0 2px;
    	font-weight: 500;
    	border-bottom: none;
    	display: block;
	}
	
	#doctor .table tr td{
		width: 100%;
		border-bottom: 1px solid #ccc;
		padding: 2px 0 15px;
		display: block;
	}
}

