@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
body.blue {
  background: #78c6ee;
}

body sub {
  font-size: 80%;
}

#labo {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

#labo .inner {
  max-width: 960px;
  margin: auto;
}

#labo .error {
  text-align: center;
  padding: 4em 0 0;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  #labo .error {
    font-size: 5vw;
  }
}

header {
  width: 100%;
  border-bottom: solid 3px #3c538b;
  background: #fff;
}

header .header {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 20px;
}

header .header h1 img {
  height: 30px;
}

@media screen and (max-width: 768px) {
  header .header {
    padding: 0 4vw;
    height: 16vw;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .header h1 img {
    width: 72vw;
    height: auto;
  }
}

.hbg {
  display: none;
  background: #3c538b;
  width: 16vw;
  height: 16vw;
}

.hbg z100
span {
  height: 1vw;
}

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

nav#gnav .gnav-inner {
  width: 960px;
  margin: auto;
}

nav#gnav .gnav-inner > ul {
  display: -webkit-flex;
  -webkit-justify-content: flex-end;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

nav#gnav .gnav-inner > ul > li {
  position: relative;
  margin-left: 20px;
}

nav#gnav .gnav-inner > ul > li > a {
  display: block;
  text-align: center;
  border: solid 2px #3c538b;
  width: 12em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #3c538b;
  line-height: 1em;
  font-weight: bold;
  border-radius: 3em;
  padding: 0.5em;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  font-size: 16px;
}

nav#gnav .gnav-inner > ul > li > a:hover {
  background: #3c538b;
  color: #fff;
}

@media screen and (max-width: 768px) {
  nav#gnav {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    width: 0;
    height: 100vh;
    background: none;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  }
  nav#gnav .gnav-inner {
    width: 100vw;
    height: calc(100vh - 30vw);
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: rgba(32, 114, 171, 0.9);
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    margin-left: 0;
    padding-top: 30vw;
  }
  nav#gnav .gnav-inner > ul {
    width: 80vw;
    display: block;
    border-top: solid 1px #fff;
  }
  nav#gnav .gnav-inner > ul > li {
    font-size: 5vw;
    padding: 0.4em 0;
    border-bottom: solid 1px #fff;
    margin-left: 0;
  }
  nav#gnav .gnav-inner > ul > li a {
    width: auto;
    border: 0;
    background: none;
    color: #fff;
    text-align: left;
  }
  nav#gnav .gnav-inner > ul > li a:before {
    content: "▲";
    color: inherit;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block;
    margin-right: 0.5em;
  }
  nav#gnav.active {
    width: 100vw;
  }
}

footer #linkarea {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer #linkarea a {
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

footer #linkarea a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

footer #link {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer #link a {
  display: block;
  margin: 0 10px;
}

footer #link a img {
  width: 150px;
}

footer #sns {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer #sns a {
  margin: 0 5px;
  background: #fff;
  border-radius: 100%;
}

footer #sns a img {
  width: 70px;
}

footer #logo {
  text-align: center;
  padding: 40px 0;
}

footer #logo img {
  height: 35px;
}

@media screen and (max-width: 768px) {
  footer #linkarea {
    display: block;
    padding-top: 5vw;
  }
  footer #link {
    margin-bottom: 5vw;
  }
  footer #link a {
    padding: 0 0.5vw;
  }
  footer #link a img {
    width: 40vw;
  }
  footer #sns a {
    margin: 0 1.2vw;
  }
  footer #sns a img {
    width: 20vw;
  }
  footer #logo {
    padding: 10vw 0;
  }
  footer #logo img {
    height: auto;
    width: 70%;
  }
}

#top {
  background: url(../images/top-bg.jpg) center top/150% no-repeat #78c6e8;
}

@media screen and (max-width: 1500px) {
  #top {
    background-size: 1500px auto;
  }
}

#top #top-inner {
  background: url(../images/top.png) center top/1000px no-repeat;
}

#top #top-inner ul {
  width: 350px;
  margin: auto;
  padding-top: 520px;
  padding-bottom: 60px;
}

#top #top-inner ul li {
  margin-bottom: 30px;
}

#top #top-inner ul li a {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid 1px #3c538b;
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
}

#top #top-inner ul li a img {
  height: 55px;
}

