@charset "utf-8";
/*
Theme Name: wu_nanotech
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 #14748d;;
	padding:5px 10px;
	float:right;
    color: #14748d;
    border-radius: 5px;
}
.pagetop:before{
 	content: '\f0d8';
}
.pagetop:hover{
 	text-decoration: none;
}

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 10px;
	background-color:#8c97cb;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

.label.news{
}

.label.event, .label-event{
    background-color:#facd89;
}

.label.topics{
	background-color:#274BBF;
}

.label.research, .label-research{
	background-color:#84ccc9;
}

.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 div#logo_area{
	padding:10px;
}
header div#logo_area p{
	margin: 0;
    padding: 0;
}

header h1{
	display:none;	
}

header div#link_area{
	padding:10px 5px;
}

header div#link_area ul li{
	float:right;
	padding:0 10px;
}
header div#link_area ul li a{
	color: #fff;
}

#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("images/sub_head.jpg");
background-position: center;
background-size: cover;
    height: 150px;
    margin-top: -95px;
}

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

nav ul li a{
	margin:0px 0px;
	display:inline-block;
	padding:5px 8px;
	color:#fff;
	font-size:16px;
	text-align:center;
	vertical-align:middle;
    letter-spacing: -0.05em;
}

nav > ul > li > a:after{
	content: "\f105";
}

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{
	
}

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

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

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

section#eyecatch .wrapper{
	width: 100%;
    height: 700px;
    overflow: hidden;
    margin-top: -95px;
    position: relative;
}

section#eyecatch img.eyecatch{
	width: 100%;
    height: 700px;
    object-fit: cover;
}

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

section#eyecatch .box{
	position: absolute;
    top:25%;
    left: calc(50% - 600px);
    color: #fff;
}

section#eyecatch .title{
	font-size: 55px;
    color: #49a0b7;
    font-weight: 900;
    font-family: "Zen Old Mincho", serif;
    line-height: 120%;
}

section#eyecatch .subtitle{
	font-size: 32px;
    color: #fff;
    line-height: 130%;
    font-weight: bold;
    margin: 30px 0;
}
.button-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.button-wrap .btn {
    display: inline-block;
    padding: 7px 20px;
    background: #14748d;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    width: 45%;
    position: relative;
}
.button-wrap .btn:after {
    content: "\f105";
    position: absolute;
    right: 10px;
}

.button-wrap .btn:hover {
    opacity: 0.8;
    text-decoration: none;
}

/** 固定ボタン **/
.reserve_area{
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.reserve_area a{
    display: block;
    
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: .3s;
    background: #14748d;
    border-radius: 3px;
    border: 2px solid #fff;
    position: relative;
     writing-mode: vertical-rl;
}

.reserve_area a:after{
    content: "\f061";
    position: absolute;
    bottom: 10px;
}

.reserve_area a:hover{
    opacity: .85;
}

.reserve_btn{
   padding: 40px 15px 60px;
}

.contact_btn{
    padding: 30px 15px 40px;
}

section#btn{
    padding: 50px 0;
}

section#btn .col-md-3 p{
    margin: 0;
}

section#btn .col-md-3 a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#btn .tile{
    padding: 25px 10px;
    background: #ecf5f8;
    color: #000;
    text-align: center;
    display: block;
    position: relative;
    width: 100%;
    height: 245px;
}
section#btn .tile:after{
    content: "\f061";
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #14748d;
}

section#btn .title{
    font-size: 18px;
    font-weight: bold;
}

section#btn .text{
    text-align: left;
}

section#btn img.icon1{
    width: 90px;
    margin-top: 15px;
}

section#btn img.icon2{
    width: 60px;
    margin-top: 15px;
}
section#btn img.icon3{
    width: 80px;
    margin-top: 15px;
}

section#news{
    padding: 35px 0;
}

section#news h2{
    text-align: center;
    font-weight: bold;
    font-size: 36px;
    color: #14748d;
    margin-bottom: 30px;
}

