@charset "utf-8";
/*
Theme Name: ku_nsktf
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)";
}

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

ul li{
	list-style:none;
	
}

p{
	padding:4px;	
}

.full{
	width:100%;
}

a:focus{
	color:#aaa;	
}

a.more{
	float:right;
}

.pagetop{
	border:1px solid #ccc;
	padding:5px 10px;
	float:right;
}

.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:4px;
	background-color:#ccc;
    border-radius: 0px;
}

.label.news{
	background-color:#009e96;
}

.label.press{
    background-color:#00479d;
}

.label.events{
	background-color:#22731E;
}

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

.locate: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{
    background-color:#fff;
}

header div#logo_area{
	padding:10px 0px;
}

header div#logo_area p{
	padding:0;
    margin: 0;
}

header div#logo_area img{
	width: 80%;
}

header h1{
	display:none;	
}

header div#menu_area{
	padding-top:30px;
}


#home header{
	
}

#sub header{

}

.sub_head{
    background: url("images/sub_head.jpg");
    background-size: cover;
    height:150px;
    margin-top:-116px;
    z-index: -99;
}

/*qtranslate x*/
header.lang-en li.lang-en{
	display:none;
}

header.lang-ja li.lang-ja{
	display:none;
}



/***************************************************************
4 nav
***************************************************************/


nav{
	margin:0px;
	padding:0;
}

nav ul{
	padding:10px 40px;
    border-radius: 25px;
    background:rgba(255,255,255,0.9);
    height: 57px;
    box-shadow: 1px 1px 1px #dcdcdc;
}

nav ul li{
	padding:0px;
	margin:0px;
}

nav > ul > li,
nav > div > ul > li{
	float:left;	
}

nav ul li a{
	margin:0px 0px;
	display:inline-block;
	padding:7px 24px;
	color:#000;
	font-size:16px;
	text-align:center;
	vertical-align:middle;
}

nav > ul > li > a{
	
}

nav ul ul{
	display:none;
	position:absolute;
	z-index:100;
	background-color:#333;
	color:#fff;	
}

nav ul ul li a{
	text-align: left;
}


nav > ul li.menu-item-has-children > a:after{
    content:"\f107";
    float:right;
}

nav > ul > li > ul > li.menu-item-has-children > a:after{
    content:"\f105";
    float:right;
}

/*nav ul li:last-child a{
	color:#fff;
    border-radius: 20px;
    background: #2262b5;
}*/

nav ul li a:hover,
nav ul li.current-menu-item a{
	color:#2862bc;
	text-decoration:none;
}

/*nav ul li:last-child a:hover,
nav ul li.current-menu-item:last-child a{
	color:#fff;
}*/


nav ul ul ul{
    position:absolute;
    left:100%;
    top:0px;
    min-width:100%;
}


/***************************************************************
5 toppage section
***************************************************************/


section#eyecatch{
    margin-top: -116px;
}

section#eyecatch .wrapper{
    position: relative;
}

section#eyecatch p{
	padding:0px;
	margin-bottom:0px;
}

section#eyecatch .area{
	position: absolute;
    top:20%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1300px;
}

section#eyecatch .box{
	background: #fce966;
    padding:20px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

section#eyecatch .box p{
    color: #000;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 5px;
}

section#eyecatch .box p.title{
    color: #01519f;
    font-size: 40px;
    font-weight: bold;
}

section#eyecatch img.login{
    position: absolute;
    right:5%;
    width:150px;

}

section#event{
    margin-top: -550px;
    padding:570px 0px 30px;
    background:url("images/bg_seminar.jpg");
    background-size: cover;
    background-position: bottom center;
}

section#event h2{
    text-align: center;
    color: #2262b8;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
}

section#event .thumbnail{
    border-radius: 15px 15px 15px 0;
    overflow: hidden;
    height: 200px;
}

section#event .col-md-4 a{
    color: #000;
}

section#event .article{
    border-bottom: 2px solid #01519f;
    min-height: 50px;
    overflow: hidden;
    padding:5px 5px 0;
}

section#event .article p{
    font-weight: bold;
    margin-bottom: 0;
}

section#event .date,section#event .locate{
    margin-bottom: 0;
    border-bottom: 2px solid #fff;
}

section#event .date:before{
    color: #f66f0d;
}
section#event .locate:before{
    color: #5390cb;
}

section#event .col-md-4 a:hover{
    text-decoration: none;
}

