@charset "UTF-8";

/* 全体設定＋自動拡大無効 */
body	{
	margin: 0;
	font-family: 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

img {
	width: 100%;
	height: auto;
}

figure, h1, h2, h3, h4, ul, ol{
	margin: 0;
}

/* link */
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

/* anchor 画面サイズ中小*/
a.anchor{
	display: block;
    padding-top: 32px;
    margin-top: -32px;
	pointer-events: none;
}

.contents {
	background-color: #ffffff;
	padding: 0;
}

.table-container	{
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* bar */
::-webkit-scrollbar{

	height: 10px;
}
::-webkit-scrollbar-track{
	background: #eeeeee;
	border: none;
	box-shadow: inset 0 0 1px #777; 
}
::-webkit-scrollbar-thumb{
	background: lightslategray;
	box-shadow: none;
}

/* formula */
sup {
	font-size: 75%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
sub {
	font-size: 75%;
	vertical-align: bottom;
	position: relative;
	top: 0.2em;
}

/* back */
p.backIndex	{font-size: 18px;}
p.backIndex i	{color: lightslategray;}

/* トグルを開いた際のスライド速度 */
.contents {
	transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* トグルを開いた際のスライド距離 */
#navTgl:checked ~ .contents {
	transform: translateX(220px);
}

/* toggle */
#navTgl {
	display: none;
}
label.open,
label.close {
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
}
.open {
	z-index: 13;
	width: 48px;
	height: 48px;
	background: steelblue;
	transition: background .4s, transform .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 3px solid white;
	transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 12;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .4s;
}
#navTgl:checked + .open {
	background: lightslategray;
	transform: translateX(220px);
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.2);
}



/* drawer menu */
.menu {
	z-index: 14;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 220px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,0.7);
	transform: translateX(-100%);
	transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu h2,
.menu a {
	color: #fff;
	opacity: 1;
}
.menu h2 {
	font-size: 16px;
	padding: 16px;
	font-family:"roboto";
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu li {
	font-size: 14px;
}
.menu li:not(:first-child) {
	border-top: 1px dotted rgba(255,255,255,.2);
}
.menu a {
	display: block;
	padding: 13px 14px 12px;
	text-decoration: inherit;
	transition: background .6s;
}
.menu a:hover {
	background: black;
	color: lightskyblue;
	opacity: 1;
}
#navTgl:checked ~ .menu {
	transform: none;
}



/* accordion menu */
.menu label {
	color: #eee;
	position: relative;/* 上書き */
	display: block;
	padding: 13px 14px 12px;

}

/*アイコンを表示*/
.acc_box label:after {
    content: '\f055';
    font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #ccc;
	position: absolute;
	right: 15px;
	top: 15px;
}

/* ラベル部の背景色 */
.acc_box label:hover {
    background: skyblue;
}

/* hide */
.acc_box input {
    display: none;
}

/* off */
.acc_box .acc_list {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/* on */
.accordion:checked + label + .acc_list {
    height: auto;
    background: #111;
    opacity: 0.9;
}

/* icon change */
.accordion:checked + label:after {
    content: '\f056';
}



/* header */
header {
	width: 100%;
	padding: 0;
	line-height: 1em;
	text-align: left;
	background-color: white;
	z-index: 15;
}

header .Scaling {
	display: flex;
	justify-content: space-between;
}

#logo {
	max-width: 100px;
	margin: 8px 8px 8px 56px;
}

header .Scaling .noScaling {
	display: flex;
	justify-content: space-between;
}



/* mega不要 */
/*.megaDrop {
    position: relative;
}
ドロップエリア（横幅）を親の下に限定する
*/

.megaDrop > li:hover {

    -webkit-transition: all .5s;
    transition: all .5s;
}

.megaDrop > li ul li {
	list-style-type: none;
	height: 48px;
}
.megaDrop > li ul li a {
    display: block;
    color: #fff;
}

ul.mega_second_level {
    visibility: hidden;
    opacity: 0;
    z-index: 11;
}