#top #top-inner ul li a img {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#top #top-inner ul li a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #top {
    background: url(../images/bg.jpg) center top/cover no-repeat;
  }
  #top #top-inner {
    background: url(../images/top-sp.png) center top/100% no-repeat;
  }
  #top #top-inner ul {
    width: 60%;
    padding-top: 115vw;
    padding-bottom: 10vw;
  }
  #top #top-inner ul li {
    margin-bottom: 5vw;
  }
  #top #top-inner ul li a img {
    height: 10vw;
  }
}

main#search {
  background: #ebebeb;
}

main#search h2 {
  height: 130px;
  width: 100%;
  background: url(../images/title-bg.png) center center/cover no-repeat;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

main#search h2 span {
  display: block;
  width: 100%;
  height: 50px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../images/title-frame.svg) center bottom/auto 100% no-repeat;
}

main#search h2 span img {
  height: 60%;
}

main#search .back {
  max-width: 960px;
  margin: auto;
  padding-top: 40px;
}

main#search .back a {
  color: #000;
  border: solid 2px #000;
  padding: 0.2em 1em;
  background: #fff;
  border-radius: 2em;
}

main#search .back a:before {
  content: "\e5e0";
  font-family: "Material Icons";
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 0.3em;
}

main#search .back a:hover {
  background: #000;
  color: #fff;
}

main#search .search {
  max-width: 720px;
  margin: auto;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  main#search h2 {
    height: 30vw;
  }
  main#search h2 span {
    height: 12vw;
  }
  main#search .search {
    width: 70%;
    padding: 10vw 0 0;
  }
}

main#search .search#faculty article {
  margin-bottom: 60px;
}

main#search .search#faculty article h3 {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 0.7em 1em;
  background: url(../images/faculty-point.svg) left center/auto 1.4em no-repeat;
  font-weight: normal;
  border-bottom: solid 5px #000;
  position: relative;
}

main#search .search#faculty article h3:before, main#search .search#faculty article h3:after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: calc(50%);
  width: 1.4em;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

main#search .search#faculty article h3:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

main#search .search#faculty article h3.active:before, main#search .search#faculty article h3.active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

main#search .search#faculty article ul li a {
  font-size: 18px;
  display: block;
  padding: 0 1.4em;
  height: 3em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  background: url(../images/arrow-white.svg) right 1.5em center/auto 1.2em no-repeat;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

main#search .search#faculty article ul li a p {
  line-height: 1em;
}

main#search .search#faculty article ul li a small {
  display: inline-block;
  margin-top: 0.2em;
}

main#search .search#faculty article ul li a:hover {
  opacity: 0.7em;
  background-position: right 1em center;
}

main#search .search#faculty article.sd h3 {
  background-color: #b94c76;
}

main#search .search#faculty article.sd ul li {
  background-color: #D3A3B6;
}

main#search .search#faculty article.sd ul li a {
  background-image: url(../images/arrow-black.svg);
}

main#search .search#faculty article.sd ul li:nth-child(even) a {
  background-color: #CB839F;
}

main#search .search#faculty article.fs h3 {
  background-color: #c58606;
}

main#search .search#faculty article.fs ul li {
  background-color: #E9CD94;
}

main#search .search#faculty article.fs ul li:nth-child(even) a {
  background-color: #ECB34D;
}

main#search .search#faculty article.fe h3 {
  background-color: #3d8fb0;
}

main#search .search#faculty article.fe ul li {
  background-color: #BEDDEA;
}

main#search .search#faculty article.fe ul li:nth-child(even) a {
  background-color: #86C7E4;
}

main#search .search#faculty article.se h3 {
  background-color: #628323;
}

main#search .search#faculty article.se ul li {
  background-color: #D5E0C3;
}

main#search .search#faculty article.se ul li:nth-child(even) a {
  background-color: #B8CE90;
}

@media screen and (max-width: 768px) {
  main#search .search#faculty article {
    margin-bottom: 10vw;
  }
  main#search .search#faculty article h3 {
    font-size: 4vw;
  }
  main#search .search#faculty article .child ul li a {
    font-size: 3.5vw;
    background-size: auto 1.1em;
  }
}

main#search .search#field ul li a {
  border: solid 2px #000;
  display: block;
  font-size: 18px;
  height: 3.6em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 26px;
  padding-left: 1em;
  position: relative;
  z-index: 2;
  background: #fff;
  font-weight: bold;
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

main#search .search#field ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  -webkit-transform: translate(7px, 7px);
  -ms-transform: translate(7px, 7px);
  transform: translate(7px, 7px);
}

