@charset "utf-8";
/*
Theme Name: gu_radiotherapy
Theme URI: 
Author: Science Graphics
Author URI: https://wordpress.org/
Description: This template is designed by Science Graphics
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Science Graphics

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* CSS Document */

/**

1. common
2. override bootstrap slick
3. header
4. navi
5. toppage section
6. footer

7. breadcrumb
8. sidebar
9. main_content

20. PC
30. SP

35. admin


40. print

main colors: 

#2c75db    theme color
#e6f7ff    theme light color


**/

/***************************************************************
 1. common
 **************************************************************/


body{
	font-family:"Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;		
	line-height:150%;
	font-size: 16px;
}

a:hover img{
	opacity:0.8;	
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}

/* 左側メニューに被らないようにする*/
header,main{
   margin-left: 77px; 
}

nav{
    margin-left: -77px; 
}


.wrapper{
	width:1200px;
	margin:0px auto; 
}

.left,
.left_column{
	float:left;	
}

.right,
.right_column{
	float:right;	
}

.current{
	background-color:#dedede;	
}

h3{
	background-color:#dedede;
	font-size:18px;
	padding:15px 8px;
	margin:30px 0px 20px 0px;	
}

h4{
	/*border-left:3px solid #dedede;*/
	padding:10px 20px;
	margin:20px 0px;
	font-size:16px;
}

h5{
	font-size:16px;
	padding:20px 10px;
	border-bottom: 1px solid #dedede;
}

ul{
	padding-left:0px;
}

ol{
	padding-left:15px;
    margin: 0rem 1rem;
}

ul li{
	list-style:none;
	
}

p{
	padding:4px;	
}

.full{
	width:100%;
}

a:focus{
	color:#aaa;	
}

a.more{
	float:right;
}

.pagetop{
	border:1px solid #3a5a96;
	padding:5px 10px;
	float:right;
    border-radius: 5px;
    color: #3a5a96;
}

.pagetop:before{
 	content: '\f0d8';
}

table td, table th{
	font-size:16px;
}

table.noborder,
table.noborder td,
table.noborder th{
	border:none;
}

.alignleft {
display: block;
float:left;
}

.aligncenter {
display: block;
margin: 0 auto;
}

.alignright {
display: block;
float:right;
}

span.date{
	font-size: 12px;	
}

h2 .btn, h3 .btn, h4 .btn, h5 .btn
{
	float:right;
}

table th, table td{
	font-size:16px;
}

/***************************************************************
 2. override bootstrap / fontawesome / slick
 **************************************************************/
 
/* bootstrap */

.btn-info{
	background-color:#2c75db;
	border-radius:0px;
	border:none;
}

.label{
	padding:1px 20px 2px;
    border-radius: 20px;
    min-width:80px;
    font-weight: normal;
    text-align: center;
    color: #fff;
}

.label.news, .label-news,
.label.news_en, .label-news_en{
	background: #7ecef4;
}

.label.event-ja, .label-event-ja,
.label.event-en, .label-event-en{
    background: #beb9db;
}

section#news .event-ja,
section#news .event-en{
    display: none;
}

.label.topics{
	background-color:#274BBF;
}

.label.research{
	background-color:#A8590B;
}

.row h1, .row h2, .row h3, .row h4, .row h5, .row h6{
	display: block;
	width: 100%;
}


/* font awesome */

*:before, *:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

#wpadminbar *:before{
	font-family: dashicons !important;
}

*:before{
	padding-right:5px;
}

*:after{
	padding-left:5px;
}

.date:before{
	content: "\f073";
}

.location:before{
	content: "\f3c5";
}


/*polylang*/
body.lang-ja .lang-item-ja,
body.lang-ja .lang-en{
    display:none;
}

body.lang-en .lang-item-en,
body.lang-en .lang-ja{
    display:none;
}

/* slick */

.slick-prev{
    left:-35px;
    width:30px;
}

.slick-next{
    right:-35px;
    width:30px;
}

.slick-prev:before, .slick-next:before{
    font-size: 30px;
}


.slick div.slick-item{
    position:relative;
}

.slick div.slick-item p.caption{
    position: absolute;
    bottom:0px;
    left:0px;
    background-color:rgba(0,0,0,0.90);
    z-index: 100;
    width: 100%;
    margin:0px;
    color:#fff;
}



/***************************************************************
 2.5. animation
 **************************************************************/

.fade-in{
    opacity: 0;
}

.fade-in.is-animated{ 
　opacity:0;
  animation-name:fadeIn;
  animation-duration:1s; 
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fade-in.rise-up.is-animated{
  animation-name:fadeRiseUp;
}

.fade-in.rise-left.is-animated{ 
  animation-name:fadeRiseLeft;
}

.fade-in.fade-simple{
  animation-name:fadeIn;
}

.fade-in.zoom-in{
  animation-name:fadeZoomIn;
}

.fade-in.zoom-out{
  animation-name:fadeZoomOut;
}


@keyframes fadeIn {
  0% {
   opacity: 0;
  }
  100% {
    opacity:1;
  }
}

@keyframes fadeZoomIn {
  0% {
   opacity: 0;
   transform:scale(0.9);
  }
  100% {
    opacity:1;
    transform:scale(1.0);
  }
}

@keyframes fadeZoomOut {
  0% {
   opacity: 0;
   transform:scale(1.1);
  }
  100% {
    opacity:1;
    transform:scale(1.0);
  }
}

@keyframes fadeRiseUp {
0% {
 opacity: 0;
 transform: translateY(30px);
}

100% {
 opacity:1;
 transform: translateY(0px);
 } 
}

@keyframes fadeRiseLeft {
0% {
 opacity: 0;
 transform: translateX(-60px);
}

100% {
 opacity:1;
 transform: translateX(0px);
 } 
}


/***************************************************************
 3. header
 **************************************************************/

header{
    position: sticky;
    top:0;
    z-index: 999;
    transition: background-color 0.5s;
}

#sub header{
}