ul.mega_third_level {
    visibility: hidden;
    opacity: 0;
}

ul.mega_fourth_level {
    visibility: hidden;
    opacity: 0;
}

/*
.mega_second_level li a:hover {
    background: #111;
}

.mega_third_level li a:hover {
    background: #111;
}

.meg__fourth_level li a:hover {
    background: #111;
}
*/

/* floatクリア */
.mega:before,
.mega:after {
    content: " ";
    display: table;
}

.mega:after {
    clear: both;
}

.mega {
    *zoom: 1;
}


/* シングル */
.mega > li.mega_single {
    position: relative;
}

li.mega_single ul.mega_second_level {
    position: absolute;
    top: 42px;
	padding-left: 0;
    width: 100%;
	line-height: 2.5em;
    background: rgba(0,0,0,.8);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

/* 追加 */
li.mega_single ul.mega_second_level a {
	color: #eee;
    opacity: 1;
}
li.mega_single ul.mega_second_level a:hover {
	color: lightskyblue;
}
/* 追加ここまで */

li.mega_single:hover ul.mega_second_level {
    top: 42px;
    visibility: visible;
    opacity: 1;
}


/* MegaDrop */
li.mega_drop ul.mega_second_level {
    position: absolute;
    top: 64px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 10px;
	line-height: 2.5em;
    background: rgba(0,0,0,.8);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

/* 追加 */
li.mega_drop ul.mega_second_level a {
	color: #eee;
    opacity: 1;
}
li.mega_drop ul.mega_second_level a:hover {
	color: lightskyblue;
}
/* 追加ここまで */

li.mega_drop:hover ul.mega_second_level {
    top: 64px;
    visibility: visible;
    opacity: 1;
}

li.mega_drop ul.mega_second_level > li {
    float: left;
    width: 24%;
    border: none;
	list-style: none;
}

li.mega_drop ul.mega_second_level > li:nth-child(4n+3) {
    margin: 0 1%;
}


/* メガドロップ自由レイアウト */

/* 展開（横幅）を親エリアの下に限定したい場合はこの項目を開ける
.menu_primary {
	position: relative;
}
*/
.megaDrop {
	position: absolute;
	top: 64px;
	left: 0;
	width: 100%;
	z-index: 10;
}
.megaDrop .megaInn {
	width: 100%;
	height: 280px; /* 注１ */
	max-height: 0; /* 追加 */
	margin: 0;
	color: #fff;
	background: rgba(0,0,0,.8);
	overflow: hidden; /* 追加 */
	transition: max-height .2s ease; /* 追加 */
}
 
.menu_primary > ul > li:hover .megaDrop .megaInn {
	max-height:280px; /* 注１が優先される */
}


.megaArea {
	max-width: 1000px;
	margin: 0 auto;
}

p.mega_title	{
box-sizing: border-box;
width: 100%;
border-bottom: 1px dotted #666666;
text-align: left;
font-size: 18px;
padding: 16px 8px 24px;
}

p.mega_title a:hover	{
color: lightskyblue;
	opacity: 1;
}



ul.mega_list {
list-style: none;
display: flex;
flex-wrap: wrap;
padding-left: 0;
}
ul.mega_list li	{
box-sizing: border-box;
width: 25%;
flex: none;
text-align: left;
padding: 20px 8px;
}

ul.mega_list li a	{
display: block;
}

ul.mega_list li a:hover	{
color: lightskyblue;
	opacity: 1;
}

ul.mega_list li a:before	{
	padding-right: 8px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: lightsteelblue;
}

/*
div.mega_flex	{
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-flow: row-reverse
}
*/
div.mega_flex figure	{
margin: 0;
vertical-align: bottom;
}

div.mega_flex div	{
width: 55%;
}

div.mega_flex ul.mega_list li	{
width: 50%;
}


/* nav1 */
/*
.menu_primary {
	max-width: 1000px;
	margin: 0 auto;
}
*/
.menu_primary > ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	white-space: nowrap;
	margin-right: 10px;
}
.menu_primary > ul >li {
	display: flex;
	height: 64px;
}
.menu_primary > ul > li:not(:first-child) {
	border-left: 1px dotted rgba(255,255,255,.8);
	
}
.menu_primary > ul > li > a {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	font-size: 12px;
	align-items: center;
	padding: 8px 6px 4px;
	color: #333;
	list-style-type: none;/* 消しても問題ない */
	border-bottom: 4px solid white;
	transition: background .3s;
}
.menu_primary > ul > li > a:hover {
	color: steelblue;
	opacity: 1;
	border-bottom: 4px solid lightsteelblue;
}

/* nav2 */
.menu_secondary ul {
	list-style-type: none;
	padding: 0;
	display: flex;
}

.menu_secondary li a {
	display:block;
	height: 48px;
	width: 48px;
	color: #ffffff;
	text-align: center;
	background: lightsteelblue;
	border-left: solid 1px #ffffff;
}
.menu_secondary li a.lang {
	background: lightblue;
}
.menu_secondary li a i {
	margin-top: 6px;
	font-size: 16px;
	line-height: 1.5em;
}
.menu_secondary li a p	{
	margin: 0;
	font-size: 10px;
	height: 10px;
	line-height: 10px;
}

/* nav3 */
.menu_tertiary {
	margin-bottom: 15px;
}
.menu_tertiary ul {
	list-style-type: none;
	padding: 0;
	color: #666666;
	font-size: 13px;
	display: flex;
	justify-content: center;
}

.menu_tertiary li:not(:last-child) {
	margin-right: 20px;
}



/* footer */
footer {
	background-color: #eeeef0;
	margin-top: 30px;
	padding: 20px 10px;
}

.copyright {
	border-top: dotted 1px #aaaaaa;
	margin: 0 auto;
	padding: 20px 0 0;
	color: #666666;
	font-size: 16px;
	text-align: center;
	font-weight: 700;
	max-width: 1000px;
}

/* footer-globalmenu */
footer .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.menu_global ul {
	list-style-type: none;
	padding: 0;
	color: #666666;
	font-size: 14px;
}

/* 2-line */
.menu_global {
	width: 48%;
	flex: none;
	margin-bottom: 15px;
}



/* hero image */
.hero {
	background-color: lightsteelblue;
	background-size: cover;
	background-position: center;
	height: 320px;
	color: #ffffff;
	padding: 20px;
	box-sizing: border-box;
}

.hero h1 {
	margin-top: 112px;
	font-size: 30px;
	line-height: 1em;
	font-family: sans-serif;
	text-shadow: 0 0 6px #333333;
	text-align: center;
}
.hero h2 {
	margin-top: 112px;
	font-size: 30px;
	line-height: 1em;
	font-family: sans-serif;
	text-shadow: 0 0 6px #333333;
	text-align: center;
}
.hero p {
	font-size: 16px;
	line-height: 0.5em;
	font-family: "roboto";
	font-weight: bold;
	text-shadow: 0 0 4px #333333;
	text-align: center;
}

/* パンくず */
.breadcrumbs {
	padding: 8px 12px;/* 可変 */
	border-bottom: dotted 1px lightsteelblue;
}
.breadcrumbs li {
	display: inline-block;
	margin: 0;
	font-size: 12px;
	color: #333333;
}
.breadcrumbs li:not(:first-child):before {
    padding: 0 8px 0 6px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
    font-size: 12px;
	color: lightsteelblue;
}

/* 戻り */
#return-top {
	background-color: lightsteelblue;
	position: fixed;
	right: 12px;
	bottom: 12px;
	height: 40px;
	width: 40px;
	text-align: center;
	border-radius: 50%;
	z-index: 17;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
}