main#search .search#field ul li a svg {
  height: 1em;
  width: 0.78em;
  position: absolute;
  right: 1.5em;
  top: calc(50% - 0.5em);
  -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  -o-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

main#search .search#field ul li a:hover {
  opacity: 0.7;
}

main#search .search#field ul li a:hover svg {
  right: 1em;
}

@media screen and (max-width: 768px) {
  main#search .search#field ul li a {
    font-size: 4vw;
  }
  main#search .search#field ul li a:before {
    -webkit-transform: translate(1.4vw, 1.4vw);
    -ms-transform: translate(1.4vw, 1.4vw);
    transform: translate(1.4vw, 1.4vw);
  }
}

main#search .search#field ul li.fiedl1 a {
  color: #939e4a;
  border-color: #939e4a;
}

main#search .search#field ul li.fiedl1 a svg path {
  fill: #939e4a;
}

main#search .search#field ul li.fiedl1 a:before {
  border-color: #939e4a;
}

main#search .search#field ul li.fiedl2 a {
  color: #578b4f;
  border-color: #578b4f;
}

main#search .search#field ul li.fiedl2 a svg path {
  fill: #578b4f;
}

main#search .search#field ul li.fiedl2 a:before {
  border-color: #578b4f;
}

main#search .search#field ul li.fiedl3 a {
  color: #387d47;
  border-color: #387d47;
}

main#search .search#field ul li.fiedl3 a svg path {
  fill: #387d47;
}

main#search .search#field ul li.fiedl3 a:before {
  border-color: #387d47;
}

main#search .search#field ul li.fiedl4 a {
  color: #3a8262;
  border-color: #3a8262;
}

main#search .search#field ul li.fiedl4 a svg path {
  fill: #3a8262;
}

main#search .search#field ul li.fiedl4 a:before {
  border-color: #3a8262;
}

main#search .search#field ul li.fiedl5 a {
  color: #314b7b;
  border-color: #314b7b;
}

main#search .search#field ul li.fiedl5 a svg path {
  fill: #314b7b;
}

main#search .search#field ul li.fiedl5 a:before {
  border-color: #314b7b;
}

main#search .search#field ul li.fiedl6 a {
  color: #2e5d8d;
  border-color: #2e5d8d;
}

main#search .search#field ul li.fiedl6 a svg path {
  fill: #2e5d8d;
}

main#search .search#field ul li.fiedl6 a:before {
  border-color: #2e5d8d;
}

main#search .search#field ul li.fiedl7 a {
  color: #353672;
  border-color: #353672;
}

main#search .search#field ul li.fiedl7 a svg path {
  fill: #353672;
}

main#search .search#field ul li.fiedl7 a:before {
  border-color: #353672;
}

main#search .search#field ul li.fiedl8 a {
  color: #327499;
  border-color: #327499;
}

main#search .search#field ul li.fiedl8 a svg path {
  fill: #327499;
}

main#search .search#field ul li.fiedl8 a:before {
  border-color: #327499;
}

main#search .search#field ul li.fiedl9 a {
  color: #3e8fb6;
  border-color: #3e8fb6;
}

main#search .search#field ul li.fiedl9 a svg path {
  fill: #3e8fb6;
}

main#search .search#field ul li.fiedl9 a:before {
  border-color: #3e8fb6;
}

main#search .search#field ul li.fiedl10 a {
  color: #458994;
  border-color: #458994;
}

main#search .search#field ul li.fiedl10 a svg path {
  fill: #458994;
}

main#search .search#field ul li.fiedl10 a:before {
  border-color: #458994;
}

main#search .search#field ul li.fiedl11 a {
  color: #b0612e;
  border-color: #b0612e;
}

main#search .search#field ul li.fiedl11 a svg path {
  fill: #b0612e;
}

main#search .search#field ul li.fiedl11 a:before {
  border-color: #b0612e;
}

main#search .search#field ul li.fiedl12 a {
  color: #bc5b36;
  border-color: #bc5b36;
}

main#search .search#field ul li.fiedl12 a svg path {
  fill: #bc5b36;
}

main#search .search#field ul li.fiedl12 a:before {
  border-color: #bc5b36;
}

main#search .search#field ul li.fiedl13 a {
  color: #8a4f77;
  border-color: #8a4f77;
}

main#search .search#field ul li.fiedl13 a svg path {
  fill: #8a4f77;
}

main#search .search#field ul li.fiedl13 a:before {
  border-color: #8a4f77;
}

