@charset "UTF-8";
/*
Theme Name: NPO ISA
Theme URI: https://www.npoisa.com/
Description: This is our original theme.
Author: Ku-nel Co.,Ltd.
Author URI:　https://ku-nel.com/
Version:1.0
*/
@import url(css/html5reset-1.6.1.css);

/* common */
/* --------------------------------------------------- */
body {
	font-family: "メイリオ", Meiryo, sans-serif;
	font-size: 100%;
	background-color: #fff;
}
* {box-sizing: border-box;}
hr {
	width: 100%;
    margin: 20px 0;
}
/* --------------------------------------------------- */


/* header */
/* --------------------------------------------------- */
header {
	width: 100%;
    background-color: #FFFFFF;
}
header #header {
	width: 980px;
    height: 120px;
	margin: 0 auto;
    background-image: url("img/ISA_002.webp");
    background-repeat: no-repeat;
    background-size: 120px;
}
header #header #logo {
    padding-top: 30px;
	margin: 0 0 0 130px;
}
header #header #logo h1 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 44px;
}
header #header #logo h1 a {
	text-decoration: none;
	color: #00a0e9;
}
header #header #logo p {
	font-size: 14px;
	color: #231815;
}

@media (max-width: 960px) {

header #header {
	width: 100%;
	margin: 0;
}

}
@media (max-width: 430px) {

}
/* --------------------------------------------------- */


/* #header navi */
/* --------------------------------------------------- */
header nav {
	width: 980px;
	margin: 0 auto;
}
header nav ul {
	width: 80%;
	height: 44px;
	margin: 0 10%;
}
header nav ul li {
	float: left;
	width: 20%;
	height: 40px;
}
header nav ul li a {
	display: table-cell;
	width: 20%;
	height: 40px;
	font-size: 14px;
	color: #231815;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}
header nav ul li a:hover {
	font-weight: bold;
	color: #727171;
	border-bottom: 2px solid #727171;
}

@media (max-width: 960px) {

header nav {
	width: 100%;
}
header nav ul {
	width: 100%;
	margin: 0;
}

}
/* --------------------------------------------------- */


/* article */
/* --------------------------------------------------- */
article {
	width: 980px;
	margin: 20px auto;
}
article section {
    float: left;
	width: 100%;
	text-align: center;
    padding: 20px;
	margin: 0 0 20px;
    background-color: white;
}
div.comp {
	width: 50px;
	height: 12px;
	margin: 20px 20px 10px;
	background-color: #4e5ac3;
}

@media (max-width: 960px) {

article {
	width: 100%;
}
article section {
	width: 100%;
}

}

@media (max-width: 590px) {

article section p {
    width: 96%;
}

}
/* --------------------------------------------------- */


/* article #side navi */
/* --------------------------------------------------- */
nav#sidenav {
	float: right;
	width: 240px;
}
nav#sidenav ul {
}
nav#sidenav ul li {
	float: left;
	margin-bottom: 5px;
	border: 1px solid #898989;
}
nav#sidenav ul li a:hover {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}
nav#sidenav ul li a > img {
	width: 240px;
	margin-bottom: -3px;
}
nav#sidenav input  {
	display: none;
}

@media (max-width: 960px) {

/*ヘッダーまわりはサイトに合わせて調整してください*/
nav#sidenav {
    float: left;
	position: fixed;
	top: 6px;
	left: 6px;
    margin-top: 0;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
	display:none;
}
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 25px;/*長さ*/
	border-radius: 3px;
	background: #000;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 270px;/*最大幅（調整してください）*/
	height: 100%;
	padding: 5px;
	background: #fff;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .5;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

}
/* --------------------------------------------------- */


/* back image */
/* --------------------------------------------------- */
div#backimg {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
	width: 100vw;
	height: 100vh;
	align-items: center;
	justify-content: center;
	overflow: hidden;
    z-index: -1;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}
div#backimg img {
	display: block;
	width: 100%;
	height: 100vh;
}

@media (max-width: 590px) {

div#backimg {
	display: none;
}

}
/* --------------------------------------------------- */


