@charset "utf-8";
/*
Theme Name: kyu_cms
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
 **************************************************************/

/* 白土コメントアウト　20260515
body{
	font-family:"Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;		
	line-height:150%;
	font-size: 16px;
}
*/

/* 白土挿入（フォント変更） 20260515 */

body{
	font-family:
		"Inter",
		"Yu Gothic",
		"YuGothic",
		"Hiragino Sans",
		"Meiryo",
		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 #409bbf;
	padding:5px 10px;
	float:right;
    border-radius: 5px;
    color: #409bbf;
    margin-top: 30px;
}

.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 2px;
    border-radius: 0px;
    background: transparent;
    border-bottom: 1px solid #8384bf;
}

.label-news{
}

.label-education{
    border-bottom: 1px solid #89c997;
}

.label-equip{
	border-bottom: 1px solid #cc3333;
}

.label.topics{
}

.label.research{
}

.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: "\f133";
}

.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;
}


.fancybox-skin{
	background-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{
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

#sub header{
}

header div#logo_area{
	padding:10px 5px 15px;
}
header div#logo_area p{
	padding:0;
    margin: 0;
}

header h1{
	display:none;	
}

header div#access_area{
	padding:10px 10px 5px;
}

header div#access_area ul li{
	float:right;
	padding:0 10px;
}

header div#access_area ul li a{
	color: #0ebddd;
}

#home header{
}

#sub header{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sub_head{
    background: url("images/sub_head.jpg");
background-position: center;
background-size: cover;
    height: 150px;
    overflow: hidden;
}

.sub_head img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/*qtranslate x*/
header.lang-en li.lang-en{
	display:none;
}

header.lang-ja li.lang-ja{
	display:none;
}

/***************************************************************
4 nav
***************************************************************/


nav{
	margin:0px;
	padding:0px;
}

nav ul{
	margin:0px;
	padding:0px;
}

nav ul li{
	padding:0px;
	margin:0px;
}

nav > ul > li,
nav > div > ul > li{
	float:left;
    position: relative;
    padding: 0 5px;
}

nav ul li a{
	margin:0px 0px;
	display:inline-block;
	padding:2px 10px;
	color:#000;
	font-size:16px;
	text-align:center;
	vertical-align:middle;
}

nav > ul > li:nth-child(-n+5):after{
	content: "/";
    color: #048ec9;
    position: absolute;
    bottom: 2px;
    right: -2px;
}

nav ul ul{
	display:none;
	position:absolute;
	z-index:100;
	background-color:#333;
	color:#fff;	
    min-width: 200px;
}

nav ul ul li a{
	text-align: left;
    padding: 10px;
    color: #fff;
    display: block;
}


nav > ul li.menu-item-has-children > a:after{
    
}

nav > ul > li > ul > li.menu-item-has-children > a:after{
    
}

nav > ul > li:last-child > a{
	display: none;
}

nav ul li a:hover,
nav > ul > li.current-menu-item > a{
	color:#000;
	text-decoration:none;
    background: #bdebff;
    border-radius: 25px;
}

nav ul ul li a:hover{
    background: #bdebff;
    border-radius: 0;
}
nav ul ul ul{
    position:absolute;
    left:100%;
    top:0px;
    min-width:100%;
}

/***************************************************************
5 toppage section
***************************************************************/

section#eyecatch{
}

section#eyecatch .wrapper{
    width: 100%;
    overflow: hidden;
	max-height: 560px;
}

section#eyecatch .wrapper img{
    width: 100%;
    object-fit: cover;
}

/* スライダー内の画像の高さを揃え、隙間をなくす */
section#eyecatch .eyecatch-slider img {
    height: auto;
    display: block;
}



section#eyecatch p{
	padding:0px;
	margin-bottom:0px;
}

section#subtitle{
    margin-top: -35px;
    z-index: 100;
    position: absolute;
    right: 20%;	
}

section#subtitle h2{
    text-align: right;
    color: #36b598;
    font-weight: bold;
    font-size: 48px;
    
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff;
}

