@charset "UTF-8";
/* 目次 */
/*
1.変数
-色
-max-width

2.mixin
-マージンなどリセット
-border-solid

3.extend

4.sass
・要素リセット

・基本要素
-body
-a

・各ページコンテンツ専用
-section
--top-sec


・headerとfooterコンテンツ
-header
-main
-footer

・ather
*/
html, body, main, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* a reset */
a {
  text-decoration: none;
}

/* li reset */
li {
  list-style: none;
}

/* address reset */
address {
  font-style: normal;
}

/* スマホ */
/* ========================================= */
/* ================= 各要素 ================= */
/* ========================================= */
html {
  font-size: 100%;
}

html.large {
  font-size: 1.3rem;
}

html.middle {
  font-size: 1rem;
}

main {
	padding: 40px 0;
/*  padding-top: 100px;*/
}

header {
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  z-index: 1000;
  -webkit-transition: .5s;
  transition: .5s;
}

header div.breadcrumbs-continer {
  background: #90C271;
}

header ul.breadcrumbs {
  padding: 8px 16px;
  font-size: 11px;
}

header ul.breadcrumbs li {
  display: inline;
}

header ul.breadcrumbs li:after {
  content: "＞";
  margin: 0 5px;
}

header ul.breadcrumbs li a {
  color: #000;
}

header ul.breadcrumbs li:last-child:after {
  display: none;
}

footer div.footer-logo {
  padding: 25px 0 65px;
  text-align: center;
}

footer div.footer-logo img {
  width: 210px;
}

footer div p {
  color: #aaa;
  font-size: 9px;
}

footer ul.univ-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 20px;
  width: 100%;
}

footer ul.univ-link li {
  margin-bottom: 15px;
}

footer ul.univ-link li:last-child {
  margin-bottom: 0;
}

footer ul.univ-link li img {
  width: 100%;
}

footer span.return-btn {
  position: fixed;
  right: 5%;
  bottom: 5%;
}

footer span.return-btn img {
  width: 50px;
  height: 50px;
}

nav.header-nav {
  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;
  height: 70px;
  width: 100%;
}

nav.header-nav div.logo-main {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  padding-left: 1rem;
  text-align: left;
}

nav.header-nav div.logo-main a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav.header-nav div.logo-main img {
  width: 100%;
}

nav.header-nav div.burger-menu {
  display: block;
  margin: 0.3rem 1rem 0 0;
}

nav.header-nav div.burger-menu .btn-trigger {
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

nav.header-nav div.burger-menu .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #231815;
  border-radius: 0;
}

nav.header-nav div.burger-menu .btn-trigger, nav.header-nav div.burger-menu .btn-trigger span {
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(1) {
  top: 0;
}

nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(2) {
  top: 10px;
}

nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

nav.header-nav div.burger-menu #btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

nav.header-nav div.burger-menu #btn01.active span:nth-of-type(2) {
  opacity: 0;
}

nav.header-nav div.burger-menu #btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

nav.header-nav div.toggle-menu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(450px);
          transform: translateX(450px);
  background: rgba(255, 255, 255, 0.9);
  padding: 25px 37px;
  width: 100%;
  -webkit-transition: .4s;
  transition: .4s;
  top: 70px;
  opacity: 0;
  z-index: 10;
}

nav.header-nav div.toggle-menu.active {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}

nav.header-nav div.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: solid 1px #3DB270;
  border-radius: 20px;
  padding: 0 10px;
  height: 40px;
}

nav.header-nav div.search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

nav.header-nav div.search input[type="text"] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
}

nav.header-nav div.search input[type="text"]:focus {
  outline: none;
}

nav.header-nav div.search button {
  background: none;
  border: none;
}

nav.header-nav div.search img.submit-icon {
  width: 20px;
}

nav.header-nav ul.main-menu {
  margin-top: 20px;
}

nav.header-nav ul.main-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #3DB270;
  width: 100%;
}

nav.header-nav ul.main-menu li a {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  color: #000;
  padding: 20px 0;
}

nav.header-nav ul.contact-access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0 0;
  border: none;
}

nav.header-nav ul.contact-access li {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
}

nav.header-nav ul.contact-access li:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

nav.header-nav ul.contact-access li.display-pc {
  display: none;
}

nav.header-nav ul.contact-access li a.btn-access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  color: #fff;
  background: #3DB270;
}

nav.header-nav ul.contact-access dl dd.large, nav.header-nav ul.contact-access dl dd.middle {
  font-size: 14px;
}

nav.header-pc-menu {
  display: none;
}

nav.footer-nav {
  background: #eee;
  padding: 2px 20px;
}

