@charset "UTF-8";
/*==================================================

outline
==================================================*/
* {
  box-sizing: border-box;
}

*::selection {
  background: #666666;
  color: #fff;
}

*::-moz-selection {
  background: #666666;
  color: #fff;
}

@media screen and (min-width: 961px) {
  .pc {
    display: inherit;
  }
  .pc.tab {
    display: inherit;
  }

  .tab {
    display: none;
  }

  .sp {
    display: none;
  }
}
@media screen and (max-width: 960px) and (min-width: 768px) {
  .pc {
    display: none;
  }

  .tab {
    display: inherit;
  }
  .tab.pc {
    display: inherit;
  }
  .tab.sp {
    display: inherit;
  }

  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .tab {
    display: none;
  }

  .sp {
    display: inherit;
  }
  .sp.tab {
    display: inherit;
  }
}
body {
  color: #000;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 961px) {
  .wrap {
    padding: 0 10px;
  }
}
@media screen and (max-width: 960px) and (min-width: 768px) {
  .wrap {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .wrap {
    width: 87.5%;
  }
}

a {
  transition: all 0.2s;
}

a:hover {
  opacity: 0.8;
  transition: all 0.4s ease-out;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".svg"] {
  width: 100%;
}

/*==================================================

header
==================================================*/
#header {
  position: relative;
}
#header .headerwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: static;
}
#header .headerwrap #logo {
  width: 100%;
  max-width: 39.3%;
  margin-right: 15px;
}
#header .headerwrap #logo a {
  display: block;
}
@media screen and (min-width: 961px) {
  #header .extranav {
    background: #333;
  }
  #header .extranav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #header .extranav ul li {
    border-left: 2px solid #fff;
  }
  #header .extranav ul li a {
    display: block;
    width: 150px;
    line-height: 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
  }
  #header .extranav ul li a:hover {
    opacity: 1;
    text-decoration: none;
    background: #404040;
  }
  #header .headerwrap #menubtn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #header .headerwrap {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  #header {
    border-top: 10px solid #333;
  }
  #header .extranav {
    display: none;
  }
  #header .headerwrap {
    padding: 15px 0 12px;
  }
  #header .headerwrap #logo {
    margin: 0;
  }
  #header .headerwrap #menubtn {
    width: 23px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  #header .headerwrap #menubtn span {
    display: block;
    width: 23px;
    height: 3px;
    border-radius: 1000px;
    background: #333;
  }
  #header .headerwrap #menubtn span + span {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  #header .headerwrap #logo {
    min-width: 202px;
  }
}