header #logo_area{
	padding: 24px 0 10px 50px;
}

header #logo_area p{
    margin: 0;
	padding: 0;
}

header h1{
	display:none;	
}

header #lang_area ul li{
    float: right;
    padding: 20px 10px 0;
}

header #lang_area ul li.lang-item a{
    font-size: 25px;
    background: transparent;
    color: #fff;
}

header #lang_area ul li img{
    width: 25px;
}

#sidemenu{
    position: fixed;
    top:0;
    left:0;
    z-index: 9999;
}

#sidemenu table{
    border:0 !important;
}
#sidemenu table tr{
    border:0 !important;
    padding: 0;
}
#sidemenu table tr td{
    border:0 !important;
    padding: 0;
}

#sidemenu img.top{
    width: 77px;
}

#sidemenu img.under{
    width: 77px;
}


#home header{
}

#sub header{
}



/*qtranslate x*/
header.lang-en li.lang-en{
	display:none;
}

header.lang-ja li.lang-ja{
	display:none;
}

.sub_head{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/sub_head.jpg");
    background-position: center;
    background-size: cover;
    height: 200px;
    margin-top: -78px;
}


/***************************************************************
4 nav
***************************************************************/


nav{
	display:none;	
		width: 100%;
		z-index:99999;
		position:absolute;
        top: 77px;
    left:77px;
    background: rgba(255,255,255,0.9);
    height: 100vw;
    padding: 30px 0;
}


nav div{
	margin:0px;
	padding:0px;
}

nav ul{
	margin:0px;
    padding: 0;
}

nav ul li{
	padding:0px;
	margin:0px;
}

nav div > ul > li{
    border-left: 1px solid #000;
    float: left;
    padding: 0 10px;
}

nav div > ul > li:first-child{
    border-left: 0;
}

nav div > ul > li:last-child{
    border-right: 1px solid #000;
}

nav ul li a{
	display:block;
	padding:15px 15px;
	color:#000;
	font-size:16px;
	vertical-align:middle;
    width: 246px; 
}

nav div > ul > li:nth-child(2) > a{
	background: #f0a074;
    text-align: center;
    color: #fff;
    padding: 15px 0;
}

nav div > ul > li:nth-child(3) > a{
	background: #7bb78f;
    text-align: center;
    color: #fff;
    padding: 15px 0;
}

nav div > ul > li:nth-child(4) > a{
	background: #7eb1ee;
    text-align: center;
    color: #fff;
    padding: 15px 0;
}

nav ul > li{
}

nav ul li:nth-child(7n) a{
	
}

nav ul ul li:last-child a{
	border:none;
}

nav ul li a:hover{
	background-color:#fff;
	color:	#2a61b1;
	text-decoration:none;
}




/***************************************************************
5 toppage section
***************************************************************/


section#eyecatch{
    height: 900px;
  overflow: hidden;
}

section#eyecatch p{
    margin: 0;
}

section#eyecatch .visual{
	width: 100%;
  height: 100vh;
}

section#eyecatch .wrapper{
    height: 900px;
	position: relative;
}

section#eyecatch video{
  position: fixed;
  top: 0;
  left: 0;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
}

section#eyecatch .pickup{
    background: rgba(255,255,255,0.7);
    border-radius: 5px;
    position: absolute;
    top: 57%;
    padding: 10px 30px;
    width: 95%;
    margin-left:30px;
}

section#eyecatch .pickup p{
    margin: 0;
    padding: 0;
}
section#eyecatch .pickup p.text:after{
    content: "\f105";
    float: right;
    color: #0046ad;
}

section#eyecatch .pickup span{
    color: #0046ad;
    margin-right: 25px;
}

section#eyecatch .about{
    background: rgba(255,255,255,0.7);
    border-radius: 5px;
    position: absolute;
    top: 64%;
    padding: 25px 50px 30px;
    width: 100%;
}

@media (max-width: 1199px) {
    
   
    section#eyecatch .pickup{
    position: absolute;
    top: 30%;
    width: 100%;
}
    
    section#eyecatch .about{
    position: absolute;
    top: 40%;
}
    
}

section#eyecatch .about p.name{
    font-size: 22px;
    color: #3a5a96;
    padding: 30px 0 0 30px;
    font-weight: bold;
}

section#eyecatch .btn1{
    display: block;
    background: #f0a074;
    text-align: center;
    color: #fff;
    padding: 25px 0;
    font-size: 18px;
    border-radius: 3px;
}
section#eyecatch .btn1 span,
section#eyecatch .btn2 span,
section#eyecatch .btn3 span{
    font-size: 16px;
}
section#eyecatch .btn1:hover,
section#eyecatch .btn2:hover,
section#eyecatch .btn3:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#eyecatch .btn2{
    display: block;
    background: #7bb78f;
    text-align: center;
    color: #fff;
    padding: 25px 0;
    font-size: 18px;
    border-radius: 3px;
}

section#eyecatch .btn3{
    display: block;
    background: #7eb1ee;
    text-align: center;
    color: #fff;
    padding: 25px 0;
    font-size: 18px;
    border-radius: 3px;
}

section#news{
    background: #e7edf4;
    padding: 30px 0;
    position: relative;
}

section#news h2{
    text-align: right;
    font-family: "Libre Baskerville", serif;
    color: #3a5a96;
    font-weight: bold;
    margin-bottom: 25px;
    margin-right: 30px;
}

section#news ul li{
    padding: 10px 0;
    border-bottom: 1px solid #fff;
}

section#news .btn-info{
    color: #000;
    border: 1px solid #000;
    padding: 2px 20px;
    background: transparent;
}

section#news .btn-info:before{
    content: "\f0c9";
    color: #3a5a96;
    margin-right: 5px;
}

body.lang-en section#event{
    display: none;
}

section#event{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/bg_event.jpg");
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