main#search .search#field ul li.fiedl14 a {
  color: #bf8f33;
  border-color: #bf8f33;
}

main#search .search#field ul li.fiedl14 a svg path {
  fill: #bf8f33;
}

main#search .search#field ul li.fiedl14 a:before {
  border-color: #bf8f33;
}

main#search .search#keyword form {
  text-align: center;
  margin-bottom: 60px;
}

main#search .search#keyword input {
  width: calc(100% - 3em);
  font-size: 26px;
  border-radius: 2em;
  border: solid 1px #999;
  background: url(../images/loupe.svg) left 0.7em center/0.8em no-repeat #fff;
  padding: 0.3em 0 0.3em 2em;
  color: #444;
  margin-bottom: 0.5em;
}

main#search .search#keyword button {
  background: #3c538b;
  font-size: 20px;
  border: 0;
  padding: 0.5em 3em;
  color: #fff;
  border-radius: 3em;
}

main#search .search#keyword #keyword-recommended h3 {
  text-align: center;
  margin-bottom: 30px;
}

main#search .search#keyword #keyword-recommended h3 img {
  height: 26px;
}

main#search .search#keyword #keyword-recommended p {
  color: #3c538b;
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

main#search .search#keyword #keyword-recommended ul li {
  display: inline-block;
  font-size: 24px;
  margin-right: 1em;
  margin-bottom: 1em;
}

main#search .search#keyword #keyword-recommended ul li a {
  color: #000;
  border-bottom: solid 2px #4fb9e4;
  white-space: nowrap;
  font-size: inherit;
  padding-bottom: 0.2em;
}

@media screen and (max-width: 768px) {
  main#search .search#keyword {
    width: 90%;
    margin-bottom: 10vw;
  }
  main#search .search#keyword form {
    margin-bottom: 10vw;
  }
  main#search .search#keyword input {
    font-size: 5vw;
  }
  main#search .search#keyword button {
    font-size: 4vw;
  }
  main#search .search#keyword #keyword-recommended h3 {
    margin-bottom: 4vw;
  }
  main#search .search#keyword #keyword-recommended h3 img {
    width: 100%;
    height: auto;
  }
  main#search .search#keyword #keyword-recommended p {
    margin-bottom: 0.5em;
    font-size: 3.5vw;
  }
  main#search .search#keyword #keyword-recommended ul {
    width: 90%;
    margin: auto;
  }
  main#search .search#keyword #keyword-recommended ul li {
    font-size: 5vw;
    margin-bottom: 7vw;
  }
}

#labo.result #result {
  max-width: 960px;
  margin: 0 auto 60px;
}

#labo.result #result h3 {
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  #labo.result #result h3 {
    margin: 10vw 0;
  }
}

#labo.result #result .result-faculty dl dt, #labo.result #result .result-faculty dl dd {
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  padding: 0.5em 0;
  color: #fff;
}

#labo.result #result .result-faculty dl dt {
  color: #000;
}

#labo.result #result .result-faculty dl.sd dt {
  background-color: #e9bfcf;
}

#labo.result #result .result-faculty dl.fs dt {
  background-color: #fbda99;
}

#labo.result #result .result-faculty dl.fe dt {
  background-color: #d3eef8;
}

#labo.result #result .result-faculty dl.se dt {
  background-color: #c2d997;
}

#labo.result #result .result-faculty dl.sd dd {
  background-color: #b94c76;
}

#labo.result #result .result-faculty dl.fs dd {
  background-color: #c58606;
}

#labo.result #result .result-faculty dl.fe dd {
  background-color: #3d8fb0;
}

#labo.result #result .result-faculty dl.se dd {
  background-color: #628323;
}

@media screen and (max-width: 768px) {
  #labo.result #result .result-faculty dl dt, #labo.result #result .result-faculty dl dd {
    font-size: 4.5vw;
  }
}

#labo.result #result .result-field {
  background: #000;
  color: #fff;
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  text-align: center;
  padding: 0.4em 0;
}

@media screen and (max-width: 768px) {
  #labo.result #result .result-field {
    font-size: 4.5vw;
  }
}

#labo.result #result .result-keyword dl dt, #labo.result #result .result-keyword dl dd {
  text-align: center;
  font-weight: normal;
}

#labo.result #result .result-keyword dl dt {
  font-size: 40px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 0.4em;
}

#labo.result #result .result-keyword dl dd {
  font-size: 30px;
}