section#event .center{
    text-align: center;
}
section#event .btn-info{
    background: #01519f;
    color: #fff;
    padding:5px 200px 10px;
    border-radius: 20px;
    margin-top: 25px;
    position: relative;
    display: inline-block;
}

section#event .btn-info:after{
    content: "\f107";
    position: absolute;
    left:0;
    right: 0;
    bottom:-5px;
}

section#about{
    background-color:#d0edfb;
    padding:30px 0;
}

section#about h2{
    color: #5390cb;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}

section#about p.meishou{
    color: #01519f;
    font-size: 20px;
    font-weight: bold;
}

section#about ul li{
    background: #06b4ce;
    color: #fff;
    padding:5px 10px;
    position: relative;
    margin:5px 0;
}

section#about ul li:after{
    display: block;
		position: absolute;
		right: -34px;
    bottom:0;
    content: "";
  border-bottom: solid 33px #06b4ce;
border-right: solid 33px transparent;
}

/*section#about ul li:last-child:after{
    display: block;
		position: absolute;
		right: -41px;
    bottom:0;
    content: "";
  border-bottom: solid 57px #06b4ce;
border-right: solid 40px transparent;
}*/

section#about .circle{
    background:#01519f;
    border-radius: 50%;
    color: #fff;
    text-align:center;
    width:110px;
    height:110px;
    padding-top:20px;
    margin-top:-50px;
    position: relative;
    display: inline-block;
}

section#about .circle:before{
    content: "\f067";
    position: absolute;
    left:45%;
    top:5px;
}

section#about .circle span{
    color: #fdbe9a;
    font-size: 14px;
}


section#relate{
    background-color:#feffe0;
    padding:40px 0 20px;
}

section#relate h2{
    color: #01519f;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
}

.instagram-media{
    max-width: 100% !important;
    min-width: initial !important;
  }

.flex_box{
    display: flex;
    justify-content: center;
    align-items: top;
    overflow: hidden;
}

.flex_box div.box{
    width: 19%;
    margin-right: 1%;
}

.flex_box .insta{
    height:334px;
    overflow: hidden;
}

.flex_box div p{
    margin: 0;
}

.text_box{
    font-size: 16px;
    padding:5px 0;
}

section#relate .map{

}

section#relate a{
	color: #000;
}

section#relate a .fa{
	color: #01519f;
}

section#relate p.text{
    margin-top:50px;
    line-height: 180%;
}

section#relate .program_btn{
    padding:15px 100px;
    background:#f66f0d;
    text-align: center;
    color: #fff;
    position: relative;
}

section#relate .program_btn:after{
    content: "\f105";
    position: absolute;
    right:10px;
}

section#relate .program_btn:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#relate .circle{
    background:#01519f;
    border-radius: 50%;
    color: #fff;
    text-align:center;
    width:110px;
    height:110px;
    padding-top:20px;
    margin-top:-20px;
    position: relative;
}

section#relate .circle:before{
    content: "\f067";
    position: absolute;
    left:45%;
    top:5px;
}

section#relate .circle span{
    color: #fdbe9a;
    font-size: 14px;
    padding-bottom: 12px;
    display: inline-block;
}

section#relate h3{
    color: #01519f;
    font-size: 20px;
    font-weight: bold;
    background: transparent;
    padding:5px;
    margin-top: 0;
    border-bottom: 1px dashed #01519f;
}

section#relate ul{
    padding-left: 12px;
}

section#relate ul li:before{
    content: "・";
    margin-left: -12px;
}


section#interview{
    background-color:#d0edfb;
    padding:40px 0 20px;
}

section#interview h2{
    color: #01519f;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

section#interview .pic{
    text-align: center;
}

section#interview .pic img{
  width: 85%; /* 画像の幅を設定 */
  aspect-ratio: 1 / 1;
  border-radius: 50%; /* 丸くする */
  object-fit: cover; /* 画像が切れないように調整 */
	object-position:top;
}

section#interview .text{
    color: #01519f;
    background:#fff;
    padding:5px 15px;
    border-radius: 25px;
    text-align: center;
    margin-top: 10px;
}

section#interview .next_btn{
    padding:15px 80px;
    background:#f66592;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 50px;
}

section#interview .next_btn:after{
    content: "\f105";
    position: absolute;
    right:10px;
}

section#interview .next_btn:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#interview .circle{
    background:#01519f;
    border-radius: 50%;
    color: #fff;
    text-align:center;
    width:110px;
    height:110px;
    padding-top:20px;
    margin-top:-80px;
    position: relative;
}