section#overview{
    padding: 45px 0;
	background: url("images/bg_about.jpg");
background-position: top center;
background-size: cover;
    margin-top: -30px;
}

section#overview .wrapper{
    position: relative;
}

section#overview .reserve{
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 999;
}

section#overview .btn-reserve{
    background: #409bbf;
    color: #fff;
    writing-mode: vertical-rl;
    padding: 40px 35px;
    border: 2px solid #fff;
    font-size: 18px;
}
section#overview .btn-reserve:hover{
    text-decoration: none;
    opacity: 0.9;
}

section#overview h2{
    font-family: "Zen Old Mincho", serif;
}

section#overview h3{
    background: transparent;
    margin: 10px 0;
    font-size: 22px;
    font-weight: bold;
}

section#overview .btn-info{
    position: relative;
  padding: 10px 80px;
  border: 2px solid #0cbdde;
  color: #000;
  background-color: #fff;
    margin-right: 40px;
    margin-top: 30px;
}

section#overview .btn-info:after{
    content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 40px);
  width: 80px;       /* 線の長さ */
  height: 2px;        /* 線の太さ */
  background-color: #0cbdde;
  transform: translateY(-50%);
}


section#seminar{
    padding: 35px 0 90px;
	background: url("images/bg_seminar.jpg");
background-position: top center;
background-size: cover;
}

section#seminar h2{
    font-family: "Zen Old Mincho", serif;
    line-height: 100%;
    margin-bottom: 30px;
}
section#seminar h2 span{
    /*font-family: "Noto Sans JP", sans-serif;*/
    font-size: 24px;
}

section#seminar .parts{
    background: rgba(81,193,237,0.5);
    padding: 15px;
    height: 100%;
}

section#seminar .category-teacher{
  background: rgba(136, 171, 218, 0.7);
}

section#seminar .category-short{
  background: rgba(188, 212, 124, 0.5);
}

section#seminar .col-md-4 a{
    color: #000;
}
section#seminar .col-md-4 a:hover{
    text-decoration: none;
    opacity: 0.9;
}
section#seminar .col-md-4 p{
    margin: 0;
    padding: 0;
}

section#seminar .parts table{
    width: 100%;
}

section#seminar .parts table td.title{
    font-weight: bold;
    width: 80%;
}
section#seminar .day{
    min-height: 52px;
}

section#seminar .btn_area{
    padding-top: 10px;
}
section#seminar .join{
    padding: 0px 30px;
    text-align: center;
    color: #fff;
    background: #409bbf;
    position: relative;
    float: right;
}
section#seminar .join:after{
    content: "\f101";
    position: absolute;
    right: 5px;
}

section#seminar .btn-info{
    position: relative;
  padding: 10px 65px;
  border: 2px solid #0cbdde;
  color: #000;
  background-color: #fff;
    margin-right: 40px;
    margin-top: 30px;
}

section#seminar .btn-info:after{
    content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 40px);
  width: 80px;       /* 線の長さ */
  height: 2px;        /* 線の太さ */
  background-color: #0cbdde;
  transform: translateY(-50%);
}

section#news{
    padding: 50px 0 35px;
    background: linear-gradient(to right, #4292e2, #17bdca);
    clip-path: polygon(
        0 0,              /* 左上 */
        100% 50px,        /* 右上（30px下げる） */
        100% 100%,        /* 右下 */
        0 100%            /* 左下 */
    );
    margin-top: -50px;
}

section#news h2{
    font-family: "Zen Old Mincho", serif;
    color: #fff;
}

section#news .thumbnail{
    height: 156px;
    overflow: hidden;
}

section#news ul#category-menu{
    margin-top: 15px;
}
section#news ul#category-menu li{
    padding: 3px 0;
    color: #fff;
}
section#news ul#category-menu li:before{
    content: "-";
}

section#news ul li{
    padding: 10px 0;
    color: #fff;
}
section#news ul li a{
    color: #fff;
}

section#news .u_line{
    border-bottom: 2px solid #00deff;
}