#labo.result #result .result-keyword dl dd:before {
  content: "キーワード：";
  font-size: 18px;
  margin-right: 1em;
}

@media screen and (max-width: 768px) {
  #labo.result #result .result-keyword dl dt {
    font-size: 10vw;
  }
  #labo.result #result .result-keyword dl dd {
    font-size: 6vw;
  }
  #labo.result #result .result-keyword dl dd:before {
    font-size: 4.2vw;
  }
}

#labo.result #result ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#labo.result #result ul li {
  width: 48%;
  margin-bottom: 20px;
}

#labo.result #result ul li a {
  border-left: solid 5px #000;
  display: block;
  position: relative;
  border-radius: 0 0 10px 0;
  overflow: hidden;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#labo.result #result ul li a .faculty {
  font-size: 16px;
  background: #000;
  color: #fff;
  padding: 0.3em 0.5em;
}

#labo.result #result ul li a .department {
  font-size: 16px;
  color: #000;
  padding: 0.3em 0.5em;
  background: #aaa;
}

#labo.result #result ul li a .department span {
  font-size: 14px;
  display: inline-block;
  margin-left: 1em;
}

#labo.result #result ul li a .labo {
  font-size: 20px;
  font-weight: bold;
  padding: 0.5em 120px 0.5em 0.4em;
  background: #fff;
}

#labo.result #result ul li a .wrap {
  background: #ccc;
}

#labo.result #result ul li a .professor {
  font-size: 16px;
  padding: 0.3em 0.5em;
}

#labo.result #result ul li a .professor:before {
  content: "◆";
}

#labo.result #result ul li a h4 {
  font-size: 20px;
  font-weight: bold;
  padding: 0.3em 0.4em 0.7em;
}

#labo.result #result ul li a .campus {
  position: absolute;
  right: 10px;
  top: 0;
}

#labo.result #result ul li a .campus img {
  width: 100px;
}

#labo.result #result ul li.sd a {
  border-color: #b94c76;
}

#labo.result #result ul li.sd a .faculty {
  background-color: #b94c76;
}

#labo.result #result ul li.sd a .department {
  background-color: #e9bfcf;
}

#labo.result #result ul li.sd a .wrap {
  background-color: #f7e7ed;
}

#labo.result #result ul li.sd a h4 {
  color: #b94c76;
}

#labo.result #result ul li.fs a {
  border-color: #c58606;
}

#labo.result #result ul li.fs a .faculty {
  background-color: #c58606;
}

#labo.result #result ul li.fs a .department {
  background-color: #fbda99;
}

#labo.result #result ul li.fs a .wrap {
  background-color: #fdf1d9;
}

#labo.result #result ul li.fs a h4 {
  color: #c58606;
}

#labo.result #result ul li.fe a {
  border-color: #3d8fb0;
}

#labo.result #result ul li.fe a .faculty {
  background-color: #3d8fb0;
}

#labo.result #result ul li.fe a .department {
  background-color: #d3eef8;
}

#labo.result #result ul li.fe a .wrap {
  background-color: #d3eef8;
}

#labo.result #result ul li.fe a h4 {
  color: #3d8fb0;
}

#labo.result #result ul li.se a {
  border-color: #628323;
}

#labo.result #result ul li.se a .faculty {
  background-color: #628323;
}

#labo.result #result ul li.se a .department {
  background-color: #c2d997;
}

#labo.result #result ul li.se a .wrap {
  background-color: #c2d997;
}

#labo.result #result ul li.se a h4 {
  color: #628323;
}

@media screen and (max-width: 768px) {
  #labo.result #result {
    margin-bottom: 10vw;
    width: 96%;
  }
  #labo.result #result ul {
    display: block;
  }
  #labo.result #result ul li {
    width: 100%;
  }
  #labo.result #result ul li a .faculty, #labo.result #result ul li a .department, #labo.result #result ul li a .professor {
    font-size: 3.2vw;
  }
  #labo.result #result ul li a .labo {
    font-size: 4vw;
    padding-right: 22vw;
  }
  #labo.result #result ul li a h4 {
    font-size: 4vw;
  }
  #labo.result #result ul li a .campus img {
    width: 19vw;
  }
  #labo.result #result ul li a .department span {
    font-size: 2.8vw;
  }
}

#labo.detail h2 {
  height: 130px;
  width: 100%;
  background: url(../images/title-bg.png) center center/cover no-repeat;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