section#news ul li{
    padding: 10px 0;
    border-bottom: 2px solid #14748d;
}

section#news .date{
    color: #14748d;
}

section#news .btn-info{
    color: #fff;
    padding: 7px 80px;
    background: #14748d;
    border-radius: 25px;
    position: relative;
    margin-top: 20px;
}
section#news .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}
section#news .btn-info:hover{
    opacity: 0.8;
}

section#about{
    background: linear-gradient(
    to bottom,
    #fff 70%,
    #49a0b7 70%
);
}

section#about h2{
    color: #14748d;
    font-weight: bold;
    margin-bottom: 20px;
}

section#about .big{
    font-weight: bold;
    font-size: 45px;
    margin-right: 15px;
}

section#about .box{
    background: #e5e5e5;
    padding: 45px 0 50px;
    position:relative;
}

section#about .box:before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:-100vw;
    width:100vw;
    background: #e5e5e5;
    z-index:1;
}

section#about img.ntrc{
    width: 800px;
}

section#about .btn-info{
    color: #fff;
    padding: 7px 60px;
    background: #14748d;
    border-radius: 25px;
    position: relative;
    margin-top: 30px;
    display: inline-block;
}
section#about .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}
section#about .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#facility{
    padding: 80px 0 50px;
    background: url("images/bg_facility.jpg");
background-position: bottom center;
background-size: cover;
}

section#facility h2{
    font-weight: bold;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

section#facility h3{
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    background: transparent;
    margin: 10px 0;
}

section#facility p{
    color: #fff;
}

section#facility .box{
    margin-bottom: 15px;
}

section#facility .img_area{
    width: 100%;
    height: 132px;
    overflow: hidden;
    background: #cfd1d0;
    text-align: center;
}

section#facility .col-md-6 p{
    margin: 0;
}

section#facility .col-md-6 a:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#facility .text_area{
    background: #000;
    padding: 5px;
    position: relative;
}
section#facility .text_area:after{
    content: "\f061";
    color: #14748d;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

section#facility p.feature{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

section#facility p.name{
    font-size: 17px;
    font-weight: bold;
}

section#facility .cate{
    color: #b2efff;
    padding: 1px 3px;
    border: 1px solid #b2efff;
}

section#facility .reserve{
    color: #fff;
    padding: 30px 10px;
    background: #404040;
    width: 70%;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    position: relative;
    margin-top: 25px;
}
section#facility .reserve:after{
    content: "\f105";
    position: absolute;
    right: 10px;
    top: 30px;
}

section#facility .btn-info{
    color: #49a0b7;
    padding: 7px 60px;
    background: #fff;
    border-radius: 25px;
    position: relative;
    margin-top: 25px;
    display: inline-block;
}
section#facility .btn-info:after{
    content: "\f105";
    position: absolute;
    right: 10px;
}
section#facility .btn-info:hover{
    text-decoration: none;
    opacity: 0.8;
}

section#access{
    padding: 35px 0;
    background: #14748d;
    color: #fff;
}

section#access h2{
    font-weight: bold;
    font-size: 36px;
    margin: 30px 0 20px;
}

section#space{
    padding: 50px 0;
    background: url("images/bg_space.jpg");
background-position: center;
background-size: cover;
}


/* autoHeight.jquery */

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

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


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

footer{
	background-color:#000;
	color:#fff;
	padding:25px 0 70px;
}
footer .logo{
	margin-top: 20px;
}
footer .waseda{
	width: 70%;
}
footer .copy{
	text-align: center;
    margin-top: 20px;
}