section#event h2{
    text-align: right;
    font-family: "Libre Baskerville", serif;
    color: #3a5a96;
    font-weight: bold;
    margin-bottom: 25px;
    padding-right: 30px;
}

section#event .col-md-4 a{
    color: #000;
}
section#event .col-md-4 a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#event .thumbnail{
    height: 184px;
    overflow: hidden;
    border-radius: 5px;
}

section#event .thumbnail img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center; /* 中央を基準に表示 */
}

section#event .btn-info{
    color: #000;
    border: 1px solid #000;
    padding: 2px 20px;
    background: transparent;
}

section#event .btn-info:before{
    content: "\f0c9";
    color: #3a5a96;
    margin-right: 5px;
}

section#event .tile{
    margin-bottom: 15px;
}

section#event .tile p{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}

section#event .tile p.date{
    color: #2b4f90;
    font-weight: normal;
}

section#event .title{
    min-height: 67px;
}

section#greeting{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/bg_event.jpg");
    background-size: cover;
    padding: 30px 0 50px;
    position: relative;
}

section#greeting h2{
    text-align: center;
    font-family: "Libre Baskerville", serif;
    color: #3a5a96;
    font-weight: bold;
    margin-bottom: 30px;
}

section#greeting i{
    color: #3a5a96;
}

section#greeting p{
    line-height: 180%;
}

section#greeting .title{
    font-weight: bold;
    font-size: 20px;
    background: linear-gradient(transparent 80%, #dde4fd 0%);
    text-align: center;
}

section#greeting p.prof{
    font-weight: bold;
    font-size: 18px;
    text-align: right;
}

section#greeting .person{
    text-align: left;
    margin-top:-50px;
}

body.lang-en section#greeting .person{
    margin-top:0px;
}

section#greeting .person p{
    font-weight: bold;
    margin: 0;
}

section#greeting .person img{
    width: 80%;
}

section#greeting .btn-info{
    padding: 5px 80px;
    border-radius: 30px;
    color: #000;
    background: linear-gradient(90deg, #accbee, #e7f0fd);
    position: relative;
    margin-right: 15px;
}

section#greeting .btn-info:after,
section#greeting .btn-info2:after{
    content: "\f105";
    color: #1954b0;
    position: absolute;
    right: 15px;
}

section#greeting .btn-info:hover,
section#greeting .btn-info2:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#greeting .grey{
    background: #99abca;
    border-radius: 5px 0 0 5px;
    padding: 80px 0 40px;
    margin-top:130px;
}

section#greeting .btn-info2{
    padding: 5px 55px;
    border-radius: 30px;
    color: #000;
    background: linear-gradient(90deg, #accbee, #e7f0fd);
    position: relative;
    margin-right: 15px;
}

section#greeting h3{
    background: transparent;
    margin: 0;
    padding: 0;
    color: #9ec5f1;
    font-size: 30px;
    z-index: 100;
    position: relative;
    margin-left: 20px;
}

section#greeting img.staff{
    margin-top: -15px;
    width: 750px;
    z-index: 1;
    position: relative;
    
}

section#patient{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/bg_patient.jpg");
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

section#patient h2{
    color: #f0a074;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-size: 38px;
    margin: 30px 0;
}

section#patient ul li{
    background: #fff;
    border-radius: 5px;
    padding: 8px 10px;
    margin-bottom: 10px;
}

section#patient ul li a{
    padding: 5px;
    border-left: 3px solid #f0a074;
    color: #000;
    display: block;
    position: relative;
}

section#patient ul li a:after{
    content: "\f105";
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0px 25px;
    background: #f0a074;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
}

section#patient ul li a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#medical{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/bg_medical.jpg");
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

section#medical h2{
    color: #7bb78f;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-size: 38px;
    margin: 30px 0;
    text-align: right;
}

section#medical ul li{
    background: #fff;
    border-radius: 5px;
    padding: 8px 10px;
    margin-bottom: 10px;
}

section#medical ul li a{
    padding: 5px;
    border-left: 3px solid #7bb78f;
    color: #000;
    display: block;
    position: relative;
}

section#medical ul li a:after{
    content: "\f105";
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0px 25px;
    background: #7bb78f;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
}

section#medical ul li a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#student{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/bg_student.jpg");
    background-size: cover;
    background-position: bottom;
    padding: 50px 0;
    position: relative;
}

section#student h2{
    color: #93bdf0;
    font-family: "Libre Baskerville", serif;
    font-weight: bold;
    font-size: 38px;
    margin: 30px 0;
}

section#student ul li{
    background: #fff;
    border-radius: 5px;
    padding: 8px 10px;
    margin-bottom: 10px;
}

section#student ul li a{
    padding: 5px;
    border-left: 3px solid #93bdf0;
    color: #000;
    display: block;
    position: relative;
}

section#student ul li a:after{
    content: "\f105";
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0px 25px;
    background: #93bdf0;
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
}

section#student ul li a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#recruit{
    background: url("https://www1.gifu-u.ac.jp/~radiology/wp-content/themes/gu-radiology/images/recruit.jpg");
    background-size: cover;
    background-position: bottom;
    padding: 50px 0;
    position: relative;
}

section#recruit .box{
    background: rgba(255,255,255,0.8);
    text-align: center;
    padding: 50px 0;
    margin-top: 50px;
}

section#recruit .box p{
    color: #49659c;
    font-size: 50px;
    line-height: 140%;
    font-family: "Libre Baskerville", serif;
    margin: 0;
}

body.lang-en section#recruit .box{
    padding: 75px 0;
}

body.lang-en section#recruit .box p{
    font-size: 27px;
}

section#recruit .btn-info{
    color: #fff;
    background: rgba(35,183,228,0.8);
    padding: 5px 50px;
    position: relative;
}
section#recruit .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}

section#contact{
    background: #fff;
    padding: 30px 0;
    position: relative;
}