/*==================================================

globalNavigation
==================================================*/
@media screen and (min-width: 961px) {
  #globalNavigation {
    display: block !important;
  }
  #globalNavigation .gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  #globalNavigation .gnav > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #globalNavigation .gnav > li + li {
    margin-left: 15px;
  }
  #globalNavigation .gnav > li .mainmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.75;
    cursor: pointer;
    white-space: nowrap;
  }
  #globalNavigation .gnav > li .mainmenu span {
    margin-bottom: 10px;
  }
  #globalNavigation .gnav > li .mainmenu:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  #globalNavigation .gnav > li .submenu {
    display: none;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #333;
    width: 240px;
    padding: 10px 0;
    z-index: 999;
    top: calc(100% + 20px);
  }
  #globalNavigation .gnav > li .submenu:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #333 transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    margin: auto;
  }
  #globalNavigation .gnav > li .submenu li a {
    display: block;
    color: #FFF;
    padding: 10px;
    text-align: center;
    line-height: 1.42;
    font-weight: bold;
  }
  #globalNavigation .gnav > li .submenu li a:hover {
    opacity: 1;
    text-decoration: none;
    background: #404040;
  }
  #globalNavigation .subnav {
    display: none;
  }
}
@media screen and (max-width: 960px) and (min-width: 768px) {
  #globalNavigation .headerwrap #globalNavigation .gnav {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}
@media screen and (max-width: 960px) {
  #globalNavigation {
    display: none;
    background: #333;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    overflow-y: scroll;
    padding: 97px 2.5% 40px;
  }
  #globalNavigation::-webkit-scrollbar {
    display: none;
  }
  #globalNavigation .closebtn {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
  }
  #globalNavigation .closebtn span {
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 1000px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: -3px;
  }
  #globalNavigation .closebtn span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #globalNavigation .closebtn span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #globalNavigation .gnav > li + li {
    margin-top: 35px;
  }
  #globalNavigation .gnav > li a:hover {
    text-decoration: none;
    opacity: 1;
  }
  #globalNavigation .gnav > li .mainmenu {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.75;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #globalNavigation .gnav > li .mainmenu span {
    margin-bottom: 5px;
  }
  #globalNavigation .gnav > li .submenu {
    display: block !important;
  }
  #globalNavigation .gnav > li .submenu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #globalNavigation .gnav > li .submenu ul li {
    width: 50%;
    padding: 0 15px 0 0;
    margin: 15px 0 0;
  }
  #globalNavigation .gnav > li .submenu ul li a {
    color: rgba(255, 255, 255, 0.7);
  }
  #globalNavigation .gnav > li .submenu ul li a:before {
    content: '・';
  }
  #globalNavigation .subnav {
    margin: 30px 0 0;
  }
  #globalNavigation .subnav li {
    width: 140px;
  }
  #globalNavigation .subnav li + li {
    margin-top: 8px;
  }
  #globalNavigation .subnav li a {
    display: block;
    background: #fff;
    color: #333;
    text-align: center;
    line-height: 30px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  #globalNavigation .gnav > li .submenu ul li {
    width: 100%;
    padding: 0;
  }
}

/*==================================================

contents
==================================================*/
/*==================================================

main
==================================================*/
/* pagettl */
#pagettl {
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
#pagettl + * {
  margin-top: 55px;
}
#pagettl .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 150px;
}
#pagettl .wrap h1 {
  position: relative;
  padding: 0 0 20px;
}
#pagettl .wrap h1:before {
  content: '';
  width: 190px;
  height: 8px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
#pagettl .wrap h1 .group {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 10px;
}
#pagettl .wrap h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0 0;
  color: #fff;
  line-height: 1;
}
#pagettl.information {
  background-image: url("../images/information/pagettl_bg_information_pc.jpg");
}
#pagettl.guide {
  background-image: url("../images/guide/pagettl_bg_guide_pc.jpg");
}
#pagettl.journals {
  background-image: url("../images/journals/pagettl_bg_journals_pc.jpg");
}
#pagettl.book {
  background-image: url("../images/book/pagettl_bg_book_pc.jpg");
}
#pagettl.databases {
  background-image: url("../images/databases/pagettl_bg_databases_pc.jpg");
}
#pagettl.syllabus {
  background-image: url("../images/syllabus/pagettl_bg_syllabus_pc.jpg");
}
#pagettl.online_journals {
  background-image: url("../images/online_journals/pagettl_bg_online_journals_pc.jpg");
}
#pagettl.staff {
  background-image: url("../images/staff/pagettl_bg_staff_pc.jpg");
}
@media screen and (max-width: 767px) {
  #pagettl + * {
    margin-top: 40px;
  }
  #pagettl .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 120px;
  }
  #pagettl .wrap h1 {
    padding: 0 0 20px;
  }
  #pagettl .wrap h1:before {
    width: 93px;
  }
  #pagettl .wrap h1 img {
    height: 21px;
  }
  #pagettl .wrap h1 span {
    font-size: 1.4rem;
    margin: 10px 0 0;
  }
  #pagettl.information {
    background-image: url("../images/information/pagettl_bg_information_sp.jpg");
  }
  #pagettl.guide {
    background-image: url("../images/guide/pagettl_bg_guide_sp.jpg");
  }
  #pagettl.journals {
    background-image: url("../images/journals/pagettl_bg_journals_sp.jpg");
  }
  #pagettl.book {
    background-image: url("../images/book/pagettl_bg_book_sp.jpg");
  }
  #pagettl.databases {
    background-image: url("../images/databases/pagettl_bg_databases_sp.jpg");
  }
  #pagettl.syllabus {
    background-image: url("../images/syllabus/pagettl_bg_syllabus_sp.jpg");
  }
  #pagettl.online_journals {
    background-image: url("../images/online_journals/pagettl_bg_online_journals_sp.jpg");
  }
  #pagettl.staff {
    background-image: url("../images/staff/pagettl_bg_staff_sp.jpg");
  }
}