/***************************************************************
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:#000;
	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 #ccc;
	color:#666;
    position: relative;
}

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

div#sidebar ul li a:after{
 	content: '\f105';
    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 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:#14748d;
   position:absolute;
   top:6px;
   left:10px;
}

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

div#main_content h2{
	font-size:22px;
	margin:30px 0px 20px;
	padding:15px 15px;
	border:0;
    color: #fff;
    background: #14748d;
    position: relative;
}

div#main_content h2:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: '';
  border: 1px dotted #fff;
    pointer-events: none;
}

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

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

div#main_content h4{
	border-left:5px solid #14748d;
	padding:5px 10px;
	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:#84A3B1;
	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: 2px solid #14748d;
}

div#main_content div.navigation{
	margin-bottom:30px;
	text-align: center;
}

.staff-list{
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 12px 30px;
    margin: 30px 0;
}

.staff-list dt,
.staff-list dd{
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.staff-list dt{
    font-weight: 700;
    color: #222;
}

.staff-list dd{
    color: #666;
}

/* =========================
   Machine List Table
========================= */

div#main_content table.machine_list {
    width: 100%;
    margin-top: 20px;
    font-size: 14px;
}

div#main_content table.machine_list th{
    background: #49a0b7;
    color: #fff;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    line-height: 120%;
    border: 1px solid #3d5975;
    font-size: 14px;
}


div#main_content table.machine_list td {
    border: 0;
    padding: 12px 8px;
    border-bottom: 1px solid #e5e7eb;  /* ごく薄いグレー */
    vertical-align: middle;
    color: #000;
    line-height: 120%;
    font-size: 14px;
}

div#main_content table.machine_list tr:nth-child(even) {
    background: #fafbfc;
}

div#main_content table.machine_list td.pic{
    width: 14%;
}

div#main_content table.machine_list td.pic img{
    width: 100%;
    object-fit: cover;
	border:1px solid #ccc;
}

div#main_content table.machine_list td.cate{
    width: 12%;
}
div#main_content table.machine_list td.id{
    width: 8%;
}
div#main_content table.machine_list td.name{
    width: 15%;
}
div#main_content table.machine_list td.name2{
    width: 15%;
}
div#main_content table.machine_list td.type{
    width: 5%;
}
div#main_content table.machine_list td.maker{
    width: 10%;
}
div#main_content table.machine_list td.place{
    width: 5%;
}

div#main_content table.spec-table{
	border-top:2px solid #999;
	border-bottom:2px solid #999;
	width: 100%;
	margin:20px 0px;
}

div#main_content table.spec-table th{
	width: 20%;
	text-align: right;
	padding-right: 20px;
    font-weight: normal;
    background: #5f7d95;
}

div#main_content table.spec-table tr{
    border: 0;
}

div#main_content table.spec-table td{
    border: 0;
	border-bottom:1px dashed #999;
}

div#main_content div.eyecatch1_wrapper,
div#main_content div.eyecatch2_wrapper,
div#main_content div.eyecatch3_wrapper{
	margin-bottom:10px;
}

.machine-gallery img{
    display:block;
    width:100%;
    height:auto;
}

/* 共通 */
.eyecatch1_wrapper,
.eyecatch2_wrapper,
.eyecatch3_wrapper{
    overflow:hidden;
    border-radius:6px;
    background:#fff;
}

/* 右側 */
.side-images{
    display:flex;
    flex-direction:column;
    gap:10px;
}




/* archive-machine.php 内の仮CSS：後で style.css に移動できます */
.machine_filter_form {
    margin: 0 0 24px;
    padding: 20px 22px;
    background: #f7f9fb;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    box-sizing: border-box;
}

.machine_filter_inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 14px 18px;
}

.machine_filter_item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 220px;
    flex: 1 1 260px;
}

.machine_filter_item label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
}

.machine_filter_item input[type="text"],
.machine_filter_item select {
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #c8d2dc;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
}

.machine_filter_item input[type="text"]::placeholder {
    color: #9aa5af;
}

.machine_filter_item input[type="text"]:focus,
.machine_filter_item select:focus {
    outline: none;
    border-color: #6f9fc9;
    box-shadow: 0 0 0 3px rgba(111, 159, 201, 0.18);
}

.machine_filter_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    padding-top: 23px;
}