section#contact .c_box{
    background: #bac6db;
    padding: 50px 50px 0;
    text-align: center;
    border-radius: 25px;
    height: 250px;
}

section#contact .c_box p{
    margin: 0;
}



section#contact p.contact{
    background: #fff;
    padding: 3px 20px;
    border-radius: 20px;
}

section#contact p.tel{
    margin-top: 20px;
}
section#contact p.tel span{
    font-size: 25px;
    font-weight: bold;
    margin-left: 10px;
}

section#contact p.fax{
    margin-bottom: 0;
}

section#contact p.fax span{
    font-size: 25px;
    font-weight: bold;
    margin-left: 10px;
}

section#contact .form{
    background: #fff;
    padding: 3px 20px;
    border-radius: 20px;
    display: block;
    color: #000;
    position: relative;
    margin-bottom: 60px;
}
section#contact .form:after{
    content: "\f107";
    color: #1954b0;
    position: absolute;
    bottom: -25px;
    left:0;
    right: 0;
}
section#contact .form:hover{
    text-decoration: none;
    opacity: 0.8;
}

/* autoHeight.jquery */

div.item{
	margin-bottom:10px;
	height:auto;
}

div.item div{
	border:1px solid #ccc;
	padding:2px 4px;
}


/***************************************************************
6 footer
***************************************************************/

footer{
	background-color:#fff;
	padding:30px 0 50px 80px;
    position: relative;
}

footer p.add{
	text-align: center;
    color: #1954b0;
    margin-top: 15px;
}

footer p.copy{
	text-align: center;
}

body#sub footer{
    border-top: 1px solid #999;
}


/***************************************************************
7 breadcrumb
***************************************************************/

#breadcrumb{
padding:15px 0px;
}
#breadcrumb ul li{
	float:left;
	margin:0px 10px;
}

#breadcrumb ul li a{
	color:#000;
}

/***************************************************************
8 sidebar
***************************************************************/

div#sidebar{
	border:0;
	padding:0px;
	margin-bottom:20px;
    position: sticky;
    top:95px;
}

div#sidebar h2{
	background-color:#1954B0;
	color:#fff;
	font-size:18px;
	margin:0px;
	padding:15px 10px;	
}

div#sidebar h2 i{
	display:none;
	float:right;
	width:50px;
}

div#sidebar ul{
	margin-bottom:0px;
}

div#sidebar ul li{
	background-color:#fff;	
}

div#sidebar ul li a{
	display:block;
	min-height:40px;	
	padding:10px;
	border-bottom:1px dashed #A1C5F7;
	color:#666;
}

div#sidebar ul li a:hover{
	background-color:#efefef;
	text-decoration:none;	
}

div#sidebar ul li a:after{
 	content: '\f105';
    position: absolute;
    right:5px;
    color:#1954B0;
}


div#sidebar ul li ul li{

}

div#sidebar ul li ul li a{
	background-color:#efefef;	
	min-height:40px;
	padding:10px 10px 10px 20px;
	border-bottom:1px dashed #A1C5F7;
	color:#666;	
}

div#sidebar ul li ul li a:hover{
	background-color:#FFF6E8;
	text-decoration:none;		
}

/*うえにくっつくサイドメニュー*/

header div.wrapper2{
    background-color:rgba(18, 53, 119,0.85);
    opacity: 0;
    width:100%;
    z-index: 5;
    position: absolute;
}

header div.wrapper2 div.wrapper{
}

header div#sidebar_horizon_header{
    color:#fff;
    /*min-height: 30px;*/
    /*padding-left:25%;*/
}

header div#sidebar_horizon_header div#sidebar_horizon{
    margin-top:8px;
}

header div#sidebar_horizon_header h2{
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    padding:2px 15px 2px 0px;
    float:left;
    width:25%;
    text-align: right;
}

header div#sidebar_horizon_header ul{
    float:left;
    width:75%;
    margin-bottom: 5px;
}

header div#sidebar_horizon_header ul li{
    display: inline-block;
    margin-right:10px;
    margin-bottom: 7px;
}

header div#sidebar_horizon_header ul li a{
    color:#fff;
}

div#main_content #sidebar_horizon h2{
    font-size: 16px;
    margin:10px;
    font-weight: normal;
    text-align: left;
    display: none;
}

div#main_content #sidebar_horizon ul li{
    display: inline-block;
    margin-right: 10px;
    padding-left: 0;
}

div#main_content #sidebar_horizon ul li:before{
    content:none;
}

body.archive div#main_content #sidebar_horizon ul li:before {
    content: '\f0da';
    margin-left: -12px;
	padding-right: 5px;
}

body.archive div#main_content #sidebar_horizon ul{
    margin-top: 0;
}

a.label:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

/***************************************************************
9 main_content
***************************************************************/


img#sub_eyecatch{
    position:absolute;
    top:0px;
    left:0px;
    right:0px;
    margin:auto;
    max-width: 1400px;
    z-index: -1;
}

div#main_content{
	padding:0px;
	min-height: 500px;
    margin-bottom: 30px;
    line-height: 180%;
}

div#main_content h1 {
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 1.5rem;
    text-align: center;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif CJK JP", serif;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #3c3c3c;
    text-shadow: 0px 0px 10px #cfcfcf;
    background: #ffffff;
    transition: all 0.3s ease;
    z-index: 1;
    border-top: 2px solid #555555;
    border-bottom: 2px solid #555555;
    box-shadow: 0px 10px 10px -10px rgba(60, 60, 60, 0.5);
    overflow: visible;
}

div#main_content h1::before {
    content: '★';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 40px;
    color: #ffffff;
    background: #555555;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    text-shadow: none;
    z-index: -2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:2rem;
    letter-spacing: normal;
}