#labo.detail h2 span {
  display: block;
  width: 100%;
  height: 50px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url(../images/title-frame.svg) center bottom/auto 100% no-repeat;
}

#labo.detail h2 span img {
  height: 60%;
}

@media screen and (max-width: 768px) {
  #labo.detail h2 {
    height: 30vw;
  }
  #labo.detail h2 span {
    height: 12vw;
  }
}

#labo.detail #detail section {
  max-width: 960px;
  margin: auto;
  padding: 40px 0;
}

#labo.detail #detail section h3 {
  position: relative;
  margin-bottom: 5px;
}

#labo.detail #detail section h3 .faculty dl dt, #labo.detail #detail section h3 .faculty dl dd {
  font-size: 20px;
  padding: 0.9em 30% 0.9em 1em;
  font-weight: normal;
}

#labo.detail #detail section h3 .faculty dl dt {
  background: #666;
  color: #fff;
}

#labo.detail #detail section h3 .faculty dl dd {
  background-color: #aaa;
  color: #000;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

#labo.detail #detail section h3 .faculty dl dd span {
  display: block;
  font-size: 15px;
  margin-top: 0.5em;
}

#labo.detail #detail section h3 .field {
  background: #fff;
  position: absolute;
  right: 5px;
  top: 5px;
  width: calc(25% - 1em);
  height: calc(100% - 10px - 2em);
  padding: 1em;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}

#labo.detail #detail section h3 .field:after {
  content: "分野";
  border-top: solid 1px #000;
  width: 100%;
  text-align: center;
  padding-top: 0.5em;
  margin-top: 0.5em;
}

#labo.detail #detail section #labo-detail {
  position: relative;
}

#labo.detail #detail section #labo-detail .campus {
  position: absolute;
  right: 0;
  top: 0;
}

#labo.detail #detail section #labo-detail .campus img {
  width: 100px;
}

#labo.detail #detail section #labo-detail h4 {
  font-size: 24px;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 140px;
  margin-bottom: 1em;
  line-height: 1.4em;
}

#labo.detail #detail section #labo-detail .meta {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 40px;
}

#labo.detail #detail section #labo-detail .professor {
  font-size: 16px;
  padding: 0.5em 1em;
  color: #fff;
  background: #000;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#labo.detail #detail section #labo-detail .professor:before {
  content: "◆";
}

#labo.detail #detail section #labo-detail .students {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#labo.detail #detail section #labo-detail .students dl {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}

#labo.detail #detail section #labo-detail .students dl dt {
  margin-right: 10px;
}

#labo.detail #detail section #labo-detail .students dl dt img {
  width: 60px;
}

#labo.detail #detail section #labo-detail .students dl dd {
  font-size: 26px;
}

#labo.detail #detail section #labo-detail article {
  margin-bottom: 40px;
}

#labo.detail #detail section #labo-detail article ins {
  margin-bottom: 10px;
  display: block;
  background: none;
}

#labo.detail #detail section #labo-detail article ins span {
  background: #666;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding: 0.5em 1em;
}

#labo.detail #detail section #labo-detail article h5 {
  color: #666;
  font-size: 24px;
  margin-bottom: 0.4em;
}

#labo.detail #detail section #labo-detail article p {
  text-align: justify;
  text-align-last: left;
}

#labo.detail #detail section #labo-detail figure {
  text-align: center;
  margin-bottom: 40px;
}

#labo.detail #detail section #labo-detail figure img {
  max-width: 520px;
}

#labo.detail #detail section #labo-detail .feature {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#labo.detail #detail section #labo-detail .feature .block {
  width: 48%;
  margin-bottom: 30px;
}

#labo.detail #detail section #labo-detail .feature .block h5 {
  border-bottom: solid 2px #666;
  margin-bottom: 20px;
}

#labo.detail #detail section #labo-detail .feature .block h5 span {
  display: inline-block;
  background: #666;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  padding: 0.5em 0.8em;
  border-radius: 0.4em 0.4em 0 0;
}

#labo.detail #detail section #labo-detail .feature .block ul li {
  font-size: 20px;
  margin-bottom: 0.5em;
  text-indent: -1.2em;
  padding-left: 1.2em;
  line-height: 1.3em;
}

#labo.detail #detail section #labo-detail .feature .block ul li:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  background-position: center center;
  background-size: contain;
  background-repeat: norepeat;
  margin-right: 0.4em;
}

#labo.detail #detail section #labo-detail .feature .memo {
  font-size: 16px;
  text-align: right;
  padding-top: 0.5em;
}