section#news .btn-info{
    position: relative;
  padding: 10px 75px;
  border: 2px solid #0cbdde;
  color: #000;
  background-color: #fff;
    margin-right: 40px;
    margin-top: 30px;
}

section#news .btn-info:after{
    content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 40px);
  width: 80px;       /* 線の長さ */
  height: 2px;        /* 線の太さ */
  background-color: #0cbdde;
  transform: translateY(-50%);
}

section#equipment{
    padding: 35px 0;
    background: url("images/bg_equip.jpg");
background-position: center;
background-size: cover;
}

section#equipment h2{
    font-family: "Zen Old Mincho", serif;
    line-height: 110%;
    margin-bottom: 15px;
}
section#equipment h2 span{
    /*font-family: "Noto Sans JP", sans-serif;*/
    font-size: 24px;
}

section#equipment .reserve{
    padding: 5px 50px;
    background: #409bbf;
    color: #fff;
    border-radius: 25px;
    position: relative;
}
section#equipment .reserve:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}
section#equipment .reserve:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#equipment .thumb{
    width: 100%;
    height: 165px;
    overflow: hidden;
    position: relative;
}
section#equipment .thumb span{
    padding: 0 10px;
    background: #e5e5e5;
    color: #000;
    border-radius: 25px;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 99;
}

section#equipment .thumb img{
    width: 100%;
    height: 165px;
    object-fit: cover;
}

section#equipment ul li{
    margin: 0 10px;
}

section#equipment ul li a{
    color: #000;
}
section#equipment ul li a:hover{
    text-decoration: none;
}

section#equipment .box{
    margin-top: 15px;
    background: #fff;
    padding-bottom: 15px;
    position: relative;
    height: 100%;
}
section#equipment .box:after{
    content: "\f105";
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px 12px;
    background: #fafbe0;
    color: #409bbf;
}

section#equipment .title{
    padding: 5px;
    height: 58px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 行数 */
}

section#equipment .cate_name{
    padding: 5px;
}

section#equipment .cate_name span{
    background: #409bbf;
    color: #fff;
    padding: 0 5px;
    font-size: 14px;
    margin-right: 3px;
}

section#equipment .btn-info{
    position: relative;
  padding: 10px 95px;
  border: 2px solid #0cbdde;
  color: #000;
  background-color: #fff;
    margin-right: 40px;
    margin-top: 30px;
}

section#equipment .btn-info:after{
    content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 40px);
  width: 80px;       /* 線の長さ */
  height: 2px;        /* 線の太さ */
  background-color: #0cbdde;
  transform: translateY(-50%);
}


section#contact{
    padding: 30px 0;
}

section#contact h2{
    font-family: "Zen Old Mincho", serif;
    line-height: 110%;
    margin-bottom: 20px;
    color: #409bbf;
}

section#contact p.centering{
    text-align: center;
}

section#contact .btn-form{
    text-align: center;
    background: #409bbf;
    color: #fff;
    display: inline-block;
    width: 50%;
    margin-top: 20px;
    padding: 10px;
    line-height: 110%;
}
section#contact .btn-form:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#map{
   height: 200px;
    overflow: hidden;
}

section#footer_menu p{
    margin: 0;
}

section#footer_menu{
   padding: 30px 0;
    background: #409bbf;
    color: #fff;
}

section#footer_menu .menu{
   padding: 2px 5px;
    background: #004b9a;
    color: #fff;
    text-align: center;
    display: block;
}

section#footer_menu ul li{
    padding: 3px 0;
}
section#footer_menu ul li:before{
    content: "-";
}
section#footer_menu ul li a{
    color: #fff;
}

section#footer_menu a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#case{
    padding: 30px 0;
    background: url("images/bg_case.jpg");
background-position: center;
background-size: cover;
}

section#case h2{
    font-family: "Zen Old Mincho", serif;
    line-height: 110%;
    margin-bottom: 15px;
    color: #fff;
}
section#case h2 span{
    /*font-family: "Noto Sans JP", sans-serif;*/
    font-size: 24px;
}
section#case .row{
    display: flex;
  flex-wrap: wrap;
}

section#case .col-md-4{
    display: flex;
}