div#main_content h1::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(74, 144, 226, 0.1) 60deg,
            rgba(245, 101, 101, 0.1) 120deg,
            rgba(245, 166, 35, 0.1) 180deg,
            rgba(80, 200, 120, 0.1) 240deg,
            rgba(139, 69, 255, 0.1) 300deg,
            transparent 360deg);
    mask: linear-gradient(to right, transparent 0%, black 20%, black 60%, transparent 85%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 20%, black 60%, transparent 85%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

div#main_content h1:hover {
    letter-spacing: 0.3em;
}

div#main_content h1:hover::before {
    text-shadow: 0px 0px 10px #e6e7dd;
}

div#main_content h1:hover::after {
    opacity: 1;
}

div#main_content div#content_area{
	padding:10px 0px;	
	min-height:500px;
}


div#main_content h2{
    position: relative;
    margin: 2.5rem 0 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #6381c8 0%, #928ad9 50%,#c79cdb 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
    overflow: hidden;
}

div#main_content h2 {
    transform: perspective(1000px) rotateX(0deg) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

div#main_content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

div#main_content h2:hover::before {
    left: 100%;
}

div#main_content h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 8px;
    background: linear-gradient(135deg, #2c3e50 0%, #82575f 100%);
    border-radius: 0 0 12px 12px;
    filter: blur(2px);
    opacity: 0.7;
}

div#main_content h2:nth-of-type(n+2){
    margin-top: 60px;
}

div#main_content h3 {
    position: relative;
    margin: 2.5rem 0rem 1.5rem;
    padding: 0.8rem 1.5rem 0.8rem 3.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #4d8c9d;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid transparent;
    background-clip: padding-box;
    transition: all 0.3s ease;
}

div#main_content h3:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

div#main_content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 2px;
}

div#main_content h3::after {
    content: "▶";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #15c1ff;
    font-size: 1.5rem;
}

div#main_content h3:nth-of-type(n+2){
    margin-top: 60px;
}

div#main_content h4 {
    position: relative;
    display: inline-block;
    margin: 0.5rem 0.5rem 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #575757;
    padding: 0.5rem 0.5rem;
    transition: all 0.3s ease;
    z-index: 3;
}

div#main_content h4:hover {
    transform: translateY(-1px);
    color: #3c9aeb;
}

div#main_content h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4facfe 0%, #52f6ff 100%);
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.3s ease;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

div#main_content h4:hover::after {
    height: 6px;
    border-radius: 3px;
    opacity: 0.8;
    box-shadow: 0 0 5px rgba(79, 172, 254, 0.8);
}

div#main_content h4:nth-of-type(n+2){
    margin-top: 40px;
}

div#main_content h5 {
    position: relative;
    font-size: 1.2rem;
    color: #2656ae;
    margin: 1.5rem 0.5rem 0.5rem;
    padding: 0.5rem 1.3rem 0.5rem;
    border-bottom: 2px dashed #94baff;
    border-left: 2px dashed #94baff;
    border-bottom-left-radius: 8px;
    overflow: visible;
}

div#main_content h5::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -2px;
    width: 0px;
    height: 0px;
    border-top: 12px solid #94baff;
    border-right: 12px solid transparent;
}

div#main_content h5:nth-of-type(n+2){
    margin-top: 40px;
}

div#main_content h6 {
    position: relative;
    margin: 0.5rem 2rem 0.5rem 2rem;
    font-size: 1.2rem;
    background: linear-gradient(transparent 70%, #e1d6ff 70%);
    max-width: max-content;
    display: inline;
}

div#main_content h6:nth-of-type(n+2){
    margin-top: 40px;
}

div#main_content div.clearfix{
	margin-bottom:30px;	
}

div#main_content table{
	margin-bottom:15px;
}

div#main_content table tr td{
	/*border:1px solid #ccc;*/
    border: 1px dashed #A1C5F7;
	padding:10px 15px;
}

div#main_content table tr th{
	background-color:#87a0ce;
	color:#fff;
	padding:10px 15px;	
	border-bottom:1px solid #fff;
}

/*div#main_content table tr:nth-child(2n){
	background-color:#efefef;
	clear:both;
}*/

div#main_content table.about tr td{
    border: none;
	border-bottom:1px dashed #A1C5F7;
	padding:10px 15px;
}

div#main_content table.about tr th{
    background-color:transparent; 
	border-bottom:1px solid #1954B0;
    color: inherit;
}

div#main_content table.about.history tr th{
    vertical-align: top;
    white-space: nowrap;
}

div#main_content ul {
    padding: 0 1rem;
    list-style: none;
}

div#main_content ul li {
    position: relative;
    padding-left: 1.5em;
}

div#main_content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.8em;
    height: 0.8em;
    background: linear-gradient(135deg, #405971 0%, #4a69bd 50%, #6c7ce0 100%);
    border-radius: 50%;
    display: inline-block;
}

/*div#main_content ul{
    padding-left:12px;
}

div#main_content ul li:before{
 	content: '\f0da';
    margin-left: -12px;
}*/


body.archive div#main_content ul,
body.category div#main_content ul,
body.search div#main_content ul{
	margin-top:30px;
}


body.archive div#main_content ul li:before,
body.category div#main_content ul li:before,
body.search div#main_content ul li:before{
 	content: '';
	padding-right:0px;
}


div#main_content ul li ul{
	margin-left:20px;	
}


div#main_content table.responsive{
	
}

div#main_content table.responsive th,
div#main_content table.responsive td{
	padding: 6px 2px;
	text-align:center;
}

div#main_content table.responsive th,
div#main_content table.toggle_next th,
div#main_content table.toggle_nextall th{
	font-weight:bold;
	border-bottom:1px solid #fff;
	border-right: 1px solid #fff;
}



div#main_content table.toggle_next tr td,
div#main_content table.toggle_next tr th,
div#main_content table.toggle_nextall tr td,
div#main_content table.toggle_nextall tr th  {
    padding: 5px 20px;
}

div#main_content table.toggle_next th,
div#main_content table.toggle_nextall th{
	text-align:center;
}

div#main_content table.toggle_next .toggle,
div#main_content table.toggle_nextall .toggle{
	cursor:pointer;
}


