<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =======================================

  ContentsElements

======================================= */
body {
  background: #DEE1E6;
}

/* ------------------------------------
  breadcrumbs
------------------------------------ */
.breadcrumbs {
  margin: 0 30px;
  position: absolute;
  top: 95px;
  right: 0;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
}
.breadcrumbs .home {
  padding: 0 0 0 18px;
  position: relative;
}
.breadcrumbs .home::before {
  content: '\e921';
  font-family: 'komazawa';
  display: block;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

/*-- Hover --*/
.breadcrumbs a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (min-width: 768px) {
  body:not(.tab_view) .breadcrumbs a:hover {
    opacity: 0.7;
  }
}

/* ------------------------------------
  layout
------------------------------------ */
.main_inner {
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
}

@media only screen and (max-width: 767px) {
  .main_inner {
    padding: 30px 6%;
  }
}

/* ------------------------------------
  sort_link
------------------------------------ */
.sort_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sort_link:last-of-type {
  margin: 20px 0 0 0;
}
.sort_link li:first-child {
  margin: 0 1px 0 0;
}
.sort_link li a {
  padding: 17px 32px;
  display: block;
  font-size: 1.4rem;
  text-align: center;
  background: #fff;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.sort_link li span {
  padding: 0 25px 0 0;
  position: relative;
}
.sort_link li span::before {
  content: '\e90a';
  font-family: 'komazawa';
  display: block;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}

@media only screen and (max-width: 767px) {
  .sort_link li {
    width: 50%;
  }
  .sort_link li a {
    padding: 17px 0;
  }
  .sort_link li span {
    padding: 0 20px 0 0;
    display: inline-block;
  }
}

/*-- Hover --*/
@media (min-width: 768px) {
  body:not(.tab_view) .sort_link li a:hover {
    opacity: 0.7;
  }
  body:not(.tab_view) .sort_link li:hover span::before {
    right: -5px;
  }
}

/* ------------------------------------
  result_cont
------------------------------------ */
.result_cont {
  margin: 1px 0;
}

/* ------------------------------------
  result_head
------------------------------------ */
.result_head {
  background: rgba(255, 255, 255, 0.8);
}
.result_head .result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 36px 40px;
  border-bottom: 1px solid #d4d1d8;
}
.result_head .result .sort_word {
  width: 100%;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.result_head .result .sort_word .content {
  width: calc(100% - 100px);
  font-size: 2.4rem;
  line-height: 1.3;
  color: #207ae1;
  word-break: break-all;
}
.result_head .result .result_amount {
  width: 100px;
  font-size: 1.6rem;
  text-align: right;
}
.result_head .result .result_amount span {
  font-size: 2.8rem;
  line-height: 1.3;
  color: #207ae1;
}
.result_head .purpose {
  padding: 27px 40px;
}
.result_head .purpose dt {
  margin: 0 0 5px;
}
.result_head .purpose ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.result_head .purpose li {
  width: calc(100% / 4 - 24px / 4);
  margin: 0 8px 8px 0;
  text-align: center;
  background: #fff;
}
.result_head .purpose li:nth-child(4n) {
  margin-right: 0;
}
.result_head .purpose li label {
  width: 100%;
  height: 100%;
  padding: 10px 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #301e41;
  line-height: 1.2;
  font-size: 1.4rem;
  border: 1px solid #d4d1d8;
  -webkit-transition: border-color 0.3s, color 0.3s ease-out;
  transition: border-color 0.3s, color 0.3s ease-out;
}
.result_head .purpose li input {
  display: none;
}
.result_head .purpose li input[type='checkbox']:checked + label {
  color: #007ae1;
  border: 1px solid #007ae1;
}

@media only screen and (max-width: 1449px) {
  .result_head .purpose li label .sp {
    display: block !important;
  }
}

@media only screen and (max-width: 1179px) {
  .result_head .purpose li label {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .result_head {
    overflow: hidden;
  }
  .result_head .result {
    display: block;
    padding: 6%;
  }
  .result_head .result .sort_word {
    width: 100%;
    font-size: 1.6rem;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .result_head .result .sort_word .content {
    width: auto;
    display: inline-block;
  }
  .result_head .result .result_amount {
    width: 100%;
  }
  .result_head .purpose {
    padding: 6%;
  }
  .result_head .purpose ul {
    padding: 0 0 10px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .result_head .purpose li,
  .result_head .purpose li:nth-child(4n) {
    width: auto;
    min-width: 113px;
    margin: 0 2px 0 0;
    display: inline-block;
  }
  .result_head .purpose li:last-child {
    margin: 0;
  }
  .result_head .purpose li label {
    padding: 8px 10px;
    font-size: 1.4rem;
  }
}

/* ------------------------------------
  result_body
------------------------------------ */
.result_body .nohit {
  margin: 20px 0 0 0;
  padding: 40px;
  color: #fff;
  line-height: 1.6;
  background: #bcbfc2;
  text-align: center;
  opacity: 0;
  transition: all 0.3s linear;
}
.result_body .nohit span {
  display: block;
  font-size: 3.0rem;
  line-height: 1.4;
}
.result_body article {
  margin: 4px 0 0 0;
  padding: 25px 30px;
  position: relative;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.result_body article.show {
  opacity: 1;
}
.result_body article .connect_detail {
  margin: 25px 0 0;
}
.result_body article .new_label {
  width: 46px;
  height: 46px;
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 46px;
  text-align: center;
  position: absolute;
  top: -13px;
  left: -13px;
  background: #e69f1f;
  border-radius: 50%;
  letter-spacing: -0.01px;
}
.result_body article h3 {
  padding-right: 2em;
  line-height: 1.3;
  position: relative;
}
.result_body article h3 a {
  font-size: 1.8rem;
  color: #007ae1;
}
.result_body article h3 a::after {
  content: '\e937';
  font-family: 'komazawa';
  margin: 0 0 0 5px;
  font-size: 1.5rem;
}
.result_body article dl {
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #dedde1;
}
.result_body article dt {
  width: 100px;
  margin-top: 18px;
  margin-bottom: auto;
  line-height: 1;
  color: #82778c;
}
.result_body article dd {
  width: calc(100% - 100px);
  padding: 10px 0;
}
.inactive {
  background: #bcbfc2 !important;
}

/* connect_info */
.result_body .connect_info dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.result_body .connect_info dd li {
  min-width: 140px;
  margin: 0 10px 0 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #492d65;
  border-radius: 8px;
}
.result_body .connect_info dd li:last-child {
  margin: 0;
}

/* db_info */
.result_body .db_info {
}
.result_body .db_info dd {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.result_body .db_info .discovery {
  margin: 0 0 0 10px;
  padding: 5px 33px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border: 1px solid #222;
  background: #fff;
}
.result_body .db_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.result_body .db_info li {
  position: relative;
}
.result_body .db_info li:not(:last-child) {
  padding: 0 30px 0 0;
}
.result_body .db_info li:not(:last-child)::after {
  content: '/';
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.result_body .db_info li a {
  color: #207ae1;
}
.result_body .db_info li a::after {
  content: '\e937';
  font-family: 'komazawa';
  margin: 0 0 0 5px;
}

/* purpose_info */
.result_body .purpose_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.result_body .purpose_info li {
  position: relative;
  font-size: 1.4rem;
}
.result_body .purpose_info li:not(:last-child) {
  padding: 0 30px 0 0;
}
.result_body .purpose_info li:not(:last-child)::after {
  content: '/';
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* recmmend_info */
.result_body .recmmend_info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.result_body .recmmend_info li {
  width: 30px;
  height: 30px;
  line-height: 27px;
  margin: 0 10px 0 0;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 8px;
}
.result_body .recmmend_info .buddhism {
  color: #814916;
  border: 1px solid #814916;
}
.result_body .recmmend_info .japanese,
.result_body .recmmend_info .english,
.result_body .recmmend_info .geography,
.result_body .recmmend_info .history,
.result_body .recmmend_info .sociology,
.result_body .recmmend_info .psychology {
  color: #0d7dbd;
  border: 1px solid #0d7dbd;
}
.result_body .recmmend_info .economics {
  color: #c58800;
  border: 1px solid #c58800;
}
.result_body .recmmend_info .law {
  color: #72b531;
  border: 1px solid #72b531;
}
.result_body .recmmend_info .business {
  color: #38723f;
  border: 1px solid #38723f;
}
.result_body .recmmend_info .health {
  color: #e35e2f;
  border: 1px solid #e35e2f;
}
.result_body .recmmend_info .globalmedia {
  color: #e14a7f;
  border: 1px solid #e14a7f;
}

/* description */
.result_body .description dd {
  font-size: 1.4rem;
}

/* tab */
.tab_view .result_body .connect_info dd li {
  letter-spacing: -0.01em;
}

/*omit*/
.omit.result_body article h3 span.nav_icon::before {
  content: '\e91d';
  font-family: 'komazawa';
  display: block;
  color: #007ae1;
  font-size: 2.2rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.omit.result_body article h3.active span.nav_icon::before {
  content: '\e91a';
}
.omit.result_body article .connect_detail {
  display: none;
}

@media (max-width: 1200px) {
  .result_body .connect_info dd li {
    min-width: 109px;
    margin: 0 5px 0 0;
    letter-spacing: -0.01em;
    font-size: 1.1rem;
  }
  .result_body .db_info .discovery {
    padding: 5px 20px;
    font-size: 1.1rem;
  }
  .result_body .recmmend_info li {
    width: 25px;
    height: 25px;
    line-height: 24px;
    margin: 0 5px 0 0;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .result_body .nohit {
    padding: 6%;
    font-size: 1.4rem;
  }
  .result_body .nohit span {
    margin: 0 0 10px;
    font-size: 2.0rem;
  }
  .result_body article {
    padding: 6%;
  }
  .result_body article .connect_detail {
    margin: 20px 0 0;
  }
  .result_body article .new_label {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .result_body article dl {
    min-height: auto;
    display: block;
    padding: 15px 0;
  }
  .result_body article dt {
    width: 100%;
    margin: 0 0 10px;
  }
  .result_body article dd {
    width: 100%;
    padding: 0;
  }
  .result_body .connect_info dd li {
    min-width: 32%;
    margin: 0 2% 0 0;
    font-size: 2.5vw;
    letter-spacing: -0.01em;
  }
  .result_body .db_info dd {
    display: block;
  }
  .result_body .db_info .discovery {
    margin: 10px auto 0;
    padding: 5px 20px;
    font-size: 1.1rem;
    display: block;
  }
  .result_body .recmmend_info ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .result_body .recmmend_info li {
    width: 30px;
    height: 30px;
    line-height: 29px;
    margin: 5px 5px 0 0;
  }
}

/*-- Hover --*/
.result_body article h3 a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.result_body .db_info .discovery {
  -webkit-transition: color 0.3s, background-color 0.3s ease-out;
  transition: color 0.3s, background-color 0.3s ease-out;
}

@media (min-width: 768px) {
  body:not(.tab_view) .result_body article h3 a:hover {
    opacity: 0.7;
  }
  body:not(.tab_view) .result_body .db_info .discovery:hover {
    color: #fff;
    background: #222;
  }
}

/* ------------------------------------
  important news
------------------------------------ */
.news_head {
  padding: 0 0 35px;
  margin: 0 0 40px;
  border-bottom: 1px solid #d4d1d8;
}
.news_head .category {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #e69f1f;
}
.news_head h1 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  line-height: 1.4;
  color: #301e41;
}
.news_head .date {
  font-size: 1.4rem;
  color: #788085;
}
.news_foot {
  margin: 1px 0 0 0;
}
.news_foot a {
  padding: 17px 32px;
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  background: #fff;
}
.news_foot span {
  padding: 0 25px 0 0;
  position: relative;
}
.news_foot span::before {
  content: '\e90a';
  font-family: 'komazawa';
  display: block;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
}

@media only screen and (max-width: 767px) {
  .news_head {
    padding: 0 0 25px;
    margin: 0 0 30px;
  }
}

/*-- Hover --*/
.news_foot a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (min-width: 768px) {
  body:not(.tab_view) .news_foot a:hover {
    opacity: 0.7;
  }
}

/* ------------------------------------
  title_area
------------------------------------ */
.title_area {
  padding: 110px 0 35px;
  margin: 0 0 40px;
  color: #301e41;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #d4d1d8;
}
.title_area::before {
  content: '';
  width: 90px;
  height: 110px;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.title_area.pg_notice::before {
  background: url(/facilities/library/searchtool/files/icon_notice.png) no-repeat center center;
  background-size: 88px auto;
}
.title_area.pg_description::before {
  background: url(/facilities/library/searchtool/files/icon_description.png) no-repeat center center;
  background-size: 88px auto;
}
.title_area.pg_vpn::before {
  background: url(/facilities/library/searchtool/files/icon_vpn.png) no-repeat center center;
  background-size: 88px auto;
}
.title_area.pg_link::before {
  background: url(/facilities/library/searchtool/files/icon_link.png) no-repeat center center;
  background-size: 60px auto;
}
.title_area span {
  display: block;
  font-size: 1.2rem;
}
.title_area h1 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  line-height: 1.4;
}
.title_area.pg_description,
.title_area.pg_link {
  margin: 0;
  border: none;
}

@media only screen and (max-width: 767px) {
  .title_area {
    padding: 80px 0 35px;
    margin: 0 0 40px;
    color: #301e41;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #d4d1d8;
  }
  .title_area::before {
    content: '';
    width: 90px;
    height: 80px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .title_area.pg_notice::before {
    background: url(/facilities/library/searchtool/files/icon_notice.png) no-repeat center center;
    background-size: 60px auto;
  }
  .title_area.pg_description::before {
    background: url(/facilities/library/searchtool/files/icon_description.png) no-repeat center center;
    background-size: 60px auto;
  }
  .title_area.pg_vpn::before {
    background: url(/facilities/library/searchtool/files/icon_vpn.png) no-repeat center center;
    background-size: 60px auto;
  }
  .title_area.pg_link::before {
    background: url(/facilities/library/searchtool/files/icon_link.png) no-repeat center center;
    background-size: 40px auto;
  }
}

/* ------------------------------------
  description
------------------------------------ */
.number {
  counter-reset: num;
  list-style: none;
}
.number &gt; li {
  padding: 20px 0 20px 60px;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #dedde1;
}
.number &gt; li:before {
  content: counter(num);
  counter-increment: num;
  width: 34px;
  height: 34px;
  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: #ff0000;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 1.2em;
  left: 0;
  background: #f5dcdc;
  border: 1px solid #ff0000;
  border-radius: 50%;
}
.number &gt; li dl {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dotted #d4d1d8;
}
.number &gt; li dl:last-child {
  padding: 20px 0 0;
  border-bottom: none;
}
.number &gt; li dt {
  width: 140px;
  margin: 0 30px 0 0;
  padding: 5px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  background: #492d65;
  border-radius: 8px;
}
.number &gt; li dd {
  width: calc(100% - 170px);
  font-size: 1.4rem;
  line-height: 1.6;
}
.faculty_list {
  margin: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.faculty_list li {
  width: 25%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  border-bottom: 1px dotted #d4d1d8;
}
.faculty_list li:nth-last-child(-n + 4) {
  padding: 20px 20px 0 0;
  border-bottom: none;
}
.faculty_list li span {
  width: 30px;
  height: 30px;
  line-height: 29px;
  margin: 0 10px 0 0;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}
.faculty_list .buddhism span {
  color: #814916;
  border: 1px solid #814916;
}
.faculty_list .japanese span,
.faculty_list .english span,
.faculty_list .geography span,
.faculty_list .history span,
.faculty_list .sociology span,
.faculty_list .psychology span {
  color: #0d7dbd;
  border: 1px solid #0d7dbd;
}
.faculty_list .economics span {
  color: #c58800;
  border: 1px solid #c58800;
}
.faculty_list .law span {
  color: #72b531;
  border: 1px solid #72b531;
}
.faculty_list .business span {
  color: #38723f;
  border: 1px solid #38723f;
}
.faculty_list .health span {
  color: #e35e2f;
  border: 1px solid #e35e2f;
}
.faculty_list .globalmedia span {
  color: #e14a7f;
  border: 1px solid #e14a7f;
}

/* tab */
.tab_view .number &gt; li dt {
  letter-spacing: -0.01em;
}

@media only screen and (max-width: 1399px) {
  .faculty_list li,
  .faculty_list li:nth-last-child(-n + 4) {
    width: 33.333%;
    padding: 20px 0;
    border-bottom: 1px dotted #d4d1d8;
  }
  .faculty_list li:nth-last-child(-n + 3) {
    padding: 20px 20px 0 0;
    border-bottom: none;
  }
}

@media only screen and (max-width: 1099px) {
  .faculty_list li {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .number &gt; li {
    padding: 10px 0 10px 35px;
    line-height: 1.6;
  }
  .number &gt; li:before {
    width: 25px;
    height: 25px;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    top: 0.9em;
  }
  .number &gt; li dl {
    padding: 10px 0;
    display: block;
  }
  .number &gt; li dl:last-child {
    padding: 10px 0 0;
  }
  .number &gt; li dt {
    margin: 0 0 5px;
  }
  .number &gt; li dd {
    width: 100%;
  }

  .faculty_list {
    margin: 10px 0 0 0;
  }
  .faculty_list li,
  .faculty_list li:nth-last-child(-n + 3),
  .faculty_list li:nth-last-child(-n + 4) {
    width: 50%;
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px dotted #d4d1d8;
  }
  .faculty_list li:nth-last-child(-n + 2) {
    padding: 10px 10px 0 0;
    border-bottom: none;
  }
  .faculty_list li span {
    width: 22px;
    height: 22px;
    line-height: 20px;
    margin: 0 5px 0 0;
  }
}

/* ------------------------------------
  vpn
------------------------------------ */
.shadow {
  border-radius: 5px;
  box-shadow: 0 0 10px #e8e8e8;
}

/* ------------------------------------
  entry_base
------------------------------------ */
.entry_base {
  color: #301e41;
}
.entry_base h2 {
  margin: 0 0 35px;
  padding: 0 0 0 15px;
  font-size: 2rem;
  line-height: 1.6;
  position: relative;
}
.entry_base h2::before {
  content: '';
  width: 4px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  background: #492d65;
}
.entry_base h3 {
  margin: 0 0 35px;
  padding: 0 0 0 15px;
  font-size: 1.8rem;
  line-height: 1.6;
  position: relative;
}
.entry_base h3::before {
  content: '';
  width: 10px;
  height: 4px;
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  background: #492d65;
}
.entry_base p {
  margin: 0 0 30px;
  line-height: 2;
}

/* link */
.entry_base a {
  color: #207ae1;
  display: inline-block;
  position: relative;
}
.entry_base a::before {
  content: '\e90a';
  font-family: 'komazawa';
}
.entry_base .icon_blank::before {
  content: none;
}
.entry_base .icon_blank::after {
  margin: 0 0 0 5px;
  content: '\e937';
  font-family: 'komazawa';
}

/* table */
.entry_base table {
  width: 100%;
  margin: 0 0 35px;
  border-collapse: collapse;
}
.entry_base table th,
.entry_base table td {
  vertical-align: middle;
}

.entry_base table th,
.entry_base table td {
  padding: 10px 15px;
  word-wrap: break-word;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.entry_base table th {
  background: #d4d1d8;
  border: 1px solid #dedde1;
}
.entry_base table td {
  background: #fff;
  border: 1px solid #dedde1;
}
.entry_base table p {
  margin: 0;
  padding: 0;
  text-align: match-parent;
}

/* define_list */
.entry_base .define_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  line-height: 1.6;
  border-top: 1px solid #dedde1;
}
.entry_base .define_list dt {
  width: 48%;
  margin: 0 4% 0 0;
}
.entry_base .define_list dd {
  width: 48%;
}

/* img */
.entry_base img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .entry_base h2 {
    margin: 0 0 20px;
  }
  .entry_base h3 {
    margin: 0 0 20px;
  }
  .entry_base p {
    margin: 0 0 20px;
    line-height: 1.8;
  }
  .entry_base table {
    margin: 0 0 20px;
  }
  .entry_base table th,
  .entry_base table td {
    margin: -1px 0 0 0;
    padding: 10px 15px;
    display: block;
  }
  .entry_base table.noScroll th,
  .entry_base table.noScroll td {
    width: 100% !important;
  }
  .entry_base .tblScroll {
    margin: 0 0 20px;
    overflow-x: auto;
  }
  .entry_base .tblScroll table {
    width: 640px;
    margin: 0;
  }
  .entry_base .tblScroll th,
  .entry_base .tblScroll td {
    border: 1px solid #ebebeb;
    display: table-cell;
  }
  .entry_base .tblScroll::-webkit-scrollbar {
    height: 5px;
  }
  .entry_base .tblScroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  .entry_base .tblScroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #666;
  }
  .entry_base .define_list {
    display: block;
    padding: 10px 0;
  }
  .entry_base .define_list:first-child {
    border: none;
  }
  .entry_base .define_list dt {
    width: 100%;
    margin: 0;
  }
  .entry_base .define_list dd {
    width: 100%;
  }
}

/*-- Hover --*/
.entry_base a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (min-width: 768px) {
  body:not(.tab_view) .entry_base a:hover {
    opacity: 0.7;
  }
}

/* ------------------------------------
  footer_nav
------------------------------------ */
.footer_nav {
  margin: 0 0 75px;
}
.footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer_nav li {
  position: relative;
  padding: 0 35px 0 0;
}
.footer_nav li:not(:last-child)::before {
  content: '|';
  display: block;
  position: absolute;
  top: -1px;
  right: 14px;
}
.footer_nav li:last-child {
  margin: 0;
}

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

/*-- Hover --*/
.footer_nav a {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (min-width: 768px) {
  body:not(.tab_view) .footer_nav a:hover {
    opacity: 0.7;
  }
}
</pre></body></html>