section#case .col-md-4 a{
    color: #000;
}
section#case .col-md-4 a:hover{
    text-decoration: none;
}

section#case .tile{
    height: 100%;
    background: url("images/bg_tile.jpg");
background-position: center;
background-size: cover;
}

section#case .thumbnail{
    height: 214px;
    overflow: hidden;
}

section#case .thumbnail img{
    width: 100%;
    height: 100%;
}

section#case .text_area{
    padding: 10px; 
}

section#case .text_area p{
    margin: 0;
}

section#case p.title{
    font-weight: bold;
}

section#case .excerpt_area{
    display: -webkit-box;
  -webkit-line-clamp: 3; /* ← 表示したい行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
    min-height: 80px;
}

section#case .relate_area span{
    background: #409bbf;
    color: #fff;
    padding: 1px 10px;
    font-size: 14px;
    margin-right: 5px;
}

section#case .btn_area{
    text-align: center;
    position: relative;
    margin: 70px 0 20px;
}

section#case .pic{
    position: absolute;
    top: -40px;
    right: 130px;
    width: 250px;
}

section#case .btn-form{
    text-align: center;
    background: #004b9a;
    color: #fff;
    display: inline-block;
    width: 50%;
    margin-top: 20px;
    padding: 10px;
    line-height: 110%;
}
section#case .btn-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
***************************************************************/

body#sub footer{
    border-top: 3px solid #409bbf;
}

footer{
	padding:30px 0 70px;
}

footer p.name{
	font-size: 20px;
    font-weight: bold;
}
footer p.name span{
	font-size: 18px;
    font-weight: normal;
}

footer p{
	margin: 0;
}

footer .full2{
	margin: 15px 0;
    float: right;
    width: 75%;
}

footer .contact{
	padding: 2px 15px;
    border: 1px solid #000;
    color: #000;
}

footer .policy{
	float: right;
    color: #000;
    margin-top: 15px;
}
footer .policy:after{
	content: "\f105";
    margin-left: 10px;
}
footer .policy:hover{
	text-decoration: none;
    opacity: 0.8;
}

footer .copy{
	text-align: center;
}

/***************************************************************
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:#409bbf;
	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.toggle_side_menu > a:after{
 	content: '\f13a';
    position: absolute;
    right: 5px;
    color: #409bbf;	
}

div#sidebar > ul > li.toggle_side_menu.open > a:after{
 	content: '\f139';
    position: absolute;
    right: 5px;
    color: #409bbf;	
}


div#sidebar ul li a{
	display:block;
	min-height:40px;	
	padding:10px;
	border-bottom:1px dashed #409bbf;
	color:#666;
    position: relative;
}

div#sidebar ul li a:hover{
	background-color:#efefef;
	text-decoration:none;	
}

div#sidebar ul ul li a:after{
 	content: '\f105';
    position: absolute;
    right: 5px;
    color: #409bbf;
}


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 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:#004b9a;
   position:absolute;
   top:6px;
   left:10px;
}

div#main_content div#content_area{
	padding:10px 0px;	
	min-height:500px;
}

div#main_content h2{
  padding: 15px 15px;
    background: #004b9a;
    font-size: 22px;
    color:#fff;
    margin:30px 0 20px;
    position: relative;
}

div#main_content h2:nth-child(n+2){
	margin-top:50px;
}

div#main_content h2:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: '';
  border: 2px dotted #fff;
}

div#main_content h3{
	background-color:#fff;
	font-size:20px;
	padding:5px 10px;
	margin:30px 0px 20px;
    border-bottom: 3px solid #004b9a;
    font-weight: bold;
    color: #004b9a;
    
}

div#main_content h4{
	border-left:8px solid #004b9a;
	padding:5px 12px;
	margin:20px 0px 10px;
	font-size:18px;
    font-weight: bold;
}

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:#41bee1;
	color:#fff;
	padding:10px 15px;	
	border-bottom:1px solid #fff;
}

div#main_content table tr:nth-child(2n)
{
	clear:both;
}

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:"";
}

body.archive div#main_content ul li{
	padding: 10px 0;
    border-bottom: 1px solid #01ddff;
}

div#main_content div.navigation{
	margin-bottom:30px;
	text-align: center;
}

div#main_content .person{
	float: right;
    padding: 0 0 15px 15px;
    text-align: center;
}

body.archive div#main_content .parts{
    background: rgba(81,193,237,0.5);
    padding: 15px;
    height: 100%;
}

body.archive div#main_content .category-teacher{
  background: rgba(136, 171, 218, 0.7);
}

body.archive div#main_content .category-short{
  background: rgba(188, 212, 124, 0.5);
}

body.archive div#main_content .col-md-4 a{
    color: #000;
}
body.archive div#main_content .col-md-4 a:hover{
    text-decoration: none;
    opacity: 0.9;
}
body.archive div#main_content .col-md-4 p{
    margin: 0;
    padding: 0;
}

body.archive div#main_content .parts table{
    width: 100%;
}
body.archive div#main_content .parts table td{
    border: 0;
    padding: 5px;
}

body.archive div#main_content .parts table td.title{
    font-weight: bold;
    width: 80%;
}
body.archive div#main_content .day{
    min-height: 52px;
}

body.archive div#main_content .btn_area{
    padding-top: 10px;
}

body.archive div#main_content .clearfix{
    margin-bottom: 0;
}

body.archive div#main_content .join{
    padding: 0px 30px;
    text-align: center;
    color: #fff;
    background: #409bbf;
    position: relative;
    float: right;
}
body.archive div#main_content .join:after{
    content: "\f101";
    position: absolute;
    right: 5px;
}

.btn-success {
    display: block;
    padding: 15px;
    text-align: center;
}

/* =========================
   Machine List Table
========================= */