/* home newsarchive */
/* --------------------------------------------------- */
#newsarchive div.archive {
	width: 100%;
	height: 240px;
    overflow: hidden;
	margin-bottom: 20px;
	border: 1px solid #ccc;
}
#newsarchive div.archive:last-child {
	margin-bottom: 0;
}
#newsarchive div.archive div.img {
	float: left;
    width: 320px;
    height: 240px;
	overflow: hidden;
}
#newsarchive div.archive div.img img {
	width: 100%;
    height: 240px;
	object-fit: cover;
}
#newsarchive div.archive div.text {
	float: right;
    width: 320px;
    height: 240px;
    overflow: hidden;
}
#newsarchive div.archive div.text h2 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 21px;
	line-height: 120%;
	padding-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
#newsarchive div.archive div.text p {
	font-size: 14px;
	line-height: 150%;
	padding-right: 10px;
}
#newsarchive div.archive a {
	text-decoration: none;
	color: #000;
}
#newsarchive div.archive a:hover {
	text-decoration: underline;
	color: #00f;
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
#newsarchive div.archive div.text p.continue {
	font-weight: bold;
	text-align: right;
	padding-top: 10px;
}

@media (max-width: 960px) {

#newsarchive div.archive div.img {
    width: 40%;
	margin-right: 2%;
}
#newsarchive div.archive div.text {
    width: 58%;
}

}

@media (max-width: 430px) {

#newsarchive div.archive {
	height: 400px;
}
#newsarchive div.archive div.img {
    width: 100%;
}
#newsarchive div.archive div.text {
    width: 100%;
	padding-left: 10px;
}

}
/* --------------------------------------------------- */


/* news */
/* --------------------------------------------------- */
#news div.comp {
	margin: 20px 0 10px;
}
#news h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 100%;
	font-size: 28px;
	color: #000;
	margin: 0 0 20px;
}
#news p {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 18px;
	color: #000;
	line-height: 150%;
    margin-bottom: 20px;
}
#news img {
	width: 100%;
    margin-bottom: 20px;
}
/* --------------------------------------------------- */


/* aboutus */
/* --------------------------------------------------- */
#aboutus {
	padding: 0;
	background-color: inherit;
}
#staff h3,
#aboutus h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 90%;
	font-size: 75px;
	color: #000;
	margin: 0 20px 20px;
}
#aboutus p.jp {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	line-height: 150%;
    margin-bottom: 20px;
}
#aboutus p.en {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	line-height: 130%;
    margin-bottom: 20px;
}
#staff {
	padding: 0;
	background-color: #dadada;
}
div.profile {
	width: 100%;
	height: 170px;
	padding: 10px;
	border-bottom: 2px solid #dadada;
	background-color: #fff;
}
div.profile img {
	float: left;
	width: 200px;
	height: 150px;
	margin-right: 10px;
}
div.profile p {
	font-size: 18px;
	line-height: 150%;
}

@media (max-width: 960px) {

#aboutus {
	padding: 10px;
}

}

@media (max-width: 590px) {

div.profile p {
	font-size: 16px;
}

}

@media (max-width: 430px) {

div.profile {
	height: auto;
}
div.profile img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

}
/* --------------------------------------------------- */


/* services */
/* --------------------------------------------------- */
.services {
	padding: 0;
	margin-bottom: 40px;
	background-color: inherit;
}
.services div.comp {
	background-color: #009;
}
.services h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 90%;
	font-size: 75px;
	color: #000;
	margin: 0 20px 20px;
}
.services h3 span {
	color: #fff;
}
.services p {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 18px;
	line-height: 150%;
    margin-bottom: 20px;
}
.services p a {
	text-decoration: none;
	color: #fff;
}
.services p a:hover {
	text-decoration: underline;
}
.services img,
.services p img {
	width: 100%;
}

@media (max-width: 590px) {

.services h3 span {
	color: #009;
}
.services p {
	padding: 0 10px;
}

}
@media (max-width: 430px) {

.services h3 {
	font-size: 43px;
}

}
/* --------------------------------------------------- */