nav.footer-nav ul.nav-parent li {
  position: relative;
  margin: 32px 0;
  padding-left: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

nav.footer-nav ul.nav-parent li:before {
  position: absolute;
  display: block;
  content: "";
  background: url("/img/footer-nav-arrow.svg") no-repeat;
  background-position: left center;
  width: 16px;
  height: 20px;
  left: 0;
}

nav.footer-nav ul.nav-parent a {
  color: #000;
}

nav.footer-nav ul.nav-child {
  display: none;
  margin-top: 10px;
  padding-left: 10px;
}

nav.footer-nav ul.nav-child li {
  font-size: 0.875rem;
  font-weight: lighter;
}

nav.footer-nav ul.nav-child li:before {
  display: none;
}

nav.footer-nav ul.nav-child li a {
  display: block;
  color: #000;
  padding: 10px 0;
}

nav.footer-nav ul.nav-child li a:before {
  position: absolute;
  display: block;
  content: "";
  background: url("/img/footer-nav-arrow.svg") no-repeat;
  background-position: left center;
  padding: 10px 0;
  width: 14px;
  height: 31px;
  top: 0;
  left: 0;
}

nav.footer-nav ul.nav-grandchild {
  padding-left: 30px;
}

nav.side-nav {
  display: none;
}

section div.nopadding {
  padding: 0;
}

section.hero {
  width: 100%;
}

section.hero div.single-item img {
  width: 100%;
}

section.introduction {
  padding: 35px 0 0;
  width: 100%;
}

section.introduction h1.univ-name {
  text-align: center;
}

section.introduction h1.univ-name span.corp-ja {
  display: block;
  font-size: 1.37rem;
  font-weight: lighter;
  line-height: 1.5;
}

section.introduction h1.univ-name span.univ-ja {
  display: block;
  font-size: 30px;
  line-height: 0.9;
}

section.introduction h1.univ-name span.corp-en {
  display: inline;
  font-size: 11px;
  line-height: 1;
}

section.introduction h1.univ-name span.univ-en {
  display: inline;
  font-size: 11px;
  line-height: 1;
}

section.introduction h1.univ-name img.logo-n-only {
  margin: 15px auto 30px;
  display: block;
  width: 100px;
}

section.introduction div.since {
  position: relative;
  color: #fff;
  background: #3CAB84;
  margin: 0 auto 25px;
  border-radius: 5px;
  padding: 3px 0;
  width: 140px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}

section.introduction div.since:after {
  position: absolute;
  content: "";
  border-top: solid 2px #3CAB84;
  top: 48%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 330px;
  z-index: -1;
}

section.introduction div.univ-old {
  position: relative;
  height: 145px;
  text-align: center;
}

section.introduction div.univ-old:after {
  position: absolute;
  content: "";
  background: url("/img/icon-x.svg") no-repeat center;
  background-size: 48px 48px;
  width: 100%;
  height: 145px;
  top: 0;
  left: 0;
}

section.introduction div.univ-old p.univ-nara-education, section.introduction div.univ-old p.univ-nara-womens {
  position: absolute;
  width: 100%;
}

section.introduction div.univ-old p.univ-nara-education span.ja, section.introduction div.univ-old p.univ-nara-womens span.ja {
  display: block;
  font-size: 1.37rem;
  font-weight: bold;
  line-height: 1.2;
}

section.introduction div.univ-old p.univ-nara-education span.en, section.introduction div.univ-old p.univ-nara-womens span.en {
  display: block;
  font-size: 11px;
  line-height: 1.2;
}

section.introduction div.univ-old p.univ-nara-education {
  content: "";
  top: 0;
}

section.introduction div.univ-old p.univ-nara-education:after {
  position: absolute;
  content: "";
  background: url("/img/logo-nara-university-of-education.svg") no-repeat center;
  background-size: 96px;
  width: 100px;
  height: 100px;
  top: 0;
  left: 2%;
}

section.introduction div.univ-old p.univ-nara-womens {
  content: "";
  bottom: 0;
}

section.introduction div.univ-old p.univ-nara-womens:after {
  position: absolute;
  content: "";
  background: url("/img/logo-nara-womens-university.svg") no-repeat center;
  background-size: 96px;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 2%;
}

section.introduction p.content {
  font-size: 0.875rem;
}

section.news {
  padding: 70px 0 0;
}

section.news h2 {
  margin-bottom: 32px;
  font-size: 1.37rem;
  text-align: center;
}

section.news div.news-list {
  margin-bottom: 70px;
  text-align: center;
}

section.news div.news-item a {
  margin: 0 15px;
  width: 100%;
}

section.news div.news-item a img {
  width: 100%;
}

section.news div.news-item a dl {
  background: #eee;
  height: 150px;
}

section.news div.news-item a dt {
  padding: 16px 16px 0;
  font-weight: bold;
  line-height: 1.5;
}

section.news div.news-item a dd {
  color: #000;
  padding: 0 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

section.news div.news-item .slick-next, section.news div.news-item .slick-prev {
  z-index: 10;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
}

section.news div.news-item .slick-next:before, section.news div.news-item .slick-prev:before {
  position: relative;
  color: #3CAB84;
  top: -2px;
  right: 5px;
  opacity: 1;
  font-size: 44px;
}

section.news div.news-item .slick-prev {
  left: 27px;
}

section.news div.news-item .slick-next {
  right: 27px;
}

section.news div.news-item span.news-date {
  font-size: 0.875rem;
}

section.news div.news-item span.news-title {
  font-size: 0.9rem;
}

section.segment {
  padding: 70px 22px 65px;
}

section.segment div.vision {
  margin-bottom: 70px;
  text-align: center;
}

section.segment div.vision a:nth-child(2) {
  display: inline-block;
  margin-bottom: 16px;
}

section.segment div.vision a img {
  width: 100%;
}

section.segment h2 {
  margin-bottom: 20px;
  font-size: 1.37rem;
  text-align: center;
}

section.continer {
  padding: 40px 20px;
}

section.continer h1 {
  margin-bottom: 30px;
  font-size: 1.37rem;
}

section.continer h2 {
  color: #107557;
  margin-bottom: 25px;
  border-bottom: solid 2px #107557;
  border-left: solid 10px #107557;
  padding: 0 10px 0;
  font-size: 1.37rem;
}

section.continer h3 {
  color: #107557;
  border-bottom: solid 2px #107557;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

article.mechanism-chief {
  margin-bottom: 100px;
}

article.mechanism-chief div img {
  display: block;
  margin: 0 auto 20px;
}

article.mechanism-chief img {
  margin-bottom: 30px;
}

article.news-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

article.news-item-list a {
  margin: 0 auto 20px;
  width: 100%;
}

article.news-item-list a img {
  display: block;
  width: 100%;
}

article.news-item-list a dl {
  background: #eee;
  height: 100px;
  background: #eee;
  height: initial;
}

article.news-item-list a dt {
  padding: 16px 16px 0;
  font-weight: bold;
  line-height: 1.5;
}

article.news-item-list a dd {
  color: #000;
  padding: 0 16px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

article.news-item-list span.news-date {
  font-size: 0.875rem;
}

article.news-item-list span.news-title {
  font-size: 0.9rem;
}

article.news-single div.main-title {
  display: block;
  background: #eee;
  margin-bottom: 50px;
}

article.news-single div img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

article.news-single div div {
  color: #52A992;
  padding: 10px;
}

article.news-single div div h1 {
  margin-bottom: 10px;
  font-size: 1.37rem;
}

article.news-single section.main-area figure {
  margin-bottom: 50px;
  text-align: center;
}

article.news-single section.main-area figure img {
  margin-bottom: 20px;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

article.news-single section.main-area figcaption {
  text-align: left;
}

article.gakumonsai nav.gk-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

article.gakumonsai nav.gk-nav li {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  text-align: center;
  background: #33a4de;
  margin-bottom: 5px;
}

article.gakumonsai nav.gk-nav li:nth-child(odd) {
  background: #e95383;
}

article.gakumonsai nav.gk-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  height: 40px;
}

article.gakumonsai section.gk-hero, article.gakumonsai section.gk-about, article.gakumonsai section.gk-lecture, article.gakumonsai section.gk-schedule, article.gakumonsai section.gk-access {
  padding-top: 100px;
  margin-bottom: 50px;
}

article.gakumonsai section.gk-hero img {
  width: 100%;
}

article.gakumonsai section.gk-access h3 {
  margin: 0;
  border-radius: 10px 10px 0 0;
  padding: 5px 0;
  text-align: center;
}

article.gakumonsai section.gk-access h3.gk-ky {
  color: #33a4de;
  background: #d3edfb;
}

article.gakumonsai section.gk-access h3.gk-jo {
  color: #107557;
  background: #d0e7c3;
}

article.gakumonsai section.gk-access div.gk-ky, article.gakumonsai section.gk-access div.gk-jo {
  -ms-flex-preferred-size: 47%;
      flex-basis: 47%;
}

article.gakumonsai section.gk-access div iframe {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}

article.gakumonsai section.gk-access div address {
  margin-bottom: 30px;
  font-size: 0.875rem;
}

article.gakumonsai section p.caption {
  margin-bottom: 50px;
  line-height: 1.2;
}

article.gakumonsai section p.about {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

article.gakumonsai section ul.lecture-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

article.gakumonsai section ul.lecture-ul li img {
  width: 100%;
}

article.gakumonsai section dl.guest-dl {
  margin: 10px 0 50px;
}

article.gakumonsai section dl.guest-dl dt {
  font-size: 1.125rem;
  font-weight: bold;
}

article.gakumonsai section dl.guest-dl dd {
  margin-bottom: 30px;
}

article.gakumonsai section table.lecture-tb {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: collapse;
  border: 1px solid transparent;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

article.gakumonsai section table.lecture-tb thead {
  display: none;
}

article.gakumonsai section table.lecture-tb thead th {
  color: #fff;
  background: #555 !important;
}

article.gakumonsai section table.lecture-tb th, article.gakumonsai section table.lecture-tb td {
  display: block;
  border: 1px solid transparent;
  padding: 5px 10px;
  background: #f8f8f8;
}

article.gakumonsai section table.lecture-tb th:nth-child(odd), article.gakumonsai section table.lecture-tb td:nth-child(odd) {
  background: #eee;
}

article.gakumonsai section table.lecture-tb th {
  border-radius: 10px 10px 0 0;
}

article.gakumonsai section table.lecture-tb td {
  position: relative;
  padding-left: 20%;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: left;
}

article.gakumonsai section table.lecture-tb td:before {
  position: absolute;
  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;
  content: attr(data-title);
  color: #107557;
  height: 100%;
  top: 0;
  left: 10px;
}

article.gakumonsai section table.lecture-tb td.offline:after {
  position: absolute;
  content: "";
  background: center/20px no-repeat;
  background-image: url("/research/img/icon-offline.png");
  width: 20px;
  height: 20px;
  right: 2%;
  bottom: 10%;
}

article.gakumonsai section table.lecture-tb td.online:after {
  position: absolute;
  content: "";
  background: center/20px no-repeat;
  background-image: url("/research/img/icon-online.png");
  width: 20px;
  height: 20px;
  right: 2%;
  bottom: 10%;
}

article.gakumonsai section table.lecture-tb td small {
  font-size: 0.875rem;
  font-weight: normal;
}

article.gakumonsai section table.lecture-tb td:last-child {
  margin-bottom: 20px;
  padding: 5px 0;
  text-align: center;
}

article.gakumonsai section table.lecture-tb td.no-display {
  display: none;
}

article.gakumonsai section table.lecture-tb th.thc01, article.gakumonsai section table.lecture-tb td.thc01 {
  color: #fff;
  background: #FCD05B;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc02, article.gakumonsai section table.lecture-tb td.thc02 {
  color: #fff;
  background: #EF7D30;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc03, article.gakumonsai section table.lecture-tb td.thc03 {
  color: #fff;
  background: #70C191;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc04, article.gakumonsai section table.lecture-tb td.thc04 {
  color: #fff;
  background: #EA5C5C;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc05, article.gakumonsai section table.lecture-tb td.thc05 {
  color: #fff;
  background: #B97FB5;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc06, article.gakumonsai section table.lecture-tb td.thc06 {
  color: #fff;
  background: #8AB2DF;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc07, article.gakumonsai section table.lecture-tb td.thc07 {
  color: #fff;
  background: #B6D56A;
  text-shadow: 1px 1px #888;
}

article.gakumonsai section table.lecture-tb th.thc08, article.gakumonsai section table.lecture-tb td.thc08 {
  color: #fff;
  background: #d3edfb;
  text-shadow: 1px 1px #888;
  color: #777;
  text-shadow: none;
  font-weight: bold;
  min-height: initial;
}

article.gakumonsai section table.lecture-tb th.thc09, article.gakumonsai section table.lecture-tb td.thc09 {
  color: #fff;
  background: #d0e7c3;
  text-shadow: 1px 1px #888;
  color: #777;
  text-shadow: none;
  font-weight: bold;
  min-height: initial;
}

article.gakumonsai section table.lecture-tb th.thc010, article.gakumonsai section table.lecture-tb td.thc010 {
  color: #fff;
  background: #e5c8e9;
  text-shadow: 1px 1px #888;
  color: #777;
  text-shadow: none;
  font-weight: bold;
  min-height: initial;
}

article.gakumonsai section span.icon-offline, article.gakumonsai section span.icon-online {
  position: relative;
  display: block;
  padding-left: 40px;
  height: 50px;
  font-size: 0.9rem;
}

article.gakumonsai section span.icon-offline:before {
  position: absolute;
  content: "";
  background: left center/29px no-repeat;
  background-image: url("/research/img/icon-offline.png");
  width: 29px;
  height: 45px;
  left: 0;
}

article.gakumonsai section span.icon-online:before {
  position: absolute;
  content: "";
  background: left center/29px no-repeat;
  background-image: url("/research/img/icon-online.png");
  width: 29px;
  height: 45px;
  left: 0;
}

article.gakumonsai section small {
  font-size: 0.875rem;
}

article.gakumonsai section h2, article.gakumonsai section h3 {
  border: none;
}

article.gakumonsai section h2.main-ti, article.gakumonsai section h3.main-ti {
  margin: 0;
  padding: 0;
}

article.gakumonsai section h2.about-ti, article.gakumonsai section h3.about-ti {
  margin-bottom: 0;
}

article.gakumonsai section h2.lecture-ti, article.gakumonsai section h3.lecture-ti {
  display: block;
  -webkit-box-shadow: 5px 5px 0px 0px #ddd;
          box-shadow: 5px 5px 0px 0px #ddd;
  border: solid 2px #000;
  padding: 5px 10px;
  font-size: 30px;
  font-weight: bold;
}

article.gakumonsai section h2.lecture-ti-magenta, article.gakumonsai section h3.lecture-ti-magenta {
  color: #fff;
  background: #e95383;
}

article.gakumonsai section h2.lecture-ti-cyaan, article.gakumonsai section h3.lecture-ti-cyaan {
  color: #fff;
  background: #33a4de;
}

article.gakumonsai img.about-img {
  max-width: 100%;
  height: 70px;
}

a {
  color: #3CAB84;
}

a:hover {
  color: #8FAF29;
}

a.btn {
  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;
  padding: 20px 0;
}

a.btn-submit {
  color: #fff;
  background: #3DB270;
}

a.btn-to-company {
  background: #3CAB84;
  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;
  margin-bottom: 30px;
  height: 75px;
}

a.btn-to-company span:first-child {
  display: inline-block;
  margin-left: 12px;
  font-size: 1.37rem;
  font-weight: bold;
}

a.btn-to-company span:last-child {
  display: inline-block;
  margin-right: 12px;
  font-size: 1rem;
}

a.pdf-icon {
  position: relative;
}

a.pdf-icon:after {
  position: absolute;
  display: inline-block;
  content: "";
  background: url("/img/PDF_24.png") center bottom/18px no-repeat;
  width: 20px;
  height: 18px;
  top: -1px;
}

div.btn-continer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

a.tow-col-btn {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  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;
  color: #3CAB84;
  border: solid 1px #3CAB84;
  margin-bottom: 40px;
  padding: 15px 0;
  height: 100px;
  font-size: 0.9rem;
}

dl dt.f-green, dl dd.f-green {
  color: #107557;
}

dl dt.bk-grey, dl dd.bk-grey {
  background: #ddd;
}

dl dt.align-l, dl dd.align-l {
  text-align: left;
}

dl dt.align-c, dl dd.align-c {
  text-align: center;
}

dl dt.align-r, dl dd.align-r {
  text-align: right;
}

dl.profile-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 30px;
}

dl.profile-list dt {
  margin: 0;
  padding: 0 10px;
  font-size: 0.9rem;
  font-weight: bold;
}

dl.profile-list dd {
  margin-bottom: 20px;
  padding: 0 10px;
}

dl.profile-list dd span.kikoucho {
  font-size: 1.37rem;
}

dl.definition-list dt {
  margin-bottom: 20px;
  padding: 4px 10px;
  font-size: 1.125rem;
  font-weight: bold;
}

dl.definition-list dd {
  margin-bottom: 40px;
}

dl.participants-list dt {
  margin-bottom: 20px;
  padding: 4px 10px;
  font-size: 1.125rem;
  font-weight: bold;
}

dl.participants-list dd {
  margin-bottom: 40px;
}

dl.participants-list dd h1 {
  display: inline-block;
  margin-bottom: 30px;
  border-bottom: solid 1px #107557;
  font-size: 1.125rem;
}

dl.participants-list dd h2 {
  color: #107557;
  border: none;
  padding: 0;
  font-size: 1rem;
}

dl.participants-list dd h3 {
  border: none;
  font-size: 1rem;
  margin-bottom: 10px;
}

dl.participants-list dd table, dl.participants-list dd th, dl.participants-list dd td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: collapse;
  border: 1px solid #107557;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

dl.participants-list dd table {
  margin-bottom: 50px;
  border: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  width: 100%;
}

dl.participants-list dd th {
  padding: 5px 0;
  width: 30%;
}

dl.participants-list dd td {
  padding: 5px 10px;
  width: 55%;
}

dl.participants-list dd a.table-a {
  display: block;
  margin: -40px 0 40px;
}

dl.participants-list dd li {
  margin-bottom: 20px;
}

dl.document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: solid 1px #ccc;
  font-size: 0.9rem;
}

dl.document dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #eee;
  padding: 5px 0;
  text-align: center;
}

dl.document dd {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  padding: 5px;
}

dl.address-list {
  border: solid 1px #777;
}

dl.address-list dt {
  background: #ddd;
  margin: 0;
  padding: 12px;
}

dl.address-list dd {
  margin: 0;
  padding: 12px;
}

dl.access-list dt {
  display: inline-block;
  border-bottom: solid 1px #52A992;
  font-size: 1.125rem;
}

dl.access-list dd {
  padding-left: 20px;
  margin-bottom: 40px;
}

ul.disc-list {
  margin-bottom: 40px;
}

ul.disc-list li {
  margin: 10px 0 10px 20px;
  list-style: disc;
  list-style-position: outside;
  line-height: 1.2;
}

ul.mechanism-list li a {
  display: block;
  color: #000;
  margin-bottom: 10px;
  border: solid 1px #107557;
  padding: 20px 25px;
  width: 100%;
  font-size: 0.9rem;
  font-weight: bold;
}

ul.mechanism-list li a:hover {
  color: #fff;
  background: #3CAB84;
}

table.normal-tb {
  border-collapse: collapse;
  width: 100%;
}

table.normal-tb th, table.normal-tb td {
  border: solid 1px #3CAB84;
  padding: 8px;
}

table.normal-tb th {
  width: 20%;
  min-width: 125px;
  text-align: left;
}

table.normal-tb td {
  width: 70%;
}

table.bid-table {
  border-collapse: collapse;
  width: 100%;
}

table.bid-table th, table.bid-table td {
  border: solid 1px #3CAB84;
  padding: 8px;
  font-size: 0.875rem;
}

table.bid-table th {
  background: #8BBB70;
  width: 20%;
  min-width: 125px;
  text-align: center;
  vertical-align: middle;
}

table.bid-table td {
  width: 70%;
}

img.line-map {
  margin: 40px 0;
  width: 100%;
}

iframe.googlemap {
  width: 100%;
  height: 400px;
}

.h-bottom-line {
  position: relative;
}

.h-bottom-line::after {
  position: absolute;
  content: "";
  background: #3CAB84;
  width: 75px;
  height: 4px;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

div.content {
  margin: 0 auto;
  padding: 50px 0;
  width: 88%;
}

div.line-deer-f {
  position: relative;
  border-bottom: solid 2px #3CAB84;
}

div.line-deer-f:after {
  content: "";
  position: absolute;
  background: url("/img/deer-f.svg") no-repeat;
  width: 66px;
  height: 61px;
  bottom: -2px;
  right: 2%;
}

div.line-deer-m {
  position: relative;
  border-bottom: solid 2px #3CAB84;
}

div.line-deer-m:after {
  content: "";
  position: absolute;
  background: url("/img/deer-m.svg") no-repeat;
  width: 65px;
  height: 100px;
  bottom: -2px;
  left: 2%;
}

.slick-dots {
  bottom: -35px !important;
}

.slick-dots li button:before {
  color: #3CAB84 !important;
  font-size: 15px !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
}

ul.nav-open {
  display: block !important;
  -webkit-transition: .3;
  transition: .3;
}

/* PC */
@media only screen and (min-width: 750px) {
  /* ========================================= */
  /* ================= 各要素 ================= */
  /* ========================================= */
  html {
    font-size: 100%;
  }
  main {
/*    padding-top: 195px;*/
  }
  header div.breadcrumbs-continer {
    margin: 0 auto;
    width: 100%;
  }
  header ul.breadcrumbs {
    margin: 0 auto;
    max-width: 1200px;
  }
  header.mvheader {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  footer {
    background: #eee;
  }
  footer div.footer-logo img {
    width: 475px;
  }
  footer div p {
    margin-top: 20px;
    font-size: 1rem;
  }
  footer ul.univ-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 100px auto;
    padding: 25px 0;
    max-width: 1200px;
  }
  footer ul.univ-link li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
  nav.header-nav {
    margin: 0 auto;
    max-width: 1200px;
    height: 145px;
  }
  nav.header-nav div.logo-main {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
  }
  nav.header-nav div.logo-main img {
    width: 330px;
  }
  nav.header-nav div.burger-menu {
    display: none;
  }
  nav.header-nav div.burger-menu .btn-trigger {
    position: relative;
    width: 40px;
    height: 22px;
    cursor: pointer;
  }
  nav.header-nav div.burger-menu .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #231815;
    border-radius: 0;
  }
  nav.header-nav div.burger-menu .btn-trigger, nav.header-nav div.burger-menu .btn-trigger span {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(2) {
    top: 10px;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  nav.header-nav div.toggle-menu {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
    background: initial;
    padding: 0;
    top: 0;
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  nav.header-nav div.search-space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin: 10px 0 20px;
    width: 100%;
  }
  nav.header-nav div.search {
    width: 300px;
  }
  nav.header-nav ul.main-menu {
    position: relative;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #3CAB84;
    margin: 0 auto;
  }
  nav.header-nav ul.main-menu li {
    font-size: 1rem;
  }
  nav.header-nav ul.main-menu li a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    color: #fff;
    padding: 20px 0;
  }
  nav.header-nav ul.contact-access {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    width: 100%;
    font-size: 0.875rem;
  }
  nav.header-nav ul.contact-access li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-nav ul.contact-access li:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-nav ul.contact-access li.display-pc {
    display: block;
  }
  nav.header-nav ul.contact-access li.display-pc-sub {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
    text-align: right;
    font-size: 15px;
    font-weight: bold;
  }
  nav.header-nav ul.contact-access li a.btn-access {
    color: #3CAB84;
    background: none;
    padding: 0;
  }
  nav.header-nav ul.contact-access li a.btn-access:before {
    content: ">　";
  }
  nav.header-nav ul.contact-access dl.font-size-chenger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #3CAB84;
    cursor: pointer;
  }
  nav.header-nav ul.contact-access dl dt {
    font-size: 14px;
  }
  nav.header-nav ul.contact-access dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 20px;
    width: 36px;
    height: 36px;
    border: solid 1px #3CAB84;
    border-radius: 18px;
  }
  nav.header-nav ul.contact-access dl dd.large, nav.header-nav ul.contact-access dl dd.middle {
    font-size: 14px;
  }
  nav.header-pc-menu {
    display: block;
    background: #3CAB84;
    width: 100%;
  }
  nav.header-pc-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1200px;
  }
  nav.header-pc-menu li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-pc-menu li a {
    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;
    color: #fff;
    height: 50px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  nav.header-pc-menu li a:hover {
    background: #90C271;
  }
  nav.header-pc-menu li a span {
    display: inline-block;
    border-right: solid 1px #fff;
    width: 100%;
    text-align: center;
  }
  nav.header-pc-menu li:last-child span {
    border: none;
  }
  nav.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding: 100px 0;
    width: 1200px;
  }
  nav.footer-nav ul.nav-parent {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin: 0 auto;
  }
  nav.footer-nav ul.nav-parent li {
    padding: 20px 0;
    padding-left: 30px;
    margin: 0 0 0 10%;
    font-size: 1.37rem;
    cursor: s-resize;
  }
  nav.footer-nav ul.nav-parent li:before {
    width: 30px;
    height: 30px;
  }
  nav.footer-nav ul.nav-parent:first-child {
    border-right: solid 2px #3CAB84;
  }
  nav.footer-nav ul.nav-child li {
    border: none !important;
    margin: 0;
    padding: 0 0 0 30px;
  }
  nav.footer-nav ul.nav-child li a:hover {
    -webkit-text-decoration: underline #3CAB84;
            text-decoration: underline #3CAB84;
  }
  nav.side-nav {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 50px;
    margin-bottom: 100px;
  }
  nav.side-nav h1 {
    color: #3CAB84;
    margin-bottom: 20px;
    border-left: solid 10px #3CAB84;
    padding: 25px 20px;
  }
  nav.side-nav ul li a {
    display: block;
    color: #000;
    border-bottom: solid 1px #3CAB84;
    padding: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    -webkit-transition: .2s;
    transition: .2s;
  }
  nav.side-nav ul li a:hover {
    color: #fff;
    background: #8BBB70;
  }
  nav.side-nav ul li a.child {
    color: #107557;
    padding-left: 30px;
  }
  nav.side-nav ul li a.current {
    color: #fff;
    background: #3CAB84;
  }
  section div.container-10k {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
  }
  section div.container-12k {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
  }
  section div.nopadding {
    padding: 0;
  }
  section.introduction {
    position: relative;
    background: url("/img/introduction-bk-l.png") no-repeat top left/13%, url("/img/introduction-bk-r.png") no-repeat bottom right/13%;
    margin: 0 auto;
  }
  section.introduction h1.univ-name span.corp-ja {
    font-size: 40px;
  }
  section.introduction h1.univ-name span.univ-ja {
    font-size: 56px;
    line-height: 1.2;
  }
  section.introduction h1.univ-name span.corp-en {
    display: block;
    font-size: 24px;
    font-weight: lighter;
    line-height: 1.3;
  }
  section.introduction h1.univ-name span.univ-en {
    display: block;
    font-size: 24px;
    font-weight: lighter;
    line-height: 1.3;
  }
  section.introduction h1.univ-name img.logo-n-only {
    margin: 40px auto 55px;
    width: 190px;
  }
  section.introduction div.since {
    margin: 0 auto 25px;
    border-radius: 10px;
    padding: 10px 0;
    width: 350px;
    font-size: 30px;
  }
  section.introduction div.since:after {
    top: 48%;
    width: 1200px;
    z-index: -1;
  }
  section.introduction div.univ-old {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 145px;
    text-align: center;
  }
  section.introduction div.univ-old:after {
    background-size: 70px;
    height: 100px;
  }
  section.introduction div.univ-old p.univ-nara-education, section.introduction div.univ-old p.univ-nara-womens {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: initial;
  }
  section.introduction div.univ-old p.univ-nara-education span.ja, section.introduction div.univ-old p.univ-nara-womens span.ja {
    font-size: 56px;
    line-height: 1.2;
  }
  section.introduction div.univ-old p.univ-nara-education span.en, section.introduction div.univ-old p.univ-nara-womens span.en {
    font-size: 24px;
    line-height: 1.5;
  }
  section.introduction div.univ-old p.univ-nara-womens {
    content: "";
    padding-left: 50px;
    -webkit-transform: translatex(90px);
            transform: translatex(90px);
    bottom: 0;
  }
  section.introduction div.univ-old p.univ-nara-womens:after {
    left: 8%;
    top: 0;
  }
  section.introduction p.content {
    font-size: 1.5rem;
    text-align: center;
  }
  section.news {
    padding: 200px 0 0;
  }
  section.news h2 {
    margin-bottom: 70px;
    font-size: 40px;
  }
  section.news div.news-list {
    font-size: 30px;
  }
  section.news div.news-item .slick-next, section.news div.news-item .slick-prev {
    z-index: 10;
    width: 65px;
    height: 65px;
  }
  section.news div.news-item .slick-next:before, section.news div.news-item .slick-prev:before {
    color: #3CAB84;
    top: -3px;
    right: 7px;
    opacity: 1;
    font-size: 80px;
  }
  section.news div.news-item .slick-prev {
    left: 220px;
  }
  section.news div.news-item .slick-next {
    right: 220px;
  }
  section.segment div.vision a:nth-child(2) {
    margin-bottom: 70px;
    font-size: 30px;
  }
  section.segment h2 {
    margin-bottom: 70px;
    font-size: 40px;
    text-align: center;
  }
  section.continer {
    padding: 100px 20px;
  }
  section.continer div.two-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.continer h1 {
    margin-bottom: 50px;
    font-size: 1.5rem;
  }
  section.continer h2 {
    font-size: 1.5rem;
  }
  section.continer h2.bk-tokiwa {
    display: inline-block;
    color: #fff;
    background: #107557;
    border: none;
  }
  article.mechanism-chief {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
  article.mechanism-chief div.mechanism-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  article.mechanism-chief div img {
    display: inline;
    margin-right: 20px;
  }
  article.mechanism-chief div {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  article.mechanism-chief img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 30px;
    margin-right: 30px;
  }
  article.news-item-list {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -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: 0;
  }
  article.news-item-list a {
    -ms-flex-preferred-size: 27%;
        flex-basis: 27%;
    margin: 0 0 6%;
  }
  article.news-single div.main-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  article.news-single div img {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    width: 640px;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  article.news-single div div {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    padding: 30px 40px;
  }
  article.news-single div div h1 {
    margin: 0;
    font-size: 30px;
    height: 270px;
  }
  article.news-single section.main-area figure {
    margin-bottom: 50px;
  }
  article.news-single section.main-area figure img {
    margin-bottom: 30px;
    width: 760px;
    height: 500px;
  }
  article.news-single section.main-area figcaption {
    margin: 0 auto;
    width: 760px;
  }
  article.gakumonsai nav.gk-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  article.gakumonsai section.gk-hero, article.gakumonsai section.gk-about, article.gakumonsai section.gk-lecture, article.gakumonsai section.gk-schedule, article.gakumonsai section.gk-access {
    padding-top: 140px;
  }
  article.gakumonsai section.gk-access div.gk-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  article.gakumonsai section.gk-access div iframe {
    height: 300px;
  }
  article.gakumonsai section p.lecture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 20px;
  }
  article.gakumonsai section ul.lecture-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  article.gakumonsai section ul.lecture-ul li {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    margin: 0 1.6% 20px;
  }
  article.gakumonsai section table.lecture-tb thead {
    display: table-row-group;
  }
  article.gakumonsai section table.lecture-tb th, article.gakumonsai section table.lecture-tb td {
    display: table-cell;
    border: 5px solid #fff;
  }
  article.gakumonsai section table.lecture-tb th {
    border-radius: 0;
    width: 10%;
    vertical-align: middle;
  }
  article.gakumonsai section table.lecture-tb td {
    position: relative;
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 22.5%;
    text-align: center;
    vertical-align: middle;
  }
  article.gakumonsai section table.lecture-tb td:before {
    display: none;
  }
  article.gakumonsai section table.lecture-tb td:last-child {
    width: 13%;
  }
  article.gakumonsai section table.lecture-tb td.no-display {
    display: table-cell;
  }
  article.gakumonsai section span.icon-offline, article.gakumonsai section span.icon-online {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 40px;
    height: initial;
    font-size: 1rem;
  }
  a.btn-to-company {
    height: 100px;
  }
  a.btn-to-company span:first-child {
    margin-left: 30px;
    font-size: 30px;
  }
  a.btn-to-company span:last-child {
    margin-right: 30px;
    font-size: 1.5rem;
  }
  div.btn-continer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  a.tow-col-btn {
    font-size: 1.5rem;
    height: 100px;
  }
  dl.profile-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  dl.profile-list dt {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    padding: 0 10px;
    font-size: 1rem;
    font-weight: normal;
  }
  dl.profile-list dd {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 0 10px;
  }
  dl.profile-list dd span.kikoucho {
    line-height: 24px;
  }
  dl.definition-list {
    margin-bottom: 100px;
  }
  dl.definition-list dt {
    padding: 14px 10px;
  }
  dl.participants-list {
    margin-bottom: 100px;
  }
  dl.participants-list dt {
    padding: 14px 10px;
  }
  dl.participants-list dd table, dl.participants-list dd th, dl.participants-list dd td {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  dl.participants-list dd th {
    width: 15%;
  }
  dl.participants-list dd td {
    width: 15%;
  }
  dl.document {
    font-size: 1rem;
  }
  dl.document dt {
    padding: 10px 0;
  }
  dl.document dd {
    -webkit-box-flex: 9;
        -ms-flex: 9;
            flex: 9;
    padding: 10px;
  }
  dl.access-list dt {
    padding: 0;
  }
  ul.mechanism-list li a {
    padding: 40px 50px;
  }
  img.line-map {
    margin: 50px 0;
    width: 800px;
  }
  iframe.googlemap {
    width: 100%;
    height: 600px;
  }
  .h-bottom-line::after {
    width: 152px;
    height: 4px;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  div.content {
    margin: 0 auto;
    padding: 40px 0 150px;
    width: 100%;
  }
  div.line-deer-f:after {
    width: 155px;
    height: 145px;
    bottom: -2px;
    right: 2%;
  }
  div.line-deer-m {
    margin-top: 100px;
    max-width: 1200px;
  }
  div.line-deer-m:after {
    width: 136px;
    height: 210px;
    bottom: -2px;
  }
  .slick-dots {
    bottom: -35px !important;
  }
  .slick-dots li button:before {
    color: #3CAB84 !important;
    font-size: 15px !important;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1 !important;
  }
  ul.nav-open {
    display: block !important;
    -webkit-transition: .3;
    transition: .3;
  }
  div.news-single-list {
    text-align: right;
  }
}

/* 印刷用 */
@media print {
  /* ========================================= */
  /* ================= 各要素 ================= */
  /* ========================================= */
  html {
    font-size: 100%;
  }
  main {
    padding-top: 195px;
  }
  header div.breadcrumbs-continer {
    margin: 0 auto;
    width: 100%;
  }
  header ul.breadcrumbs {
    margin: 0 auto;
    max-width: 1200px;
  }
  header.mvheader {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  footer {
    background: #eee;
  }
  footer div.footer-logo img {
    width: 475px;
  }
  footer div p {
    margin-top: 20px;
    font-size: 1rem;
  }
  footer ul.univ-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 100px auto;
    padding: 25px 0;
    max-width: 1200px;
  }
  footer ul.univ-link li {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
  nav.header-nav {
    margin: 0 auto;
    max-width: 1200px;
    height: 145px;
  }
  nav.header-nav div.logo-main {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
  }
  nav.header-nav div.logo-main img {
    width: 330px;
  }
  nav.header-nav div.burger-menu {
    display: none;
  }
  nav.header-nav div.burger-menu .btn-trigger {
    position: relative;
    width: 40px;
    height: 22px;
    cursor: pointer;
  }
  nav.header-nav div.burger-menu .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #231815;
    border-radius: 0;
  }
  nav.header-nav div.burger-menu .btn-trigger, nav.header-nav div.burger-menu .btn-trigger span {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(2) {
    top: 10px;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  nav.header-nav div.toggle-menu {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
    background: initial;
    padding: 0;
    top: 0;
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  nav.header-nav div.search-space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin: 10px 0 20px;
    width: 100%;
  }
  nav.header-nav div.search {
    width: 300px;
  }
  nav.header-nav ul.main-menu {
    position: relative;
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #3CAB84;
    margin: 0 auto;
  }
  nav.header-nav ul.main-menu li {
    font-size: 1rem;
  }
  nav.header-nav ul.main-menu li a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    color: #fff;
    padding: 20px 0;
  }
  nav.header-nav ul.contact-access {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    width: 100%;
    font-size: 0.875rem;
  }
  nav.header-nav ul.contact-access li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-nav ul.contact-access li:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-nav ul.contact-access li.display-pc {
    display: block;
  }
  nav.header-nav ul.contact-access li.display-pc-sub {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
    text-align: right;
    font-size: 15px;
    font-weight: bold;
  }
  nav.header-nav ul.contact-access li a.btn-access {
    color: #3CAB84;
    background: none;
    padding: 0;
  }
  nav.header-nav ul.contact-access li a.btn-access:before {
    content: ">　";
  }
  nav.header-nav ul.contact-access dl.font-size-chenger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #3CAB84;
    cursor: pointer;
  }
  nav.header-nav ul.contact-access dl dt {
    font-size: 14px;
  }
  nav.header-nav ul.contact-access dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 20px;
    width: 36px;
    height: 36px;
    border: solid 1px #3CAB84;
    border-radius: 18px;
  }
  nav.header-nav ul.contact-access dl dd.large, nav.header-nav ul.contact-access dl dd.middle {
    font-size: 14px;
  }
  nav.header-pc-menu {
    display: block;
    background: #3CAB84;
    width: 100%;
  }
  nav.header-pc-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1200px;
  }
  nav.header-pc-menu li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-pc-menu li a {
    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;
    color: #fff;
    height: 50px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  nav.header-pc-menu li a:hover {
    background: #90C271;
  }
  nav.header-pc-menu li a span {
    display: inline-block;
    border-right: solid 1px #fff;
    width: 100%;
    text-align: center;
  }
  nav.header-pc-menu li:last-child span {
    border: none;
  }
  nav.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding: 100px 0;
    width: 1200px;
  }
  nav.footer-nav ul.nav-parent {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin: 0 auto;
  }
  nav.footer-nav ul.nav-parent li {
    padding: 20px 0;
    padding-left: 30px;
    margin: 0 0 0 10%;
    font-size: 1.37rem;
    cursor: s-resize;
  }
  nav.footer-nav ul.nav-parent li:before {
    width: 30px;
    height: 30px;
  }
  nav.footer-nav ul.nav-parent:first-child {
    border-right: solid 2px #3CAB84;
  }
  nav.footer-nav ul.nav-child li {
    border: none !important;
    margin: 0;
    padding: 0 0 0 30px;
  }
  nav.footer-nav ul.nav-child li a:hover {
    -webkit-text-decoration: underline #3CAB84;
            text-decoration: underline #3CAB84;
  }
  nav.side-nav {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 50px;
    margin-bottom: 100px;
  }
  nav.side-nav h1 {
    color: #3CAB84;
    margin-bottom: 20px;
    border-left: solid 10px #3CAB84;
    padding: 25px 20px;
  }
  nav.side-nav ul li a {
    display: block;
    color: #000;
    border-bottom: solid 1px #3CAB84;
    padding: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    -webkit-transition: .2s;
    transition: .2s;
  }
  nav.side-nav ul li a:hover {
    color: #fff;
    background: #8BBB70;
  }
  nav.side-nav ul li a.child {
    color: #107557;
    padding-left: 30px;
  }
  nav.side-nav ul li a.current {
    color: #fff;
    background: #3CAB84;
  }
  section div.container-10k {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
  }
  section div.container-12k {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
  }
  section div.nopadding {
    padding: 0;
  }
  section.introduction {
    position: relative;
    background: url("/img/introduction-bk-l.png") no-repeat top left/13%, url("/img/introduction-bk-r.png") no-repeat bottom right/13%;
    margin: 0 auto;
  }
  section.introduction h1.univ-name span.corp-ja {
    font-size: 40px;
  }
  section.introduction h1.univ-name span.univ-ja {
    font-size: 56px;
    line-height: 1.2;
  }
  section.introduction h1.univ-name span.corp-en {
    display: block;
    font-size: 24px;
    font-weight: lighter;
    line-height: 1.3;
  }
  section.introduction h1.univ-name span.univ-en {
    display: block;
    font-size: 24px;
    font-weight: lighter;
    line-height: 1.3;
  }
  section.introduction h1.univ-name img.logo-n-only {
    margin: 40px auto 55px;
    width: 190px;
  }
  section.introduction div.since {
    margin: 0 auto 25px;
    border-radius: 10px;
    padding: 10px 0;
    width: 350px;
    font-size: 30px;
  }
  section.introduction div.since:after {
    top: 48%;
    width: 1200px;
    z-index: -1;
  }
  section.introduction div.univ-old {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 145px;
    text-align: center;
  }
  section.introduction div.univ-old:after {
    background-size: 70px;
    height: 100px;
  }
  section.introduction div.univ-old p.univ-nara-education, section.introduction div.univ-old p.univ-nara-womens {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: initial;
  }
  section.introduction div.univ-old p.univ-nara-education span.ja, section.introduction div.univ-old p.univ-nara-womens span.ja {
    font-size: 56px;
    line-height: 1.2;
  }
  section.introduction div.univ-old p.univ-nara-education span.en, section.introduction div.univ-old p.univ-nara-womens span.en {
    font-size: 24px;
    line-height: 1.5;
  }
  section.introduction div.univ-old p.univ-nara-womens {
    content: "";
    padding-left: 50px;
    -webkit-transform: translatex(90px);
            transform: translatex(90px);
    bottom: 0;
  }
  section.introduction div.univ-old p.univ-nara-womens:after {
    left: 8%;
    top: 0;
  }
  section.introduction p.content {
    font-size: 1.5rem;
    text-align: center;
  }
  section.news {
    padding: 200px 0 0;
  }
  section.news h2 {
    margin-bottom: 70px;
    font-size: 40px;
  }
  section.news div.news-list {
    font-size: 30px;
  }
  section.news div.news-item .slick-next, section.news div.news-item .slick-prev {
    z-index: 10;
    width: 65px;
    height: 65px;
  }
  section.news div.news-item .slick-next:before, section.news div.news-item .slick-prev:before {
    color: #3CAB84;
    top: -3px;
    right: 7px;
    opacity: 1;
    font-size: 80px;
  }
  section.news div.news-item .slick-prev {
    left: 220px;
  }
  section.news div.news-item .slick-next {
    right: 220px;
  }
  section.segment div.vision a:nth-child(2) {
    margin-bottom: 70px;
    font-size: 30px;
  }
  section.segment h2 {
    margin-bottom: 70px;
    font-size: 40px;
    text-align: center;
  }
  section.continer {
    padding: 100px 20px;
  }
  section.continer div.two-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.continer h1 {
    margin-bottom: 50px;
    font-size: 1.5rem;
  }
  section.continer h2 {
    font-size: 1.5rem;
  }
  section.continer h2.bk-tokiwa {
    display: inline-block;
    color: #fff;
    background: #107557;
    border: none;
  }
  article.mechanism-chief {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
  article.mechanism-chief div.mechanism-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  article.mechanism-chief div img {
    display: inline;
    margin-right: 20px;
  }
  article.mechanism-chief div {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  article.mechanism-chief img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 30px;
    margin-right: 30px;
  }
  article.news-item-list {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -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: 0;
  }
  article.news-item-list a {
    -ms-flex-preferred-size: 27%;
        flex-basis: 27%;
    margin: 0 0 6%;
  }
  article.news-single div.main-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  article.news-single div img {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    width: 640px;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  article.news-single div div {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    padding: 30px 40px;
  }
  article.news-single div div h1 {
    margin: 0;
    font-size: 30px;
    height: 270px;
  }
  article.news-single section.main-area figure {
    margin-bottom: 50px;
  }
  article.news-single section.main-area figure img {
    margin-bottom: 30px;
    width: 760px;
    height: 500px;
  }
  article.news-single section.main-area figcaption {
    margin: 0 auto;
    width: 760px;
  }
  article.gakumonsai nav.gk-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  article.gakumonsai section.gk-hero, article.gakumonsai section.gk-about, article.gakumonsai section.gk-lecture, article.gakumonsai section.gk-schedule, article.gakumonsai section.gk-access {
    padding-top: 140px;
  }
  article.gakumonsai section.gk-access div.gk-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  article.gakumonsai section.gk-access div iframe {
    height: 300px;
  }
  article.gakumonsai section p.lecture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 20px;
  }
  article.gakumonsai section ul.lecture-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  article.gakumonsai section ul.lecture-ul li {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    margin: 0 1.6% 20px;
  }
  article.gakumonsai section table.lecture-tb thead {
    display: table-row-group;
  }
  article.gakumonsai section table.lecture-tb th, article.gakumonsai section table.lecture-tb td {
    display: table-cell;
    border: 5px solid #fff;
  }
  article.gakumonsai section table.lecture-tb th {
    border-radius: 0;
    width: 10%;
    vertical-align: middle;
  }
  article.gakumonsai section table.lecture-tb td {
    position: relative;
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 22.5%;
    text-align: center;
    vertical-align: middle;
  }
  article.gakumonsai section table.lecture-tb td:before {
    display: none;
  }
  article.gakumonsai section table.lecture-tb td:last-child {
    width: 13%;
  }
  article.gakumonsai section table.lecture-tb td.no-display {
    display: table-cell;
  }
  article.gakumonsai section span.icon-offline, article.gakumonsai section span.icon-online {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 40px;
    height: initial;
    font-size: 1rem;
  }
  a.btn-to-company {
    height: 100px;
  }
  a.btn-to-company span:first-child {
    margin-left: 30px;
    font-size: 30px;
  }
  a.btn-to-company span:last-child {
    margin-right: 30px;
    font-size: 1.5rem;
  }
  div.btn-continer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  a.tow-col-btn {
    font-size: 1.5rem;
    height: 100px;
  }
  dl.profile-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  dl.profile-list dt {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    padding: 0 10px;
    font-size: 1rem;
    font-weight: normal;
  }
  dl.profile-list dd {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 0 10px;
  }
  dl.profile-list dd span.kikoucho {
    line-height: 24px;
  }
  dl.definition-list {
    margin-bottom: 100px;
  }
  dl.definition-list dt {
    padding: 14px 10px;
  }
  dl.participants-list {
    margin-bottom: 100px;
  }
  dl.participants-list dt {
    padding: 14px 10px;
  }
  dl.participants-list dd table, dl.participants-list dd th, dl.participants-list dd td {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  dl.participants-list dd th {
    width: 15%;
  }
  dl.participants-list dd td {
    width: 15%;
  }
  dl.document {
    font-size: 1rem;
  }
  dl.document dt {
    padding: 10px 0;
  }
  dl.document dd {
    -webkit-box-flex: 9;
        -ms-flex: 9;
            flex: 9;
    padding: 10px;
  }
  dl.access-list dt {
    padding: 0;
  }
  ul.mechanism-list li a {
    padding: 40px 50px;
  }
  img.line-map {
    margin: 50px 0;
    width: 800px;
  }
  iframe.googlemap {
    width: 100%;
    height: 600px;
  }
  .h-bottom-line::after {
    width: 152px;
    height: 4px;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  div.content {
    margin: 0 auto;
    padding: 40px 0 150px;
    width: 100%;
  }
  div.line-deer-f:after {
    width: 155px;
    height: 145px;
    bottom: -2px;
    right: 2%;
  }
  div.line-deer-m {
    margin-top: 100px;
    max-width: 1200px;
  }
  div.line-deer-m:after {
    width: 136px;
    height: 210px;
    bottom: -2px;
  }
  .slick-dots {
    bottom: -35px !important;
  }
  .slick-dots li button:before {
    color: #3CAB84 !important;
    font-size: 15px !important;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1 !important;
  }
  ul.nav-open {
    display: block !important;
    -webkit-transition: .3;
    transition: .3;
  }
  div.news-single-list {
    text-align: right;
  }
  /* ========================================= */
  /* ================= 各要素 ================= */
  /* ========================================= */
  html {
    font-size: 100%;
  }
  main {
    padding-top: 0;
  }
  header {
    position: relative;
  }
  footer {
    display: none;
  }
  nav.header-nav div.burger-menu .btn-trigger {
    position: relative;
    width: 40px;
    height: 22px;
    cursor: pointer;
  }
  nav.header-nav div.burger-menu .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #231815;
    border-radius: 0;
  }
  nav.header-nav div.burger-menu .btn-trigger, nav.header-nav div.burger-menu .btn-trigger span {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(2) {
    top: 10px;
  }
  nav.header-nav div.burger-menu .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  nav.header-nav div.burger-menu #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  nav.header-nav ul.contact-access li:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav.header-pc-menu ul {
    width: 100%;
  }
  nav.side-nav {
    display: none;
  }
  section div.container-10k {
    max-width: initial;
  }
  section div.container-12k {
    max-width: initial;
  }
  section.introduction div.univ-old p.univ-nara-education span.ja, section.introduction div.univ-old p.univ-nara-womens span.ja {
    font-size: 30px;
    line-height: 1.2;
  }
  section.introduction div.univ-old p.univ-nara-education span.en, section.introduction div.univ-old p.univ-nara-womens span.en {
    font-size: 18px;
    line-height: 1.5;
  }
  section.introduction div.univ-old p.univ-nara-education:after {
    background-size: 66px;
    width: 70px;
    height: 70px;
  }
  section.introduction div.univ-old p.univ-nara-womens:after {
    background-size: 66px;
    width: 70px;
    height: 70px;
  }
  section.continer {
    padding: 50px 20px;
  }
  .slick-dots {
    bottom: -35px !important;
  }
  .slick-dots li button:before {
    color: #3CAB84 !important;
    font-size: 15px !important;
  }
  .slick-dots li.slick-active button:before {
    opacity: 1 !important;
  }
  ul.nav-open {
    display: block !important;
    -webkit-transition: .3;
    transition: .3;
  }
}
/*# sourceMappingURL=style.css.map */