div#main_content table.machine_list {
    width: 100%;
    margin-top: 32px;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

div#main_content table.machine_list th {
    background: #409bbf;              /* 落ち着いたダークネイビー */
    color: #fff;
    font-weight: 600;
    padding: 15px 12px;
    border-bottom: 2px solid #409bbf;
    letter-spacing: 0.03em;
    line-height: 110%;
}

div#main_content table.machine_list td {
    border: 0;
    padding: 15px 10px;
    border-bottom: 1px solid #e5e7eb;  /* ごく薄いグレー */
    vertical-align: middle;
    color: #2c3e50;
    line-height: 120%;
}

div#main_content table.machine_list tr:nth-child(even) {
    background: #fafbfc;
}

div#main_content table.machine_list td img {
    height: auto;
    display: block;
}

div#main_content table.machine_list td.pic{
    width: 12%;
}
div#main_content table.machine_list td.name{
    width: 12%;
}
div#main_content table.machine_list td.number{
    width: 8%;
}
div#main_content table.machine_list td.use{
    width: 10%;
}
div#main_content table.machine_list td.place{
    width: 12%;
}
div#main_content table.machine_list td.spec{
    width: 12%;
}
div#main_content table.machine_list td.type{
    width: 8%;
}
div#main_content table.machine_list td.maker{
    width: 10%;
}


div.modal-content{
	background-color:transparent;
	border:none;
}

div.modal-content h2{
	background-color:#409bbf;
	color:#fff;
	font-size: 18px;
	font-weight: bold;
	padding:10px 10px;
}

div.modal-content table.spec-table{
	border-top:2px solid #999;
	border-bottom:2px solid #999;
	width: 100%;
	margin:20px 20px;
	
}

div.modal-content table.spec-table th{
	width: 200px;
	text-align: right;
	padding-right: 20px;
}

div.modal-content table.spec-table tr{
	border-bottom:1px solid #999;
}

div.modal-content div.eyecatch1_wrapper,
div.modal-content div.eyecatch2_wrapper,
div.modal-content div.eyecatch3_wrapper{
	margin-bottom:20px;
}


/* =========================
   Contact form
========================= */

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 input[type=radio] {
    width:auto;
}

div#main_content table.CF7_table ::placeholder {
	color:#797979;
}