div#main_content div.slider-wrapper{
	width:50%;
	margin:10px auto;
}

div#main_content div.slider-wrapper div.nivo-controlNav{
	display:none;	
}

body.archive div#main_content ul li:before{
	padding-right:0px;
	content:"";
}

div#main_content div.navigation{
	margin-bottom:30px;
	text-align: center;
}

body.archive div#main_content ul li{
    padding: 10px 0;
    border-bottom: 1px dashed #000;
}

body.archive div#main_content ul li:before{
    content: none;
}

div#main_content ol.list li{
    line-height: 130%;
    padding-top: 10px;
    padding-bottom: 10px;
}

div#main_content ul.list li{
    line-height: 130%;
    padding-top: 5px;
    padding-bottom: 15px;
}

div#main_content div.box{
    width: 300px;
    font-size: 0.8rem;
    padding: 10px;
    line-height: 180%;
}

/** 研究業績 **/
div#main_content ul#archives{
    padding-left: 0;
    margin: 2rem 0;
}

div#main_content ul#archives li {
    margin-bottom: 5px;
}

div#main_content ul#archives li:before{
    content: none;
}

div#main_content ul#archives li a {
    /*border: 1px solid #ccc;*/
    display: block;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    background-color: #e7edf4;
}

div#main_content ul#archives li a:hover, 
div#main_content ul#archives li a.active {
    color: #fff;
    background-color: #7eb1ee;
}

/* 放射線治療 背景つきbox */
div#main_content .machine{
    background: #e7edf4;
    border-radius: 20px;
    color: #3a5a96;
    text-align: center;
    margin: 0 15px;
    padding: 40px 30px 15px;
}

/*******
スタッフページ
****************************/
div.staff{
    margin-top: 3rem;
    pointer-events: none;
}

div.tab{
    display: none;
}

div.show{
    display: flex;
}

div#main_content ul.tab_menu{
    margin-top: 50px;
}

div#main_content ul.tab_menu li{
    display: inline-block;
    cursor: pointer;
    padding-left: 0;
    padding-right: 10px;
}

div#main_content ul.tab_menu li a{
    color: #fff;
}

div#main_content ul.tab_menu li a:hover{
    text-decoration: underline;
}

div#main_content ul.tab_menu li:before{
    content: none;
}

.person{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;

}

.person img{
    height:330px;
    object-fit: cover;
    object-position:center top;
}

.dataload,.no-events{
    pointer-events: none;
}

p.name{
    font-weight: bold;
    font-size: 20px;
}

p.name span{
    font-size: 14px;
    font-weight: normal;
    margin-left: 10px;
}

p.senmon{
    line-height: 140%;
}

p.senmon span{
    border-bottom: 1px solid #55a8e0;
    margin-bottom: 5px;
    display: inline-block;
}

div#main_content table.profile span.label{
    border-bottom: 0;
    margin-right: 5px;
}

.label.all{
    background: #666;
}

.label.rad{
    background: #7eb1ee;
}

.label.img{
    background: #f0a074;
}

.label.nuc{
    background: #7bb78f;
}

.label.ivr{
    background: #c3a6e8;
}

div#main_content table.profile{
    width:100%;
}

div#main_content table.profile th,
div#main_content table.profile td{
    border-radius: 10px;
    padding: 1em;
    border: #fff solid 3px;
}

div#main_content table.profile th{
    vertical-align: top;
    white-space: nowrap;
    width: 25%;
    background: #e7f0fe;
    color: inherit;
    font-weight: normal;
}

div#main_content table.profile td{
    vertical-align: middle;
    background: #f7f7f7;
}

div#main_content ul.staff{
    margin: 0;
    margin-left: 60%;
}

div#main_content ul.staff li{
    float: left;
    padding: 10px 15px;
}

div#main_content ul.staff li:before{
    padding-right: 5px;
}

div#main_content ul.staff li a{
    color: #1954b0;
}

div#main_content .staff_list{
    z-index: 9;
}

div#main_content .staff_list .clearfix{
    margin: 0;
}

div#main_content .detail{
    padding: 2px 20px;
    border-radius: 3px;
    background: #f0a074;
    color: #fff !important;
    display: inline-block;
    margin-top: 3px;
    margin-bottom: 10px;
    cursor: pointer;
}

div#main_content .detail:hover{
    opacity: 0.8;
}

/* 250730 お客さん指定デザイン */
div#main_content p {
    margin-left: 1rem;
    margin-right: 1rem;
}

div#main_content .sticky_note {
    display: inline-block;
    position: relative;
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 1rem;
    background-color: #e3ecf6;
    outline: 2px dashed #ffffff;
    outline-offset: -10px;
}

div#main_content .sticky_note:after {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    border-width: 0 25px 25px 0;
    border-style: solid;
    border-color: #ffffff #fff rgb(197, 201, 237);
    box-shadow: -1px 1px 1px rgb(0 0 0 / .15);
    transition: all 0.3s ease;
}

div#main_content .sticky_note:hover::after {
    border-width: 0 40px 40px 0;
}

/*250828 アーカイブ・記事ページ調整*/
body.archive .date:before,
body.single .date:before{
    color: #F381A6;
}


/* fancybox */

.pop_window {
    display: none;
    padding: 40px;
    width: 1000px;
    height: 700px;
    border-radius: 5px;
    cursor: text !important;
}

.pop_window_content {
    padding: 0;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 72vh;
    box-sizing: border-box;
}


.pop_window_content .person{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pop_window_content .person img{
    height:250px;
    object-fit: cover;
    object-position:center top;
}

.pop_window_content table{
    width: 100%;
    margin-bottom: 2rem;
}

.pop_window_content table tr td {
    border-bottom: 1px dashed #ccc;
    padding: 5px 0px;
}

.pop_window_content p.senmon{
    margin-bottom: 5px;
}

/*contact form 7*/
div#main_content table.CF7_table{
	width:100%;
	margin:0 auto;
	border: 3px solid #e5e5e5;
}