section#interview .circle:before{
    content: "\f067";
    position: absolute;
    left:45%;
    top:5px;
}

section#interview .circle span{
    color: #fdbe9a;
    font-size: 14px;
    padding-bottom: 12px;
    display: inline-block;
}

section#undermenu{
    padding:30px 0;
}

section#undermenu .menu_btn{
    padding:5px 10px;
    background: #06b4ce;
    color: #fff;
    display: block;
}

section#undermenu .menu_btn:hover,
section#undermenu ul li a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#undermenu ul{
    margin: 0;
}

section#undermenu ul li{
    border-bottom: 1px solid #01519f;
}

section#undermenu ul li a{
    color: #000;
    font-size: 14px;
    position: relative;
}

section#undermenu ul li a:before{
    content: "\f105";
}

section#undermenu p{
    margin: 0;
}


section#news{
    background-color:#efefef;
}


div#news_area h2{
	border-left: 22px solid #2c75db;
	color:#000;
	font-size:18px;
	padding:2px 6px;
	margin:10px 0px;
}

div#news_area li div div{
    background-color:#fff;
    padding:2px 10px;
}

div#news_area li div div.date:before{
    content:"\f073";
    color:#2c75db;
}
div#news_area li div div.title:after{
    content:"\f30b";
    float:right;
}

section#sitemap{
    background-color:#e6f7ff;
    padding:30px 0px;
}

div#sitemap_area > div{
    padding:5px !important;
    
}

/* autoHeight.jquery */

div.item{
	margin-bottom:10px;
	height:auto;
}

div.item div{
	border:1px solid #ccc;
	padding:2px 4px;
}


/***************************************************************
6 footer
***************************************************************/

footer{
	background-color:#01519f;
	color:#fff;
	padding:30px 0 50px;
}

footer p{
	margin: 0;
}

footer p.name{
	font-size: 22px;
    font-weight: bold;
}

footer p.copy{
	text-align: right;
}

footer .form_btn{
	background: #fff;
    padding:20px 60px;
    text-align: center;
    border-radius: 30px;
    color: #000;
    display: inline-block;
    position: relative;
}

footer .form_btn:after{
    content: "\f105";
    position: absolute;
    right:10px;
    color: #f66f0d;
}

footer .form_btn:before{
    content: "\f15c";
    position: absolute;
   left:10px;
    bottom: 10px;
    color: #fff;
    background: #f66f0d;
    padding: 10px 15px;
    border-radius: 50%;
}