#labo.detail #detail section #labo-detail .feature .memo span {
  font-size: inherit;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-position: center center;
  background-size: contain;
  background-repeat: norepeat;
  vertical-align: middle;
  margin-bottom: 0.2em;
}

#labo.detail #detail section #labo-detail .link {
  text-align: center;
}

#labo.detail #detail section #labo-detail .link a {
  display: inline-block;
  font-size: 24px;
  padding: 0.7em 3em;
  background: #666;
  color: #fff;
  border-radius: 3em;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#labo.detail #detail section #labo-detail .link a:hover {
  opacity: 0.7;
}

#labo.detail #detail section.sd h3 .faculty dl dt {
  background-color: #b94c76;
}

#labo.detail #detail section.sd h3 .faculty dl dd {
  background-color: #e9bfcf;
}

#labo.detail #detail section.sd #labo-detail .professor:before {
  color: #b94c76;
}

#labo.detail #detail section.sd #labo-detail article ins span {
  background: #b94c76;
}

#labo.detail #detail section.sd #labo-detail article h5 {
  color: #b94c76;
}

#labo.detail #detail section.sd #labo-detail .feature h5 {
  border-color: #b94c76;
}

#labo.detail #detail section.sd #labo-detail .feature h5 span {
  background: #b94c76;
}

#labo.detail #detail section.sd #labo-detail .feature ul li:before {
  background-image: url(../images/feature-research-sd.svg);
}

#labo.detail #detail section.sd #labo-detail .feature ul li.theme:before {
  background-image: url(../images/feature-paper-sd.svg);
}

#labo.detail #detail section.sd #labo-detail .feature .memo span.research {
  background-image: url(../images/feature-research-sd.svg);
}

#labo.detail #detail section.sd #labo-detail .feature .memo span.paper {
  background-image: url(../images/feature-paper-sd.svg);
}

#labo.detail #detail section.sd #labo-detail .link a {
  background-color: #b94c76;
}

#labo.detail #detail section.fs h3 .faculty dl dt {
  background-color: #c58606;
}

#labo.detail #detail section.fs h3 .faculty dl dd {
  background-color: #fbda99;
}

#labo.detail #detail section.fs #labo-detail .professor:before {
  color: #c58606;
}

#labo.detail #detail section.fs #labo-detail article ins span {
  background: #c58606;
}

#labo.detail #detail section.fs #labo-detail article h5 {
  color: #c58606;
}

#labo.detail #detail section.fs #labo-detail .feature h5 {
  border-color: #c58606;
}

#labo.detail #detail section.fs #labo-detail .feature h5 span {
  background: #c58606;
}

#labo.detail #detail section.fs #labo-detail .feature ul li:before {
  background-image: url(../images/feature-research-fs.svg);
}

#labo.detail #detail section.fs #labo-detail .feature ul li.theme:before {
  background-image: url(../images/feature-paper-fs.svg);
}

#labo.detail #detail section.fs #labo-detail .feature .memo span.research {
  background-image: url(../images/feature-research-fs.svg);
}

#labo.detail #detail section.fs #labo-detail .feature .memo span.paper {
  background-image: url(../images/feature-paper-fs.svg);
}

#labo.detail #detail section.fs #labo-detail .link a {
  background-color: #c58606;
}

#labo.detail #detail section.fe h3 .faculty dl dt {
  background-color: #3d8fb0;
}

#labo.detail #detail section.fe h3 .faculty dl dd {
  background-color: #d3eef8;
}

#labo.detail #detail section.fe #labo-detail .professor:before {
  color: #3d8fb0;
}

#labo.detail #detail section.fe #labo-detail article ins span {
  background: #3d8fb0;
}

#labo.detail #detail section.fe #labo-detail article h5 {
  color: #3d8fb0;
}

#labo.detail #detail section.fe #labo-detail .feature h5 {
  border-color: #3d8fb0;
}

#labo.detail #detail section.fe #labo-detail .feature h5 span {
  background: #3d8fb0;
}

#labo.detail #detail section.fe #labo-detail .feature ul li:before {
  background-image: url(../images/feature-research-fe.svg);
}

#labo.detail #detail section.fe #labo-detail .feature ul li.theme:before {
  background-image: url(../images/feature-paper-fe.svg);
}

#labo.detail #detail section.fe #labo-detail .feature .memo span.research {
  background-image: url(../images/feature-research-fe.svg);
}