div#main_content table.CF7_table tr{
	border-top: 1px solid #e5e5e5;
}

div#main_content table.CF7_table tr th{
	color:#000
}

div#main_content table.CF7_table tr td{
}

div#main_content table.CF7_table tr:nth-child(2n)
{
	background-color:#fff;
	clear:both;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
div#main_content table.CF7_table input, div#main_content table.CF7_table textarea {
	border: 1px solid #d8d8d8;
    width:100%
}

div#main_content table.CF7_table ::placeholder {
	color:#797979;
}

/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #3a5a96;/*オレンジ*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/*「任意」文字*/
.CF7_unreq{
	font-size:.9em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/* タイトル列 */
@media screen and (min-width: 768px){
	div#main_content table.CF7_table th{
	width:30%;/*横幅*/
	background-color:#e7edf4;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	div#main_content table.CF7_table{
	width:95%;
	}
	div#main_content table.CF7_table tr, div#main_content table.CF7_table td, 
    div#main_content table.CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em;
	}
	div#main_content table.CF7_table th{
	background-color:#e7edf4;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#3a5a96;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:0 auto;
    padding:10px 50px
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}

/********************************************************************
20 PC
********************************************************************/

@media screen and (min-width:768px) and ( max-width:1199px) {
    /*　画面サイズが768pxから1200pxまではここを読み込む　*/
.sp_none{
		
	}
	
	.pc_none{
		display:none;
	}
	
	body{
		min-width:100%;
	}
    
    .wrapper{
        width: 100%;
    }
    
    .row{
		margin-left:0px;
		margin-right:0px;
	}
	
	div#sp_menu{
		display:none;	
	}
    
    section#contact .c_box {
        padding: 25px 5px 0;
    }
    
}


@media (min-width: 1200px) {
	.pc_none{
		display:none;	
	}
	
	.sp_none{
	}
	
	body{
		min-width:1200px;
	}
	
	div#sp_menu{
		display:none;	
	}
}


/********************************************************************
30 SP
********************************************************************/

@media (max-width: 767px) {
	
	.pc_none{
	}
	
	.sp_none{
		display:none;
	}
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
    
    /* 左側メニューに被らないようにする*/
    header,main{
       margin-left: 0; 
    }
    
    nav{
        margin-left: 0; 
    }
	
	header div#search_area{
		display:none;
	}
	
	header div#logo_area{
		padding:10px;
	}
	
	header div#logo_area img{
		width:80%;
	}
    
    header #lang_area ul{
    padding: 0px;
}
    
    header #lang_area ul li{
    float: left;
    padding: 0px 10px 5px;
}

header #lang_area ul li .btn-lang{
    font-size: 18px;
}

header #lang_area ul li img{
    width: 20px;
}
    
    .sub_head{
    height: 120px;
    margin-top: -125px;
}
    
    #sidemenu{
    display: none;
}
    
    img#sub_eyecatch{
        position:relative;
    }	
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute !important;
		 background: transparent;
		padding-left:0px !important;
		padding-right:0px !important;
		border-top: 1px solid #2c75db;
		top: 50px;
        left:0;
        padding: 0;
        bottom:0;
        height: 100vh !important;
        position: fixed!important;
        overflow-y: scroll;
	}
    
	
	nav ul{
		width:100%;	
		height:auto;
		
	}

	nav ul li{
		width:100%;
        border-bottom:1px solid #000;
	}
	
	nav > ul > li, nav > div > ul > li{
		float:none; 
        padding: 0;
	}	
	
	nav ul ul{
        display: block;
        background-color:transparent;
        position: relative;
	}
    
    nav ul ul li{
        display:block;

    }
    
    nav ul li a{
        display:block;
        text-align: left;
		margin:0px;
        padding:1px 15px;
        background: #fff;
        font-size: 14px;
        width: 100%;
    }
    
    nav > ul > li > a:before{
        content:"";
    }
    
    nav ul ul li a{
    }
	
    nav > ul li.menu-item-has-children > a:after{
        float:none;
    }

    nav > ul > li > ul > li.menu-item-has-children > a:after{
        float:none;
    }    
	
    nav div > ul > li:nth-child(2) > a{
	padding: 5px 0;
}

nav div > ul > li:nth-child(3) > a{
	padding: 5px 0;
}

nav div > ul > li:nth-child(4) > a{
	padding: 5px 0;
}

	
	
	.wrapper{
		width:100% !important;	
		min-width:100% !important;
	}
	
	section#eyecatch{
    height: 850px;
}
    
section#eyecatch p.text{
    position: absolute;
    top: 10%;
    font-size: 16px;
    padding-left: 15px;
}

section#eyecatch .pickup{
    position: absolute;
    top: 20%;
    padding: 5px 10px;
    width: 95%;
    margin-left:0px;
    display: none;
}

section#eyecatch .about{
    position: absolute;
    top: 25%;
    padding: 15px 5px 15px;
    width: 100%;
}

section#eyecatch .about p.name{
    font-size: 20px;
    padding: 10px 0 0 0px;
}

section#eyecatch .btn1{
    padding: 15px 0;
    margin-bottom: 5px;
}

section#eyecatch .btn2{
    padding: 15px 0;
    margin-bottom: 5px;
}

section#eyecatch .btn3{
    padding: 15px 0;
}

    section#news h2{
    text-align: left;
    margin-bottom: 15px;
    margin-right: 0px;
}

section#news ul{
    padding: 10px;
}

section#event{
    padding: 30px 0 10px;
}

section#event h2{
    text-align: left;
    margin-bottom: 15px;
    margin-right: 0px;
}

section#event .btn-info{
    margin-bottom: 15px;
}

section#event .tile{
    margin-bottom: 10px;
}

section#event .title{
    min-height: auto;
}
    
    section#greeting{
    padding: 20px 0 20px;
}