/* work */
/* --------------------------------------------------- */
.work {
	padding: 0;
	margin-bottom: 40px;
	background-color: inherit;
}
.work div.comp {
	background-color: #4e5ac3;
}
.work h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 90%;
	font-size: 40px;
	color: #3d9be9;
	margin: 0 20px 20px;
}
.work h4 {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	width: 100%;
	font-size: 21px;
	color: #1b1b1e;
	margin: 0 0 20px;
}
.work h5 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 100%;
	font-size: 24px;
	color: #3d9be9;
	line-height: 120%;
	text-align: center;
	margin: 0 0 20px;
}
.work p {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 18px;
	line-height: 150%;
	color: #1b1b1e;
	padding-left: 2em;
    margin-bottom: 20px;
}
.work p.pblue {
	color: #3d9be9;
	padding-left: 0;
}
.work div.bluebox {
	width: 490px;
	height: 110px;
	text-align: center;
	padding: 24px 0 0;
	margin: 20px auto;
	background-color: #d3edfb;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}
.work div.bluebox p {
	font-size: 26px;
	color: #1b1b1e;
	line-height: 120%;
	padding: 0;
}
.work div.bluebox p span {
	font-size: 18px;
}
.work p.btn {
	display: block;
	width: 200px;
	height: 50px;
	font-size: 18px;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	background-color: #00a0e9;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}
.work p.btn a {
	display: table-cell;
	width: 200px;
	height: 50px;
	text-decoration: none;
	color: #fff;
	vertical-align: middle;
}
.work p.btn a:hover {
	background-color: red;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}
.work div.photo {
	width: 100%;
}
.work div.photo ul li {
	float: left;
	width: 33.333%;
	margin-bottom: -3px;
}
.work div.photo ul li img {
	width: 100%;
}

@media (max-width: 960px) {

.work {
	padding: 0 10px;
}

}

@media (max-width: 430px) {

.work div.bluebox {
	width: 100%;
	height: auto;
	padding-bottom: 1px;
}

}
/* --------------------------------------------------- */


/* contact */
/* --------------------------------------------------- */
.contact {
	padding: 0;
	margin-bottom: 40px;
	background-color: inherit;
}
.contact div.comp {
	width: 50px;
	height: 12px;
	margin: 20px 20px 10px;
	background-color: #4e5ac3;
}
.contact h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 90%;
	font-size: 75px;
	color: #000;
	margin: 0 20px 20px;
}
.contact h5 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 100%;
	font-size: 24px;
	color: #3d9be9;
	line-height: 120%;
	text-align: center;
	margin: 0 0 20px;
}
.contact div.bluebox {
	width: 490px;
	height: 110px;
	text-align: center;
	padding: 24px 0 0;
	margin: 20px auto;
	background-color: #d3edfb;
	border-radius: 10px; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
}
.contact div.bluebox p {
	font-size: 26px;
	color: #1b1b1e;
	line-height: 120%;
	padding: 0;
}
.contact div.bluebox p span {
	font-size: 18px;
}
form p {
	font-size: 14px;
	padding: 0;
	margin-bottom: 2px;
}
form select {
	font-size: 20px;
	font-weight:bold;
	padding: 0;
	margin-bottom: 20px;
}
form input[type="text"],
form input[type="email"] {
	width: 100%;
	height: 40px;
	margin-top: 4px;
	margin-bottom: 20px;
}
form input[type="radio"] {
	width: 18px;
	height: 18px;
	margin-bottom: 7px;
}
.wpcf7-list-item-label {
	font-size: 17px;
	font-weight: bold;
}
.wpcf7-list-item-label:after {
	content: "　";
}
form textarea {
	width: 100%;
	height: 100px;
	margin-top: 4px;
	margin-bottom: 20px;
}
form input[type="submit"] {
	width: 50%;
	height: 50px;
	font-size: 24px;
	font-weight: 100;
	margin: 20px 25%;
}

@media (max-width: 960px) {

.contact {
	padding: 0 10px;
}

}

@media (max-width: 430px) {

.contact h3 {
	font-size: 48px;
}
.contact div.bluebox {
	width: 100%;
	height: auto;
	padding-bottom: 1px;
}

}
/* --------------------------------------------------- */


/* footer */
/* --------------------------------------------------- */
footer {
	width: 100%;
	background-color: #2e2e2e;
	padding-top: 10px;
}
footer #footer {
	width: 960px;
	height: 80px;
	margin: 0 auto;
}
footer #footer p {
	font-size: 14px;
	line-height: 120%;
	color: #f5f8dd;
}

@media (max-width: 960px) {

footer #footer {
	width: 100%;
	height: 40px;
    text-align: center;
	margin: 0;
}

}
/* --------------------------------------------------- */