div#main_content div#search{
	margin:20px 0px 40px;
	box-shadow: 0 0 5px 1px #ddd;
	padding:20px 30px;
}

div#main_content div#search h2{
	margin-bottom: 50px;
	background-color:#409bbf;
}

div#main_content div#search div.row > div{
	padding-bottom: 10px;
}

div#main_content div#search label{
	font-weight: bold;
	float:right;
}

div#main_content div#search button{
	background-color: #409bbf;
	color:#fff;
	padding:5px 20px;
}

div#main_content div#search div.row > div label.machine-directory-chip{
	border:1px solid #ccc;
	padding:10px;
	display: block;
	min-height: 90px;
	width: 100%;
	cursor: pointer;
}

div#main_content div#search div.row > div label.machine-directory-chip.checked{
	background-color:#409bbf;
	color:#fff;
}

div#main_content div#search div.row > div label.machine-directory-chip input[name="m_directory"]{
	display: none;
}

div#main_content div#search div.row > div label.machine-directory-chip p.directory-description{
	font-size: 12px;
	color:#999;
	line-height: 120%;
}
div#main_content div#search div.row > div label.machine-directory-chip.checked p.directory-description{
	color:#fff;
}

/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #cc0000;/*オレンジ*/
	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:#004c9a;
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:0 auto;
    padding:10px 100px;
    border-radius: 5px;
        
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}

/********************************************************************
20 PC
********************************************************************/

@media (min-width: 768px) {
	.pc_none{
		display:none;	
	}
	
	.sp_none{
	}
	
	body{
		min-width:1024px;
	}
	
	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 div#access_area{
	display: none;
}

	header div#logo_area{
		padding:10px 5px 5px;
	}
	
	header div#logo_area img{
		width:85%;
	}
    
    .sub_head{
    height: 70px;
}
    
    img#sub_eyecatch{
        position:relative;
    }	
	
	nav{
		display:none;	
		min-width:100%;
		background-image:none;
		z-index:1000;
		position:absolute !important;
		
		padding-left:0px !important;
		padding-right:0px !important;
		border-top: 1px solid #2c75db;
		top:0px;
        left: 0;
	}
	
	nav ul{
		width:100%;	
		height:auto;
		
	}

	nav ul li{
		width:100%;	
        min-height: 30px;
        height:auto;
        border-top:1px solid #fff;
	}
	
	nav > ul > li, nav > div > ul > li{
		float:none; 
        padding: 0 0;
	}	
	
	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:#fff;
        text-align: left;
		margin:0px;
        background-color:#004c9a;
        padding:10px 15px;
    }

nav > ul > li:nth-child(-n+5):after{
	content: none;
}
    
    nav ul li:last-child a{
	display: block;
}
    
    nav ul li a:hover,
nav > ul > li.current-menu-item > a{
    border-radius: 0;
}
    
    nav > ul > li > a:before{
        content:"";
    }
    
    nav ul ul li a{
        padding:5px 5px 5px 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{
    background:#fff;
}
    
	section#eyecatch .wrapper{
    height:150px;
        overflow: visible;
}

section#eyecatch .wrapper img{
    height: 150px;
}
     
section#subtitle h2{
    font-size: 18px;
}
    section#subtitle p{
    margin: 0;
        padding: 0;
}
    
    section#overview .reserve{
    display: none;
}
    
    section#overview{
    padding: 35px 10px;
    margin-top: 0px;
}

section#overview h3{
    font-size: 18px;
}

section#overview .btn-info{
  padding: 10px 60px;
    margin-right: 40px;
    margin-top: 30px;
}

    section#seminar .day{
    min-height: auto;
}

section#seminar .btn_area{
    padding-top: 10px;
}

section#seminar .btn-info{
  padding: 10px 50px;
}
    
    section#news{
    padding: 40px 10px 20px;
    margin-top: -40px;
}

section#news .thumbnail{
    height: auto;
}

section#news ul#category-menu{
    margin-top: 5px;
}
    
    section#news .btn-info{
  padding: 10px 50px;
    margin-top: 15px;
}
    .slick-next {
    right: 5px;
}
    
    .slick-prev {
    left: 5px;
}
    
    section#equipment{
    padding: 35px 10px;
}