section#greeting h2{
    text-align: left;
    margin-bottom: 15px;
}

section#greeting .person{
    margin-top:0px;
}

section#greeting .btn-info{
    margin-right: 15px;
    margin-bottom: 20px;
}

section#greeting .grey{
    background: transparent;
    border-radius: 0;
    padding: 20px 0 20px;
    margin-top:0px;
}

section#greeting h3{
    margin-left: 0px;
}
	section#greeting img.staff{
    margin-top: 10px;
    width: 100%;
}
    
    section#patient{
    padding: 20px 0;
}

section#patient h2{
    font-size: 30px;
    margin: 10px 0;
}

section#patient ul{
    padding: 0;
}
    
    section#patient img{
    display: none;
}

    section#medical{
    padding: 20px 0;
}

section#medical h2{
    font-size: 30px;
    margin: 10px 0;
    text-align: left;
}
    
    section#medical img{
    display: none;
}

section#medical ul{
    padding: 0;
}
    
    section#student{
    padding: 20px 0;
}

section#student h2{
    font-size: 30px;
    margin: 10px 0;
}
    
    section#student img{
    display: none;
}

section#student ul{
    padding: 0;
}

section#recruit{
    background-position: center;
    padding: 30px 0;
}

section#recruit .box{
    padding: 30px 0;
    margin-top: 30px;
}

section#recruit .box p{
    line-height: 120%;
}

section#recruit .btn-info{
    margin-right: 15px;
    margin-top: 15px;
}

section#contact{
    padding: 30px 0 20px;
}

section#contact .c_box{
    padding: 20px 20px 10px;
    height: auto;
    margin-bottom: 15px;
}

section#contact p.contact{
    padding: 3px 10px;
}

section#contact p.tel{
    margin-top: 0px;
}

section#contact .form{
    margin-bottom: 30px;
}
    
    div#main_content div.box{
        width: 100%;
        font-size: 1rem;
    }
    
    div#main_content div.overflow{
        overflow-x: auto;
    }
    
    div#main_content table.info{
        width: 600px;
    }
    
    div#main_content table.info tr td:first-child{
       white-space: nowrap;
    }
    
    div#main_content table.info tr td:nth-child(3){
       white-space: nowrap;
    }
    
    /*div#main_content table.profile th,
    div#main_content table.profile td{
        display: block;
        width: 100%;
    }*/


    div#main_content table.profile span.label{
        display: inline-block;
        margin-bottom: 5px;
    }

    div#main_content .staff_list{
    display: none;
}
    
    .pop_window {
    display: none;
    padding: 5px;
    width: 100%;
    height: auto;
}


.pop_window_content .person img{
    width: 100%;
    height:auto;
}
    
    /* 放射線治療 背景つきbox */
div#main_content .machine{
    background: none;
    color: inherit;
    margin: 0;
    padding: 0;
}
	
	div#main_content{
		border:none;
		padding:0px;
	}
	
	div#content_area{
		padding:0px !important;
	}

	
	
	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;	
	}


	div#sp_menu{
		position:fixed;
		right:20px;
		top:10px;
		display:block;
        z-index: 9999;
	}


	div#sidebar h2:before{
		content:"\f0ca";
	}
	
	div#sidebar h2:after{
		content:"\f055";
        float:right;
	}
		
	
	div#sidebar ul{
		display:none;	
	}
	
	div#sidebar h2{
		cursor:pointer;	
	}
	
	div#sidebar h2 i{
		display:inherit;
	}
	
	
	table td, table th{
		padding:10px 5px !important;
		line-height: 140% !important;
	}
		
	table.sp tr,
	table.sp th,
	table.sp td{
		display:block;
	}
	
	

	/* stylesheet for large width table */
	table.widetable{
		border:none !important;
	}
	table.widetable tr{
		border:1px solid #ccc;
		margin-bottom:20px;
	}
	table.widetable td{
		border:none !important;
	}
	
	table.widetable th{
		display:none;
	}
	
	table.widetable tr, table.widetable td{
		display: list-item;
		background-color:transparent !important;
		list-style: none;
	}
	/* stylesheet for large width table */

	
    div#main_content div#pagetop{
        position:fixed;
        background-color:#fff;
        right:20px;
    }
	
    footer{
        padding:20px 0 80px;
    }
	
    footer p.add{
    margin-top: 15px;
}

footer .gifurad{
    order: 0;
}

footer .gifu-u{
    order: 1;
}

footer .qbred{
    order: 2;
}

footer .pic{
	text-align: center;
}
    
    footer .pic img{
	width: 70%;
}
	
}


/********************************************************************
35 admin
********************************************************************/



a.editbutton{
	margin-top:-26px;
	margin-right:-26px;
	display:block;
	width:26px;
	height:26px;
	float:right;
	padding:3px;
	border:1px solid #ccc;
	border-radius: 3px;
	z-index: 100;
	background-color:rgba(255,255,255,0.8);
}


/********************************************************************
40 Print
********************************************************************/


@media print {
	

	a[href]:after{
	content: ""!important;
	}

	abbr[title]:after{
	content: ""!important;
	} 	
	
	.row{
		display:block;
	}

  .sp_none{
	display:block !important;
  }
	
  .pc_none{
	display:none !important;
  }
	
  .wrapper{
	width:1024px !important;	
	min-width:1024px !important;
  }	
	
  nav{
	display:block !important;
	float:none !important;
	position:relative !important;
  }
	
  nav ul li{
	width:auto !important;
  }

  div#search_area{
	display:block !important;
  }	
	
  div#sp_menu{
	display:none;	
  }
	
  div#search_area{
	display:block;
  }
	
  div#sidebar ul{
	display:block !important;	
	position: relative;
  }
	
  div#sidebar h2 i{
    display:none !important;
  }	
	
  .left, .left_column{
	float:left !important;
  }
	
  .right, .right_column{
	float:right !important;
  }		
}