#labo.detail #detail section.fe #labo-detail .feature .memo span.paper {
  background-image: url(../images/feature-paper-fe.svg);
}

#labo.detail #detail section.fe #labo-detail .link a {
  background-color: #3d8fb0;
}

#labo.detail #detail section.se h3 .faculty dl dt {
  background-color: #628323;
}

#labo.detail #detail section.se h3 .faculty dl dd {
  background-color: #c2d997;
}

#labo.detail #detail section.se #labo-detail .professor:before {
  color: #628323;
}

#labo.detail #detail section.se #labo-detail article ins span {
  background: #628323;
}

#labo.detail #detail section.se #labo-detail article h5 {
  color: #628323;
}

#labo.detail #detail section.se #labo-detail .feature h5 {
  border-color: #628323;
}

#labo.detail #detail section.se #labo-detail .feature h5 span {
  background: #628323;
}

#labo.detail #detail section.se #labo-detail .feature ul li:before {
  background-image: url(../images/feature-research-se.svg);
}

#labo.detail #detail section.se #labo-detail .feature ul li.theme:before {
  background-image: url(../images/feature-paper-se.svg);
}

#labo.detail #detail section.se #labo-detail .feature .memo span.research {
  background-image: url(../images/feature-research-se.svg);
}

#labo.detail #detail section.se #labo-detail .feature .memo span.paper {
  background-image: url(../images/feature-paper-se.svg);
}

#labo.detail #detail section.se #labo-detail .link a {
  background-color: #628323;
}

@media screen and (max-width: 768px) {
  #labo.detail #detail section {
    width: 94%;
    padding: 5vw 0;
  }
  #labo.detail #detail section h3 {
    margin-bottom: 1vw;
  }
  #labo.detail #detail section h3 .faculty dl dt, #labo.detail #detail section h3 .faculty dl dd {
    font-size: 4.2vw;
  }
  #labo.detail #detail section h3 .faculty dl dd span {
    font-size: 3.4vw;
  }
  #labo.detail #detail section h3 .field {
    font-size: 3vw;
    line-height: 1.2em;
  }
  #labo.detail #detail section h3 .field:after {
    padding-top: 0.3em;
    margin-top: 0.3em;
  }
  #labo.detail #detail section #labo-detail .campus img {
    width: 20vw;
  }
  #labo.detail #detail section #labo-detail h4 {
    font-size: 5vw;
    padding-top: 1.7em;
    padding-right: 22vw;
    line-height: 1.4em;
  }
  #labo.detail #detail section #labo-detail .meta {
    display: block;
  }
  #labo.detail #detail section #labo-detail .professor {
    font-size: 3.5vw;
    margin-bottom: 1em;
  }
  #labo.detail #detail section #labo-detail .students dl {
    margin-left: 0;
    margin-right: 5vw;
  }
  #labo.detail #detail section #labo-detail .students dl dt {
    margin-right: 3vw;
  }
  #labo.detail #detail section #labo-detail .students dl dt img {
    width: 13vw;
  }
  #labo.detail #detail section #labo-detail .students dl dd {
    font-size: 5vw;
  }
  #labo.detail #detail section #labo-detail article {
    margin-bottom: 5vw;
  }
  #labo.detail #detail section #labo-detail article ins span {
    font-size: 4vw;
  }
  #labo.detail #detail section #labo-detail article h5 {
    font-size: 4.5vw;
  }
  #labo.detail #detail section #labo-detail article p {
    font-size: 3.5vw;
  }
  #labo.detail #detail section #labo-detail figure img {
    max-width: 70vw;
  }
  #labo.detail #detail section #labo-detail .feature {
    display: block;
  }
  #labo.detail #detail section #labo-detail .feature .block {
    width: 100%;
    margin-bottom: 3vw;
  }
  #labo.detail #detail section #labo-detail .feature .block h5 {
    margin-bottom: 3vw;
  }
  #labo.detail #detail section #labo-detail .feature .block h5 span {
    font-size: 4vw;
  }
  #labo.detail #detail section #labo-detail .feature .block ul li {
    font-size: 3.5vw;
  }
  #labo.detail #detail section #labo-detail .feature .block .memo {
    font-size: 3.3vw;
  }
  #labo.detail #detail section #labo-detail .link {
    padding-top: 5vw;
    padding-bottom: 4vw;
  }
  #labo.detail #detail section #labo-detail .link a {
    font-size: 5vw;
  }
}