.machine_filter_buttons button {
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid #1f5f93;
    border-radius: 5px;
    background: #256da8;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.machine_filter_buttons button:hover,
.machine_filter_buttons button:focus {
    opacity: 0.88;
}

.machine_filter_buttons button:active {
    transform: translateY(1px);
}

.machine_filter_buttons a {
    color: #4d6578;
    font-size: 14px;
    text-decoration: underline;
    white-space: nowrap;
}

.machine_filter_buttons a:hover,
.machine_filter_buttons a:focus {
    color: #1f5f93;
}

.machine_filter_current {
    margin: 12px 0 0;
    color: #56616b;
    font-size: 13px;
    line-height: 1.6;
}

.machine_filter_current span {
    display: inline-block;
    margin-right: 10px;
}

.machine_list_no_result {
    padding: 24px 12px;
    text-align: center;
    color: #666;
}

@media screen and (max-width: 767px) {
    .machine_filter_form {
        padding: 16px;
    }

    .machine_filter_inner {
        display: block;
    }

    .machine_filter_item {
        min-width: 0;
        margin-bottom: 14px;
    }

    .machine_filter_buttons {
        padding-top: 2px;
        justify-content: space-between;
    }

    .machine_filter_buttons button {
        flex: 1 1 auto;
    }
}



/********************************************************************
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{
        background: #000;
    }
	
	header div#logo_area{
		padding:5px 5px 0px;
	}
	
	header div#logo_area img{
		width:80%;
	}
    
    header div#link_area{
	padding:5px 5px;
}

header div#link_area ul li{
	float:right;
	padding:0 10px;
}
    
    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:10px;
        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; 
	}	
	
	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:#14748d;
        padding: 10px 15px;
    }
    
    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 .wrapper{
	width: 100%;
    height: auto;
    margin-top: 0px;
}
section#eyecatch img.eyecatch{
	width: 100%;
    height: auto;
}
section#eyecatch .box{
	position: absolute;
    top:10%;
    left: 3%;
}

section#eyecatch p{
	font-size: 12px;
}
    
section#eyecatch .title{
	font-size: 20px;
    line-height: 120%;
}

section#eyecatch .subtitle{
	font-size: 16px;
    margin: 10px 0;
}

.button-wrap {
    display: none;
}

/** 固定ボタン **/
.reserve_area{
   display: none;
}
    
    section#btn{
    padding: 30px 0;
}

section#btn .tile{
    padding: 20px 10px;
    height: auto;
}

    section#news{
    padding: 20px 10px 20px;
}

section#news h2{
    font-size: 30px;
}

section#news .btn-info{
    padding: 7px 60px;
}
    
    .label{
	font-size: 14px;
}

    section#about img.ntrc{
    width: 100%;
}

section#about .big{
    font-size: 36px;
}

section#about .box{
    padding: 30px 0 50px;
}

section#about .box:before{
    content:none;
}

section#about .btn-info{
    margin-top: 10px;
}
    
    section#facility{
    padding: 20px 0 30px;
}
section#facility h2{
    font-size: 30px;
    margin-bottom: 15px;
}
section#facility h3{
    font-size: 22px;
    margin: 5px 0;
}

section#facility .img_area{
    width: 100%;
    height: auto;
    max-height: 180px;
}

section#facility .reserve{
    padding: 25px 10px;
    width: 80%;
}

section#facility .btn-info{
    margin-top: 15px;
}
    
    section#access{
    padding: 25px 0;
}
section#access h2{
    font-size: 30px;
    margin: 10px 0 20px;
}

section#space{
    padding: 30px 0;
}
	
	
	div#main_content{
		border:none;
		padding:0px;
	}
	
	div#content_area{
		padding:0px !important;
	}
    
    div#main_content .scroll_area{
        overflow-x: auto;
    -webkit-overflow-scrolling: touch;
        padding: 10px;
}
    
    div#main_content .scroll_area table{
    min-width: 1000px;
}

	.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: 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 div#pagetop{
        position:fixed;
        background-color:#fff;
        right:20px;
    }
	
    footer{
	padding:25px 0 80px;
}
footer .logo{
	margin-top: 10px;
}
footer .waseda{
	width: 30%;
}
	
}


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


