@charset "utf-8";

@import url("ress.css");
@import url("base.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;600;900&family=Roboto+Condensed:wght@300&display=swap');

/* __________________________________________________
   common
__________________________________________________ */

html { overflow-y: scroll; _overflow: auto; font-size: 62.5%;}/**1rem=10px**/
body { overflow-x: hidden; position: relative; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; font-feature-settings: "palt"; letter-spacing: 0; line-height: 1.75; color: #333; padding: 0; margin: 0; font-size: 1.6rem;}

html, body { width: 100%; min-height: 100%; position: relative;}

a { color: #004da0; text-decoration: none;}
a:hover { color: #ccc;}
a[href^="tel:"]{ display: inline-block; pointer-events: none;}

@media screen and (max-width: 767px) {
body {font-size: 1.5rem;}
a[href^="tel:"] { pointer-events: auto; text-decoration: underline; color: #6a6a6a;}
}

/*
COMING SOON
*/
div.soon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.8); border: 2px solid #333; position: absolute; top: 0; left: 0; z-index: 5;}
div.soon span { font-size: 2.4rem; color: #333; text-align: center;}
div.soon + a { pointer-events: none!important;}

@media screen and (max-width: 768px) {
div.soon span { font-size: 2rem;}
}

/* __________________________________________________
   header
__________________________________________________ */
header { width: 100%; background: #fff; transition: .5s; z-index: 48;}
header .inner { max-width: 1440px; height: 90px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; margin: 0 auto;}
header .logo { display: flex;}
header .logo a { width: 170px; height: 67px; display: block; background: url(../images/share/logo.svg) 0 0 no-repeat; background-size: 100%; text-indent: -9876em; overflow: hidden;}
header .logo p { font-size: 1.2rem; color: #004da0; padding: 40px 0 0 5px;}
header .upperpartNav { flex-grow: 2; margin-right: 15px;}
header .upperpartNav ul { display: flex; align-items: center; justify-content: flex-end; }
header .upperpartNav li { display: inline-block; position: relative;}
header .upperpartNav a { display: block; color: #333; font-size: 1.8rem; font-weight: 600; text-decoration: none; line-height: 1.4; padding: 0 30px; position: relative;}
header .upperpartNav a:hover { opacity: .7; transition: .3s;}
#menuTrigger { display: none;}

@media screen and (max-width: 1215px){
header .upperpartNav a { font-size: 1.6rem;}
}

@media screen and (max-width: 1150px){
header .logo { height: auto; flex-direction: column;}
header .logo p { padding: 0 0 0 5px; margin-top: -5px;}
}

@media screen and (max-width: 768px){
header { border-bottom: 1px solid #ccc;}  
header .inner { max-width: 100%;}
header .upperpartNav { display: none;}
header .logo { height: auto; flex-direction: column;}
header .logo a { width: 100px; height: 40px;}
header .logo p { font-size: 1.2rem; color: #004da0; padding: 0 0 0 5px; margin-top: 0;}
#menuTrigger { display: block;}
}

@media screen and (max-width: 560px){
header .inner { max-width: 100%; height: 80px; padding: 0 20px;}
}

.blueNaviBg { width: 100%; background: #0f3192;}
.blueNaviBg .inner { max-width: 1440px; margin: 0 auto;}
.blueNaviBg .inner ul { list-style: none;}
.blueNaviBg .inner > nav > ul { display: flex; align-items: center; justify-content: space-between; padding: 0; position: relative; z-index: 10;}
.blueNaviBg .inner > nav > ul > li { display: inline-block;}
.blueNaviBg .inner > nav > ul > li > a { display: block; width: 100%; height: 100%; color: #fff; padding: 1em 2em; text-decoration: none;}
.blueNaviBg .inner > nav > ul > li a:hover { opacity: .8;}
.blueNaviBg .inner > nav > ul > li > ul { visibility: hidden; opacity: 0;}
.blueNaviBg .inner ul li:hover { -webkit-transition: all 0.5s; transition: all 0.5s;}
.blueNaviBg .inner > nav > ul > li > ul { width: 100%; background: rgba(15, 50, 146, .8); position: absolute; top: 40px; left: 0; padding: 20px;
transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
}
.blueNaviBg .inner > nav > ul > li > ul > li > a { display: block; width: 100%; height: 100%; color: #fff; padding: 1em;}
.blueNaviBg .inner > nav > ul > li:hover ul { display: flex; align-items: center; justify-content: space-around;
   top: 51px;
   visibility: visible;
   opacity: 1;
 }

 @media screen and (max-width: 1079px){
.blueNaviBg .inner { padding: 0 20px;}
}
@media screen and (max-width: 1050px){
.blueNaviBg .inner > nav > ul > li > a { font-size1.4rem; padding: 1em;}
}

@media screen and (max-width: 768px){
.blueNaviBg { display: none;}
}


/*
gn
*/
#menuTrigger {width: 40px; height: 24px; margin-top: -20px; cursor: pointer; z-index: 51;}
.menuIcon { position: relative; height: 18px;}
.menuIcon > div { position: absolute; left: 0; width: 100%; height: 2px; background: #333; transition: .3s;}
.menuIcon > div:nth-of-type(1) { top: 0;}
.menuIcon > div:nth-of-type(2) { top: 11px;}
.menuIcon > div:nth-of-type(3) { top: 22px;}
.menuIcon.open::before { content: ""; display: block; width: 135px; height: 90px; position: absolute; top: -45px; right: -30px;}
.menuIcon.open > div { background: #333;}
.menuIcon.open > div:nth-of-type(1) { top: 8px;
 -webkit-transform: rotate(45deg);
 -moz-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 -o-transform: rotate(45deg);
 transform: rotate(45deg); transition: .3s;}
.menuIcon.open > div:nth-of-type(2) { opacity: 0;}
.menuIcon.open > div:nth-of-type(3) { top: 8px;
 -webkit-transform: rotate(-45deg);
 -moz-transform: rotate(-45deg);
 -ms-transform: rotate(-45deg);
 -o-transform: rotate(-45deg);
 transform: rotate(-45deg); transition: .3s;}
.menuIcon span { font-size: 1.2rem; color: #333; position: absolute; top: 30px;}
.menuIcon.open span { display: none;}

.menuBg { width: 100vw; height: 100vh; overflow-y: scroll; background: rgb(245, 245, 245); padding: 0; position: absolute; top: 0; left: 0; z-index: 50;}
.menuArea { max-width: 1300px; padding: 40px 130px; margin: 0 auto;}
.menuArea a { color: #333; display: inline-block; text-decoration: none; overflow: hidden; position: relative;}
.menuArea a:after { content: ""; width: 100%; height: 1px; background: #00a0e9; position: absolute; bottom: 0;left: 0;
transform: translate(-100%, 0);
transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
.menuArea a:hover:after { transform: translate(0, 0);}



.menuArea nav ul { list-style: none;}
.menuArea nav .mainNav { display: flex; justify-content: space-between;}
.menuArea nav .mainNav > ul { width: 30%;}

.menuArea nav .mainNav > ul > li { font-size: 1.8rem; font-weight: 900; line-height: 1.4; margin-bottom: 40px;}
.menuArea nav .mainNav > ul > li a { text-shadow: -1px -1px 2px #fff;}
.menuArea nav .mainNav > ul > li > ul { margin: 10px 0 10px 10px; border-left: 1px solid #ccc; padding: 15px 0 0 15px;}
.menuArea nav .mainNav > ul > li > ul > li { font-size: 1.6rem; font-weight: 400; padding-bottom: 15px;}
.menuArea nav .mainNav > ul > li > ul > li > ul { margin: -5px 0 0 10px;padding: 15px 0 0 15px;}
.menuArea nav .mainNav > ul > li > ul > li > ul > li { padding-bottom: 10px; font-size: 1.4rem;}
.menuArea nav .other { display: flex; justify-content: center; font-size: 1.4rem;}
.menuArea nav .other li { padding: 0 20px;}

.menuBg { display: none;}
.fixed { position: fixed;}

@media screen and (max-width: 1080px){

}

@media screen and (max-width: 768px){
#menuTrigger { margin-top: -0;}
.menuArea { max-width: calc(100vw - 80px); padding: 40px;}
}

@media screen and (max-width: 640px){
.menuIcon span { display: none;}
.menuArea { max-width: calc(100vw - 40px); padding: 40px 20px;}
.menuArea nav .mainNav { display: block;}
.menuArea nav .mainNav > ul { width: 100%;}
.menuArea nav .mainNav > ul > li { margin-bottom: 25px;}
.menuArea nav .mainNav > ul > li > ul,
.menuArea nav .other { display: block;}
.menuArea nav .mainNav > ul > li > ul { display: none;}
.menuArea nav .other > li { font-size: 1.4rem; margin-bottom: 10px; padding: 0;}
}

.snsArea { display: flex; align-items: center; justify-content: center; margin: 50px 0;}
.snsArea a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50px; margin: 0 10px;}
.snsArea a.facebook { background: #1877f2;}
.snsArea a.youtube { background: #c4302b;}
.snsArea a.twitter { background: linear-gradient(to right,  #204bff 0%,#b039db 17%,#f1224d 34%,#ffa915 51%,#ffe987 68%,#ffffd4 84%,#00fffc 100%);}
.snsArea a.facebook { background: #1877f2;}
.snsArea a:hover { opacity: .7; transition: .2s;}
.snsArea a img { width: 70%;}


/* __________________________________________________
   footer
__________________________________________________ */
footer { width: 100%; height: auto; position: static; z-index: 10;}
footer .inner { margin: 0 auto 10px auto; padding: 0 40px 10px 40px;}
footer .footerBg { background: #0f3192; color: #fff;}
footer .logoArea { display: flex; align-items: center;}
footer .logoArea a.monolab { width: 130px; height: 53px; display: block; background: url(../images/share/logo_white.svg) 0 0 no-repeat; background-size: 100%; text-indent: -9876em; overflow: hidden; margin-right: 15px;}
footer .logoArea a.oit { width: 155px; height: 35px; display: block; background: url(../images/share/oit_logo_white.svg) 0 0 no-repeat; background-size: 100%; text-indent: -9876em; overflow: hidden;}
footer .logoArea a:hover { opacity: .7; transition: .3s;}

@media screen and (max-width: 767px){
footer .inner { margin: 0 auto; padding: 0 0 10px 0;}
footer .logoArea { flex-direction: column; justify-content: center;}
footer  a.monolab { margin: 10px 0 15px 0;}
}

/*
upperpart
*/
footer .upperpart { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #fff; margin-bottom: 40px; padding: 10px 0; font-weight: 100;}
footer .upperpart li { display: inline-block; font-size: 1rem; letter-spacing: .1em; padding: 10px 0;}
footer .upperpart li:after { content: "|";}
footer .upperpart li:last-of-type:after { content: "";}
footer .upperpart li a { color: #fff; padding: 0 10px;}
footer .upperpart li a:hover { opacity: .5; transition: .2s;}

@media screen and (max-width: 768px){
footer .upperpart { border-bottom: none; justify-content: center; margin-bottom: 10px; }
footer .upperpart ul { display: none;}
}

/*
lowerpart
*/
footer .lowerpart { display: flex; justify-content: space-between;}
footer .lowerpart ul { list-style: none;}
footer .lowerpart li { display: block; font-size: 1.2rem; padding: 0 15px 5px;}
footer .lowerpart li a { color: #fff;}
footer .lowerpart li a:hover { text-decoration: underline;}

@media screen and (max-width: 768px){
footer .lowerpart ul { display: none;}
}

/*
copyright
 */
.copyright { border-top: 1px solid #7c8fc4; font-size: 1rem;}
.copyright p { font-weight: 100;}
.copyright .inner { display: flex; justify-content: space-between; padding: 5px 20px; margin: 0 auto;}
.copyright a { color: #fff;}

@media screen and (max-width: 767px){
.copyright .inner { flex-direction: column; text-align: center;}
}

/*
Go to top
*/
a.bt_pageTop { display: block; width: 40px; height: 40px; z-index: 10; padding: 10px 15px; background: #00a0e9; border-radius: 30px; border: 1px solid #fff; color: #fff; text-indent: -999em; position: fixed; right: 30px; bottom: -50px; overflow: hidden; opacity: 0; transition: 1s;}
a.bt_pageTop:before { content: ''; width: 10px; height: 10px; border-top: solid 1px #fff; border-right: solid 1px #fff; position: absolute; top: 55%; left: calc(50% - 5px); margin-top: -4px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
a.bt_pageTop.fixed { display: block; position: fixed; right: 30px; bottom: 30px; opacity: 1; transition: 1s;}


/* __________________________________________________
   main
__________________________________________________ */
main { width: 100%; padding: 20px 0 0 0; position: relative;}
main section { display: block; width: 100%;}
.inner { max-width: 1080px; padding: 0 40px; margin: 0 auto 80px auto;}

.title { width: 100%; display: flex; text-align: center; flex-direction: column; color: #004da0; padding: 20px 0; margin-bottom: 30px;
border-bottom: 1px solid #004da0;
border-image: linear-gradient(to right, #fff 0%, #004da0 20%, #004da0 80%,#fff 100%);
border-image-slice: 1;}
.title > h1 { font-size: 4.2rem; font-weight: 400; line-height: 1.2em; letter-spacing: .1em;}
.title > span { font-size: 90%;}
h2 { text-align: center;font-weight: 100; font-size: 4.2rem; color: #00a0e9; line-height: 1.2em; margin-bottom: 20px;}
h2 + span { display: block; font-size: 80%; text-align: center; margin: -20px 0 20px 0;}
h3 { font-size: 2rem; font-weight: 600; color: #004da0; margin-bottom: 15px;}

main section .inner p { text-align: justify; padding-bottom: 1em;}

@media screen and (max-width: 1079px){
.inner { max-width: 100%; margin: 0 auto; padding: 0 40px 40px 40px;}
}

@media screen and (max-width: 768px){
.inner { padding: 0 30px 50px 30px;}
}

@media screen and (max-width: 540px){
.inner { padding: 0 20px 30px;}
.title > h1 { font-size: 3.6rem;}
h2 { font-size: 3.8rem;}
h3 { font-size: 1.8rem; margin-bottom: 10px;}
}

/*
button
*/
a.bt { 
display: inline-block; text-align: center; color: #fff; text-decoration: none; border: 1px solid #ccc; border-radius: 3px;
background-repeat: no-repeat;
background-position: 100% 0;
background-size: 200% auto;
background-image: linear-gradient(
to right,#fff 0%, #fff 50%, #004da0 50%, #004da0 100%);
transition: background-position ease 0.4s;
}
a.bt:hover { color: #004da0; background-position: 0 0;}

a.underLine {display: inline-block; text-decoration: none; overflow: hidden; position: relative;}
a.underLine:after { content: ""; width: 100%; height: 1px; background: #004da0; position: absolute; bottom: 0;left: 0;
transform: translate(-100%, 0);
transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
}
a.underLine:hover:after { transform: translate(0, 0);}


/*
index bnner
*/
.indexBnArea02,
.indexBnArea03 { display: flex; flex-wrap: wrap;}

.indexBnArea02 > div,
.indexBnArea03 > div { position: relative; z-index: 1;}

.indexBnArea02 > div:before,
.indexBnArea03 > div:before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.4); transition: .2s; z-index: 2;}

.indexBnArea02 > div:hover:before,
.indexBnArea03 > div:hover:before { content: ""; background: rgba(0, 0, 0, 0.8); transition: .5s;}

.indexBnArea02 > div a,
.indexBnArea03 > div a { display: flex; align-items: center; justify-content: center; flex-direction: column; position: absolute; top: 0; bottom: 0; left: 0; right: 0; color: #fff; z-index: 3;}
.indexBnArea02 > div a span,
.indexBnArea03 > div a span { display: block; font-size: 3rem; font-weight: 700; text-align: center; line-height: 1.2em; z-index: 4;}
.indexBnArea02 > div a p,
.indexBnArea03 > div a p { display: block; font-size: 1.4rem; font-weight: 400; text-align: center; padding-bottom: 0; z-index: 4;}

.indexBnArea02 > div { width: 47.5%; padding-top: calc(47.5% * .5625); margin: 0 5% 5% 0;}
.indexBnArea02 > div:nth-child(2n) { margin-right: 0;}

.indexBnArea03 > div { width: 30%; padding-top: calc(30% * .5625); margin: 0 5% 5% 0;}
.indexBnArea03 > div:nth-child(3n) { margin-right: 0;}

@media screen and (max-width: 600px){
.indexBnArea02 > div,
.indexBnArea03 > div { width: 100%; padding-top: calc(100% *- .3); margin: 0 0 20px 0;}
.indexBnArea02 > div a span,
.indexBnArea03 > div a span { font-size: 2.4rem;}
}



/* __________________________________________________
   モノラボ紹介
__________________________________________________ */
.monolab .col02 { display: flex; justify-content: space-between; margin-bottom: 40px;}
.monolab .col02 .photo { width: 264px;}
.monolab .col02 .text { width: calc(100% - 300px);}
.monolab .col02:nth-child(even) { flex-direction: row-reverse;}

.monolab .name { font-size: 80%; text-align: right; padding-top: 20px;}

@media screen and (max-width: 767px){
.monolab .col02 { display: block;}
.monolab .col02 .photo { margin: 0 auto 20px auto;}
.monolab .col02 .text { width:100%;}
}


/* __________________________________________________
   施設紹介
__________________________________________________ */
.facilities .anchorArea { display: flex; list-style: none; justify-content: space-between; align-items: center;}
.facilities .anchorArea li { border: 1px solid #00a0e9;}
.facilities .anchorArea li a { display: block; text-align: center; padding: 10px; color: #00a0e9; line-height: 1.2em;}
.facilities .anchorArea li a:after { content: "▼"; font-size: 80%; padding-left: 5px;}

.facilities h2 + span + p { text-align: center; font-size: 120%; color: #004da0;}

/*要約*/
.facilities .summery dl { margin: 0 auto 15px auto;}
.facilities .summery dt { border-bottom: 1px dotted #ccc; color: #004da0; font-weight: 700; padding: 8px 0; margin-bottom: 5px;}
.facilities .summery dt span { background: #004da0; color: #fff; padding: 5px 10px; margin-right: 10px; font-weight: 400;}
.facilities .summery dd { font-size: 90%;}
/*設備*/
.facilities .equipment { display: flex; flex-wrap: wrap; margin-bottom: 50px;}
.facilities .equipment dl { width: 50%; padding: 10px;}
.facilities .equipment dl dt { background: #ececec; padding: 5px; text-align: center; margin-bottom: 10px;}
.facilities .equipment dl dd { display: flex; align-items: flex-start; justify-content: space-between;}
.facilities .equipment dl dd img { display: block; width: 180px;}
.facilities .equipment dl dd .detail { width: calc(100% - 190px);}
.facilities .equipment dl dd .detail dl { width: 100%; display: flex; padding: 5px 0; font-size: 70%; border-bottom: 1px dotted #ccc;}
.facilities .equipment dl dd .detail dl dt { width: 90px; background: none; text-align: left; padding: 0;}
.facilities .equipment dl dd .detail dl dd { display: block; width: calc(100% - 100px);}
.facilities .equipment dl dd .detail dl dd img { display: inline-block; width: 24px; vertical-align: middle;margin: 0;}

.facilities .summery .bt { font-size: 80%; padding: 0 10px; margin-left: 10px; font-weight: 400;}

@media screen and (max-width: 960px){
.facilities .equipment dl dd img { display: block; width: 100px;}
.facilities .equipment dl dd .detail { width: calc(100% - 110px);}
}

@media screen and (max-width: 768px){
.facilities .anchorArea { display: block;}
.facilities .anchorArea li { margin-bottom: 15px;}
.facilities h2 { font-size: 3rem; letter-spacing: -.05em;}
.facilities .summery dl { width: 100%;}
.facilities .equipment { display: block;}
.facilities .equipment dl dd img { display: block; width: 180px;}
.facilities .equipment dl dd .detail { width: calc(100% - 190px);}
.facilities .equipment dl { width: 100%; padding: 0; margin-bottom: 15px;}
}

@media screen and (max-width: 500px){
.facilities .equipment dl dd { display: block}
.facilities .equipment dl dd img { margin: 0 auto 10px auto;}
.facilities .equipment dl dd .detail { width: 100%;}
}


/* __________________________________________________
   ものづくり授業
__________________________________________________ */
.class .anchorArea { display: flex; list-style: none; justify-content: space-between;}
.class .anchorArea li { display: flex; align-items: center; border: 1px solid #00a0e9;}
.class .anchorArea li a { display: block; text-align: center; padding: 10px; color: #00a0e9; line-height: 1.6em;}
.class .anchorArea li a:after { content: "▼"; font-size: 80%; padding-left: 5px;}

.class h3 + p { font-size: 120%; color: #00a0e9;}
.class h3 span { font-size: 80%; font-weight: 400; padding-left: 10px;}
.class .inner img { width: 100%;}
.class .inner .btArea { display: flex; align-items: center; justify-content: center; margin: 20px 0;}
.class .inner .btArea .bt { font-size: 80%; padding: 5px 10px; margin: 0 10px;}

.class .youtubeArea { margin-top: 30px;}
.class .youtubeArea ul { display: flex; flex-wrap: wrap; list-style: none; padding: 0;}
.class .youtubeArea ul li { width: 30%; height: auto; padding-top: calc(30% * .5625); margin: 0 5% 5% 0; position: relative;}
.class .youtubeArea ul li:nth-child(3n) { margin-right: 0;}
.class .youtubeArea ul li iframe { width: 100%; height: 100%; position: absolute; left: 0; top: 0;}

@media screen and (max-width: 768px){
.class .anchorArea { display: block;}
.class .anchorArea li { display: block; margin-bottom: 15px;}
.class h3 + p { font-size: 110%;}
.class .inner .btArea { flex-direction: column;}
.class .inner .btArea .bt { width: 300px; padding: 5px 10px; margin: 0 auto 20px auto;}
.class .youtubeArea ul li { width: 47.5%; height: auto; padding-top: calc(47.5% * .5625);}
.class .youtubeArea ul li:nth-child(3n) { margin-right: 5%;}
.class .youtubeArea ul li:nth-child(2n) { margin-right: 0!important;}
}

@media screen and (max-width: 520px){
.class .inner h2 { font-size: 2.8rem; font-weight: 400;}
.class .youtubeArea ul li { width: 100%; height: auto; padding-top: calc(100% * .5625); margin: 0 0 5% 0;}
.class .youtubeArea ul li:nth-child(3n) { margin-right: 0;}
.class .youtubeArea ul li:nth-child(2n) { margin-right: 0;}
}

/* __________________________________________________
   プロジェクト index
__________________________________________________ */
.project .hpa { background: url(/common/images/project/project_bn_hpa.jpg) center center; background-size: cover;}
.project .robot { background: url(/common/images/project/project_bn_robot.jpg) center center; background-size: cover;}
.project .sf { background: url(/common/images/project/project_bn_sf.jpg) center center; background-size: cover;}
.project .sc { background: url(/common/images/project/project_bn_sc.jpg) center center; background-size: cover;}

/* __________________________________________________
   プロジェクト
__________________________________________________ */
.project .outline { width: 80%; margin: 30px auto;}
.project .outline dl { display: flex; border-bottom: 1px solid #cfcfcf;}
.project .outline dl:first-of-type { border-top: 1px solid #cfcfcf;}
.project .outline dl:nth-child(odd) { background: rgba(0, 77, 160, 0.05);}
.project .outline dt, .project .outline dd { padding: 10px;}
.project .outline dt { width: 120px; color: #00a0e9;}
.project .outline dd { width: calc(100% - 120px);}

@media screen and (max-width: 768px){
.project .outline { width: 100%;}
}

@media screen and (max-width: 450px){
.project .outline dl { display:block;}
.project .outline dt { width: 100%; text-align: center; border-bottom: 1px dotted #ccc;}
.project .outline dd { width: 100%;}
}


/* __________________________________________________
   ものづくり道場 index
__________________________________________________ */
.dojo .kids { background: url(/common/images/monolab_dojo/dojo_bn_kids.jpg) center center; background-size: cover;}
.dojo .mother { background: url(/common/images/monolab_dojo/dojo_bn_mother.jpg) center center; background-size: cover;}
.dojo .inner img { width: 100%;}


/* __________________________________________________
   ものづくり道場  detail
__________________________________________________ */
.dojo.detail .guidance img { display: block; max-width: 656px; margin: 0 auto 40px auto; border: 1px solid #ccc;}
.dojo.detail p { text-align: center;}
.dojo.detail h3 { text-align: center; color: #db3977; font-size: 3rem;}
.dojo.detail h3 span { display: block; font-size: 80%; font-weight: 400;}
.dojo.detail .outline { width: 60%; margin: 30px auto 50px;}
.dojo.detail .outline dl { display: flex; align-items: center; border-bottom: 1px solid #cfcfcf;}
.dojo.detail .outline dl:first-of-type { border-top: 1px solid #cfcfcf;}
.dojo.detail .outline dl:nth-child(odd) { background: rgba(219, 57, 119, 0.1)}
.dojo.detail .outline dt, .dojo.detail .outline dd { padding: 10px;}
.dojo.detail .outline dt { width: 200px; color: #db3977;}
.dojo.detail .outline dd { width: calc(100% - 210px);}
.dojo.detail .outline dd .bt { padding: 0 10px; margin-left: 20px;} 

.dojo.detail .btArea { text-align: center;}
.dojo.detail .btArea a.bt { font-size: 130%; padding: 5px 30px;  margin: 0 auto;
   display: inline-block; text-align: center; color: #fff; text-decoration: none; border: 1px solid #db3977; border-radius: 3px;
   background-repeat: no-repeat;
   background-position: 100% 0;
   background-size: 200% auto;
   background-image: linear-gradient(
   to right,#fff 0%, #fff 50%, #db3977 50%, #db3977 100%);
   transition: background-position ease 0.4s;
}
.dojo.detail .btArea a.bt:hover { color: #db3977; background-position: 0 0;}


@media screen and (max-width: 768px){
.dojo.detail .outline { width: 100%;}
}

@media screen and (max-width: 450px){
.dojo.detail h2 { font-size: 3.2rem;}
.dojo.detail .outline dl { display:block;}
.dojo.detail .outline dt { width: 100%; text-align: center; border-bottom: 1px dotted #ccc;}
.dojo.detail .outline dd { width: 100%; text-align: center;}
}


/* __________________________________________________
   ものづくり実践 index
__________________________________________________ */
.practice .class { background: url(/common/images/practice/practice_bn_lesson.jpg) center center; background-size: cover;}
.practice .project { background: url(/common/images/practice/practice_bn_project.jpg) center center; background-size: cover;}
.practice .moon { background: url(/common/images/practice/practice_bn_moon.jpg) center center; background-size: cover;}

/* __________________________________________________
   MONOLAB. index
__________________________________________________ */
.monolab_cont .techno { background: url(/common/images/monolab_contents/monolab_bn_techno.jpg) center center; background-size: cover;}
.monolab_cont .dojo { background: url(/common/images/monolab_contents/monolab_bn_dojo.jpg) center center; background-size: cover;}

/* __________________________________________________
   テクノフォーラム
__________________________________________________ */
.forum .guidance img { display: block; max-width: 652px; margin: 0 auto 40px auto; border: 1px solid #ccc;}
.forum .guidance h3 { text-align: center;}
.forum .guidance h3 span { display: block; font-size: 80%; font-weight: 400;}
.forum .guidance .outline { width: 60%; margin: 30px auto;}
.forum .guidance .outline dl { display: flex; align-items: center; border-bottom: 1px solid #cfcfcf;}
.forum .guidance .outline dl:first-of-type { border-top: 1px solid #cfcfcf;}
.forum .guidance .outline dl:nth-child(odd) { background: rgba(153, 153, 153, 0.05);}
.forum .guidance .outline dt, .forum .guidance .outline dd { padding: 10px;}
.forum .guidance .outline dt { width: 120px; color: #004da0;}
.forum .guidance .outline dd { width: calc(100% - 120px);}
.forum .guidance .outline dd .bt { padding: 0 10px; margin-left: 20px;} 

.forum .archiveList { display: flex; flex-wrap: wrap-reverse;}
.forum .archiveList > div { width: 20%; margin: 0 2.5% 5%;}
.forum .archiveList > div img { width: 100%; border: 1px solid #ccc; vertical-align: top;}
.forum .archiveList > div span { display: block; font-size: 80%; text-align: center;}
.forum .archiveList a:hover { opacity: .7; transition: .3s; color: #00a0e9;}

@media screen and (max-width: 768px){
.forum .guidance .outline { width: 100%;}
.forum .archiveList > div { width: 30%; margin: 0 1.5% 5%;}
}

@media screen and (max-width: 450px){
.forum .guidance .outline dl { display:block;}
.forum .guidance .outline dt { width: 100%; text-align: center; border-bottom: 1px dotted #ccc;}
.forum .guidance .outline dd { width: 100%; text-align: center;}
.forum .archiveList > div { width: 47%; margin: 0 1.5% 5%;}
}

/* __________________________________________________
   イベント申し込み index
__________________________________________________ */
.monolab_event .kids { background: url(/common/images/monolab_event/evententry_bn_kids.jpg) center center; background-size: cover;}
.monolab_event .mother { background: url(/common/images/monolab_event/evententry_bn_mother.jpg) center center; background-size: cover;}

/* __________________________________________________
   キッズ・お母さんイベント申し込み
__________________________________________________ */
.monolab_event.detail .notice { width: 70%; margin: 30px auto;}
.monolab_event.detail .notice dt { color: #fff; background: #004da0; border-radius: 10px 10px 0 0; padding: 10px; text-align: center;}
.monolab_event.detail .notice dd { padding: 10px 10px 10px 60px; border: 1px solid #004da0; border-radius: 0 0 10px 10px;}
.monolab_event.detail .notice dd li { padding-bottom: .8em;}

@media screen and (max-width: 768px){
.monolab_event.detail .notice { width: 100%;}
}

@media screen and (max-width:600px){
.monolab_event.detail .notice dd { padding: 10px 10px 10px 40px;}
}

/*
form
*/
form input,
form textarea,
form select { width: 100%;
-moz-appearance: none;
-webkit-appearance: none; appearance: none; background: #e5e5e5; background-image: none; font-weight: 400;
border: 1px solid #b4b4b4; color: inherit; font-family: inherit; font-size: 1.6rem; padding: 0.4em 0.8em;}
select:-ms-expand { display: none;}
form input:focus,
form input textarea:focus,
form select:focus { border: 1px solid rgba(0, 0, 0, 0.32); box-shadow: none; outline: none;}

/* セレクトボックス */
form select { background: url(../images/share/icon-down-solid.svg) 95% center no-repeat; background-size: 16px 16px; background-color: transparent; padding-right: 30px;}
form select.disabled { color: #ccc;}

form .error_area { border: 1px solid #ff0000; border-radius: 3px; color: #ff0000; margin: 0 auto 15px auto;}
form .error { background-color: rgba(255, 0, 64, 0.1);}
form select.error { background: rgba(255, 0, 64, 0.1) url(../images/share/icon-down-solid.svg) 95% center no-repeat; background-size:  16px 16px;}

form input[type=file] { background: none; border: none;}

/* ラジオボタン */
form input[type=radio] { display: none;}
form input[type=radio] + label { display: inline-block; width: auto; padding: 5px 30px; position: relative; cursor: pointer;}
form input[type=radio] + label:before { display: block; content: ""; width: 16px; height: 16px; background: #e5e5e5; border: 1px solid #d2d2d2; border-radius: 50%; margin-top: -8px; position: absolute; top: 50%; left: 5px;}
form input[type=radio] + label:after { display: block; content: ""; width: 10px; height: 10px; background: #7ecef4; border-radius: 50%; margin-top: -4px; position: absolute; top: 50%; left: 9px; opacity: 0; transform: scale3d(.3,.3,1); transition: transform .2s ease-in-out, opacity .2s ease-in-out;}
form input[type=radio]:checked + label:before { border-color: #666;}
form input[type=radio]:checked + label:after { opacity: 1; transform: scale3d(1,1,1);}

/* チェックボックス */
form input[type=checkbox] { display: none;}
form input[type=checkbox] + label { display: inline-block; width: auto; cursor: pointer; padding: 5px 30px; position: relative;}
form input[type=checkbox] + label:before { display: block; content: ""; width: 16px; height: 16px; background: #e5e5e5; border: 1px solid #d2d2d2;  margin-top: -8px; position: absolute; top: 50%; left: 5px;}
form input[type=checkbox] + label:after { display: block; content: ""; width: 9px; height: 20px; border-right: 6px solid #7ecef4; border-bottom: 3px solid #7ecef4; margin-top: -16px; position: absolute; top: 50%; left: 7px; opacity: 0; transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1); transition: transform .2s ease-in-out, opacity .2s ease-in-out;}
form input[type=checkbox]:checked + label:before { border-color: #666;}
form input[type=checkbox]:checked + label:after { opacity: 1; transform: rotate(45deg) scale3d(1,1,1);}


/* 送信 */
form input[type=submit] { display: block; width: 200px; background: #00a0e9; border: none; color: #fff; text-align: center; border-radius: 30px; padding: 8px 20px; margin: 20px auto 0 auto; transition: .3s; cursor: pointer;}
form input[type=submit]:hover { opacity: .7; transition: .3s;}

section form dl { display: flex; justify-content: center; width: 80%; border-bottom: 1px solid #ccc; padding-bottom: 10px; margin: 0 auto 10px auto;}
section form dl:first-of-type { padding-top: 10px; border-top: 1px solid #ccc; margin-top: 30px;}
section form dt { width: 25%; color: #00a0e9; padding: 10px;}
section form dt span { font-size: 70%; padding-left: 10px; color: #ff0000;}
section form dd { width: 75%; display: flex; flex-wrap: wrap; align-items: center;}
section form dd span { font-size: 80%;}
section form section input { display: inline-block; width: 100%;}
section form textarea { display: inline-block; width: 100%; height: 10em;}

form .thanks { font-size: 2rem; text-align: center; line-height: 2em; padding: 50px 0;}


@media screen and (max-width: 768px){
section form dl { width: 100%;}
}

@media screen and (max-width: 540px){
section form dl { display: block; width: 100%;}
section form dt,
section form dd { width: 100%;}
}


/* __________________________________________________
   スタッフ紹介
__________________________________________________ */

.staff .inner table { table-layout: fixed; width: 80%; margin: 0 auto 30px; border-top: 1px solid #00a0e9; border-left: 1px solid #00a0e9;}
.staff .inner table th,
.staff .inner table td { text-align: center; padding: 10px; border-bottom: 1px solid #00a0e9; border-right: 1px solid #00a0e9;}
.staff .inner table th { background: rgba(0, 159, 233, 0.1); font-weight: 400;}

@media screen and (max-width: 768px){
.staff .inner table { width: 100%;}
}

@media screen and (max-width: 635px){
.staff .inner table { width: 635px;}
.staff .inner .scroll_table { overflow-x: scroll; white-space: nowrap;}
}


/* __________________________________________________
   other
__________________________________________________ */
.other h2 { font-size: 3rem; margin-bottom: 10px;}
.other dl { width:100%; margin: 0 auto 50px auto;}
.other dt { font-size: 1.8rem; font-weight: 700; color: #182c5b; border-bottom: 1px solid #ccc; margin-bottom: 10px; padding-bottom: 7px;}
.other dd ol { padding-left: 30px;}
.other dd li { padding-bottom: .8em;}
.other dd li > ol { list-style-type: katakana; font-size: 90%; margin-top: 10px;}
.other dd p { text-align: justify;}
.other .signature { font-size: 1.4rem; text-align: right;}

/* __________________________________________________
   お問合せ
__________________________________________________ */
dl.telContact { width: 60%; margin: 30px auto 0;}
dl.telContact > dt { color: #fff; font-weight: 400; background: #004da0; border-bottom: none; border-radius: 10px 10px 0 0; padding: 10px; text-align: center; margin-bottom: 0;}
dl.telContact > dd { padding: 10px; border: 1px solid #004da0; border-radius: 0 0 10px 10px;}
dl.telContact > dd > dl { text-align: center; margin: 30px auto;}
dl.telContact > dd > dl > dt { color: #333; font-size: 2.8rem; border-bottom: none; line-height: 1.2em;}
dl.telContact > dd > dl > dt span { display: block; font-size: 60%;}
dl.telContact > dd > dl > dd a { font-size: 5rem; color: #004da0; font-weight: 700; line-height: 1.2em;}
dl.telContact > dd > dl > dd span { display: block; font-size: 1rem;}

@media screen and (max-width: 768px){
   dl.telContact > dd > dl > dt { font-size: 2rem;}
   dl.telContact > dd > dl > dd a { font-size: 3rem;}
}
@media screen and (max-width: 480px){
   dl.telContact { width: 100%;}
}

/* __________________________________________________
   アクセス
__________________________________________________ */
.access .map { display: flex; justify-content: space-between; align-items: flex-end;}
.access .map .googleMap { width: 70%; height: 400px;}
.access .map .googleMap iframe { width: 100%; height: 100%;}
.access .map .photo { width: 25%; text-align: center;}
.access .map .photo img { max-width: 220px; width: 100%;}

.access .outline { width: 60%; margin: 30px auto;}
.access .outline dl { display: flex; align-items: center; border-bottom: 1px solid #cfcfcf;}
.access .outline dl:first-of-type { border-top: 1px solid #cfcfcf;}
.access .outline dl:nth-child(odd) { background: rgba(153, 153, 153, 0.05);}
.access .outline dt, .access .outline dd { padding: 10px;}
.access .outline dt { width: 120px; color: #333;}
.access .outline dd { width: calc(100% - 120px);}
.access .outline dd .bt { padding: 0 10px; margin-left: 20px;} 

.access .infoImages { text-align: center;}
.access .infoImages img { max-width: 880px; width: 100%;}

@media screen and (max-width: 768px){
.access .outline { width: 100%;}
}

@media screen and (max-width: 600px){
.access .map { flex-direction: column;}
.access .map .googleMap { width: 100%; height: 400px;}
.access .map .photo { width: 100%;}
}

@media screen and (max-width: 450px){
.access .outline dl { display:block;}
.access .outline dt { width: 100%; text-align: center; border-bottom: 1px dotted #ccc;}
.access .outline dd { width: 100%; text-align: center;}
}

/* __________________________________________________
   トピックス
__________________________________________________ */
.topicsList { }
.topicsList dl { display: flex; justify-content: space-between; padding: 15px 10px 15px 30px; border-bottom: 1px dotted #ccc;}
.topicsList dl:nth-child(odd) {background: #f5f5f5;}
.topicsList dt { width: 100px; font-size: 1.4rem; color: #00a0e9; font-weight: 100; text-align: center;}
.topicsList dd { width: calc(100% - 120px);}
.topicsList dd a { display: block; padding-right: 40px; position: relative;}
.topicsList dd a:after { content: ""; display: block; width: 10px; height: 10px; border-top: 1px solid #00a0e9; border-left: 1px solid #00a0e9; transform: rotate(135deg); position: absolute; top: 50%; right: 20px; transition: .3s;}
.topicsList dd a:hover:after { content: ""; display: block; width: 10px; height: 10px; border-top: 1px solid #00a0e9; border-left: 1px solid #00a0e9; transform: rotate(135deg); position: absolute; top: 50%; right: 0; transition: .3s;}

@media screen and (max-width: 600px){
.topicsList dl { flex-direction: column;}
.topicsList dt, .topicsList dd { width: 100%;}
.topicsList dt { text-align: left;}
}

.single h2 { font-size: 2.6rem; text-align: left;}
.single h2 + span  { display: block; font-size:1.4rem; text-align: right;}

/* __________________________________________________
   利用案内
__________________________________________________ */
.guide .stepArea { margin-bottom: 50px;}
.guide .stepArea dl { display: flex; margin-bottom: 50px; position: relative;}
.guide .stepArea dl:after { content: "";
border-style: solid;
border-width: 24px 14px 0 14px;
border-color: #00a0e9 transparent transparent transparent;
position: absolute; bottom: -40px; left: 90px;}
.guide .stepArea dl.last:after { display: none;}
.guide .stepArea dl dt { width: 200px; background: #004da0; border: 1px solid #004da0; font-size: 3rem; color: #fff; font-weight: 700; padding: 10px; line-height: 1.2;}
.guide .stepArea dl dt span { display: block; font-size: 1.2rem; font-weight: 400;}
.guide .stepArea dl dd { width: calc(100% - 200px); padding: 10px; border: 1px solid #004da0;}
.guide .stepArea dl dd .btArea { text-align: center; margin: 20px 0 0 0;}
.guide .stepArea dl dd .btArea .bt { padding: 5px 15px; margin: 0 10px 20px 0;}
.guide .outline { width: 80%; margin: 30px auto;}
.guide .outline dl { display: flex; border-bottom: 1px solid #cfcfcf;}
.guide .outline dl:first-of-type { border-top: 1px solid #cfcfcf;}
.guide .outline dl:nth-child(odd) { background: rgba(153, 153, 153, 0.05);}
.guide .outline dt, .guide .outline dd { padding: 10px;}
.guide .outline dt { width: 160px; color: #004da0;}
.guide .outline dd { width: calc(100% - 160px);}
.guide .outline dd span { display: block; color:#00a0e9;}
.guide .outline dd .bt { padding: 0 10px; margin-left: 20px;}

@media screen and (max-width: 768px){
.guide .outline { width: 100%;}
}

@media screen and (max-width: 600px){
.guide .stepArea dl { flex-direction: column;}
.guide .stepArea dl dt { width: 100%; background: #004da0; border: 1px solid #004da0; font-size: 3rem; color: #fff; font-weight: 700; padding: 10px; line-height: 1.2;}
.guide .stepArea dl dd { width:100%; padding: 10px; border: 1px solid #004da0;}
.guide .stepArea dl:after { position: absolute; left: 45%;}
.guide .outline dl { display:block;}
.guide .outline dt { width: 100%; text-align: center; border-bottom: 1px dotted #ccc;}
.guide .outline dd { width: 100%; text-align: center;}
}


/* __________________________________________________
   error
__________________________________________________ */

.error .title h1:before {font-size: 15rem; text-align: center;position: absolute; top: -80px; left: 50%;}
.error main .inner { width: 800px; background:rgba(8, 57, 120, .1); border-radius: 5px; padding: 30px; margin: 0 auto 50px auto;}
.error main .inner .bt { display: block; width: 300px; text-align: center; padding: 8px; margin: 40px auto 0 auto;}

@media screen and (max-width: 768px){
.error main .inner { width: 95%; margin-top: 40px;}
}


/* __________________________________________________
   top
__________________________________________________ */
.top h1 { text-align: center;font-weight: 100; font-size: 4.2rem; color: #00a0e9; line-height: 1.2em; margin-bottom: 20px;}
/*
topics
*/
.top .topics .btArea { text-align: center; margin: 30px 0;}
.top .topics .btArea .bt { padding: 5px 40px;}
/*
monolab.
*/
.top .monolabBnArea { display: flex; justify-content: space-between;}
.top .monolabBnArea > div { width: 47.5%;}
.top .monolabBnArea > div a { display: flex; height: 100%;}
.top .monolabBnArea > div a:hover { opacity: .8; transition: .3s;}
.top .monolabBnArea > div img { width: 180px;}
.top .monolabBnArea > div dl { width: calc(100% - 180px); color: #fff; padding: 10px; position: relative;
background: rgb(14,49,146);
background: linear-gradient(45deg, rgba(14,49,146,1) 0%, rgba(14,137,200,1) 100%);}
.top .monolabBnArea > div dt { margin-bottom: 5px;}
.top .monolabBnArea > div dd { font-size: 80%; font-weight: 100; padding-bottom: 20px;}
.top .monolabBnArea > div dd div { width: 100%; position: absolute; bottom: 10px;}
.top .monolabBnArea > div dd span { display: block; font-size: 1rem; text-align: right; padding-right: 45px; position: relative;}
.top .monolabBnArea > div dd span:before { content: ""; display: block; width: 20px; height: 1px; background-color: #fff;	position: absolute; top: 50%; right: 20px;}
.top .monolabBnArea > div dd span:after { content: ""; display: block; width: 6px; height: 1px; background-color: #fff;transform: rotate(45deg);	position: absolute; top: calc(50% - 3px); right: 20px;}

@media screen and (max-width: 830px){
.top .monolabBnArea > div img { width: 100px;}
.top .monolabBnArea > div dl { width: calc(100% - 100px);}
.top .monolabBnArea > div dd { font-size: 70%;}
}

@media screen and (max-width: 767px){
.top .monolabBnArea { flex-direction: column;}
.top .monolabBnArea > div { width: 100%; margin-bottom: 20px;}
.top .monolabBnArea > div img { width: 120px;}
.top .monolabBnArea > div dl { width: calc(100% - 120px);}
}
/*
event
*/
.top .eventBnArea { display: flex; justify-content: space-between;}
.top .eventBnArea > div { width: 47.5%; border: 1px solid #ccc; box-shadow: 0 0 10px 0 #ccc;}
.top .eventBnArea > div img { width: 100%; vertical-align: top;}
.top .eventBnArea > div dl { padding: 10px 15px; color: #00a0e9;}
.top .eventBnArea > div dl dt { font-size: 1.8rem; font-weight: 700; margin-bottom: 5px;}
.top .eventBnArea > div dl dd { font-size: 1.2rem; font-weight: 400;}
.top .eventBnArea > div a:hover { opacity: .7; transition: .3s;}

@media screen and (max-width: 600px){
.top .eventBnArea { flex-direction: column;}
.top .eventBnArea > div { width: 100%; margin-bottom: 20px;}
}
/*
practice
*/
.top .practiceBnArea { display: flex; justify-content: space-between;}
.top .practiceBnArea > div { width: 30%; height: 250px; transition: .5s;}
.top .practiceBnArea > div a { display: block; height: 100%; position: relative;}
.top .practiceBnArea > div dl { width: 100%; background: rgba(0, 51, 153, 0.7); color: #fff; text-align: center; padding: 10px 0; position: absolute; bottom: 0;}
.top .practiceBnArea > div dl dd { font-size: 1rem;}
.top .practiceBnArea > div dl dt { font-size: 1.8rem; font-weight: 600;}
.top .practiceBnArea > div dl dt span { font-size: 1.4rem; font-weight: 400;}
.top .practiceBnArea div.bn_01 { background: url(../images/top/practiceBn_01.jpg) center center; background-size: cover;}
.top .practiceBnArea div.bn_02 { background: url(../images/top/practiceBn_02.jpg) center center; background-size: cover;}
.top .practiceBnArea div.bn_03 { background: url(../images/top/practiceBn_03.jpg) center center; background-size: cover;}
.top .practiceBnArea div:hover { filter: sepia(70%); transition: .5s;}

@media screen and (max-width: 767px){
.top .practiceBnArea { flex-direction: column;}
.top .practiceBnArea > div { width: 100%; height: auto; margin-bottom: 20px;}
.top .practiceBnArea > div a, .top .practiceBnArea > div dl { height: 100px;}
.top .practiceBnArea > div dl { padding: 25px 0 0 0;}
}
/*
facilities
*/
.top .facilitiesBnArea { display: flex; justify-content: space-between;}
.top .facilitiesBnArea > div { width: 22.5%; height: 225px;}
.top .facilitiesBnArea > div a { height: 100%; display: flex; justify-content: center; flex-direction: column; color: #fff; text-align: center; transition: .5s;}
.top .facilitiesBnArea > div dl { padding: 10px;}
.top .facilitiesBnArea > div dt { font-size: 2.8rem; font-weight: 700;}
.top .facilitiesBnArea > div dd { font-size: 1rem;}
.top .facilitiesBnArea div.bn_01 a { background: url(../images/top/facilitiesBn_01.jpg) center center; background-size: cover;}
.top .facilitiesBnArea div.bn_02 a { background: url(../images/top/facilitiesBn_02.jpg) center center; background-size: cover;}
.top .facilitiesBnArea div.bn_03 a { background: url(../images/top/facilitiesBn_03.jpg) center center; background-size: cover;}
.top .facilitiesBnArea div.bn_04 a { background: url(../images/top/facilitiesBn_04.jpg) center center; background-size: cover;}
.top .facilitiesBnArea div a:hover { filter: grayscale(100%); transition: .5s;}

@media screen and (max-width: 990px){
.top .facilitiesBnArea > div dt { font-size: 2rem;}
}
@media screen and (max-width: 730px){
.top .facilitiesBnArea { flex-wrap: wrap;}
.top .facilitiesBnArea > div { width: 47.5%; height: auto; margin-bottom: 5%;}
.top .facilitiesBnArea > div dl { padding: 40px 5px;}
}