/* お問い合わせ窓口 */
.contact-button	{
	max-width: 480px;
	border-radius: 6px;
	margin: auto;
	padding :0;
	text-align: center;
	background-color: #d0ddee;
/*	border: 1px solid lightsteelblue;*/
}
.contact-button img	{
	vertical-align:bottom;
	padding: 0px;
	margin: 0;
}
.contact-button a	{
	display: inline-block;
}
/* 背景は上書き角丸は引き継ぎ */
p.contact-button a:hover	{
	background-color: lightsteelblue;
	border-radius: inherit;
	opacity: 1;
}


/* 色指定 */
.col_about		{color: #0044aa;}
.col_work		{color: #dd4477;}
.col_develop	{color: #5599ee;}
.col_exam		{color: #5544bb;}
.col_use		{color: #88bb22;}
.col_reference	{color: #aa8866;}
.col_consult	{color: #994499;}
.col_note		{color: #ff6633;}
.col_member		{color: #2277aa;}


/* 記事 */
article {
	margin: 40px 10px 60px;
}
article.table-container {
	margin-bottom: 40px;
}

article h1	{
	font-size: 22px;
	font-family: 'Noto Sans JP';
	font-weight: 400;
	letter-spacing: 0.15em;
	line-height: 26px;
	color: #141e32;
	padding: 2px 0 4px 16px;
	margin: 36px 0 26px;
	border-left: 4px solid lightsteelblue;
}
article h1 span.num	{
	font-family: 'Roboto';
	font-weight: 500;
	padding: 0 4px;
}
article h1 span.full	{
	letter-spacing: 0;
}

article h1 span.lowercase	{
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 0;
}


.eml	{
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	font-family: "Roboto";
}

.note	{
	font-size: 14px;
	font-weight: normal;
}
.note-fig	{
	font-size: 14px;
	font-weight: normal;
	margin-top: 4px;
	margin-bottom: 32px;
}
.note-fig-while	{
	font-size: 14px;
	font-weight: normal;
	margin-top: 4px;
	margin-bottom: 4px;
}

.domain::before {
   content: '@';
}
.domain	{
	font-size: 20px;
	font-weight: normal;
}

/* スパム対策 */
.text-E::before {
   content: 'Email';
}
.text-E-::before {
   content: 'E-mail';
}
.text-d::before {
   content: '@';
}


.phone	{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	font-family: "Roboto";
}

.phone span	{
	font-size: 28px;
}

article p	{
	font-size: 16px;
	line-height: 1.5;
	text-align: justify;
	margin: 16px 20px;
}

article p.detail	{
	clear: both;
	font-size: 18px;
	text-align: center;
}
article p.pdf	{
	clear: both;
	font-size: 16px;
	text-align: center;
}
article p.pdf i	{
	padding-right: 10px;
}
article p.pdf span	{
font-size: 14px;
}

/* お問合せ */
p.inquiry	{
	font-size: 14px;
	margin-left: 0;
	padding-left: 16px;
	border-left: 4px solid lightsteelblue;
}
p.inquiry span	{
	font-size: 12px;
	color: #666666;
}
p.inquiry span span	{
	color: #ff3300;
}



p.center	{
	text-align: center;
}

strong	{
	color: #FF6633;
	font-weight: normal;
}


figcaption	{
	font-size: 14px;
	text-align: center;
}


/*
article h1	{
	font-size: 24px;
	font-family: 'Noto Sans JP';
	font-weight: 900;
}

article p	{
	font-size: 16px;
	line-height: 1.5;
}
*/


/* テーブル */
table	{
	border-collapse: collapse;
	max-width: 960px;
	margin: auto;
}

th, td	{
	border: solid 1px #999;
	padding: 8px;
	font-size: 14px;
}

th		{
	background-color: #eeeef0;
}

article table p	{
	font-size: 14px;
}

/* pickup */
.pickup {
	margin: 10px;
}

.pickup h2 {
	font-size: 14px;
	font-weight: normal;
	box-sizing: border-box;
	border-left: 4px solid lightsteelblue;
	padding-left: 9px;
	height: 24px;
}

/* 箱 */
.pickup div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.pickup article {
	width: 50%;
	height: auto;
	margin: 0px;
	padding: 0;
	text-align: center;
	background-color: lightsteelblue;
	flex: none;
	box-sizing: border-box;
	border-bottom: solid 1px #ffffff;
	border-right: solid 1px #ffffff;
}

/*
.pickup article:not(:last-child) {
}
*/

/* 文字画像重ね */
.pickupImage {
	position: relative;
}

.pickupImage p {
	position: absolute;
	text-align: center;
	color: white;
	font-size: 18px;
	font-family: "Noto Sans JP";
	font-weight: 700;
	text-shadow:0px 0px 3px #333344;
	width: 100%;
	top: 44%;
	margin:0;
	padding:0;
}

.pickupImage img {
	width: 100%;
	vertical-align: bottom;
}

/* バナー */
section.banner	{
margin: 30px 10px;
}

ul.banner	{
	width: 100%;
	list-style: none;
	padding: 0;
	display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}




/* news event */
.info {
	margin: 10px 10px 30px;
}

.info aside {
	padding: 0px;
}

.info aside ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	color: #666666;
	font-size: 14px;
}

.info aside a {
	display: flex;
	align-items: center;
	padding: 6px 0;
	border-bottom: dotted 1px #aaa;
}

.info aside a h2 {
	width: 100%;
	font-size: 18px;
	color: #29abe2;
	margin: 6px 0 4px 0;
	text-align: center;
}

.info aside figure {
	width: 60px;
	flex: none;
}

.info aside img {
	vertical-align: bottom;
}

.info aside time {
	font-size: 12px;
	color: #999999;
	width: 3em;
	margin: 0 10px;

}

.info aside h3 {
	font-size: 14px;
	line-height: 1.3em;
	font-weight:normal;
	margin-left: 10px;
}



/* toggle-on */
@media screen and (max-width: 767px) {
	header .menu_primary {
		display: none;
	}
}


@media (min-width: 768px) {

/* 上部固定 */
header {
	position: fixed;
}
.swiper-container {
	padding-top:64px;
}
.swiper-button-next, .swiper-button-prev {
	margin-top: 0px;
}

.hero_container {
	padding-top:64px;
}


#logo {
	max-width: 150px;
	margin: 8px 16px;
}

.container {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.menu_secondary li a {
	height: 64px;
	width: 64px;
}
.menu_secondary li a i {
	margin-top: 13px;
	font-size: 18px;
	line-height: 1.5em;
}
.menu_secondary li a p	{
	margin: 0;
	font-size: 10px;
	height: 10px;
	line-height: 10px;
}

a.anchor{
	display: block;
    padding-top: 48px;
    margin-top: -48px;
	pointer-events: none;
}

/* flex-box処理 */
.info .container {
	display: flex;
	justify-content: space-between;
}

/* news event 2-line */
.info aside {
	width: 48%;
}

/* globalmenu 3-line */
.menu_global {
	width: 30%;
	flex: none;
}

.pickup article {
width: 25%;
}

article h1	{
	font-size: 24px;
	letter-spacing: 0.25em;
	line-height: 28px;
}


/* toggle-off */
@media screen and (min-width: 768px) {
	.open {
		display: none;
	}
}


@media (min-width: 1000px) {

.menu_primary > ul {
	margin-right: 24px;
}
.menu_primary > ul > li > a {
	font-size: 14px;
	align-items: center;
	padding: 8px 16px 2px;

}

/* globalmenu 6-line */
.menu_global {

	flex: none;
}

.menu_global:nth-child(1)	{width: 18%;}
.menu_global:nth-child(2)	{width: 14%;}
.menu_global:nth-child(3)	{width: 14%;}
.menu_global:nth-child(4)	{width: 14%;}
.menu_global:nth-child(5)	{width: 18%;}
.menu_global:nth-child(6)	{width: 12%;}

}

@media (min-width: 1080px) {

.breadcrumbs {
	padding: 8px 32px;
}

}