/***************************************************************
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:130px;
}

div#sidebar h2{
	background-color:#06b4ce;
	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 #06b4ce;
	color:#666;
    position: relative;
}

div#sidebar ul li a:hover{
	background-color:#efefef;
	text-decoration:none;	
}

div#sidebar ul li a:after{
 	content: '\f105';
    color: #06b4ce;
    position: absolute;
    right:5px;
}


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 solid #ccc;
	color:#666;	
}

div#sidebar ul li ul li a:hover{
	background-color:#FFF6E8;
	text-decoration:none;		
}


/***************************************************************
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{
	overflow-wrap: break-word;
}

div#main_content h1{
    background:linear-gradient(to bottom,#fff,#f8f8f8);
	border:1px solid #eceae3;
        border-radius:3px;
	padding:10px 10px 10px 25px;
	margin-top:0px;
	font-size:24px;
	color: #000;
    position: relative
}

div#main_content h1:before{
    content:"";
   display:inline-block;
   width:5px;
   height:38px;
   background-color:#01519f;
   position:absolute;
   top:6px;
   left:10px;
}

div#main_content div#content_area{
	padding:10px 0px;	
	min-height:500px;
}

div#main_content h2{
	font-size:20px;
	margin:30px 0px 20px;
	padding:12px 10px;
	border:0;
    background: #01519f;
    color: #fff;
}

div#main_content h2:nth-child(n+3){
    margin-top: 40px;
}

div#main_content h3{
	background-color:#fff;
	font-size:18px;
	padding:10px 10px;
	margin:30px 0px 20px;
    border-bottom: 3px solid #01519f;
    color: #01519f;
    font-weight: bold;
}

div#main_content h4{
	border-left:5px solid #01519f;
	padding:5px 10px;
	margin:20px 0px 10px;
	font-size:16px;
}

div#main_content h5{
	font-size:16px;
	padding:20px 10px 10px 10px;
	border-bottom: 1px solid #ccc;
}


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;
	padding:10px 15px;
}

div#main_content table tr th{
	background-color:#84A3B1;
	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 ul{
    padding-left:12px;
}

div#main_content ul li:before{
 	content: '\f105';
    margin-left: -12px;
}

div#main_content ul.list li:before{
 	content: '・';
}

div#main_content ul.list li a{
 	color: #000;
}

div#main_content ul.list li a .fa{
 	color: #01519f;
}


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 .slider-wrapper{
	width: 80%;
	margin:10px auto;
}

div#main_content .slider-wrapper img{
	aspect-ratio: 4 / 3;
	object-fit: contain;
}

div#main_content .slider-wrapper img.ncvc{
	aspect-ratio: 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 .thumbnail{
    border-radius: 15px 15px 15px 0;
    overflow: hidden;
    height: 200px;
}

body.archive div#main_content .col-md-4 a{
    color: #000;
}

body.archive div#main_content .article{
    border-bottom: 2px solid #01519f;
    min-height: 50px;
    overflow: hidden;
    padding:5px 5px 0;
}

body.archive div#main_content .article p{
    font-weight: bold;
    margin-bottom: 0;
}

body.archive div#main_content .parts{
    margin-bottom: 1rem;
}

body.archive div#main_content .date,body.archive div#main_content .locate{
    margin-bottom: 0;
    border-bottom: 2px solid #fff;
}

body.archive div#main_content .date:before{
    color: #f66f0d;
}
body.archive div#main_content .locate:before{
    color: #5390cb;
}

body.archive div#main_content .col-md-4 a:hover{
    text-decoration: none;
}

div#main_content .person{
    text-align: center;
}

div#main_content .person p{
    margin:0;
}

div#main_content p.message{
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
}

div#main_content p.message:before{
    content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("images/parts1.jpg") no-repeat;
  background-size: contain;
  margin-left: -25px;
    margin-right: 5px;
    transform: translate(0,5px);
}

div#main_content .tile{
    background:#feebf1;
    padding:8px;
}

div#main_content .line{
    border:1px solid #f7779f;
    border-radius: 5px;
    padding:5px;
}

div#main_content ul.support li{
    line-height: 140%;
    padding: 10px 0;
}

div#main_content ul.support li:before{
 	content: '\f0da';
}

    
div#main_content ul.qa{
    margin-bottom: 0;
}

div#main_content p.question{
    padding:5px 5px;
    background:#e5e5e5;
    font-weight: bold;
    border-bottom: 2px solid #ff97b8;
    margin-top:30px;
}

div#main_content p.question span{
    color: #ff97b8;
    margin-right: 10px;
}
div#main_content .flex_box{
	flex-wrap: wrap;	
}

div#main_content .flex_box .box{
	width: 30%;
	margin-bottom: 10px;
}

div#main_content .flex_box .insta{
	height: 400px;
}

div#main_content .col-sm-4{
	padding-bottom: 15px;
}

div#main_content .name{
	font-size: 18px; 
	padding:73px 10px 73px;
}

div#main_content .insta_test img{
	margin-bottom: 10px;
}


div#main_content span.insta_more{
	display: inline-block;
    vertical-align: top;
    zoom: 1;
    padding: 7px 14px;
    margin: 5px auto 0 auto;
    background: #333;
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
	    border-radius: 4px;
	margin-right:10px;
}

div#main_content span.insta_more a{
	color:#fff;
}

div#main_content span.insta_follow{
	background: rgb(64, 139, 209);
}

div#main_content span.insta_follow:before{
	font-family: "Font Awesome 5 Brands";
    content: "\f16d";
	font-weight: normal;
}

/*wpuf*/
form.wpuf-style ul li.wpuf-el {
    border-bottom: 1px solid #ccc !important;
}

form.wpuf-style ul li:before{
    content:none!important;
}

div#main_content li.wpuf-el.user_login{
	display: none;
}

/********************************************************************
20 PC
********************************************************************/

@media (min-width: 768px) {
	.pc_none{
		display:none;	
	}
	
	.sp_none{
	}
	
	body{
		min-width:1024px;
	}
	
	div#sp_menu{
		display:none;	
	}
}

/*****コンタンクトフォーム******/

div#main_content table.CF7_table{
	width:80%;
	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: #f79034;/*オレンジ*/
	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:#ebedf5;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@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:#ebedf5;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#f79034;/* オレンジ*/
	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;
}




/********************************************************************
30 SP
********************************************************************/