section#equipment .box{
    margin-top: 15px;
    background: #fff;
    padding-bottom: 15px;
    position: relative;
}
section#equipment .box:after{
    padding: 5px 7px;
}

section#equipment .btn-info{
  padding: 10px 70px;
    margin-top: 25px;
}
    
    section#case{
    padding: 30px 10px;
}
    
    section#case h2{
    font-size: 26px;
}

section#case .excerpt_area{
    min-height: auto;
}

section#case .btn_area{
    margin: 20px 0 10px;
}

section#case .pic{
    display: none;
}

section#case .btn-form{
    width: 80%;
    margin-top: 10px;
}
	
    section#contact{
    padding: 30px 10px;
}

section#contact .btn-form{
    width: 80%;
    margin-top: 10px;
}
	
    section#map{
   height: 150px;
}

    section#footer_menu{
   padding: 20px 0;
}
    
section#footer_menu .menu{
   margin-top: 15px;
}

    
	div#main_content{
		border:none;
		padding:0px;
	}
    
    body.archive div#main_content{
		padding:0px 10px;
	}
	
	div#content_area{
		padding:0px !important;
	}
	
	.left, .right, .left_column, .right_column{
		float:none !important;
		margin:0px auto;	
	}

	div#sp_menu{
		right:15px;
		top:15px;
		display:block;
        position: fixed;
        z-index: 999;
	}


	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 .scroll_area{
        overflow-x: auto;        /* 横スクロールを有効にする */
    -webkit-overflow-scrolling: touch; /* スムーズスクロール（iOS向け） */
    box-sizing: border-box;
    }
    
    div#main_content .scroll_area table.machine_list {
    min-width: 800px;
    width: 100%;
    border-collapse: collapse;
}
	
    div#main_content div#pagetop{
        position:fixed;
        background-color:#fff;
        right:20px;
    }
	
    footer{
	padding:20px 0 80px;
}

footer .full2{
	margin: 15px 0;
    float: right;
    width: 60%;
}
	
	
}


/********************************************************************
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;
  }		
}

.staff-card {
  border-radius: 16px;
  overflow: hidden;
}

.staff-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.staff-note {
  padding: 12px 14px;
  background: #f8f9fa;
  border-left: 4px solid #0d6efd;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .staff-img {
    height: 240px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&family=Noto+Serif+JP:wght@400;500;600&display=swap');

body {
  /*font-family: "Noto Serif JP", serif;*/
  color: #333;
  line-height: 1.8;
}

.staff-card h3,
section#seminar h2 span {
  font-family: "Zen Kurenaido", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.staff-card .text-muted,
.staff-card p,
.staff-note {
  /*font-family: "Noto Serif JP", serif;*/
}

.hero-wrap{
position:relative;
}

.hero-textwrap{position:absolute;top:10px;right:20px;text-align:right; 
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.95),
    -1px 1px 0 rgba(0, 0, 0, 0.95),
    1px -1px 0 rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.95),
    0 0 6px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(0, 0, 0, 0.8);}
.hero-title{
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.95),
    -1px 1px 0 rgba(0, 0, 0, 0.95),
    1px -1px 0 rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.95),
    0 0 6px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(0, 0, 0, 0.8);
}

.hero-text{
  font-size: 18px;
  color: #fff;
  text-shadow:
    1px 1px 0 rgba(0, 0, 0, 0.95),
    -1px 1px 0 rgba(0, 0, 0, 0.95),
    1px -1px 0 rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.95),
    0 0 6px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(0, 0, 0, 0.8);
}

@media screen and (min-width:768px){
nav > ul > li:last-child{display:none;}
#menu{
    display: flex;
    justify-content: right;
}
}

@media screen and (max-width:767px){
.hero-textwrap{top:10px;}
.hero-title{
  font-size: 10px;
}

.hero-text{
  font-size: 8px;
}

.search-box{width:180px !important;}

.stylish-btn-2{margin-bottom:15px !important;}
}