/* main style */
.main {
  /* p */
  /* ul */
  /* ol */
  /* table */
  /* strong */
  /* heading */
}
.main p, .main address {
  margin: 20px 0 0;
}
.main ul li > :first-child {
  margin-top: 0;
}
.main ul.noicon li {
  padding: 0;
}
.main ul.noicon li:before {
  content: '';
  position: static;
}
.main ol, .main ul {
  counter-reset: number;
}
.main ol > li, .main ul > li {
  counter-increment: number;
}
.main ol > li > :first-child, .main ul > li > :first-child {
  margin-top: 0;
}
.main table {
  width: 100%;
  margin: 20px 0 0;
}
.main table th,
.main table td {
  vertical-align: top;
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #b2b2b2;
}
.main table th {
  font-weight: bold;
}
.main table td > :first-child {
  margin-top: 0;
}
.main table td a {
  color: #5fc3be;
  text-decoration: underline;
}
.main table td a:hover {
  text-decoration: none;
}
.main h2 {
  margin: 50px 0 0;
  font-size: 2.0rem;
  font-weight: bold;
  position: relative;
}
.main h2.bar {
  padding: 0 0 10px;
}
.main h2.bar:before {
  content: '';
  width: 190px;
  height: 4px;
  background: #5fc3be;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main h2.lbar {
  padding: 0 0 0 10px;
  border-left: 8px solid #5fc3be;
}
.main h3 {
  margin: 45px 0 0;
  font-size: 2.0rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .main {
    /* heading */
  }
  .main table thead {
    display: none;
  }
  .main table tbody tr {
    border-bottom: 1px solid #b2b2b2;
  }
  .main table tbody th, .main table tbody td {
    display: block;
    padding: 0;
    width: 100% !important;
  }
  .main table tbody td {
    border: none;
  }
  .main h2.bar:before {
    width: 94px;
    height: 4px;
  }
}

/*==================================================

pagetop
==================================================*/
#pagetop {
  position: absolute;
  left: 0;
  right: 0;
  top: -70px;
  width: 40px;
  margin: auto;
}
#pagetop a {
  display: block;
}

/*==================================================

footer
==================================================*/
#footer {
  background: #333;
  margin: 240px 0 0;
  padding: 30px 0;
  position: relative;
}
#footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .wrap .infobox h6 {
  width: 440px;
}
#footer .wrap .infobox h6 a {
  display: block;
}
#footer .wrap .infobox address {
  margin: 20px 0 0;
  color: #fff;
  font-weight: bold;
}
#footer .wrap .univbox h6 {
  text-align: right;
}
#footer .wrap .univbox .toeco a {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 30px 0 0 auto;
  padding: 3px 10px 3px 30px;
  background: url("../images/common/ico_cir_arr_black_right.svg") no-repeat 10px center #fff;
  background-size: 16px 16px;
}
#footer .wrap .univbox .toeco a:hover {
  text-decoration: none;
}
@media screen and (min-width: 961px) {
  #footer .wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    margin: 110px 0 0;
    padding: 20px 0 45px;
  }
  #footer .wrap {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #footer .wrap .infobox {
    text-align: center;
  }
  #footer .wrap .infobox h6 {
    width: 100%;
    max-width: 220px;
    margin: auto;
  }
  #footer .wrap .infobox h6 a {
    display: block;
  }
  #footer .wrap .univbox {
    margin: 30px 0 0;
  }
  #footer .wrap .univbox h6 {
    text-align: center;
  }
  #footer .wrap .univbox .toeco a {
    max-width: 280px;
    margin: 25px auto 0;
  }
}