@media (max-width: 767px) {
	
	.pc_none{
	}
	
	.sp_none{
		display:none;
	}
	
	.row{
		margin-left:0px;
		margin-right:0px;
	}
	
	header div#menu_area{
	padding-top:0px;
}
	
	header div#logo_area{
		padding:5px 10px;
	}
	
	header div#logo_area img{
		width:40%;
	}
    
    .sub_head{
    height:100px;
    margin-top:-68px;
}
    
    img#sub_eyecatch{
        position:relative;
    }	
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:9999;
		position:absolute !important;
		padding-left:0px !important;
		padding-right:0px !important;
		border-top: 1px solid #2c75db;
		top:0px;
        left:0;
	}
	
	
    nav ul{
	padding:0;
    border-radius: 0;
    background:#fff;
    height:auto;
    box-shadow: 0;
}

	nav ul li{
		width:100%;	
        min-height: 30px;
        height:auto;
        border-top:1px solid #fff;
	}
	
	nav > ul > li, nav > div > ul > li{
		float:none; 
	}	
	
	nav ul ul{
        display: block;
        background-color:transparent;
        position: relative;
	}
    
    nav ul ul li{
        display:block;
        border-top:1px dashed #fff;

    }
    
    nav ul li a{
        display:block;
        color:#000;
        text-align: left;
		margin:0px;
        background-color:#d0edfb;
    }
    
    nav ul li:last-child a{
	display:block;
        color:#000;
        text-align: left;
		margin:0px;
        background-color:#d0edfb;
        border-radius: 0;
}
    
    nav > ul > li > a:before{
        content:"";
    }
    
    nav ul ul li a{
        padding-left:40px;
    }
	
    nav > ul li.menu-item-has-children > a:after{
        float:none;
    }

    nav > ul > li > ul > li.menu-item-has-children > a:after{
        float:none;
    }    
	
	
	
	.wrapper{
		width:100% !important;	
		min-width:100% !important;
	}
	
	section#eyecatch{
    margin-top: 0px;
}

section#eyecatch .area{
	position: absolute;
    top:5%;
    width: 100%;
}

section#eyecatch .box{
    padding:10px 5px;
    width: 80%;
}

section#eyecatch .box p{
    font-size: 16px;
    margin:0;
}

section#eyecatch .box p.title{
    font-size: 18px;
}

section#eyecatch img.login{
    position: absolute;
    right:2%;
    width:50px;
    }
	
section#eyecatch .slick-next{
	display: none!important;
}
    
    section#event{
    margin-top: -80px;
    padding:110px 0px 30px;
}
    section#event .btn-info{
    padding:5px 60px 10px;
}
    
    section#event .article{
    height: auto;
}
    section#about{
        padding:30px 10px 10px;
    }
    section#about .circle{
    margin-top:-20px;
}
    
    section#about ul li:after{
    display: none;
}

section#about ul li:last-child:after{
    display: none;
}
    
    section#relate{
    padding:40px 10px 10px;
}

section#relate .map{
    width:100%;
}
	

section#relate p.text{
    margin-top:10px;
    line-height: 160%;
}

section#relate .program_btn{
    padding:10px 60px;
    width: 100%;
}

section#relate .program_btn:after{
    content: "\f105";
    position: absolute;
    right:10px;
}

section#relate .circle{
    margin-top:0px;
}
	
.flex_box{
    flex-wrap: wrap;
}

.flex_box div.box{
	width: 49%;
	margin-bottom: 10px;
}
	
	div#main_content div.flex_box div.insta{
		height: 334px;
	}
	
	div#main_content div.flex_box div.box{
		width: 49%;
	}

    section#interview{
    padding:40px 0 10px;
}

section#interview .pic img{
    width: 60%;
}

section#interview .text{
    margin-bottom: 10px;
}

section#interview .next_btn{
    padding:10px 60px;
    margin-top: 30px;
    width: 100%;
}

section#interview .circle{
    margin-top:0px;
}

    section#undermenu .menu_btn{
    margin-bottom: 10px;
}
    
    section#undermenu ul{
    margin-bottom: 10px;
}
	
	div#news_area{
		float:none;
		margin-top:5px;
		width:100%;
		height: auto;
		overflow-y:auto;
		padding:15px;
	}
	
	div#main_content{
		border:none;
		padding:0px;
	}
	
	div#main_content .name{
		padding: 4px;
	}
	
	div#main_content .map{
		width: 100%;	
	}
	
	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:15px;
		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 10px 80px;
    }
	
	
}


/********************************************************************
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;
  }		
}


