@charset "UTF-8";
/* ヘッダー・フッター用WEBフォント */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho+B1&display=swap');
/* トップ 蜂の巣 */
html, body, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  vertical-align: middle;
}

input {
  outline: 0;
}

button,
input {
  *overflow: visible;
  line-height: normal;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

textarea {
  overflow: auto;
  vertical-align: top;
  font-family: sans-serif;
}

/* ベース
---------------------------------- */
html {
  font-size: 62.5%;
  min-height: 100%;
  height: 100%;
}
html.font-small {
  font-size: 37.5%;
}
html.font-normal {
  font-size: 62.5%;
}
html.font-large {
  font-size: 87.5%;
}

body {
  color: #333;
  background: #f2f4f6;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.6;
  min-width: 1040px;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    min-width: auto;
  }
  body.menu-open {
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
  }
}
a:link, a:visited {
  color: #3177c5;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

/* レイアウト　*/
#g-wrapper {
  overflow: hidden;
}

/* ステート（状態） */
.is-left {
  float: left;
}

.is-right {
  float: right;
}

.is-center {
  text-align: center;
}

.is-hidden {
  display: none;
}

.image.is-left,
img.is-left {
  margin-right: 10px;
  margin-bottom: 10px;
}
.image.is-right,
img.is-right {
  margin-left: 10px;
  margin-bottom: 10px;
}

#g-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
}
/* 共通デザイン */
.c-list-view-btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: right;
}
.c-list-view-btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: end;
}
a.c-list-view-btn-link:link,
a.c-list-view-btn-link:visited {
  text-decoration: none;
}
a.c-list-view-btn-link:hover {
  text-decoration-line: underline;
}
.c-list-view-btn-txt {
  font-family: "Shippori Mincho B1",serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.96px;
}
.c-list-view-btn-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #C9CACC;
  border-radius: 50%;
  margin-left: 12px;
  background-color: #ffffff;
  overflow: hidden;
  transition: 0.2s;
}
.c-list-view-btn-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/common/images/icon_right.png');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.c-list-view-btn-link:hover .c-list-view-btn-icon {
  background-color: #eef0f2;
}
.c-list-view-btn-link:hover .c-list-view-btn-icon::after {
  animation: reveal-icon 0.5s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .c-list-view-btn{
    font-size: 16px;
  }
}
.icon-new-window{
  position: relative;
}
.icon-new-window::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('/common/images/icon_window.png');
  background-repeat: no-repeat;
  background-size: contain;
}
@keyframes reveal-icon {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* ヘッダー */
.Cormorant-Garamond-font {
font-family: "Cormorant Garamond", serif;
}
.Shippori-Mincho-B1-font {
font-family: "Shippori Mincho B1", serif;
}
.Noto-Sans-font {
  font-family: "Noto Sans", sans-serif;
}
.sp-header, .sp-menu-overlay, .sp-search-bar-wrapper{
  display: none;
}
header.g-header{
  position: relative;
  color: #101113;
  margin: 0 auto;
  padding-top: 126px;
  background: #ffffff;
  font-size: 16px;
  letter-spacing: 0.96px;
  z-index: 999;
}
header.g-header a:link,header.g-header a:visited {
  color: #101113;
}
.fixed-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #c9cacc;
}
header.g-header a:link {
  color: #101113;
}
header .other-nav-list a:visited{
  color: #ffffff
}
header .header-top-area,header .header-bottom-area {
  margin: 0 auto;
}
header .g-header .fixed-area a:link,header .g-header .fixed-area a:visited {
  color: #101113;
}
header .header-top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9db;
}
header .site-logo {
  margin: 0 clamp(12px, 1vw, 16px) 0 clamp(16px, 1.6vw, 32px);
}
header .site-logo img{
  width: clamp(150px, 13vw, 180px);
}
header .header-top-area .school-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
  justify-content: flex-end;
  font-weight: 400;
}
header .external-nav {
  display: flex;
  flex-direction: column;
  margin-right: 16px;
  padding:13.24px 0;
}
header .external-nav-top,header .external-nav-bottom{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.5;
}
header .external-nav-top input{
  width: 195px;
  height: 30px;
  padding-left: 8px;
  border: 1px solid #d9d9db;
}
header .external-nav li {
  margin-right: 16px;
}
header .external-nav li a {
  position: relative;
}
header .external-nav-top {
  margin-bottom: 10px;
}
header .external-nav-top li a {
  padding-right: 16px;
}
header .external-nav-top li a:link{
  font-size: 12px;
  text-underline-offset: 0.21em;
}
header .external-nav-top .language::after{
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 24px;
  width: 16px;
  height: 16px;
  background-image: url('/common/images/icon_chevron_down.png');
  background-repeat: no-repeat;
  background-size: contain;
}
header .external-nav-top .is-open .language::after{
  background-image: url('/common/images/icon_chevron_active.png');
}
header .language-menu-container {
  position: relative;
}
header .language-dropdown {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background-color: #ffffff;
  margin-top: 0;
  border-top: 1px solid #c9cacc;
  border-bottom: 1px solid #c9cacc;
  z-index: 1100;
}
header .external-nav-top a.language:hover {
  text-decoration: none;
}
header .language-dropdown li {
  position: relative;
  width: 135px;
  margin: 0;
  background-color: #eff0f2;
  box-sizing: border-box;
  z-index: 2;
  overflow: hidden;
  transition: 0.5s;
}
header .language-dropdown li + li {
  border-top: 1px solid #c9cacc;
}
header .language-dropdown li a {
  display: block;
  padding: 15px 0 14px 8px;
  cursor: pointer;
}
header .external-nav .language-dropdown li a:link:hover {
  text-decoration: underline;
  background-color: #e1e3e8;
}
header .language-dropdown li.school-color:hover{
  text-decoration: none;
}
header .language-dropdown li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8.5px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
header .language-dropdown .icon-new-window::after {
  background-image: url('/common/images/icon_window.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
header .language-dropdown .icon-pdf::after {
  background-image: url('/common/images/icon_pdf.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
header .language-dropdown .icon-new-window:hover::after,
header .language-dropdown .icon-pdf:hover::after {
  animation: nav-link-animation 0.6s ease-in-out 1;
}
.language-menu-container.is-open .language-dropdown {
  display: block;
}
header .external-nav-top .voice-reading {
  display: flex;
  align-items: flex-end;
}
header .external-nav-top .voice-reading:hover {
  text-decoration: underline;
}
header .external-nav-top .voice-reading a:link{
  display: inline-block;
  position: relative;
  font-size: 13px;
  text-align: left;
  line-height: 150%; /* 18px */
  letter-spacing: 0.72px;
  max-width: 152px;
  height: 30px;
  border: 1px solid #101113;
  background: #ffffff;
  padding: 6px 24px 6px 8px;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
  z-index: 2;
  transition: 0.5s;
}
header .external-nav-top .voice-reading a span {
  position: relative;
  z-index: 2;
}
header .external-nav-top .voice-reading a span:hover {
  text-decoration: none;
}

header .external-nav-top .voice-reading a:hover {
  background-color: #eff0f2;
}
header .external-nav-top .voice-reading .icon-new-window::after{
  content: "";
  display: block;
  position: absolute;
  right: -16px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: url("/common/images/icon_window.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}
header .external-nav-top .voice-reading:hover .icon-new-window::after {
  animation: nav-link-animation 0.6s ease-in-out 1;
}
header .external-nav li:last-child {
  margin-right: 0px;
}
header .external-nav li a:link{
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 17.55px */
  letter-spacing: 0.39px;
  text-decoration: underline;
}
header .external-nav-top .language{
  padding: 20px 16px 20px 0;
}
header .external-nav-top .is-open .language{
  color: #990000;
} 
header .external-nav .language-dropdown li a:link{
  font-size: 14px;
  letter-spacing: 1.7px;
  text-decoration: none;
}
header .external-nav .language-dropdown li.school-color a:link{
  font-size: 14px;
  color: #990000;
}
header .external-nav .language-dropdown li.school-color a:hover{
  text-decoration: underline;
  text-decoration-color: #990000;
}
header .external-nav .language-dropdown li.school-color a:visited{
  color: #990000;
}
header .external-nav-bottom li{
  margin-right:clamp(12px, 1vw, 20px);
  white-space: nowrap;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 14.95px */
  letter-spacing: 0.65px;
}
header .external-nav-bottom li:last-child {
  margin-right: 0px;
}
header .external-nav-bottom li a:hover {
  text-decoration: none;
}
header .external-nav-bottom li a:link {
  font-size: 13px;
}
header .external-nav-bottom li a.icon-new-window:link {
  padding-right: 10px;
}
header .other-nav-list{
  display: flex;
  width: 100%;
  max-width: 426px;
  height: 100%;
  line-height: 1.3;
}
header .other-nav-list li {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  background: #101113;
  border-right: 1px solid #ffffff;
  box-sizing: border-box;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}
header .other-nav-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6b6c70;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.5s;
  box-sizing: border-box;
}
header .other-nav-list li:hover::before {
  transform: translateX(0);
}
header .other-nav-list li:hover {
  text-decoration: underline;
  text-decoration-color: #ffffff;
}
header .other-nav-list li:last-child{
  border-right: none;
}
header .other-nav-list .search {
  position: relative;
  background: #ffffff;
  border-left: 1px solid #d9d9db;
  cursor: pointer;
  overflow: hidden;
}
header .other-nav-list li.search:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eff0f2;
  z-index: 1;
  transform: translateX(-100%);
  transition: transform 0.5s;
  box-sizing: border-box;
}
header .other-nav-list li.search:hover {
  text-decoration: underline;
  text-decoration-color: #101113;
  background-color: #ffffff;
}
header .other-nav-list li.search:hover::before {
  transform: translateX(0);
  text-decoration: underline;
}
header .other-nav-list li.search.is-active::before {
  display: none;
}
header .other-nav-list .search a{
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: #101113;
  z-index: 2;
}
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  display: none;
}
header .other-nav-list .search {
  position: relative;
}
header .other-nav-list .search.is-active {
  border-left: 1px solid #990000;
}
header .other-nav-list .search.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #990000;
  z-index: 1;
}
header .other-nav-list .search.is-active:hover {
  text-decoration-color: #990000;
}
header .other-nav-list .search.is-active a {
  color: #990000;
}
header .other-nav-list .conversion {
  background: #990000;
}
header .other-nav-list .conversion::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #720000;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.5s;
  box-sizing: border-box;
}
header .other-nav-list .conversion:hover::before {
  text-decoration: underline;
  text-decoration-color: #ffffff;
  transform: translateX(0);
}
header .other-nav-list 
header .other-nav-list li:last-child {
  border-right: none;
}
header .other-nav-list li a:link {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
header .other-nav-list li.search a {
  color: #101113;
}
header .other-nav-list li img {
  width: 36px;
  height: 36px;
  margin: 0 auto 7.5px;
}
header .other-nav-list li a span {
  font-size: 11px;
  text-align: center;
  line-height: 115%; /* 12.65px */
  letter-spacing: 0.55px;
}
header .header-bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  gap: 8px;
  height: auto;
  min-height: 52px;
  padding-left: clamp(8px, 1.076vw, 83px);
  padding-right: clamp(8px, 1.076vw, 83px);
}
header .header-bottom-area li {
  text-align: center;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}
header .header-bottom-area li.nav-item {
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.5;
  height: 100%;
  padding: 4px 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}
header .header-bottom-area li.nav-item p {
  position: relative;
  transition: 0.5s;
}
header .header-bottom-area li.nav-item p:hover{
  background-color: #eff0f2;
}
header .header-bottom-area li.nav-item.is-show:hover {
  background-color: #ffffff;
  text-decoration: none;;
}
header .header-bottom-area .nav-item .nav-open a {
  max-width: 150px;
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 44px;
  padding: 0px clamp(16px, calc(0.568vw + 5.18px), 28px) 0px clamp(4px, calc(0.568vw + 5.18px), 8px);
  font-style: normal;
  font-weight: 500;
  line-height: 105%;
  letter-spacing: 0.51px;
  flex-grow: 1;
}
header .header-bottom-area .nav-item .nav-open a:focus-visible {
  box-shadow: 0 0 0 2px #000000 inset;
  outline: none;
  border-radius: 4px;
}
header .header-bottom-area .nav-item .nav-open:hover {
  text-decoration: underline;
}
header .header-bottom-area .nav-item.is-show .nav-open:hover {
  text-decoration: none;
}
header .header-bottom-area .nav-item.is-show .nav-open a::after {
  content: "";
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #990000;
}
header .header-bottom-area li.nav-item.is-show p::before{
  display: none;
}
header .header-bottom-area .nav-item .nav-open {
  display: flex;
  align-items: center;
  position: relative;
    height: 100%;

}
header .header-bottom-area .nav-item .nav-open::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 16px;
  height: 16px;
  background: url("/common/images/icon_chevron_down.png");
  background-repeat: no-repeat;
  background-size: contain;
}
header .header-bottom-area .nav-item.is-show .nav-open::after {
  background: url("/common/images/icon_chevron_active.png");
  background-repeat: no-repeat;
  background-size: contain;
}
header .header-bottom-area .nav-item.is-show .nav-open a{
  color: #990000;
}
header .header-bottom-area .nav-item.is-show .nav-open:hover::before {
  transform: none;
  transition: none;
}
header .header-bottom-area li .header-nav-title {
  position: relative;
}
header .header-bottom-area li .header-nav-title:hover{
  color : #990000;
  text-decoration: none;
}
header .header-bottom-area li .header-nav-title:link {
  font-size: clamp(12px, calc(0.568vw + 5.18px), 14px);
}
header .header-bottom-area li .nav-details {
  display: none;
  position: absolute;
  left: 50%;
  width: 100vw;
  min-width: 767px;
  transform: translateX(-50%);
  background: #eff0f2;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
header .header-bottom-area li.is-show .nav-details {
  display: block;
  border-top: 1px solid #d9d9db;
  border-bottom: 1px solid #d9d9db;
}
header .nav-details-area {
  display: flex;
  position: relative;
  min-width: 767px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(8px, 1.076vw, 83px);
  padding-right: clamp(8px, 1.076vw, 83px);
}
header .nav-item p {
  position: relative;
}
header .nav-details-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(95%);
  pointer-events: none;
}
header .nav-details-area .close-button {
  position: absolute;
  bottom: 24px;
  right: clamp(8px, 2.153vw, 83px);
  cursor: pointer;
  z-index: 2;
}
header .nav-details-area .close-button span{
  position: relative;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 400;
}
header .nav-details-area .close-button span:hover {
  text-decoration: none;
}
header .nav-details-area .close-button span a:hover {
  text-decoration: none;
}
header .nav-details-area .close-button span::after{
  content: "";
  position: absolute;
  bottom: -1px;
  right: -16px;
  width: 16px;
  height: 16px;
  background-image: url('/common/images/icon_close.png');
  background-repeat: no-repeat;
  background-size: contain;
}
header .nav-details-area .close-button span a {
  margin-right: 2px;
}
header .nav-details .nav-summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 29.5%;
  margin: 48px 0;
  background-color: #eff0f2;
  padding-left: clamp(8px, 1.076vw, 83px);
}
header .nav-details .nav-summary dl {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  width: 100%;
}
header .nav-summary dt {
  font-size: 44px;
  font-weight: 500;
  text-align: left;
  line-height: 115%; /* 50.6px */
  padding-right: clamp(8px, 1.076vw, 83px);
  margin-bottom: 24px;
}
@media screen and (max-width: 1016px) {
  header .nav-summary dt{
    font-size: 38px;
  }
}
header .nav-summary .sub-title {
  order: -1;
  font-size: 14px;
  color: #990000;
  line-height: 1;
  margin-bottom: 8px;
}
header .title-explanation {
  font-family: "Helvetica Neue",Helvetica,Arial, "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","游ゴシック","游ゴシック体","YuGothic","Meiryo","メイリオ","ＭＳ ゴシック",sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
  color: #494a4d;
  margin-bottom: 34px;
}
header dl .title-link {
  line-height: 1.5;
  text-align: left;
}
header dl .title-link a:link{
  position: relative;
  font-size: 18px;
  font-weight: 500;
}
header .nav-right-area {
  position: relative;
  background-color: #ffffff;
  flex: 1;
  padding-right: clamp(8px, 1.076vw, 83px);
}
header .nav-details .nav-link {
  display: flex;
  justify-content: space-between;
  padding: 32px 0px 75px 48px;
}
header .nav-details .nav-link ul {
  max-width: 368px;
  width: 100%;
}
header .nav-details .nav-link ul:first-child  {
  margin-right: 48px;
}
header .nav-details .nav-link ul li {
  width: 100%;
  position: relative;
  text-align: left;
  height: auto;
  padding: 0;
  border-bottom: 1px solid #d9d9db;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav-details .nav-link ul li a {
  font-size: 16px;
  width: 100%;
  padding: 14px 10px 16px 0;
}
header .nav-details .nav-link ul li a:focus-visible {
  box-shadow: 0 0 0 2px #000000 inset;
  outline: none;
  border-radius: 4px;
}

header .nav-link ul li:hover{
  opacity: 1;
  text-decoration: underline;
}
header .nav-link ul li:hover {
  background-color: #EFF0F2;
}
header .nav-link ul li::after {
	width: 24px;
	height: 24px;
	content: "";
	display: block;
  margin-right: 12px;
	background-image: url("/common/images/icon_right.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
header .nav-link ul li.icon-new-window::after {
  position: relative;
  right: initial;
  background-image: url("/common/images/icon_window.png");
  background-position: center center;
	background-repeat: no-repeat;
  transform: initial;
}
header .nav-link ul li:hover::after {
  animation: nav-link-animation 0.6s ease-in-out 1;
}
/* --- アニメーション定義 --- */
@keyframes nav-link-animation {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
header .nav-link ul li:first-child {
  border-top: 1px solid #d9d9db;
}
header .nav-link ul li a {
  display: block;
  padding: 0;
}
.pc-search-container {
  display: none;
  background-color: #ffffff;
  padding: 32px 0;
  border-top: 1px solid #d9d9db;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}
.pc-search-bar-wrapper form{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pc-search-bar-wrapper fieldset,
.pc-search-bar-wrapper p {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
}
.pc-search-bar-wrapper p::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("/common/images/icon_search_black.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1100;
}
.pc-search-bar-wrapper fieldset {
  margin-right: 16px;
}
.pc-search-bar-wrapper legend {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.pc-search-bar-wrapper input[name="q"] {
  position: relative;
  width: 700px;
  font-size: 16px;
  padding: 10px 12px 10px 44px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.pc-search-bar-wrapper button {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  width: 89px;
  height: auto;
  padding:11px;
  border: none;
  background-color: #101113;
  text-align: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}
.pc-search-bar-wrapper button:hover {
  background-color: #6b6c70;
}
.pc-search-bar-wrapper button span {
  position: relative;
  z-index: 1;
}
.pc-search-close-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  padding: 0;
  color: #555;
}
.pc-search-close-icon-x {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}
.pc-search-close-icon-x::before,
.pc-search-close-icon-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #555;
}
.pc-search-close-icon-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.pc-search-close-icon-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.pc-search-close-text {
  font-size: 10px;
  margin-top: 4px;
}

@media screen and (min-width: 885px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: flex !important;
  }

  header.g-header .header-bottom-area.pc-only {
    display: flex !important;
  }
}
@media screen and (max-width: 884px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .pc-search-container {
    display: none !important;
  }
  header .other-nav-list li::before {
    display: none;
  }
  header.g-header {
    padding-top: 56px;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.84px;
  }
  header.g-header .fixed-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1010;
  }
  header .sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding: 0 0 0 15px;
    position: relative;
    z-index: 1010;
    background: #fff;
  }
  header .sp-header .site-logo{
    margin: 0;
  }
  header .sp-header .site-logo img {
    width: 116px;
    vertical-align: middle;
  }
  header .sp-menu-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #990000;
    border: none;
    padding: 5px;
    box-sizing: border-box;
  }
  header .hamburger-icon {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 20px;
  }
  header .sp-header-icons .other-nav-list li {
    width: 56px;
    min-width: 0;
    height: 56px;
  }
  header .sp-header-icons .other-nav-list li a span {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 11.5px */
    letter-spacing: 0.5px;
  } 
  header .other-nav-list li img {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
  }
  header .other-nav-list li a:link {
    font-size: 8px;
  }
  header .hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 3px;
    background-color: #ffffff;
  }
  header .menu-text {
    color: #ffffff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 115%; /* 11.5px */
    letter-spacing: 0.5px;
  }
  header .sp-header-icons {
    display: flex;
    align-items: center;
    height: 100%;
  }
  header .sp-header-icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 100%;
    box-sizing: border-box;
  }
  header.sp-search-icon {
    padding: 0 10px;
  }
  header .sp-search-icon img {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
  }
  header .sp-search-icon span {
    font-size: 10px;
    color: #333;
  }
  header .sp-header-icons .sp-menu-icon, header .sp-header-icons .sp-close-button{
    justify-content: center;
    background-color: #990000;
    color: #fff;
    width: 56px;
  }
  .sp-search-close-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
    color: #333;
    flex-shrink: 0;
  }
  .sp-search-close-icon-x {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
  }
  .sp-search-close-icon-x::before,
  .sp-search-close-icon-x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: #555;
  }
  .sp-search-close-icon-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .sp-search-close-icon-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .sp-search-close-text {
    font-size: 10px;
    margin-top: 2px;
    color: #333;
  }
  header .sp-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    flex-direction: column;
  }
  header .sp-menu-overlay > div{
    position: relative;
    z-index: 1021;
  }
  header .sp-menu-overlay.active {
    display: flex;
  }
  header .sp-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    padding-left: 15px;
    background-color: #ffffff;
    flex-shrink: 0;
  }
  header .sp-menu-header .site-logo{
    margin: 0;
  }
  header .sp-menu-header .site-logo img {
    width: 116px;
  }
  header .sp-close-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #990000;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    position: relative;
  } 
  header .sp-close-button .close-icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
  }
  .sp-close-button .close-icon::after {
    content: '';
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-image: url('/common/images/icon_close_white.png');
    background-size: contain;
  }
  header .sp-menu-tabs {
    display: flex;
    gap: 5px;
    padding: 15px 15px 8px 15px;
    background-color: #ffffff;
    cursor: pointer;
  }
  header .tab-item.active{
    border-left:1px solid #990000;
    border-top:1px solid #990000;
    border-right:1px solid #990000;
  }
  header .tab-item {
    border-left:1px solid rgba(153, 0, 0, 0.2);
    border-top:1px solid rgba(153, 0, 0, 0.2);
    border-right:1px solid rgba(153, 0, 0, 0.2);
  }
  header .sp-menu-tabs .tab-item {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    background-color: #f6eaea;
    color: #74767a;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%; /* 21px */
  }
  header .sp-menu-tabs .tab-item.active {
    background-color: #fff;
    color: #990000;
  }
  header .sp-menu-main-content {
    position: relative;
    top: -1px;
    overscroll-behavior: none;
    overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100dvh - 130px);
    max-height: calc(100dvh - 130px);
    flex-direction: column;
  }
  header .sp-menu-main-content dt,header .sp-menu-main-content dt a {
    cursor: pointer;
  }
  @supports (height: 100dvh) {
    header .sp-menu-main-content {
      height: calc(100dvh - 130px);
      max-height: calc(100dvh - 130px);
    }
  }
  @supports (-webkit-touch-callout: none) {
    header .sp-menu-main-content {
      height: calc(100dvh - 130px);
      max-height: calc(100dvh - 130px);
    }
  }
  header .sp-menu-content-wrapper {
    position: relative;
    flex: 1;
    overflow-y: auto;
    background-color: #ffffff;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  header .sp-menu-content-wrapper {
    flex: 1;
    overflow-y: auto;
  }
  header .sp-nav-link {
    position: sticky;
    bottom: 0;
    background-color: #ffffff;
    z-index: 1030;
    margin-top: auto;
  }
  header .sp-menu-bottom,header .top-space{
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  header .sp-menu-list {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
  }
  header .sp-menu-list.active {
    max-height: 2000px;
    padding: 0 15px 16px 15px;
  }
  header .sp-menu-list dd {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  header .sp-menu-list dd.active {
    max-height: 1500px;
    transition: max-height 0.3s ease-in;
  }
  header .sp-menu-list dd.no-transition {
    transition: none;
  }
  header .sp-menu-list li {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0.45px;
    position: relative;
  }
  header .sp-menu-list li:first-child dl {
    border-top: 1px solid #d9d9db;
  }
  header .sp-menu-list li dl {
    border-bottom: 1px solid #d9d9db;
  }
  header .sp-menu-list li dl dt, header .sp-menu-list.target-audience li{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .sp-menu-list li dl dt::after, header .sp-menu-list.target-audience li::after {
    content: "";
    display: block;
    right: 0;
    width: 20px;
    height: 20px;
    background: url("/common/images/icon_chevron_down.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .sp-menu-list.target-audience li::after {
    background: url("/common/images/icon_right.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .sp-menu-list li .icon-new-window dt::after, header .sp-menu-list.target-audience li.icon-new-window::after {
    background: url("/common/images/icon_window.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .target-audience li:first-child{
    border-top: 1px solid #d9d9db;
  }
  header .sp-menu-list li dl.active dt::after {
    background: url("/common/images/icon_chevron_active.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .sp-menu-list dl.active{
    border-bottom: 1px solid #990000;
  }
  header .sp-menu-list li dt {
    padding: 16px 0;
  }
  header .sp-menu-list.target-audience li {
    border-bottom: 1px solid #c9cacc;
  }
  header .sp-menu-list.target-audience a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px 15px 16px 0;
  }
  header .sp-menu-list li .active dt{
    color: #990000;
  }
  header .sp-menu-list dd li {
    display: flex;
    align-items: center;
    position: relative;
    height: 53px;
    margin-left: 15px;
    margin-right: 0;
    border-top: 1px solid #d9d9db;
  }
  header .sp-menu-list dd li::after{
    content: "";
    display: block;
    right: 0;
    width: 20px;
    height: 20px;
    background: url("/common/images/icon_right.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .sp-menu-list dd li.icon-new-window::after {
    position: initial;
    top: initial;
    transform: initial;
    background: url("/common/images/icon_window.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .sp-menu-list dd li a {
    display: flex;
    width: 100%;
    height: 53px;
    align-items: center;
  }
  header .sp-menu-bottom{
    display: flex;
    justify-content: space-around;
    position: relative;
    background-color: #eff0f2;
  }
  header .sp-menu-bottom li{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    padding: 10px 0 12px;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid #c9cacc;
    border-right: 1px solid #c9cacc;
    border-bottom: 1px solid #c9cacc;
  }
  header .sp-menu-bottom li:last-child{
    border-right: none;
  }
  header .sp-menu-bottom a,header .sp-menu-bottom span{
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    padding: 0 16px 0 8px;
    cursor: pointer;
  }
  header .sp-menu-bottom a::after,header .sp-menu-bottom span::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
    height: 16px;
    background: url("/common/images/icon_chevron_down.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .sp-menu-bottom a.icon-new-window::after{
    background: url("/common/images/icon_window.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .language {
    padding: 0;
  }
  header .top-space {
    display: flex;
    background-color: #101113;
  }
  header .language-menu-container.is-open .language-dropdown{
    display: flex;
  }
  header .language-dropdown li a {
    padding: 0;
  }
  header li.language-menu-container.is-open{
    border-bottom: none;
  }
  header  .sp-menu-bottom .language-menu-container.is-open a::after,header .sp-menu-bottom .search.is-active span::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('/common/images/icon_close.png');
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .language-menu-container {
    position: relative;
  }
  header .language-dropdown {
    display: none;
  }
  header .language-dropdown li::before {
    display: none;
  }
  header .language-dropdown li + li{
    border-top: none;
  }
  header .language-dropdown li.school-color::after {
    display: none;
  }
  header .sp-menu-bottom .language-dropdown li span::after,header .sp-menu-bottom .language-dropdown li a::after{
    display: none;
  }
  header .language-dropdown li {
    justify-content: flex-start;
    flex: 0 1 auto;
    position: relative;
    font-size: 14px;
    padding: 8px 0;
    border: none;
    margin: 0;
  }
  header .language-dropdown li.school-color {
    color: #990000;
  }
  header .sp-menu-bottom .language-dropdown span::after{
    display: none;
  }
  header .sp-menu-bottom .language-dropdown span {
  padding: 0;
  }
  .sp-search-container {
    display: none;
  }
  header .language-dropdown li.icon-new-window,header .language-dropdown li.icon-pdf{
    position: relative;
    padding-right: 20px;
  }
  header .language-dropdown li.icon-new-window::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('/common/images/icon_window.png');
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .language-dropdown li.icon-pdf::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('/common/images/icon_pdf.png');
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .sp-search-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1030;
    width: 100vw;
    padding: 6px 15px;
    background-color: #eff0f2;
    box-sizing: border-box;
  }

  header .sp-search-bar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
  }

  header .sp-search-bar-wrapper form {
    flex-grow: 1;
  }

  header .sp-search-bar-wrapper fieldset,
  header .sp-search-bar-wrapper p {
    margin: 0;
    padding: 0;
    border: none;
  }

  header .sp-search-bar-wrapper legend {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  header .sp-search-bar-wrapper input[name="q"] {
    width: 100%;
    padding: 13px 8px 13px 36px;
    border: 1px solid #d9d9db;
    box-sizing: border-box;
    font-size: 16px;
  }

  header .sp-search-bar-wrapper {
    position: relative;
  }

  header .sp-search-bar-wrapper::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 24px;
    height: 24px;
    background-image: url("/common/images/icon_search_black.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1200;
  }

  header .language-dropdown {
    display: none;
    position: absolute;
    gap: 30px;
    justify-content: center;
    align-items: center;
    top: 100%;
    width: 100vw;
    height: 39px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background-color: #eff0f2;
    z-index: 1030;
  }

  header .language-dropdown.is-open {
    display: block;
  }

  header .sp-menu-bottom .language-dropdown li span::after,
  header .sp-menu-bottom .language-dropdown li a::after{
    display: none;
  }

  header .language-dropdown li {
    width: auto;
    padding: 0;
    border: none;
  }

  header .language-dropdown li:last-child {
    border: none;
  }

  header .sp-menu-bottom .language-dropdown span::after{
    display: none;
  }

  header .sp-menu-bottom .language-dropdown span {
    padding: 0;
  }

  header .language-dropdown li.icon-new-window,
  header .language-dropdown li.icon-pdf{
    position: relative;
    padding-right: 20px;
  }

  header .language-dropdown li.icon-new-window::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('/common/images/icon_window.png');
    background-repeat: no-repeat;
    background-size: contain;
  }

  header .language-dropdown li.icon-pdf::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('/common/images/icon_pdf.png');
    background-repeat: no-repeat;
    background-size: contain;
  }

  header .sp-menu-bottom li.search.is-active {
    border-bottom: none;
  }
}

/* --- アニメーション定義 --- */
@keyframes nav-link-animation {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  51% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* フッター */
.g-footer {
  background-color: #e4e7eb;
}
.footer-area {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 6.076vw, 83px);
  padding-right: clamp(20px, 6.076vw, 83px);
  background-color: #e4e7eb;
}
footer .footer-campus-info {
  display: flex;
  justify-content: space-between;
  padding: 88px 0 62px;
  border-bottom: 1px solid #ffffff;
}
footer .footer-campus-info-area {
  width: 256px;
}
footer .site-logo {
  margin-bottom: 48px;
}
footer .site-logo img {
  width: 19.33vw;
  max-width: 264px;
  min-width: 200px;
}
footer .gray-text {
  font-size: 15px;
  line-height: 135%;
  letter-spacing: 0.9px;
  color: #6b6c70;
}
footer .social-area dt {
  margin-bottom: 16px;
}
footer .sns-list {
  display: flex;
  margin-bottom: 16px;
}
footer .sns-list li {
  margin-right: 12px;
}
footer .sns-list li:last-child {
  margin-right: 0;
}
footer .sns-list li img {
  width: 40px;
  height: 40px;
}
footer a:hover {
  text-decoration: underline;
}
footer .sns-link {
  font-size: 12px;
  color: #101113;
}
footer .campus-info-nav {
  display: flex;
  justify-content: space-between;
  max-width: 65%;
  gap: 48px;
  flex-grow: 1;
}
footer .campus-info-nav dl {
    flex: 1;
}
footer .campus-info-nav dl dt {
  margin-bottom: 8px;
}
footer .campus-info-nav li {
  position: relative;
  letter-spacing: 2.2px;
  padding: 18px 0 20px;
  border-top: 1px solid #c9cacc;
  z-index: 1;
  text-decoration: none;
}
footer .campus-info-nav li:hover{
  opacity: 1;
  text-decoration: underline;
  background-color: #d3d9e0;
}
footer .campus-info-nav li::after {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 0;
	content: "";
	display: block;
	background-image: url("/common/images/icon_right.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
  transform: translateY(-50%);
}
footer .campus-info-nav li.icon-new-window::after {
  background-image: url("/common/images/icon_window.png");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
footer .campus-info-nav li:hover::after {
  animation: nav-link-animation 0.6s ease-in-out 1;
}
footer .campus-info-nav li:last-child {
  border-bottom: 1px solid #c9cacc;
}
footer .campus-info-nav li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: 0.48px;
  color: #101113;
  padding-right: 16px;
}

footer .campus-info-nav li.icon-new-window a::after {
  background-image: url("/common/images/icon_window.png");
}
footer .footer-other-info ul,
footer .footer-site-relation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 24px 0 22px;
}
footer .footer-other-info ul {
  border-bottom: 1px solid #ffffff;
}
footer .footer-site-relation ul {
  gap: 12px;

}
footer .footer-other-info ul li,
footer .footer-site-relation ul li {
  margin-right: 0;
}
footer .footer-other-info ul li a,
footer .footer-site-relation ul li a {
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0.39px;
  color: #101113;
  text-decoration: underline;
}
footer .footer-other-info ul li a:hover,
footer .footer-site-relation ul li a:hover {
  text-decoration: none;
}
footer .footer-other-info ul li.icon-new-window {
  position: relative;
  padding-right: 20px;
}
footer .footer-other-info ul li.icon-new-window::after{
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("/common/images/icon_window.png");
  background-repeat: no-repeat;
  background-size: contain;
}
footer .footer-site-relation ul {
  border-bottom: 1px solid #ffffff;
}
footer .footer-site-relation-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 32px;
}
footer .footer-site-relation-bottom img {
  width: 158px;
}
footer .image-container-wrap {
  display: flex;
  justify-content: space-between;
}
footer .image-container-wrap .university-accredited {
  width: 50px;
  height: 60px;
  margin-right: 16px;
}
footer .image-container-wrap .top-global-university-japan {
  width: 135px;
} 
footer .image-container-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .copyright {
  align-self: flex-end;
  color: #6b6c70;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .g-footer {
    padding-bottom: 72px; 
  }
  .pc-only { display: none !important; }
  .sp-only { display: block !important; }
  .footer-area {
    padding: 0 15px;
  }
  footer .site-logo {
    text-align: left;
    margin-bottom: 24px;
  }
  footer .footer-campus-info {
    position: relative;
    flex-direction: column;
    padding: 64px 0 0;
    border: none;
  }
  footer .footer-campus-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    right: -15px;
    height: 1px;
    margin: auto;
    width: calc(100% + 30px);
    background-color: #ffffff;
  }
  footer .footer-campus-info-area {
    width: 100%;
    text-align: center;
    padding-bottom: 38px;
  }
  footer .site-logo img {
    width: 205px;
  }
  footer .campus-info-nav {
    flex-direction: column;
    max-width: 100%;
    gap: 0;
  }
  footer .campus-info-nav ul {
    padding: 12px 0 13px 0;
  }
  footer .campus-info-nav ul:first-child{
    padding-top: 0;
  }
  footer .campus-info-nav ul {
    padding-bottom: 38px;
  }
  footer .campus-info-nav li {
    padding: 15px 0 14px;
    border-bottom: 1px solid #d9d9db;
  }
  footer .campus-info-nav li a:hover::after {
    background-image: url("/common/images/common/icon_right.png");
  }
  footer .social-area.sp-only dl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  footer .sns{
    display: flex;
    width: 100%;
  }
  footer .social-area dt {
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
  }
  footer .social-area-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .social-area-link a{
    text-decoration: underline;
  }
  footer .social-area dd {
    flex: 1;
    margin: 0;
  }
  footer .sns-list {
    margin-bottom: 0;
  }
  footer .sns-list li {
    margin-right: 20px;
  }
  footer .sns-list li:last-child {
    padding-right: 30px;
    border-right: 1px solid #d9d9db;
  }
  footer .sns-link-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    margin-left: 30px;
  }
  footer .social-area.sp-only .sns-link {
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
  }
  footer .social-area.sp-only .sns-link::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 8px;
    background-image: url('/common/images/common/bt_right_button.png');
    background-size: contain;
    background-repeat: no-repeat;
  }

  footer .footer-other-info ul,
  footer .footer-site-relation ul {
    gap: 0 16px;
    padding: 0;
    margin: 0;
    border-bottom: none;
  }
  
  footer .footer-other-info ul li,
  footer .footer-site-relation ul li {
    padding: 6px 0;
  }
  
  footer .copyright {
    font-size: 12px;
    text-align: right;
    padding: 0;
  }
  footer .footer-other-info,
  footer .footer-site-relation ul{
    position: relative;
    padding: 18px 0;
  }
  footer .footer-other-info::after,
  footer .footer-site-relation ul::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    right: -15px;
    height: 1px;
    margin: auto;
    width: calc(100% + 30px);
    background-color: #ffffff;
  }
  footer .social-area.sp-only {
    padding: 24px 0 25px 0;
  }
  footer .footer-other-info ul li:last-child,
  footer .footer-site-relation ul li:last-child {
    border-bottom: none;
  }
  footer .footer-site-relation ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 16px;
    padding: 15px 0;
    border-bottom: none;
  }
  footer .footer-site-relation ul li {
    color: #494a4d;
    text-decoration-color: #494a4d;
  }
  footer .footer-site-relation-bottom {
    display: block;
  }
  footer .image-container-wrap {
    justify-content: flex-start;
    padding-bottom: 32px;
  }
  footer .copyright {
    text-align: center;
    letter-spacing: 0.2px;
    padding: 0;
  }
}
/* コンポーネント */
/* 共通コンテンツ */
main {
  position: relative;
}
main a {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
main a:hover {
  opacity: 0.70;
  -moz-opacity: 0.70;
  filter: alpha(opacity=70);
}

.c-frame {
  max-width: 1300px;
  margin: 0 auto;
}
.c-frame.type1 {
  width: 1040px;
  max-width: none;
}
.c-frame.type2 {
  width: 1248px;
  max-width: none;
}

@media screen and (max-width: 767px) {
  .c-frame {
    width: auto;
    max-width: none;
  }
  .c-frame.type1, .c-frame.type2 {
    width: auto;
    max-width: none;
  }
}
/* ページトップ */
#pagetop {
  display: none;
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 10;
}
#pagetop img {
  width: 40px;
  height: auto;
}

@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 0;
  }
  #pagetop img {
    width: 35px;
    height: auto;
  }
}
.primary-contents {
  background: #e2e6e9;
}
.primary-contents .l-contents {
  padding: 13px 0;
}
.primary-contents .l-frame {
  *zoom: 1;
  margin-left: 20px;
  padding-right: 34.2%;
  box-sizing: border-box;
}
.primary-contents .l-frame:after {
  content: "";
  display: table;
  clear: both;
}
.primary-contents .l-frame.full {
  margin-right: 20px;
  padding-right: 0;
}
.primary-contents.no-side .l-frame {
  padding-right: 0;
}
.primary-contents.no-side .page-list ul {
  width: auto;
  padding-right: 0;
}
.primary-contents .breadcrumb ol {
  font-size: 0px;
  font-size: 0rem;
}
.primary-contents .breadcrumb li {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
  padding-left: 11px;
  font-size: 12px;
  font-size: 1.2rem;
}
.primary-contents .breadcrumb li:before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 11px;
}
.primary-contents .breadcrumb .is-home {
  margin-top: -2px;
  padding-left: 0;
}
.primary-contents .breadcrumb .is-home:before {
  display: none;
}
.primary-contents .breadcrumb .is-home img {
  width: 14px;
  height: auto;
  vertical-align: middle;
}
.primary-contents .page-list {
  background: #f9fafb;
  border-bottom: 1px solid #cdcfd0;
}
.primary-contents .page-list .l-frame.full ul {
  width: auto;
  padding-right: 0;
}
.primary-contents .page-list ul {
  width: 740px;
  margin: 0 auto;
  padding: 17px 300px 17px 0;
}
.primary-contents .page-list:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #e3e5e7;
}

.page-list ul {
  padding: 15px 0 14px;
  text-align: left;
}
.page-list ul li {
  position: relative;
  vertical-align: top;
  display: inline-block;
  margin-right: 20px;
  padding-left: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}
.page-list ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 6px;
  margin-top: -3px;
  background: url("/common/images_e/common/bg_down_red_x2.png") no-repeat left center;
  background-size: 12px 6px;
}
.page-list ul li a {
  color: #000000;
  vertical-align: top;
}
.page-list.type1 {
  margin-bottom: 30px;
}
.page-list.type1 .l-frame {
  position: relative;
  padding-bottom: 3px;
  border-bottom: 1px solid #d1d5d8;
}
.page-list.type1 .l-frame:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #d1d5d8;
}

@media screen and (max-width: 767px) {
  .primary-contents .l-contents {
    margin: 0;
    padding: 12px 13px;
  }
  .primary-contents .l-frame {
    margin-left: 0;
    padding-right: 0;
  }
  .primary-contents .l-frame.full {
    margin-right: 0;
  }
  .primary-contents .breadcrumb {
    font-size: 10px;
    font-size: 1rem;
  }
  .primary-contents .breadcrumb .is-home {
    margin-top: 0;
  }
  .primary-contents .breadcrumb .is-home img {
    width: 9px;
  }
  .primary-contents .page-list .l-frame.full ul {
    padding-right: 13px;
  }
  .primary-contents .page-list ul {
    width: auto;
    padding: 13px;
  }

  .page-list ul {
    padding: 13px;
  }
  .page-list ul li {
    margin-right: 10px;
    padding-left: 14px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .page-list ul li:after {
    background-size: 9px auto;
  }
  .page-list.type1 {
    margin-bottom: 0;
    background: #f9fafb;
    border-bottom: 1px solid #cdcfd0;
  }
  .page-list.type1 .l-frame {
    border-bottom: none;
  }
  .page-list.type1 .l-frame:after {
    display: none;
  }
}
.main-contents {
  width: 740px;
  margin: 0 auto;
  padding: 50px 300px 0 0;
}
.main-contents.type1 {
  width: 1040px;
  padding: 13px 0 0;
}
.main-contents.type2 {
  width: 840px;
  margin-top: -215px;
  padding: 40px 50px 0;
  box-sizing: border-box;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCf2f4f6,endColorstr=#CCf2f4f6);
  background: rgba(242, 244, 246, 0.85);
}
.main-contents.type3 {
  margin-bottom: 50px;
}
.main-contents.type4 {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .main-contents {
    width: auto;
    margin: 35px 13px 0;
    padding-top: 0;
    padding-right: 0;
  }
  .main-contents.type1 {
    width: auto;
    margin: 15px 13px 0;
    padding-top: 0;
  }
  .main-contents.type2 {
    width: auto;
    margin-top: 0;
    padding: 20px 0 0;
  }
  .main-contents.type4 {
    margin-top: 25px;
  }
}
.side-contents {
  position: absolute;
  top: 24px;
  right: 50%;
  width: 260px;
  margin-right: -520px;
  z-index: 2;
}
.side-contents .side-nav {
  margin-bottom: 40px;
  background: #fbfcfc;
}
.side-contents .title {
  display: table;
  width: 100%;
  height: 160px;
  background: #990000;
  color: #ffffff;
  vertical-align: middle;
  text-align: center;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0;
}
.side-contents .title .l-contents {
  display: table-cell;
  vertical-align: middle;
}
.side-contents .title .headding {
  font-size: 24px;
  font-size: 2.4rem;
}
.side-contents .title .english {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-size: 1rem;
  color: #d0a3a3;
}
.side-contents .title a {
  color: #fff;
  text-decoration: none;
}
.side-contents .nav-list {
  border-bottom: 1px solid #f2f4f6;
}
.side-contents .nav-list a {
  position: relative;
  display: block;
  color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
}
.side-contents .nav-list a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 6px;
  margin-top: -3px;
  background-repeat: no-repeat;
  background-position: right center;
}
.side-contents .nav-list .current > a {
  z-index: 1;
  background: none;
  color: #fff;
}
.side-contents .nav-list .current > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #43474b;
  border: 4px solid #fff;
}
.side-contents .nav-list .current > a:after {
  background-image: url("/common/images_j/common/bg_right_small_white_x2.png");
}
.side-contents .nav-list .current.btn-up > a:after {
  background-image: url("/common/images_j/common/bg_up_big_white_x2.png");
}
.side-contents .nav-list .current.btn-down > a:after {
  background-image: url("/common/images_j/common/bg_down_big_white_x2.png");
}
.side-contents .nav-list p {
  display: block;
  color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
}
.side-contents .nav-list li {
  border-top: 1px solid #f2f4f6;
}
.side-contents .nav-list li p,
.side-contents .nav-list li a {
  padding: 18px 30px 18px 19px;
  background-color: #ffffff;
}
.side-contents .nav-list li p:after,
.side-contents .nav-list li a:after {
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background-image: url("/common/images_e/common/bg_right_red_x2.png");
  background-size: 7px 12px;
}
.side-contents .nav-list li p.blank:after,
.side-contents .nav-list li a.blank:after {
  width: 11px;
  height: 11px;
  margin-top: -5px;
  background-image: url("/common/images_e/common/icon_blank_red_x2.png");
  background-size: 11px 11px;
}
.side-contents .nav-list li p.pdf:after,
.side-contents .nav-list li a.pdf:after {
  right: 13px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background-image: url("/common/images_e/common/icon_pdf_x2.png");
  background-size: 14px 14px;
}
.side-contents .nav-list li.btn-up a:after {
  right: 13px;
  width: 12px;
  height: 7px;
  margin-top: -3px;
  background-image: url("/common/images_e/common/bg_up_red_x2.png");
  background-size: 12px 7px;
}
.side-contents .nav-list li.btn-down a:after {
  right: 13px;
  width: 12px;
  height: 7px;
  margin-top: -3px;
  background-image: url("/common/images_e/common/bg_down_red_x2.png");
  background-size: 12px 7px;
}
.side-contents .nav-list li.btn-down .acc-body {
  display: none;
}
.side-contents .nav-list li .acc-body .current > a {
  background: none;
  color: #fff;
}
.side-contents .nav-list li .acc-body .current > a:before {
  background: #7c838c;
  border: 4px solid #e2e6e9;
}
.side-contents .nav-list li .acc-body .current > a:after {
  background-image: url("/common/images_j/common/bg_right_small_white_x2.png");
}
.side-contents .nav-list li .acc-body .current.btn-up > a:after {
  background-image: url("/common/images_j/common/bg_up_big_white_x2.png");
}
.side-contents .nav-list li .acc-body .current.btn-down > a:after {
  background-image: url("/common/images_j/common/bg_down_big_white_x2.png");
}
.side-contents .nav-list li .acc-body a {
  padding: 15px 35px 15px 34px;
  background-color: #e2e6e9;
}
.side-contents .nav-list li .acc-body li.btn-up a:after {
  width: 8px;
  height: 4px;
  margin-top: -2px;
  background-image: url("/common/images_e/common/bg_up_black_x2.png");
  background-size: 8px 4px;
}
.side-contents .nav-list li .acc-body li.btn-down a:after {
  width: 8px;
  height: 4px;
  margin-top: -2px;
  background-image: url("/common/images_e/common/bg_down_black_x2.png");
  background-size: 8px 4px;
}
.side-contents .nav-list li .acc-body li .acc-body a:after {
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/bg_right_black_x2.png");
  background-size: 4px 8px;
}
.side-contents .nav-list li .acc-body li a:after {
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/bg_right_black_x2.png");
  background-size: 4px 8px;
}
.side-contents .nav-list li .acc-body li a.blank:after {
  right: 13px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/icon_blank_black_x2.png");
  background-size: 8px 8px;
}
.side-contents .nav-list li .acc-body li a.pdf:after {
  right: 13px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background-image: url("/common/images_e/common/icon_pdf_white_x2.png");
  background-size: 10px 10px;
}
.side-contents .nav-list li .acc-body .acc-body .current > a {
  background: none;
  color: #000;
}
.side-contents .nav-list li .acc-body .acc-body .current > a:before {
  background: #fff;
  border: 4px solid #d1d6da;
}
.side-contents .nav-list li .acc-body .acc-body a {
  padding: 15px 35px 15px 50px;
  background-color: #d1d6da;
  font-size: 12px;
  font-size: 1.2rem;
}
.side-contents .nav-list li .acc-body .acc-body a:after {
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/bg_right_black_x2.png");
  background-size: 4px 8px;
}
.side-contents .other-list {
  margin-top: 8px;
}
.side-contents .other-list .current > a {
  z-index: 1;
  background: none;
  color: #fff;
}
.side-contents .other-list .current > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #43474b;
  border: 4px solid #fff;
}
.side-contents .other-list .current > a:after {
  background-image: url("/common/images_j/common/bg_right_small_white_x2.png");
}
.side-contents .other-list .current.btn-up > a:after {
  background-image: url("/common/images_j/common/bg_up_big_white_x2.png");
}
.side-contents .other-list .current.btn-down > a:after {
  background-image: url("/common/images_j/common/bg_down_big_white_x2.png");
}
.side-contents .other-list li {
  border-top: 1px solid #f2f4f6;
}
.side-contents .other-list a {
  position: relative;
  display: block;
  padding: 26px 19px;
  background-color: #ffffff;
  color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
}
.side-contents .other-list a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 6px;
  margin-top: -3px;
  background-repeat: no-repeat;
  background-position: right center;
}
.side-contents .other-list li {
  border-top: 1px solid #f2f4f6;
}
.side-contents .other-list li p,
.side-contents .other-list li a {
  padding: 18px 30px 18px 19px;
  background-color: #ffffff;
}
.side-contents .other-list li p:after,
.side-contents .other-list li a:after {
  width: 7px;
  height: 12px;
  margin-top: -6px;
  background-image: url("/common/images_e/common/bg_right_red_x2.png");
  background-size: 7px 12px;
}
.side-contents .other-list li p.blank:after,
.side-contents .other-list li a.blank:after {
  width: 11px;
  height: 11px;
  margin-top: -5px;
  background-image: url("/common/images_e/common/icon_blank_red_x2.png");
  background-size: 11px 11px;
}
.side-contents .other-list li p.pdf:after,
.side-contents .other-list li a.pdf:after {
  right: 13px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background-image: url("/common/images_e/common/icon_pdf_x2.png");
  background-size: 14px 14px;
}
.side-contents .other-list li.btn-up a:after {
  right: 13px;
  width: 12px;
  height: 7px;
  margin-top: -3px;
  background-image: url("/common/images_e/common/bg_up_red_x2.png");
  background-size: 12px 7px;
}
.side-contents .other-list li.btn-down a:after {
  right: 13px;
  width: 12px;
  height: 7px;
  margin-top: -3px;
  background-image: url("/common/images_e/common/bg_down_red_x2.png");
  background-size: 12px 7px;
}
.side-contents .other-list li.btn-down .acc-body {
  display: none;
}
.side-contents .other-list li .acc-body .current > a {
  background: none;
  color: #fff;
}
.side-contents .other-list li .acc-body .current > a:before {
  background: #7c838c;
  border: 4px solid #e2e6e9;
}
.side-contents .other-list li .acc-body .current > a:after {
  background-image: url("/common/images_j/common/bg_right_small_white_x2.png");
}
.side-contents .other-list li .acc-body .current.btn-up > a:after {
  background-image: url("/common/images_j/common/bg_up_big_white_x2.png");
}
.side-contents .other-list li .acc-body .current.btn-down > a:after {
  background-image: url("/common/images_j/common/bg_down_big_white_x2.png");
}
.side-contents .other-list li .acc-body a {
  padding: 15px 35px 15px 34px;
  background-color: #e2e6e9;
}
.side-contents .other-list li .acc-body li.btn-up a:after {
  width: 8px;
  height: 4px;
  margin-top: -2px;
  background-image: url("/common/images_e/common/bg_up_black_x2.png");
  background-size: 8px 4px;
}
.side-contents .other-list li .acc-body li.btn-down a:after {
  width: 8px;
  height: 4px;
  margin-top: -2px;
  background-image: url("/common/images_e/common/bg_down_black_x2.png");
  background-size: 8px 4px;
}
.side-contents .other-list li .acc-body li .acc-body a:after {
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/bg_right_black_x2.png");
  background-size: 4px 8px;
}
.side-contents .other-list li .acc-body li a:after {
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/bg_right_black_x2.png");
  background-size: 4px 8px;
}
.side-contents .other-list li .acc-body li a.blank:after {
  right: 13px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/icon_blank_black_x2.png");
  background-size: 8px 8px;
}
.side-contents .other-list li .acc-body li a.pdf:after {
  right: 13px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background-image: url("/common/images_e/common/icon_pdf_white_x2.png");
  background-size: 10px 10px;
}
.side-contents .other-list li .acc-body .acc-body .current > a {
  background: none;
  color: #000;
}
.side-contents .other-list li .acc-body .acc-body .current > a:before {
  background: #fff;
  border: 4px solid #d1d6da;
}
.side-contents .other-list li .acc-body .acc-body a {
  padding: 15px 35px 15px 50px;
  background-color: #d1d6da;
  font-size: 12px;
  font-size: 1.2rem;
}
.side-contents .other-list li .acc-body .acc-body a:after {
  width: 4px;
  height: 8px;
  margin-top: -4px;
  background-image: url("/common/images_e/common/bg_right_black_x2.png");
  background-size: 4px 8px;
}

@media screen and (max-width: 767px) {
  .side-contents {
    position: static;
    width: auto;
    margin-right: 0;
  }
  .side-contents .side-nav {
    margin-bottom: 0;
    background: #e2e6e9;
  }
  .side-contents .title {
    display: block;
    height: auto;
    padding: 20px 13px;
    box-sizing: border-box;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
  }
  .side-contents .title .l-contents {
    display: table;
    width: 100%;
  }
  .side-contents .title .headding {
    display: table-cell;
    font-size: 17px;
    font-size: 1.7rem;
    text-align: left;
  }
  .side-contents .title .english {
    display: table-cell;
    text-align: right;
    font-size: 10px;
    font-size: 1rem;
  }
  .side-contents .nav-list {
    margin-bottom: 7px;
    border-color: #c5c8cb;
  }
  .side-contents .nav-list p,
  .side-contents .nav-list a {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .side-contents .nav-list .current > a:before {
    border-width: 3px;
  }
  .side-contents .nav-list li {
    border-color: #c5c8cb;
    background-color: #f2f4f6;
  }
  .side-contents .nav-list li p {
    padding: 16px 30px 16px 13px;
    background-color: #F2F4F6;
  }
  .side-contents .nav-list li a {
    padding: 16px 30px 16px 13px;
    background-color: #F2F4F6;
  }
  .side-contents .nav-list li a:after {
    width: 7px;
    height: 12px;
    margin-top: -6px;
    background-image: url("/common/images_e/common/bg_right_red_x2.png");
    background-size: 7px 12px;
  }
  .side-contents .nav-list li a.blank:after {
    width: 11px;
    height: 11px;
    margin-top: -5px;
    background-image: url("/common/images_e/common/icon_blank_red_x2.png");
    background-size: 11px 11px;
  }
  .side-contents .nav-list li a.pdf:after {
    right: 13px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background-image: url("/common/images_e/common/icon_pdf_x2.png");
    background-size: 14px 14px;
  }
  .side-contents .nav-list li.btn-up a:after {
    right: 13px;
    width: 13px;
    height: 7px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_up_red_x2.png");
    background-size: 13px 7px;
  }
  .side-contents .nav-list li.btn-down a:after {
    right: 13px;
    width: 13px;
    height: 7px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_down_red_x2.png");
    background-size: 13px 7px;
  }
  .side-contents .nav-list li .acc-body .current > a:before {
    border-width: 3px;
  }
  .side-contents .nav-list li .acc-body a {
    padding: 14px 35px 14px 27px;
  }
  .side-contents .nav-list li .acc-body li.btn-up a:after {
    width: 9px;
    height: 5px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_up_black_x2.png");
    background-size: 9px 5px;
  }
  .side-contents .nav-list li .acc-body li.btn-down a:after {
    width: 9px;
    height: 5px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_down_black_x2.png");
    background-size: 9px 5px;
  }
  .side-contents .nav-list li .acc-body li .acc-body a:after {
    width: 5px;
    height: 9px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/bg_right_black_x2.png");
    background-size: 5px 9px;
  }
  .side-contents .nav-list li .acc-body li a:after {
    width: 5px;
    height: 9px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/bg_right_black_x2.png");
    background-size: 5px 9px;
  }
  .side-contents .nav-list li .acc-body li a.blank:after {
    right: 13px;
    width: 9px;
    height: 9px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/icon_blank_black_x2.png");
    background-size: 9px 9px;
  }
  .side-contents .nav-list li .acc-body li a.pdf:after {
    right: 14px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background-image: url("/common/images_e/common/icon_pdf_white_x2.png");
    background-size: 10px 10px;
  }
  .side-contents .nav-list li .acc-body .acc-body .current > a:before {
    border-width: 3px;
  }
  .side-contents .nav-list li .acc-body .acc-body a {
    padding: 14px 35px 14px 43px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .side-contents .nav-list li .acc-body .acc-body a:after {
    width: 4px;
    height: 8px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/bg_right_black_x2.png");
    background-size: 4px 8px;
  }
  .side-contents .other-list li {
    border-color: #c5c8cb;
  }
  .side-contents .other-list a {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .side-contents .other-list .current > a:before {
    border-width: 3px;
  }
  .side-contents .other-list li {
    border-color: #c5c8cb;
    background-color: #f2f4f6;
  }
  .side-contents .other-list li p {
    padding: 16px 30px 16px 13px;
    background-color: #F2F4F6;
  }
  .side-contents .other-list li a {
    padding: 16px 30px 16px 13px;
    background-color: #F2F4F6;
  }
  .side-contents .other-list li a:after {
    width: 7px;
    height: 12px;
    margin-top: -6px;
    background-image: url("/common/images_e/common/bg_right_red_x2.png");
    background-size: 7px 12px;
  }
  .side-contents .other-list li a.blank:after {
    width: 11px;
    height: 11px;
    margin-top: -5px;
    background-image: url("/common/images_e/common/icon_blank_red_x2.png");
    background-size: 11px 11px;
  }
  .side-contents .other-list li a.pdf:after {
    right: 13px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background-image: url("/common/images_e/common/icon_pdf_x2.png");
    background-size: 14px 14px;
  }
  .side-contents .other-list li.btn-up a:after {
    right: 13px;
    width: 13px;
    height: 7px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_up_red_x2.png");
    background-size: 13px 7px;
  }
  .side-contents .other-list li.btn-down a:after {
    right: 13px;
    width: 13px;
    height: 7px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_down_red_x2.png");
    background-size: 13px 7px;
  }
  .side-contents .other-list li .acc-body .current > a:before {
    border-width: 3px;
  }
  .side-contents .other-list li .acc-body a {
    padding: 14px 35px 14px 27px;
  }
  .side-contents .other-list li .acc-body li.btn-up a:after {
    width: 9px;
    height: 5px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_up_black_x2.png");
    background-size: 9px 5px;
  }
  .side-contents .other-list li .acc-body li.btn-down a:after {
    width: 9px;
    height: 5px;
    margin-top: -3px;
    background-image: url("/common/images_e/common/bg_down_black_x2.png");
    background-size: 9px 5px;
  }
  .side-contents .other-list li .acc-body li .acc-body a:after {
    width: 5px;
    height: 9px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/bg_right_black_x2.png");
    background-size: 5px 9px;
  }
  .side-contents .other-list li .acc-body li a:after {
    width: 5px;
    height: 9px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/bg_right_black_x2.png");
    background-size: 5px 9px;
  }
  .side-contents .other-list li .acc-body li a.blank:after {
    right: 13px;
    width: 9px;
    height: 9px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/icon_blank_black_x2.png");
    background-size: 9px 9px;
  }
  .side-contents .other-list li .acc-body li a.pdf:after {
    right: 14px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background-image: url("/common/images_e/common/icon_pdf_white_x2.png");
    background-size: 10px 10px;
  }
  .side-contents .other-list li .acc-body .acc-body .current > a:before {
    border-width: 3px;
  }
  .side-contents .other-list li .acc-body .acc-body a {
    padding: 14px 35px 14px 43px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .side-contents .other-list li .acc-body .acc-body a:after {
    width: 4px;
    height: 8px;
    margin-top: -4px;
    background-image: url("/common/images_e/common/bg_right_black_x2.png");
    background-size: 4px 8px;
  }
}
/* 汎用セット */
/* 見出し */
.mod-title {
  margin-top: 40px;
}
.column-block .mod-title:first-child, .mod-title + .mod-title {
  margin-top: 0;
}
.mod-title.type1 {
  margin-top: 10px;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
}
.mod-title.type1-sub {
  vertical-align: middle;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
}
.mod-title.type1-sub span {
  padding: 4px 8px;
  background: #cfd5da;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.mod-title.type2 {
  display: inline-block;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 3px solid #990000;
  font-size: 28px;
  font-size: 2.8rem;
}
.mod-title.type3 {
  margin-bottom: 40px;
  padding: 10px 12px 9px 12px;
  background: #ffffff;
  border-left: 3px solid #990000;
  font-size: 20px;
  font-size: 2rem;
}
.mod-title.type4 {
  margin-bottom: 32px;
  padding: 4px 10px 6px 14px;
  background: #e2e6e9 url("/common/images_e/common/bg_border_left_red.png") repeat-y left top;
  background-size: 3px auto;
  font-size: 18px;
  font-size: 1.8rem;
}
.mod-title.type5 {
  position: relative;
  margin-bottom: 21px;
  padding: 0 0 5px 18px;
  border-bottom: 1px solid #d1d5d8;
  font-size: 16px;
  font-size: 1.6rem;
}
.mod-title.type5:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 8px;
  display: block;
  height: 8px;
  width: 8px;
  background: #990000;
}
@-moz-document url-prefix() {
  .mod-title.type5:before {
    top: 10px;
  }
}
.mod-title .blank img,
.mod-title .pdf img,
.mod-title .excel img,
.mod-title .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.mod-title .blank figure img,
.mod-title .pdf figure img,
.mod-title .excel figure img,
.mod-title .word figure img {
  width: auto;
  margin: 0;
  vertical-align: bottom;
}

.title-set {
  margin-top: 10px;
}
.title-set .mod-title {
  display: table;
}
.title-set .mod-title.type1 {
  display: table-cell;
  padding-right: 10px;
}
.title-set .mod-title.type1-sub {
  display: table-cell;
}

@media screen and (max-width: 767px) {
  .mod-title {
    margin-top: 35px;
  }
  .mod-title.type1 {
    margin-top: 6px;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .mod-title.type1-sub {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .mod-title.type1-sub span {
    padding: 4px;
  }
  .mod-title.type2 {
    margin-bottom: 35px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .mod-title.type3 {
    margin-bottom: 23px;
    padding-left: 7px;
    padding-left: 14px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .mod-title.type4 {
    margin-bottom: 20px;
    padding: 8px 8px 8px 11px;
    padding-left: 17px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .mod-title.type5 {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .mod-title.type5:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    display: block;
    height: 9px;
    width: 9px;
    background: #990000;
  }

  .title-set {
    margin-top: 6px;
  }
  .title-set .mod-title.type1 {
    padding-right: 6px;
  }
}
.mod-entry {
  *zoom: 1;
}
.mod-entry:after {
  content: "";
  display: table;
  clear: both;
}
.mod-entry .l-frame {
  margin-bottom: 30px;
}
.mod-entry .l-frame:last-child {
  margin-bottom: 0;
}

.mod-wysiwyg {
  margin-bottom: 30px;
}
.mod-wysiwyg a {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mod-wysiwyg a:hover {
  opacity: 0.70;
  -moz-opacity: 0.70;
  filter: alpha(opacity=70);
}
.mod-wysiwyg h2 {
  display: inline-block;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 3px solid #990000;
  font-size: 28px;
  font-size: 2.8rem;
}
.mod-wysiwyg h3 {
  margin-bottom: 40px;
  padding: 10px 12px 9px 12px;
  background: #ffffff;
  border-left: 3px solid #990000;
  font-size: 20px;
  font-size: 2rem;
}
.mod-wysiwyg h4 {
  margin-bottom: 32px;
  padding: 4px 10px 6px 14px;
  background: #e2e6e9 url("/common/images_e/common/bg_border_left_red.png") repeat-y left top;
  background-size: 3px auto;
  font-size: 18px;
  font-size: 1.8rem;
}
.mod-wysiwyg h5 {
  position: relative;
  margin-bottom: 21px;
  padding: 0 0 5px 18px;
  border-bottom: 1px solid #d1d5d8;
  font-size: 16px;
  font-size: 1.6rem;
}
.mod-wysiwyg h5:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 8px;
  display: block;
  height: 8px;
  width: 8px;
  background: #990000;
}
@-moz-document url-prefix() {
  .mod-wysiwyg h5:before {
    top: 10px;
  }
}
.mod-wysiwyg ol,
.mod-wysiwyg ul,
.mod-wysiwyg p {
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.0;
}
.mod-wysiwyg ol:first-child,
.mod-wysiwyg ul:first-child,
.mod-wysiwyg p:first-child {
  margin-top: 0;
}
.mod-wysiwyg ol,
.mod-wysiwyg ul {
  counter-reset: li;
}
.mod-wysiwyg ol ol, .mod-wysiwyg ol ul,
.mod-wysiwyg ul ol,
.mod-wysiwyg ul ul {
  margin-top: 0;
}
.mod-wysiwyg ol ol li:first-child, .mod-wysiwyg ol ul li:first-child,
.mod-wysiwyg ul ol li:first-child,
.mod-wysiwyg ul ul li:first-child {
  margin-top: 8px;
}
.mod-wysiwyg ol li ol,
.mod-wysiwyg ol li ul,
.mod-wysiwyg ol li p,
.mod-wysiwyg ul li ol,
.mod-wysiwyg ul li ul,
.mod-wysiwyg ul li p {
  margin-top: 0.5em;
}
.mod-wysiwyg ol li {
  position: relative;
  padding-left: 25px;
}
.mod-wysiwyg ol li:before {
  content: counter(li) ". ";
  counter-increment: li;
  display: inline-block;
  margin: 0 7px 0 -20px;
  color: #990000;
  font-weight: bold;
}
.mod-wysiwyg ol ol li:before {
  font-weight: normal;
}
.mod-wysiwyg ul li {
  position: relative;
  padding-left: 20px;
}
.mod-wysiwyg ul li:before {
  content: "";
  vertical-align: top;
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  color: #990000;
  background: #e2e6e9 url("/common/images_e/common/bg_list_circle01_x2.png") repeat-y left top;
  background-size: 8px 8px;
}
.mod-wysiwyg ul ol li:before {
  content: counter(li) ". ";
  counter-increment: li;
  display: block;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  font-weight: bold;
  background: none;
}
.mod-wysiwyg ul ul li:before {
  top: 0.8em;
  width: 5px;
  height: 5px;
  background-image: url("/common/images_e/common/bg_list_dotto01_x2.png");
  background-size: 5px 5px;
}
.mod-wysiwyg ul.relation-list {
  /* 関連情報 */
}
.mod-wysiwyg ul.relation-list li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #d1d5d8;
}
.mod-wysiwyg ul.relation-list li:before {
  width: 6px;
  height: 12px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.mod-wysiwyg li {
  margin-bottom: 0.5em;
}
.mod-wysiwyg .blank img,
.mod-wysiwyg .pdf img,
.mod-wysiwyg .excel img,
.mod-wysiwyg .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.mod-wysiwyg .blank figure img,
.mod-wysiwyg .pdf figure img,
.mod-wysiwyg .excel figure img,
.mod-wysiwyg .word figure img {
  width: auto;
  margin: 0;
  vertical-align: bottom;
}
.mod-wysiwyg .blank img {
  width: 7px;
}
.mod-wysiwyg strong {
  color: #990000;
  font-weight: bold;
}
.mod-wysiwyg b {
  font-weight: bold;
}
.mod-wysiwyg i {
  font-style: italic;
}
.mod-wysiwyg sub {
  vertical-align: sub;
}
.mod-wysiwyg sup {
  vertical-align: super;
}
.mod-wysiwyg:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mod-wysiwyg h2 {
    margin-bottom: 35px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .mod-wysiwyg h3 {
    margin-bottom: 23px;
    padding-left: 7px;
    padding-left: 14px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .mod-wysiwyg h4 {
    margin-bottom: 20px;
    padding: 8px 8px 8px 11px;
    padding-left: 17px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .mod-wysiwyg h5 {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .mod-wysiwyg h5:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    display: block;
    height: 9px;
    width: 9px;
    background: #990000;
  }
  .mod-wysiwyg ol,
  .mod-wysiwyg ul,
  .mod-wysiwyg p {
    margin-top: 1.5em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .mod-wysiwyg ol ol li:first-child, .mod-wysiwyg ol ul li:first-child,
  .mod-wysiwyg ul ol li:first-child,
  .mod-wysiwyg ul ul li:first-child {
    margin-top: 0;
  }
  .mod-wysiwyg ul li:before {
    width: 7px;
    height: 7px;
    background-size: 7px 7px;
  }
  .mod-wysiwyg ul ul li:before {
    width: 3px;
    height: 3px;
    background-size: 3px 3px;
  }
  .mod-wysiwyg ul.relation-list {
    /* 関連情報 */
  }
  .mod-wysiwyg .blank img,
  .mod-wysiwyg .pdf img,
  .mod-wysiwyg .excel img,
  .mod-wysiwyg .word img {
    width: 11px;
    height: auto;
  }
  .mod-wysiwyg .blank img {
    width: 8px;
  }
  .mod-wysiwyg img {
    max-width: 100%;
    height: auto;
  }
}
/* 画像セット */
.img-full a {
  display: block;
}
.img-full img {
  width: 100%;
  vertical-align: top;
}

.image-set a {
  display: block;
  color: inherit;
}
.image-set a figcaption {
  position: relative;
  padding-right: 35px;
}
.image-set a figcaption:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 6px;
  height: 12px;
  margin-top: -6px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.image-set a.blank figcaption:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.image-set a.pdf figcaption:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.image-set a.excel figcaption:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.image-set a.word figcaption:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.image-set figure {
  margin-bottom: 25px;
}
.image-set figure img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.image-set figcaption {
  padding: 10px 15px;
  background: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}
.image-set.is-left, .image-set.is-right {
  margin-bottom: 30px;
}
.image-set.is-left figcaption, .image-set.is-right figcaption {
  text-align: left;
}
.image-set.is-left {
  margin-right: 40px;
  text-align: left;
}
.image-set.is-right {
  margin-left: 40px;
  text-align: right;
}
.image-set.is-center {
  text-align: center;
  margin: 0 auto;
}
.image-set.is-center figcaption {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .image-set {
    float: none;
    margin: 0 auto 10px;
  }
  .image-set figure {
    margin-bottom: 20px;
  }
  .image-set figcaption {
    padding: 13px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .image-set.is-left, .image-set.is-right {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
/* 囲みエリア */
.mod-container {
  padding: 30px;
  border: 2px solid #990000;
  background: #ffffff;
}
.mod-container .mod-wysiwyg {
  margin: 30px 0 0;
}
.mod-container .mod-wysiwyg:first-child {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .mod-container {
    padding: 13px;
  }
  .mod-container .mod-wysiwyg {
    margin: 20px 0 0;
  }
}
/* 表組み */
.mod-wysiwyg .set-table {
  margin-bottom: 40px;
}
.mod-wysiwyg .set-table.is-left table {
  margin-right: auto;
}
.mod-wysiwyg .set-table.is-right table {
  margin-left: auto;
}
.mod-wysiwyg .set-table.is-center table {
  margin: 0 auto;
}
.mod-wysiwyg table {
  max-width: 100%;
  width: 100%;
}
.mod-wysiwyg table th,
.mod-wysiwyg table td {
  text-align: left;
  vertical-align: top;
  padding: 13px;
  border: 1px solid #d1d5d8;
  background: #ffffff;
}
.mod-wysiwyg table th {
  background: #f2f4f6;
  font-size: 14px;
  font-size: 1.4rem;
}
.mod-wysiwyg table td {
  font-size: 14px;
  font-size: 1.4rem;
}
.mod-wysiwyg table td p {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
}
.mod-wysiwyg table thead th {
  min-width: 140px;
  background: #990000;
  color: #ffffff;
  box-sizing: border-box;
}
.mod-wysiwyg table ol,
.mod-wysiwyg table ul {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.mod-wysiwyg table .image-set-list ul li {
  vertical-align: top;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
  padding-left: 0;
}
.mod-wysiwyg table .image-set-list ul li:before {
  display: none;
}
.mod-wysiwyg table .image-set-list figure {
  margin-bottom: 20px;
}
.mod-wysiwyg table .image-set-list figcaption {
  padding: 10px 32px 10px 15px;
  background: #f2f4f6;
}
.mod-wysiwyg table .image-set-list + ol, .mod-wysiwyg table .image-set-list + ul, .mod-wysiwyg table .image-set-list + p {
  margin-top: 0;
}
.mod-wysiwyg table.is-three .image-set-list ul li {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .mod-wysiwyg {
    margin-bottom: 20px;
  }
  .mod-wysiwyg .set-table {
    width: 100%;
    overflow: auto;
    margin-bottom: 30px;
  }
  .mod-wysiwyg table {
    min-width: 820px;
  }
  .mod-wysiwyg table th,
  .mod-wysiwyg table td {
    padding: 9px;
  }
  .mod-wysiwyg table th {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .mod-wysiwyg table td {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .mod-wysiwyg table thead th {
    min-width: 58px;
  }
  .mod-wysiwyg table ol,
  .mod-wysiwyg table ul {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .mod-wysiwyg table .image-set-list ul {
    overflow: hidden;
  }
  .mod-wysiwyg table .image-set-list ul li {
    float: left;
    margin-right: 15px;
  }
  .mod-wysiwyg table.is-three .image-set-list ul li {
    margin-right: 15px;
  }
}
/* リンク要素 */
.menu-list {
  margin-left: -10px;
}
.menu-list ul {
  position: relative;
  font-size: 0;
}
.menu-list ul li {
  vertical-align: top;
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  margin-left: 10px;
  padding-left: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.menu-list ul li:before {
  display: none;
}
.menu-list ul a {
  display: block;
  width: 200px;
  padding: 20px;
  background: #ffffff;
  color: #000000;
}
.menu-list ul a:after {
  position: absolute;
  content: '';
  right: 15px;
  top: 50%;
  width: 6px;
  height: 12px;
  margin-top: -6px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.menu-list ul .blank:after {
  display: none;
}
.menu-list ul .blank img {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  margin-top: -6px;
}
.menu-list ul .pdf:after {
  display: none;
}
.menu-list ul .pdf img {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  margin-top: -6px;
}
.menu-list ul .excel:after {
  display: none;
}
.menu-list ul .excel img {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  margin-top: -6px;
}
.menu-list ul .word:after {
  display: none;
}
.menu-list ul .word img {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 11px;
  margin-top: -6px;
}
.menu-list.type1 ul a {
  width: 300px;
}

hr {
  margin: 20px 0 40px;
  border: 1px dotted #d1d5d8;
}

@media screen and (max-width: 767px) {
  .menu-list {
    margin-left: 0;
  }
  .menu-list ul li {
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .menu-list ul a {
    width: auto;
    padding: 18px 14px;
  }
  .menu-list ul a:after {
    right: 16px;
  }
  .menu-list.type1 ul {
    margin-right: -3%;
  }
  .menu-list.type1 ul li {
    vertical-align: top;
    display: inline-block;
    width: 47%;
    margin-right: 3%;
  }
  .menu-list.type1 ul a {
    width: auto;
  }
}
/* ボタン */
.btn-list ul {
  position: relative;
  margin-left: -10px;
  margin-bottom: 0;
  font-size: 0;
  text-align: center;
}
.btn-list ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  margin-left: 10px;
  padding-left: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
.btn-list ul li:before {
  display: none;
}
.btn-list ul a {
  display: block;
  width: 200px;
  padding: 20px;
  background: #990000;
  color: #ffffff;
}
.btn-list ul a span {
  display: inline-block;
  padding-right: 16px;
  background: url("/common/images_e/common/bg_right_white_x2.png") no-repeat right center;
  background-size: 6px 12px;
}
.btn-list ul .blank span {
  padding-right: 20px;
  background: url("/common/images_e/common/icon_blank_white_x2.png") no-repeat right center;
  background-size: 7px 7px;
}
.btn-list ul .blank img {
  display: none;
}
.btn-list ul .pdf span {
  padding-right: 20px;
  background: url("/common/images_e/common/icon_pdf_white_x2.png") no-repeat right center;
  background-size: 11px 11px;
}
.btn-list ul .pdf img {
  display: none;
}
.btn-list ul .excel span {
  padding-right: 20px;
  background: url("/common/images_e/common/icon_excel_w.png") no-repeat right center;
  background-size: 11px 11px;
}
.btn-list ul .excel img {
  display: none;
}
.btn-list ul .word span {
  padding-right: 20px;
  background: url("/common/images_e/common/icon_word_w.png") no-repeat right center;
  background-size: 11px 11px;
}
.btn-list ul .word img {
  display: none;
}
.btn-list.is-one {
  width: 240px;
  margin: 0 auto;
}
.btn-list.is-two {
  width: 490px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .btn-list ul {
    margin: 0;
  }
  .btn-list ul li {
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .btn-list ul a {
    width: auto;
    box-sizing: border-box;
  }
  .btn-list.is-one {
    width: auto;
  }
  .btn-list.is-two {
    width: auto;
  }
}
/* 教員体制セット */
.teacher-set {
  *zoom: 1;
}
.teacher-set:after {
  content: "";
  display: table;
  clear: both;
}
.teacher-set .picture {
  float: left;
  width: 220px;
}
.teacher-set .picture .database-btn {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.teacher-set .picture .database-btn img {
  width: 10px;
  height: auto;
  margin-left: 5px;
  vertical-align: middle;
}
.teacher-set .picture .database-btn a {
  display: block;
  padding: 15px;
  background: #990000;
  color: #ffffff;
}
.teacher-set .picture .database-btn .break {
  display: block;
}
.teacher-set .text {
  float: right;
  width: 480px;
}
.teacher-set .text.type1 {
  width: 780px;
}
.teacher-set .text .name {
  margin-bottom: 30px;
  padding: 30px 0;
  border-top: 1px solid #d1d5d8;
  border-bottom: 1px solid #d1d5d8;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
}
.teacher-set .text .name-kana {
  margin-left: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #888888;
}
.teacher-set .text .heading {
  margin-bottom: 15px;
  color: #990000;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.teacher-set .text p {
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1.6rem;
}
.teacher-set hr {
  margin-bottom: 25px;
  border: 1px dotted #d1d5d8;
}

@media screen and (max-width: 767px) {
  .teacher-set .picture {
    float: none;
    width: auto;
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
  }
  .teacher-set .picture .database-btn {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .teacher-set .picture .database-btn img {
    width: 8px;
    height: auto;
  }
  .teacher-set .picture .database-btn a {
    padding: 20px 10px;
  }
  .teacher-set .picture .database-btn .break {
    display: inline;
  }
  .teacher-set .text {
    float: none;
    width: auto;
  }
  .teacher-set .text .name {
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: none;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .teacher-set .text .name-kana {
    margin-left: 6px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .teacher-set .text .heading {
    margin-bottom: 12px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
  }
  .teacher-set .text p {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .teacher-set hr {
    margin-bottom: 20px;
  }
}
/* カラム設定 */
.column-group {
  padding: 0 40px;
  margin: 0 -40px 40px;
}
.column-group.is-two, .column-group.is-three {
  font-size: 0px;
  font-size: 0rem;
  letter-spacing: -.45em;
}
.column-group.is-two .column-block, .column-group.is-three .column-block {
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
  margin-bottom: 0;
}
.column-group.is-two {
  padding: 0 25px;
  overflow: hidden;
}
.column-group.is-two .column-block {
  width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}
.column-group.is-three {
  padding: 0 30px;
  overflow: hidden;
}
.column-group.is-three .column-block {
  width: 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}
.column-group:last-child {
  padding-bottom: 1px;
  margin-bottom: 0;
  border-bottom: none;
}
.column-group .column-block {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .column-group {
    margin-bottom: 35px;
  }
  .column-group.is-two .column-block, .column-group.is-three .column-block {
    margin-top: 35px;
  }
  .column-group.is-two .column-block:first-child, .column-group.is-three .column-block:first-child {
    margin-top: 0;
  }
  .column-group.is-two .column-block {
    width: 100%;
  }
  .column-group.is-three .column-block {
    width: 100%;
  }
  .column-group .column-block {
    margin-bottom: 35px;
  }
}
/* 動画エリア */
.movie-group {
  width: 560px;
  margin: 0 auto;
  background: #ffffff;
}
.movie-group iframe {
  width: 560px;
  height: 420px;
  text-align: center;
}
.movie-group .caption {
  padding: 14px 14px 17px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .movie-group {
    width: 100%;
  }
  .movie-group iframe {
    width: 100%;
    height: 200px;
  }
  .movie-group .caption {
    padding: 12px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
/* メインビジュアル */
.main-image.type1 {
  position: relative;
  z-index: -1;
  overflow: hidden;
  max-height: 398px;
}
.main-image.type1 img {
  width: 100%;
  height: auto;
}
.main-image.type2 {
  position: relative;
  z-index: -1;
  overflow: hidden;
  max-height: 650px;
}
.main-image.type2 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .main-image.type1 {
    max-height: none;
  }
  .main-image.type1 img {
    max-width: 100%;
    height: auto;
  }
  .main-image.type2 {
    max-height: none;
  }
  .main-image.type2 img {
    max-width: 100%;
    height: auto;
  }
}
/* 追従サイドボタン（研究・産学官連携） */
.side-btn {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .side-btn {
    position: static;
    width: auto;
    display: none;
  }
}
/* ページ送り */
.page-nav .main-contents.type1 {
  padding: 0;
}
.page-nav .l-contents {
  *zoom: 1;
  padding: 8px 331px 8px 0;
}
.page-nav .l-contents:after {
  content: "";
  display: table;
  clear: both;
}
.page-nav.tab-none {
  background: #cfd5da;
}
.page-nav.tab-none .l-contents {
  padding-right: 0;
}
.page-nav.single .l-contents {
  padding-right: 170px;
}
.page-nav .page {
  float: left;
  font-size: 14px;
  font-size: 1.4rem;
}
.page-nav .page-links {
  float: right;
  display: table;
  line-height: 1;
  vertical-align: middle;
}
.page-nav .page-links .prev,
.page-nav .page-links .next {
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  font-size: 1.2rem;
}
.page-nav .page-links .prev a,
.page-nav .page-links .next a {
  display: table-cell;
  width: 24px;
  height: 24px;
  color: #babcbe;
  background: #272c32;
  text-align: center;
  vertical-align: middle;
}
.page-nav .page-links .prev {
  padding-right: 6px;
}
.page-nav .page-links .next {
  padding-left: 5px;
}
.page-nav .page-links ol {
  display: table-cell;
  font-size: 0px;
  font-size: 0rem;
}
.page-nav .page-links li {
  display: table-cell;
  padding-right: 1px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: middle;
}
.page-nav .page-links li a {
  display: table-cell;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: #ffffff;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.page-nav .page-links li.current a {
  color: #ffffff;
  background: #990000;
}
.page-nav .page-links li span {
  display: table-cell;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .page-nav {
    background: inherit;
  }
  .page-nav .main-contents.type1 {
    margin: 10px 13px 13px;
  }
  .page-nav .l-contents {
    padding: 0;
  }
  .page-nav.tab-none {
    background: none;
  }
  .page-nav.single .l-contents {
    padding-right: 0;
  }
  .page-nav .page {
    float: none;
    margin-bottom: 10px;
    font-size: 10px;
    font-size: 1rem;
  }
  .page-nav .page-links {
    float: none;
    margin: 0 auto;
  }
  .page-nav .page-links .prev,
  .page-nav .page-links .next {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .page-nav .page-links .prev a,
  .page-nav .page-links .next a {
    width: 35px;
    height: 35px;
  }
  .page-nav .page-links li {
    padding-right: 2px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .page-nav .page-links li a {
    background: #e2e6e9;
    width: 35px;
    height: 35px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .page-nav .page-links li span {
    width: 35px;
    height: 35px;
  }
}
/* タブナビ（イベント・ニュース） */
.tab-area {
  background: #cfd5da;
}
.tab-area.header {
  margin-bottom: 37px;
}
.tab-area .no {
  display: none;
}
.tab-area .tab-head {
  height: 43px;
}
.tab-area .tab-head .main-contents {
  position: relative;
}
.tab-area .tab-head .main-contents.type1 {
  margin-top: -40px;
  padding-top: 0;
  text-align: right;
}
.tab-area .tab-head.detail .main-contents.type1 {
  margin-top: 0;
}
.tab-area .tab-head ul {
  position: absolute;
  right: 0;
  font-size: 0px;
  font-size: 0rem;
}
.tab-area .tab-head li {
  display: inline-block;
  font-size: 12px;
}
.tab-area .tab-head li:first-child {
  border-right: 1px solid #cfd5da;
}
.tab-area .tab-head li a {
  display: block;
  width: 161px;
  padding: 12px 0;
  text-align: center;
  background: #990000;
}
.tab-area .tab-head li span {
  position: relative;
  padding-right: 10px;
}
.tab-area .tab-head li span:after {
  content: "";
  position: absolute;
  top: 6px;
  width: 10px;
  height: 6px;
  background: url("/common/images_e/common/bg_tab_down_x2.png") no-repeat right center;
  background-size: 10px 6px;
}
.tab-area .tab-head li img {
  width: auto;
  height: 19px;
  margin-right: 5px;
}
.tab-area .tab-head li.btn-up a {
  background: #151619;
}
.tab-area .tab-head li.btn-up span:after {
  content: "";
  position: absolute;
  top: 3px;
  width: 10px;
  height: 11px;
  background: url("/common/images_e/common/bg_tab_close_x2.png") no-repeat right center;
  background-size: 10px 11px;
}
.tab-area .tab-body {
  background: #151619;
}
.tab-area .tab-body .main-contents {
  position: relative;
}
.tab-area .tab-body .main-contents.type1 {
  padding-top: 0;
}
.tab-area .tab-body a {
  color: #ffffff;
}
.tab-area .tab-body .tab-contents {
  position: absolute;
  display: none;
  width: 100%;
  padding: 40px 0 45px;
}
.tab-area .tab-body .category-list {
  margin: 0 0 30px;
}
.tab-area .tab-body .category-list li {
  height: 104px;
  width: 16.666666666%;
  margin-bottom: 0;
  border-right: 1px solid #313338;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tab-area .tab-body .category-list li:first-child {
  border-left: 1px solid #313338;
}
.tab-area .tab-body .category-list li img {
  width: 70px;
}
.tab-area .tab-body .tag-list {
  margin-bottom: -10px;
  padding: 0;
  text-align: left;
}
.tab-area .tab-body .tag-list a {
  background: #151619;
  color: #ffffff;
  border: 1px solid #5a5f66;
}
.tab-area .tab-body .tab-archive {
  margin-bottom: -20px;
}
.tab-area .tab-body .tab-archive ol {
  font-size: 0px;
  font-size: 0rem;
}
.tab-area .tab-body .tab-archive ol li {
  display: block;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
}
.tab-area .tab-body .tab-archive ol li ol {
  margin-top: 8px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.tab-area .tab-body .tab-archive ol li li {
  display: inline-block;
  margin-right: 10px;
  line-height: 1;
}
.tab-area .tab-body .tab-archive ol li li a {
  display: block;
  width: 75px;
  padding: 5px 0;
  background: #151619;
  color: #ffffff;
  border: 1px solid #5a5f66;
  border-radius: 3px;
  text-align: center;
}
.tab-area .tab-body .tab-archive ol li .year {
  font-size: 16px;
  font-size: 1.6rem;
}
.tab-area .tab-body .tab-archive ol li .year a {
  position: relative;
}
.tab-area .tab-body .tab-archive ol li .year a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 5px;
  height: 10px;
  margin-top: -5px;
  background-image: url("/common/images_e/common/bg_right_white_x2.png");
  background-size: 5px 10px;
  background-repeat: no-repeat;
  background-position: right center;
}

@media screen and (max-width: 767px) {
  .tab-area.header {
    margin-bottom: 37px;
  }
  .tab-area.single .tab-head li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #5a5f66;
  }
  .tab-area .tab-head {
    height: auto;
  }
  .tab-area .tab-head .main-contents.type1 {
    margin: 0;
  }
  .tab-area .tab-head ul {
    position: static;
  }
  .tab-area .tab-head li {
    width: 50%;
    box-sizing: border-box;
  }
  .tab-area .tab-head li a {
    width: auto;
  }
  .tab-area .tab-body .main-contents.type1 {
    margin: 0;
  }
  .tab-area .tab-body .tab-contents {
    width: 100%;
    padding: 23px 0 25px;
  }
  .tab-area .tab-body .category-list {
    margin: 0 0 15px;
  }
  .tab-area .tab-body .category-list li {
    height: auto;
    width: 33.3%;
    margin-bottom: 15px;
    border: none;
  }
  .tab-area .tab-body .category-list li:first-child {
    border: none;
  }
  .tab-area .tab-body .category-list li img {
    width: 70px;
  }
  .tab-area .tab-body .tag-list {
    display: block;
    margin: 0 13px -10px;
  }
  .tab-area .tab-body .tab-archive {
    margin-bottom: 0;
  }
  .tab-area .tab-body .tab-archive ol li {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .tab-area .tab-body .tab-archive ol li ol {
    margin-right: 0;
    margin-left: 13px;
    margin-bottom: 0;
  }
  .tab-area .tab-body .tab-archive ol li li {
    display: inline-block;
    width: 33.3%;
    margin-bottom: 10px;
    padding-right: 13px;
    margin-right: 0;
    box-sizing: border-box;
  }
  .tab-area .tab-body .tab-archive ol li li a {
    width: auto;
    padding: 15px 0;
  }
  .tab-area .tab-body .tab-archive ol li .year {
    margin-left: 13px;
  }
}
/* イベントページ */
.event-title {
  margin-bottom: 35px;
  font-size: 28px;
  font-size: 2.8rem;
}

.event-entry {
  *zoom: 1;
  margin-bottom: 10px;
  padding: 30px;
  background: #ffffff;
  vertical-align: top;
}
.event-entry:after {
  content: "";
  display: table;
  clear: both;
}
.event-entry .blank img,
.event-entry .pdf img,
.event-entry .excel img,
.event-entry .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.event-entry .date-set {
  float: left;
  width: 80px;
  padding-top: 20px;
  text-align: center;
  background: #990000;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
}
.event-entry .date-set .date {
  font-size: 26px;
  font-size: 2.6rem;
}
.event-entry .date-set .month {
  margin: 3px 0 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.event-entry .date-set .week {
  padding: 6px 0;
  background: #272c32;
  font-size: 12px;
  font-size: 1.2rem;
}
.event-entry .event-header,
.event-entry .event-footer {
  float: right;
  width: 875px;
}
.event-entry .event-header {
  padding-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
}
.event-entry .event-header a {
  color: inherit;
}
.event-entry .event-footer {
  padding-top: 7px;
  border-top: 1px solid #d1d5d8;
  font-size: 12px;
  font-size: 1.2rem;
}
.event-entry .date-icon {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
}
.event-entry .date-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.event-entry .date-icon:before {
  position: absolute;
  content: '';
  left: 0;
}
.event-entry .place-icon {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
}
.event-entry .place-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 13px;
  background: url("/common/images_e/common/icon_events_place_x2.png") no-repeat left top;
  background-size: 11px 13px;
}
.event-entry .tag-icon {
  font-size: 0px;
  font-size: 0rem;
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}
.event-entry .tag-icon a {
  color: inherit;
}
.event-entry .tag-icon a:hover {
  text-decoration: underline;
}
.event-entry .tag-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.event-entry .tag-icon li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  font-size: 12px;
  font-size: 1.2rem;
}
.event-entry .tag-icon li:after {
  position: absolute;
  content: ',';
  right: 0;
}
.event-entry .tag-icon li.is-last {
  margin-right: 0;
  padding-right: 0;
}
.event-entry .tag-icon li.is-last:after {
  display: none;
}
.event-entry .category-icon {
  display: inline-block;
  width: 50px;
  margin-left: 11px;
  text-align: center;
  vertical-align: middle;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
}
.event-entry .category-icon.news {
  color: #ffffff;
  background: #990000;
}
.event-entry .category-icon.topics {
  color: #990000;
  background: #ffffff;
}
.event-entry.detail {
  margin-bottom: 50px;
  padding: 0;
  background: none;
  border-bottom: none;
}
.event-entry.detail .l-content {
  *zoom: 1;
}
.event-entry.detail .l-content:after {
  content: "";
  display: table;
  clear: both;
}
.event-entry.detail .event-header,
.event-entry.detail .event-footer {
  width: 640px;
}
.event-entry.detail .event-header {
  font-size: 28px;
  font-size: 2.8rem;
}
.event-entry.detail .event-footer {
  padding-top: 10px;
}
.event-entry.detail .date-icon {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 0;
}
.event-entry.detail .date-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
  background-size: 14px 14px;
}
.event-entry.detail .date-icon:before {
  position: absolute;
  content: '';
  left: 0;
}
.event-entry.detail .tag-icon {
  font-size: 0px;
  font-size: 0rem;
  position: relative;
  padding-left: 20px;
  margin-top: 0;
}
.event-entry.detail .tag-icon a {
  color: inherit;
}
.event-entry.detail .tag-icon a:hover {
  text-decoration: underline;
}
.event-entry.detail .tag-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
  background-size: 14px 14px;
}
.event-entry.detail .tag-icon li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
.event-entry.detail .tag-icon li:after {
  position: absolute;
  content: ',';
  right: 0;
}
.event-entry.detail .tag-icon li.is-last {
  margin-right: 0;
  padding-right: 0;
}
.event-entry.detail .tag-icon li.is-last:after {
  display: none;
}
.event-entry.future {
  display: inline-block;
  width: 320px;
  margin-right: 40px;
  padding: 0;
  box-sizing: border-box;
  background: none;
  text-align: left;
}
.event-entry.future .event-header,
.event-entry.future .event-footer {
  width: 220px;
}
.event-entry.future .event-header {
  padding-bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.event-entry.future .event-footer {
  padding-top: 0;
  border-top: none;
}
.event-entry.future .date-icon {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  font-size: 1.2rem;
}
.event-entry.future .date-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.event-entry.future .date-icon:before {
  position: absolute;
  content: '';
  left: 0;
}
.event-entry.future .date-icon:after {
  top: 4px;
}
.event-entry.full {
  padding-bottom: 10px;
  border-bottom: 1px solid #d1d5d8;
}
.event-entry.full .event-header,
.event-entry.full .event-footer {
  float: none;
  width: auto;
}
.event-entry.full h1 {
  padding: 8px 0;
}

@media screen and (max-width: 767px) {
  .event-title {
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #d1d5d8;
    font-size: 17px;
    font-size: 1.7rem;
  }

  .event-entry {
    margin-bottom: 0;
    padding: 20px 0 15px;
    background: none;
    border-bottom: 1px solid #d1d5d8;
    box-sizing: border-box;
  }
  .event-entry .blank img,
  .event-entry .pdf img,
  .event-entry .excel img,
  .event-entry .word img {
    width: 11px;
    height: auto;
  }
  .event-entry .date-set {
    width: 20%;
    padding-top: 17px;
  }
  .event-entry .date-set .date {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .event-entry .date-set .month {
    margin: 5px 0 14px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .event-entry .date-set .week {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .event-entry .event-header,
  .event-entry .event-footer {
    width: 76%;
  }
  .event-entry .event-header {
    padding-bottom: 5px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .event-entry .event-footer {
    padding-top: 0;
    border-top: none;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .event-entry .date-icon {
    position: relative;
    padding-left: 15px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 8px;
  }
  .event-entry .date-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .event-entry .date-icon:before {
    position: absolute;
    content: '';
    left: 0;
  }
  .event-entry .place-icon {
    position: relative;
    padding-left: 15px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 8px;
  }
  .event-entry .place-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 11px;
    background: url("/common/images_e/common/icon_events_place_x2.png") no-repeat left top;
    background-size: 9px 11px;
  }
  .event-entry .tag-icon {
    font-size: 0px;
    font-size: 0rem;
    position: relative;
    padding-left: 15px;
    margin-top: 8px;
  }
  .event-entry .tag-icon a {
    color: inherit;
  }
  .event-entry .tag-icon a:hover {
    text-decoration: underline;
  }
  .event-entry .tag-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .event-entry .tag-icon li {
    position: relative;
    display: inline-block;
    margin-right: 3px;
    padding-right: 3px;
    font-size: 10px;
    font-size: 1rem;
  }
  .event-entry .tag-icon li:after {
    position: absolute;
    content: ',';
    right: 0;
  }
  .event-entry .tag-icon li.is-last {
    margin-right: 0;
    padding-right: 0;
  }
  .event-entry .tag-icon li.is-last:after {
    display: none;
  }
  .event-entry .category-icon {
    font-size: 9px;
    font-size: 0.9rem;
  }
  .event-entry.detail {
    margin-bottom: 25px;
  }
  .event-entry.detail:after {
    display: none;
  }
  .event-entry.detail .date-set {
    width: 20%;
  }
  .event-entry.detail .event-header {
    width: 76%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .event-entry.detail .event-footer {
    width: 100%;
    margin: 15px 0 0;
    border-top: 1px solid #d1d5d8;
  }
  .event-entry.detail .date-icon {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .event-entry.detail .date-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .event-entry.detail .date-icon:before {
    position: absolute;
    content: '';
    left: 0;
  }
  .event-entry.detail .tag-icon {
    font-size: 0px;
    font-size: 0rem;
    position: relative;
    padding-left: 15px;
  }
  .event-entry.detail .tag-icon a {
    color: inherit;
  }
  .event-entry.detail .tag-icon a:hover {
    text-decoration: underline;
  }
  .event-entry.detail .tag-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .event-entry.detail .tag-icon li {
    position: relative;
    display: inline-block;
    margin-right: 3px;
    padding-right: 3px;
    font-size: 10px;
    font-size: 1rem;
  }
  .event-entry.detail .tag-icon li:after {
    position: absolute;
    content: ',';
    right: 0;
  }
  .event-entry.detail .tag-icon li.is-last {
    margin-right: 0;
    padding-right: 0;
  }
  .event-entry.detail .tag-icon li.is-last:after {
    display: none;
  }
  .event-entry.future {
    display: block;
    width: auto;
    padding: 15px 0;
    margin-right: 0;
  }
  .event-entry.future .event-header,
  .event-entry.future .event-footer {
    width: 76%;
  }
  .event-entry.future .event-header {
    padding-bottom: 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .event-entry.future .event-footer {
    padding-top: 0;
    border-top: none;
  }
  .event-entry.future .date-icon {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .event-entry.future .date-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .event-entry.future .date-icon:before {
    position: absolute;
    content: '';
    left: 0;
  }
  .event-entry.full .event-header {
    width: auto;
    padding-bottom: 0;
  }
  .event-entry.full .event-footer {
    margin-bottom: 0;
  }
  .event-entry.full h1 {
    padding: 3px 0 0;
  }
}
/* イベント詳細ページ */
.event-info {
  clear: both;
  *zoom: 1;
  margin-top: 30px;
  padding: 10px 20px;
  background: #e2e6e9;
  position: relative;
}
.event-info:after {
  content: "";
  display: table;
  clear: both;
}
.event-info dt {
  position: absolute;
  width: 94px;
  margin: 13px 0;
  padding: 2px 0;
  color: #ffffff;
  background: #3177c5;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
}
.event-info dt :after {
  position: absolute;
  content: '';
  top: 0;
  left: 100%;
  border-top: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #3177c5;
}
.event-info dd {
  padding: 13px 0;
  padding-left: 115px;
  border-bottom: 1px solid #d1d5d8;
  font-size: 15px;
  font-size: 1.5rem;
}
.event-info dd.last {
  border-bottom: none;
}

.image-list {
  overflow: hidden;
  margin-right: -40px;
  font-size: 0px;
  font-size: 0rem;
}
.image-list.video .video-wrap {
  position: relative;
  padding-bottom: 79.62264%;
  overflow: hidden;
}
.image-list.video .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-list.video .text-box {
  text-align: left;
}
.image-list.video .text-box .ttl {
  margin: -5px 0 4px;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
}
.image-list.video .text-box .data {
  margin: 0 0 24px;
  color: #990000;
}
.image-list.video .text-box p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}
.image-list.video .text-box .link-list {
  margin: 30px 0 0;
}
.image-list.video .text-box .link-list li {
  float: right;
  width: 220px;
}
.image-list.video .text-box .link-list li:first-child {
  float: left;
}
.image-list.video .text-box .link-list li.red a {
  background: #990000;
  color: #fff;
}
.image-list.video .text-box .link-list li.red a:after {
  background: url(/common/images_e/common/bg_right_small_white_x2.png);
  -moz-background-size: 6px 12px;
  -o-background-size: 6px 12px;
  -webkit-background-size: 6px 12px;
  background-size: 6px 12px;
}
.image-list.video .text-box .link-list a {
  padding: 16px 0 18px;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  background: #fff;
  text-align: center;
}
.image-list.video .text-box .link-list a:after {
  content: "";
  display: inline-block;
  height: 12px;
  width: 6px;
  background: url(/common/images_e/common/bg_gray_red_x2.png);
  -moz-background-size: 6px 12px;
  -o-background-size: 6px 12px;
  -webkit-background-size: 6px 12px;
  background-size: 6px 12px;
  margin: 0 0 0 20px;
}
.image-list.video .image-set {
  width: 49.07407%;
}
.image-list .image-set {
  display: inline-block;
  box-sizing: border-box;
  margin-right: 40px;
  vertical-align: top;
}
.image-list .image-set .figcaption {
  font-size: 14px;
  font-size: 1.4rem;
}
.image-list .image-set .text {
  margin: -9px 0 0;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

.social-list {
  margin-bottom: 30px;
}
.social-list li {
  display: inline-block;
  margin-right: 10px;
}
.social-list li img {
  width: 80px;
  height: auto;
}
.social-list li.line {
  display: none;
}

.future-events {
  padding: 45px 0;
  background: #e2e6e9;
}
.future-events.type2 {
  padding: 52px 0 39px;
}
.future-events.type2 .heading {
  margin-bottom: 38px;
}
.future-events.type2 .all-for-btn {
  padding: 0 42px 0 0;
}
.future-events .heading {
  margin-bottom: 35px;
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
}
.future-events .l-contents {
  margin-right: -40px;
  vertical-align: top;
  font-size: 0px;
  font-size: 0rem;
}

@media screen and (max-width: 767px) {
  .event-info {
    border-bottom: none;
    padding: 10px 20px;
    padding: 1px 0 0;
  }
  .event-info dt {
    position: relative;
    width: 70px;
    margin: 12px 12px 0;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .event-info dt :after {
    border-top: 10px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 8px solid #3177c5;
  }
  .event-info dd {
    padding: 12px;
    font-size: 13px;
    font-size: 1.3rem;
  }

  .image-list {
    margin-right: 0;
    text-align: center;
  }
  .image-list.video .image-set.video-cont {
    padding: 0 14px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .image-list.video .text-box {
    text-align: left;
  }
  .image-list.video .text-box .ttl {
    margin: 23px 0 3px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.25;
  }
  .image-list.video .text-box .data {
    margin: 0 0 18px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .image-list.video .text-box p {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .image-list.video .text-box .link-list {
    margin: 12px 0 0;
  }
  .image-list.video .text-box .link-list li {
    float: none;
    width: 100%;
    margin: 0 0 10px;
  }
  .image-list.video .text-box .link-list li:first-child {
    float: none;
    margin: 0 0 10px;
  }
  .image-list.video .text-box .link-list li.red a {
    background: #990000;
    color: #fff;
  }
  .image-list.video .text-box .link-list li.red a:after {
    background: url(/common/images_e/common/bg_right_small_white_x2.png);
    -moz-background-size: 6px 12px;
    -o-background-size: 6px 12px;
    -webkit-background-size: 6px 12px;
    background-size: 6px 12px;
  }
  .image-list.video .text-box .link-list a {
    padding: 16px 0 18px;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
    background: #fff;
    text-align: center;
  }
  .image-list.video .text-box .link-list a:after {
    content: "";
    display: inline-block;
    height: 12px;
    width: 6px;
    background: url(/common/images_e/common/bg_gray_red_x2.png);
    -moz-background-size: 6px 12px;
    -o-background-size: 6px 12px;
    -webkit-background-size: 6px 12px;
    background-size: 6px 12px;
    margin: 0 0 0 20px;
  }
  .image-list .image-set {
    margin: 0 auto;
  }
  .image-list .image-set .figcaption {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .image-list .image-set .text {
    margin: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }

  .social-list {
    margin-bottom: 20px;
  }
  .social-list li {
    margin-right: 7px;
  }
  .social-list li img {
    width: 62px;
    height: auto;
  }
  .social-list li.line {
    display: inline-block;
  }

  .future-events {
    margin: 0;
    padding: 0 13px;
  }
  .future-events.type2 {
    padding: 15px 0 25px;
  }
  .future-events.type2 .heading {
    padding-bottom: 14px;
    margin-bottom: 2px;
  }
  .future-events.type2 .event-header {
    line-height: 1.5;
  }
  .future-events.type2 .date-icon {
    margin-top: 8px;
  }
  .future-events.type2 .tag-icon {
    padding-left: 14px;
  }
  .future-events.type2 .tag-icon:after {
    top: 5px;
    width: 9px;
    height: 9px;
    background-size: 9px 9px;
  }
  .future-events.type2 .tag-icon a {
    color: #666;
  }
  .future-events.type2 .all-for-btn {
    margin-top: 24px;
    padding: 0 0 0;
  }
  .future-events.type2 .all-for-btn a {
    padding: 18px 20px 17px;
  }
  .future-events .heading {
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid #d1d5d8;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .future-events .l-contents {
    margin-right: 0;
  }
}
/* ニュースページ */
.news-entry {
  *zoom: 1;
  margin-bottom: 30px;
}
.news-entry:after {
  content: "";
  display: table;
  clear: both;
}
.news-entry .blank img,
.news-entry .pdf img,
.news-entry .excel img,
.news-entry .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.news-entry .photo {
  position: relative;
  float: left;
  width: 440px;
}
.news-entry .photo img {
  width: 100%;
  height: auto;
}
.news-entry .photo .blank img,
.news-entry .photo .pdf img,
.news-entry .photo .excel img,
.news-entry .photo .word img {
  margin: 0;
  width: 100%;
  height: auto;
}
.news-entry .photo .icon {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  width: 66px;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}
.news-entry .photo .icon.news {
  color: #ffffff;
  background: #990000;
}
.news-entry .photo .icon.topics {
  color: #990000;
  background: #ffffff;
}
.news-entry .text {
  float: right;
  width: 585px;
  padding: 25px 28px;
  border: 2px solid #990000;
  box-sizing: border-box;
}
.news-entry .text .news-header {
  min-height: 106px;
  padding-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
}
.news-entry .text .news-header a {
  color: inherit;
}
.news-entry .text .event-footer {
  padding-top: 5px;
  border-top: 1px solid #d1d5d8;
}
.news-entry .text .date-icon {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
}
.news-entry .text .date-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.news-entry .text .date-icon:before {
  position: absolute;
  content: '';
  left: 0;
}
.news-entry .text .tag-icon {
  font-size: 0px;
  font-size: 0rem;
  position: relative;
  padding-left: 25px;
  margin-top: 2px;
}
.news-entry .text .tag-icon a {
  color: inherit;
}
.news-entry .text .tag-icon a:hover {
  text-decoration: underline;
}
.news-entry .text .tag-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.news-entry .text .tag-icon li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  font-size: 12px;
  font-size: 1.2rem;
}
.news-entry .text .tag-icon li:after {
  position: absolute;
  content: ',';
  right: 0;
}
.news-entry .text .tag-icon li.is-last {
  margin-right: 0;
  padding-right: 0;
}
.news-entry .text .tag-icon li.is-last:after {
  display: none;
}
.news-entry.news .text {
  min-height: 250px;
}
.news-entry.news .text .event-footer {
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .news-entry {
    margin-bottom: 13px;
    padding-top: 13px;
    border-top: 1px solid #d1d5d8;
  }
  .news-entry .blank img,
  .news-entry .pdf img,
  .news-entry .excel img,
  .news-entry .word img {
    width: 11px;
    height: auto;
  }
  .news-entry:first-child {
    padding-top: 0;
    border-top: none;
  }
  .news-entry .photo {
    float: none;
    width: auto;
    margin: 0 auto 10px;
    text-align: center;
  }
  .news-entry .photo .icon {
    top: 8px;
    left: 8px;
    width: 45px;
    padding: 2px 0;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .news-entry .text {
    float: none;
    width: auto;
    padding: 15px;
    border-width: 3px;
  }
  .news-entry .text .news-header {
    min-height: initial;
    padding-bottom: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .news-entry .text .event-footer {
    padding-top: 2px;
    border-top: none;
  }
  .news-entry .text .date-icon {
    position: relative;
    padding-left: 15px;
    font-size: 10px;
    font-size: 1rem;
    margin-top: 5px;
  }
  .news-entry .text .date-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .news-entry .text .date-icon:before {
    position: absolute;
    content: '';
    left: 0;
  }
  .news-entry .text .tag-icon {
    font-size: 0px;
    font-size: 0rem;
    position: relative;
    padding-left: 15px;
    margin-top: 0px;
  }
  .news-entry .text .tag-icon a {
    color: inherit;
  }
  .news-entry .text .tag-icon a:hover {
    text-decoration: underline;
  }
  .news-entry .text .tag-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .news-entry .text .tag-icon li {
    position: relative;
    display: inline-block;
    margin-right: 3px;
    padding-right: 3px;
    font-size: 10px;
    font-size: 1rem;
  }
  .news-entry .text .tag-icon li:after {
    position: absolute;
    content: ',';
    right: 0;
  }
  .news-entry .text .tag-icon li.is-last {
    margin-right: 0;
    padding-right: 0;
  }
  .news-entry .text .tag-icon li.is-last:after {
    display: none;
  }
  .news-entry.news .text {
    min-height: inherit;
  }
  .news-entry.news .text .event-footer {
    padding-top: 5px;
  }
}
.relation-posts {
  padding: 45px 0 40px;
  background: #e2e6e9;
  text-align: center;
}
.relation-posts .heading {
  margin-bottom: 35px;
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
}
.relation-posts .l-contents {
  margin-right: -40px;
  font-size: 0px;
  font-size: 0rem;
  vertical-align: top;
}
.relation-posts .relation-entry {
  display: inline-block;
  width: 320px;
  margin-right: 40px;
  vertical-align: top;
}
.relation-posts .relation-entry .photo {
  margin-bottom: 15px;
}
.relation-posts .relation-entry .photo img {
  max-width: 100%;
  height: auto;
}
.relation-posts .relation-entry .text {
  padding: 15px 17px;
  border: 2px solid #990000;
  box-sizing: border-box;
  text-align: left;
}
.relation-posts .relation-entry .text .news-header {
  padding-bottom: 10px;
  font-size: 18px;
  font-size: 1.8rem;
}
.relation-posts .relation-entry .text .news-header a {
  color: inherit;
}
.relation-posts .relation-entry .text .date-icon {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  font-size: 1.2rem;
}
.relation-posts .relation-entry .text .date-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.relation-posts .relation-entry .text .date-icon:before {
  position: absolute;
  content: '';
  left: 0;
}

@media screen and (max-width: 767px) {
  .relation-posts {
    padding: 18px 0 0px;
  }
  .relation-posts .heading {
    margin-bottom: 15px;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .relation-posts .l-contents {
    margin-right: 0;
  }
  .relation-posts .relation-entry {
    width: auto;
    margin: 0 13px 13px;
    padding: 11px;
    box-sizing: border-box;
    border: 3px solid #990000;
  }
  .relation-posts .relation-entry .photo {
    float: left;
    width: 42%;
    margin-bottom: 0;
  }
  .relation-posts .relation-entry .photo img {
    max-width: 100%;
    height: auto;
  }
  .relation-posts .relation-entry .text {
    float: right;
    width: 54%;
    width: 55%;
    padding: 0;
    border: none;
  }
  .relation-posts .relation-entry .text .news-header {
    padding-bottom: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .relation-posts .relation-entry .text .date-icon {
    position: relative;
    padding-left: 15px;
    font-size: 10px;
    font-size: 1rem;
  }
  .relation-posts .relation-entry .text .date-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .relation-posts .relation-entry .text .date-icon:before {
    position: absolute;
    content: '';
    left: 0;
  }
}
.next-post {
  padding-top: 40px;
  background: #ffffff;
}
.next-post .event-header,
.next-post .event-footer {
  width: 960px;
  margin: 0 auto;
}
.next-post .event-header {
  padding-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
}
.next-post .event-header a {
  color: inherit;
}
.next-post .event-header .next-icon {
  position: relative;
  float: left;
  width: 54px;
  margin-right: 26px;
  padding: 1px 0;
  color: #ffffff;
  background: #990000;
  text-align: center;
  font-size: 14px;
}
.next-post .event-header .next-icon:after {
  position: absolute;
  content: '';
  top: 0;
  left: 100%;
  border-top: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #990000;
}
.next-post .event-header .heading {
  position: relative;
  clear: both;
  padding-top: 10px;
  font-size: 28px;
  font-size: 2.8rem;
}
.next-post .event-header .heading a {
  display: block;
  padding-right: 26px;
}
.next-post .event-header .heading a:after {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  width: 14px;
  height: 26px;
  margin-top: -14px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 14px 26px;
}
.next-post .date-icon {
  float: left;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
.next-post .date-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
  background-size: 14px 14px;
}
.next-post .date-icon:before {
  position: absolute;
  content: '';
  left: 0;
}
.next-post .tag-icon {
  font-size: 0px;
  font-size: 0rem;
  position: relative;
  padding-left: 20px;
}
.next-post .tag-icon a {
  color: inherit;
}
.next-post .tag-icon a:hover {
  text-decoration: underline;
}
.next-post .tag-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
  background-size: 14px 14px;
}
.next-post .tag-icon li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  font-size: 16px;
  font-size: 1.6rem;
}
.next-post .tag-icon li:after {
  position: absolute;
  content: ',';
  right: 0;
}
.next-post .tag-icon li.is-last {
  margin-right: 0;
  padding-right: 0;
}
.next-post .tag-icon li.is-last:after {
  display: none;
}
.next-post .category-icon {
  display: inline-block;
  width: 50px;
  margin-left: 11px;
  text-align: center;
  vertical-align: middle;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.4;
}
.next-post .category-icon.news {
  color: #ffffff;
  background: #990000;
}
.next-post .category-icon.topics {
  color: #990000;
  border: 1px solid #990000;
}
.next-post .photo {
  position: relative;
  max-height: 630px;
  overflow: hidden;
}
.next-post .photo a {
  display: block;
  position: relative;
}
.next-post .photo a:after {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  margin-left: -650px;
  width: 1300px;
  height: 30px;
  background: url("/common/images_e/common/news_next_over.png") no-repeat center top;
}
.next-post .photo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .next-post {
    padding-top: 18px;
  }
  .next-post .event-header,
  .next-post .event-footer {
    width: auto;
    margin: 0 13px;
  }
  .next-post .event-header {
    position: relative;
    padding-top: 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .next-post .event-header .next-icon {
    width: 36px;
    margin-right: 15px;
    font-size: 9px;
    font-size: 0.9rem;
  }
  .next-post .event-header .next-icon:after {
    border-width: 9px;
  }
  .next-post .event-header .heading {
    padding-top: 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .next-post .event-header .heading a {
    padding-right: 26px;
  }
  .next-post .event-header .heading a:after {
    top: 18px;
    width: 7px;
    height: 13px;
    background-size: 7px 13px;
  }
  .next-post .date-icon {
    float: left;
    position: relative;
    padding-left: 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .next-post .date-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_date_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .next-post .date-icon:before {
    position: absolute;
    content: '';
    left: 0;
  }
  .next-post .tag-icon {
    font-size: 0px;
    font-size: 0rem;
    position: relative;
    padding-left: 15px;
  }
  .next-post .tag-icon a {
    color: inherit;
  }
  .next-post .tag-icon a:hover {
    text-decoration: underline;
  }
  .next-post .tag-icon:after {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 9px;
    height: 9px;
    background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
    background-size: 9px 9px;
  }
  .next-post .tag-icon li {
    position: relative;
    display: inline-block;
    margin-right: 3px;
    padding-right: 3px;
    font-size: 9px;
    font-size: 0.9rem;
  }
  .next-post .tag-icon li:after {
    position: absolute;
    content: ',';
    right: 0;
  }
  .next-post .tag-icon li.is-last {
    margin-right: 0;
    padding-right: 0;
  }
  .next-post .tag-icon li.is-last:after {
    display: none;
  }
  .next-post .category-icon {
    font-size: 9px;
    font-size: 0.9rem;
  }
  .next-post .photo {
    margin-top: 18px;
    max-height: none;
  }
  .next-post .photo a:after {
    display: none;
  }
  .next-post .photo img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}
/* スライド */
#main-slide {
  position: relative;
}
#main-slide .text-content {
  z-index: 1;
  position: absolute;
  box-sizing: border-box;
}
#main-slide .image {
  width: auto;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
#main-slide .image img {
  width: 100%;
}
#main-slide a {
  display: block;
  color: #ffffff;
  /* スライドのみhover処理なし */
  transition: none;
}
#main-slide a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#main-slide a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
#main-slide.top {
  overflow: hidden;
  top: -106px;
}
#main-slide.top .text-content,
#main-slide.top .image {
  height: 706px;
}
#main-slide.top .text-content {
  display: table;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  padding-top: 106px;
}
#main-slide.top .text-content p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#main-slide.top .text-content p img {
  display: inline;
}
#main-slide.top .slick-arrow {
  top: 50%;
  margin-top: -20px;
  margin-top: 33px;
}
#main-slide.top .slick-dots {
  top: 120px;
  right: 65px;
}
#main-slide.research.bg-black .text-content {
  display: table;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4D000000,endColorstr=#4D000000);
  background: rgba(0, 0, 0, 0.25);
}
#main-slide.research.bg-black .text-content span {
  display: table-cell;
  vertical-align: middle;
}
#main-slide.research .text-content {
  left: 50%;
  bottom: 40px;
  width: 480px;
  height: 180px;
  margin-left: -520px;
  padding: 48px 30px 10px;
  background: url("/common/images_e/common/bg_slide.png");
  color: #fff;
}
#main-slide.research .text-content h2 {
  font-size: 30px;
  font-size: 3rem;
  margin: 5px 0 10px;
  letter-spacing: 0.01em;
}
#main-slide.research .text-content .text {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
#main-slide.research .image {
  height: 397px;
}
#main-slide.research .slick-arrow {
  top: 50%;
  margin-top: -20px;
}
#main-slide.research .text-content-sp {
  display: none;
}
#main-slide .slide-in {
  position: relative;
}
#main-slide .slick-slide .text-content {
  perspective: 1000000px;
  transform: rotateX(90deg);
  transform-origin: 50% 50% -20px;
  transition: all ease 0.6s;
  transition-delay: 0.3s;
}
#main-slide .slick-active .text-content {
  transform: rotateX(0deg);
}
#main-slide .slick-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  text-indent: -99999px;
  border: none;
  z-index: 2;
}
#main-slide .slick-prev {
  left: 0%;
  background: url("/common/images_e/common/btn_slide_prev.png");
}
#main-slide .slick-next {
  right: 0%;
  background: url("/common/images_e/common/btn_slide_next.png");
}
#main-slide .slick-dots {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}
#main-slide .slick-dots li {
  display: inline-block;
  margin-left: 10px;
  text-indent: -99999px;
  background: #ffffff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 5px;
  height: 5px;
  border: 1px solid #ffffff;
}
#main-slide .slick-dots .slick-active {
  background: #990000;
}

@media screen and (max-width: 1300px) and (min-width: 767px) {
  #main-slide.top .image img {
    width: auto;
    height: 100%;
  }
  #main-slide.research .image img {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #main-slide .text-content .slick-arrow {
    top: 30%;
    margin-top: -17px;
  }
  #main-slide.top {
    top: -50px;
  }
  #main-slide.top .text-content,
  #main-slide.top .image {
    max-height: 193px;
  }
  #main-slide.top .text-content {
    left: 15%;
    right: 15%;
    width: 70%;
    padding-top: 49px;
  }
  #main-slide.top .text-content p {
    line-height: 1;
  }
  #main-slide.top .text-content p img {
    width: 100%;
    height: auto;
  }
  #main-slide.top .image img {
    width: 100%;
  }
  #main-slide.top .slick-arrow {
    top: 60%;
    margin-top: -13px;
  }
  #main-slide.top .slick-dots {
    top: 56px;
    right: 7px;
  }
  #main-slide.research.bg-black .text-content {
    display: none;
  }
  #main-slide.research .text-content {
    display: none;
  }
  #main-slide.research .image {
    height: auto;
  }
  #main-slide.research .slick-arrow {
    top: 30%;
    margin-top: -17px;
    margin-top: 0;
  }
  #main-slide.research .text-content-sp {
    display: block;
    padding: 13px;
    background: #272c32;
    color: #fff;
  }
  #main-slide.research .text-content-sp img {
    width: auto;
    height: 55px;
  }
  #main-slide.research .text-content-sp h2 {
    margin: 0 0 5px;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
  }
  #main-slide.research .text-content-sp .text {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
  #main-slide .slick-slide .text-content {
    transform: rotateX(0deg);
    transform-origin: 50% 50% 0;
    transition: all ease 0;
    transition-delay: 0;
  }
  #main-slide .slick-arrow {
    width: 34px;
    height: 34px;
    background-size: 34px 34px;
  }
  #main-slide .slick-dots {
    top: 7px;
    right: 7px;
  }
  #main-slide .slick-dots li {
    margin-left: 5px;
  }
}
/* 研究・産学官連携 その他ページ */
.bg-gray-contents {
  background: #e2e6e8;
}

.bg-gray {
  background: #e2e6e9;
}
.bg-gray.video-link {
  padding: 52px 0 80px;
}

.main-contents.video-post-area {
  padding: 60px 0 70px;
}
.main-contents.pdt18 {
  padding: 18px 0 12px;
}
.main-contents.pdt27 {
  padding: 27px 0 41px;
}
.main-contents.pdt36 {
  padding: 36px 0 0;
}
.main-contents.pdt60 {
  padding: 60px 0 20px;
}
.main-contents.pdb11 {
  padding-bottom: 11px;
}
.main-contents.photo {
  padding: 60px 0 85px;
}
.main-contents.campus {
  padding-bottom: 87px;
}
.main-contents.campus .heading {
  padding: 25px 0 39px;
  text-align: center;
}
.main-contents.campus .heading img {
  height: 68px;
  width: auto;
}
.main-contents.campus .link-btn-area {
  margin: 0 0 40px;
  line-height: 1;
}
.main-contents.campus .link-btn-area a {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid #990000;
  display: block;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}
.main-contents.campus .link-btn-area a:after {
  position: absolute;
  content: '';
  right: 17px;
  top: 50%;
  width: 6px;
  height: 12px;
  margin-top: -6px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.main-contents.academics .ttl-red {
  margin: 23px 0 25px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #990000;
  font-weight: bold;
}
.main-contents.academics .ttl-red.mgt44 {
  margin-top: 44px;
}
.main-contents.academics .link-set-col2 {
  overflow: hidden;
}
.main-contents.academics .link-set-col2 .fl-l {
  float: left;
}
.main-contents.academics .link-set-col2 .fl-r {
  float: right;
}
.main-contents.academics .link-set {
  margin-right: -10px;
  font-size: 0;
}
.main-contents.academics .link-set.pdb18 {
  padding-bottom: 18px;
}
.main-contents.academics .link-set.small .img {
  width: 80px;
}
.main-contents.academics .link-set.small h4 {
  float: right;
  min-height: 80px;
  width: 435px;
  margin: 0;
  padding: 32px 30px 15px 19px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  color: #000;
  line-height: 1;
}
.main-contents.academics .link-set li {
  display: inline-block;
  width: 515px;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 10px 20px 0;
  vertical-align: top;
}
.main-contents.academics .link-set a {
  position: relative;
  overflow: hidden;
  display: block;
  background: #fff;
}
.main-contents.academics .link-set a:hover .text {
  text-decoration: underline;
}
.main-contents.academics .link-set a:after {
  position: absolute;
  content: '';
  right: 17px;
  top: 50%;
  width: 6px;
  height: 12px;
  margin-top: -6px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.main-contents.academics .link-set .img {
  float: left;
  width: 100px;
}
.main-contents.academics .link-set .img img {
  max-width: 100%;
  border: 1px solid #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main-contents.academics .link-set h4 {
  margin: 0 0 3px;
  font-size: 18px;
  font-size: 1.8rem;
}
.main-contents.academics .link-set .text {
  float: right;
  width: 415px;
  padding: 24px 35px 15px 19px;
  min-height: 100px;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
}

.research-title {
  margin: 30px 0;
  font-size: 22px;
  font-size: 2.2rem;
}
.research-title span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #990000;
}

.research-list.type2 .mod-title.type3 {
  margin: 28px 0 20px;
}
.research-list.type2 .free-text-area {
  margin-bottom: 48px;
  font-size: 14px;
  font-size: 1.4rem;
}
.research-list.type2 .free-text-area .mod-title.type5 {
  margin: 20px 0 5px;
  padding-bottom: 0;
  color: #990000;
  border-bottom: none;
}
.research-list.type2 .free-text-area p {
  line-height: 1.8;
}
.research-list.type2 .image-list-col2 {
  overflow: hidden;
}
.research-list.type2 .image-list-col2 .fl-l {
  float: left;
  width: 500px;
}
.research-list.type2 .image-list-col2 .fl-r {
  float: right;
  width: 500px;
}
.research-list.type2 .image-list-col2 h3 {
  padding: 11px 0 19px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #990000;
  font-weight: bold;
}
.research-list.type2 .research-title {
  margin: 16px 0 29px;
}
.research-list.type2 .research-title.mgt0 {
  margin-top: 0;
}
.research-list.type2.mgt53 {
  margin-top: 53px;
}
.research-list.type2 .image-list.mgb32 .image-set figure {
  margin-bottom: 32px;
}
.research-list.type2 .image-set .data {
  color: #990000;
}
.research-list.type2 .image-set.mgb32 figure {
  margin-bottom: 32px;
}
.research-list.type2 .image-set figure {
  margin-bottom: 40px;
}
.research-list.type2 .image-set figure figcaption {
  padding: 16px 32px 15px 20px;
}
.research-list .image-list.aid01.link.lg, .research-list .image-list.aid02.link.lg, .research-list .image-list.aid03.link.lg, .research-list .image-list.aid04.link.lg {
  padding-bottom: 20px;
}
.research-list .image-list.aid01 figcaption {
  border-left: 1px solid #1ba7e1;
}
.research-list .image-list.aid01 .image-set a figcaption:after {
  background: url("/common/images_e/common/bg_right_blue_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.aid01 .image-set a.blank figcaption:after {
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid02 figcaption {
  border-left: 1px solid #be258a;
}
.research-list .image-list.aid02 .image-set a figcaption:after {
  background: url("/common/images_e/common/bg_right_pink_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.aid02 .image-set a.blank figcaption:after {
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid02 .image-set a.pdf figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid02 .image-set a.excel figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid02 .image-set a.word figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid03 figcaption {
  border-left: 1px solid #95d023;
}
.research-list .image-list.aid03 .image-set a figcaption:after {
  background: url("/common/images_e/common/bg_right_green_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.aid03 .image-set a.blank figcaption:after {
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid03 .image-set a.pdf figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid03 .image-set a.excel figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid03 .image-set a.word figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid04 figcaption {
  border-left: 1px solid #db9b00;
}
.research-list .image-list.aid04 .image-set a figcaption:after {
  background: url("/common/images_e/common/bg_right_yellow_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.aid04 .image-set a.blank figcaption:after {
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid04 .image-set a.pdf figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid04 .image-set a.excel figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.aid04 .image-set a.word figcaption:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.lg {
  margin-right: -10px;
  padding-bottom: 18px;
}
.research-list .image-list.link.lg .image-set {
  width: 340px;
  margin: 0 10px 20px 0;
}
.research-list .image-list.link.lg.bdt {
  margin-top: 20px;
  padding: 40px 0 20px;
  border-top: 1px solid #d1d5d8;
}
.research-list .image-list.link.aid01 .line.image-set a {
  border-color: #1ba7e1;
}
.research-list .image-list.link.aid01 .line.image-set a:after {
  background: url("/common/images_e/common/bg_right_blue_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.link.aid01 .line.image-set a.blank:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid01 .line.image-set a.pdf:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid01 .line.image-set a.excel:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid01 .line.image-set a.word:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid02 .line.image-set a {
  border-color: #be258a;
}
.research-list .image-list.link.aid02 .line.image-set a:after {
  background: url("/common/images_e/common/bg_right_pink_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.link.aid02 .line.image-set a.blank:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid02 .line.image-set a.pdf:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid02 .line.image-set a.excel:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid02 .line.image-set a.word:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid03 .line.image-set a {
  border-color: #95d023;
}
.research-list .image-list.link.aid03 .line.image-set a:after {
  background: url("/common/images_e/common/bg_right_green_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.link.aid03 .line.image-set a.blank:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid03 .line.image-set a.pdf:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid03 .line.image-set a.excel:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid03 .line.image-set a.word:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid04 .line.image-set a {
  border-color: #db9b00;
}
.research-list .image-list.link.aid04 .line.image-set a:after {
  background: url("/common/images_e/common/bg_right_yellow_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.link.aid04 .line.image-set a.blank:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid04 .line.image-set a.pdf:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid04 .line.image-set a.excel:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link.aid04 .line.image-set a.word:after {
  right: 18px;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link .image-set {
  width: 320px;
  margin-bottom: 20px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
}
.research-list .image-list.link .image-set.line a {
  border-left: 1px solid #990000;
  padding: 18px 32px 18px 20px;
}
.research-list .image-list.link .image-set a {
  position: relative;
  display: block;
  padding: 16px 32px 15px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
}
.research-list .image-list.link .image-set a:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 6px;
  height: 12px;
  margin-top: -6px;
  background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
  background-size: 6px 12px;
}
.research-list .image-list.link .image-set a.blank img {
  display: none;
}
.research-list .image-list.link .image-set a.blank:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link .image-set a.pdf img {
  display: none;
}
.research-list .image-list.link .image-set a.pdf:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link .image-set a.excel img {
  display: none;
}
.research-list .image-list.link .image-set a.excel:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-list.link .image-set a.word img {
  display: none;
}
.research-list .image-list.link .image-set a.word:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-list .image-set figure {
  margin-bottom: 44px;
}
.research-list .image-set figure figcaption {
  padding: 20px 35px 20px 20px;
}
.research-list .image-set figure figcaption small {
  display: block;
  margin: 9px 0 0;
  color: #555;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.research-link-list {
  *zoom: 1;
  margin-bottom: 20px;
  padding-top: 40px;
  border-top: 1px solid #d1d5d8;
}
.research-link-list:after {
  content: "";
  display: table;
  clear: both;
}
.research-link-list.type2.pdt9 {
  padding-top: 9px;
}
.research-link-list.type2.mgb0 {
  margin-bottom: 0;
}
.research-link-list.type2.bdt0 {
  border-top: none;
}
.research-link-list.type2 .menu-list ul a {
  width: 340px;
  padding: 16px 35px 15px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.75;
}
.research-link-list.type2 .menu-list ul a:after {
  top: 50%;
}
.research-link-list.type2 .menu-list ul p {
  width: 340px;
  padding: 16px 35px 15px 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  background: #fff;
  color: #000000;
  line-height: 1.75;
}
.research-link-list .heading {
  float: left;
  width: 320px;
  margin-bottom: 20px;
}
.research-link-list .heading img {
  max-width: 100%;
  height: auto;
}
.research-link-list .menu-list {
  float: right;
  width: 700px;
}
.research-link-list .menu-list ul a:after {
  right: 20px;
  top: 30px;
}

.other-list-area {
  background: #e2e6e8;
}
.other-list-area.pdt5 {
  padding-top: 5px;
}
.other-list-area.bg-lightgray {
  background: #f2f4f6;
}
.other-list-area .main-contents {
  padding-top: 35px;
}
.other-list-area .main-contents.pdt0 {
  padding-top: 0;
}
.other-list-area .main-contents.pdt8 {
  padding-top: 8px;
}
.other-list-area .main-contents.pdt10 {
  padding-top: 10px;
}
.other-list-area .main-contents.pdb10 {
  padding-bottom: 10px;
}
.other-list-area .main-contents.pdb70 {
  padding-bottom: 70px;
}
.other-list-area .main-contents.pdb111 {
  padding-bottom: 111px;
}
.other-list-area .research-link-list {
  position: relative;
  border-top: 1px solid #fff;
  padding: 30px 0 10px;
  margin-bottom: 0;
}
.other-list-area .research-link-list:before {
  content: "";
  display: block;
  top: -1px;
  left: 0;
  position: absolute;
  height: 2px;
  width: 110px;
  background: #3177c5;
}
.other-list-area .heading {
  margin: -5px 0 0;
  font-size: 22px;
  font-size: 2.2rem;
}

.all-for-btn {
  margin-top: 20px;
  text-align: center;
}
.all-for-btn.posi-r {
  margin: -7px 0 0;
  text-align: right;
}
.all-for-btn.posi-r .first {
  margin: 0px 36px 0 0;
}
.all-for-btn.posi-r a {
  padding: 18px 0 18px;
  width: 230px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.all-for-btn a {
  display: inline-block;
  padding: 18px 45px 18px;
  background: #990000;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
.all-for-btn a span {
  display: inline-block;
  padding-right: 16px;
  background: url("/common/images_e/common/bg_right_white_x2.png") no-repeat right center;
  background-size: 6px 11px;
}

.research-news-topics,
.research-events {
  padding-bottom: 40px;
}
.research-news-topics.bg-gray,
.research-events.bg-gray {
  background: #e2e6e9;
  padding: 61px 0 38px;
}
.research-news-topics.feature,
.research-events.feature {
  padding: 30px 0 49px;
}
.research-news-topics.feature .heading,
.research-events.feature .heading {
  margin-bottom: 35px;
}
.research-news-topics.feature .heading img,
.research-events.feature .heading img {
  width: auto;
  height: 72px;
}
.research-news-topics .blank img,
.research-news-topics .pdf img,
.research-news-topics .excel img,
.research-news-topics .word img,
.research-events .blank img,
.research-events .pdf img,
.research-events .excel img,
.research-events .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.research-news-topics .heading,
.research-events .heading {
  text-align: center;
}
.research-news-topics .heading img,
.research-events .heading img {
  width: auto;
  height: 34px;
}
.research-news-topics .all-for-btn,
.research-events .all-for-btn {
  margin-right: 40px;
}

.research-news-topics {
  padding: 40px 0;
}
.research-news-topics.type2 .text-box .date-icon {
  margin: 0 0 6px;
}
.research-news-topics.type2 .text-box .tag-icon:after {
  left: -1px;
  top: 2px;
}
.research-news-topics.type2 .all-for-btn {
  margin-top: 25px;
}
.research-news-topics .c-frame {
  position: relative;
}
.research-news-topics .heading {
  margin-bottom: 40px;
}
.research-news-topics .l-contents {
  margin-right: -40px;
  vertical-align: top;
  font-size: 0px;
  font-size: 0rem;
}
.research-news-topics .research-news-entry {
  vertical-align: top;
  display: inline-block;
  width: 320px;
  margin-right: 40px;
}
.research-news-topics .research-news-entry .photo {
  margin-bottom: 15px;
}
.research-news-topics .research-news-entry .photo img {
  width: 100%;
  height: auto;
}
.research-news-topics .research-news-entry .photo.new-icon a {
  overflow: hidden;
  position: relative;
  display: block;
}
.research-news-topics .research-news-entry .photo.new-icon a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  background: url("/common/images_e/common/icon_new_x2.png") no-repeat left top;
  background-size: 76px 76px;
}
.research-news-topics .research-news-entry .photo.clip-icon a {
  position: relative;
  display: inline-block;
}
.research-news-topics .research-news-entry .photo.clip-icon a:before {
  position: absolute;
  content: "";
  top: 8px;
  right: -4px;
  width: 48px;
  height: 21px;
  background: url("/common/images_e/common/icon_clip_x2.png") no-repeat left top;
  background-size: 48px 21px;
}
.research-news-topics .research-news-entry .news-header {
  margin-bottom: 10px;
}
.research-news-topics .research-news-entry .date-icon {
  font-size: 14px;
  font-size: 1.4rem;
  color: #990000;
  font-weight: bold;
}
.research-news-topics .research-news-entry .headline {
  font-size: 18px;
  font-size: 1.8rem;
}
.research-news-topics .research-news-entry .headline a {
  color: inherit;
}
.research-news-topics .research-news-entry .tag-icon {
  font-size: 0px;
  font-size: 0rem;
  position: relative;
  padding-left: 25px;
}
.research-news-topics .research-news-entry .tag-icon a {
  color: inherit;
}
.research-news-topics .research-news-entry .tag-icon a:hover {
  text-decoration: underline;
}
.research-news-topics .research-news-entry .tag-icon:after {
  position: absolute;
  content: '';
  left: 2px;
  top: 3px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
  background-size: 11px 11px;
}
.research-news-topics .research-news-entry .tag-icon li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  font-size: 12px;
  font-size: 1.2rem;
}
.research-news-topics .research-news-entry .tag-icon li:after {
  position: absolute;
  content: ',';
  right: 0;
}
.research-news-topics .research-news-entry .tag-icon li.is-last {
  margin-right: 0;
  padding-right: 0;
}
.research-news-topics .research-news-entry .tag-icon li.is-last:after {
  display: none;
}
.research-news-topics.top {
  padding-top: 55px;
  background: #e2e6e9;
  -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
}
.research-news-topics.top .c-frame {
  position: relative;
}
.research-news-topics.top .c-frame:before {
  overflow-x: hidden;
  z-index: 1;
  content: '';
  position: absolute;
  left: 50%;
  top: -55px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid rgba(0, 0, 0, 0.2);
  border-width: 20px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}
.research-news-topics.top .c-frame:after {
  z-index: 2;
  content: '';
  position: absolute;
  left: 50%;
  top: -57px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid #e7eaec;
  border-width: 20px;
}

@-moz-document url-prefix() {
  .research-news-topics.type2 .text-box .tag-icon:after {
    top: 3px;
  }
}
.research-events .event-entry .tag-icon {
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .bg-gray-contents {
    padding: 1px 0 1px;
  }

  .bg-gray.video-link {
    padding: 5px 0 50px;
  }

  .main-contents.video-post-area {
    padding: 1px 0 0;
  }
  .main-contents.type1.video-bg-gray {
    margin-left: 0;
    margin-right: 0;
    padding: 20px 13px 50px;
  }
  .main-contents.type1.video-bg-gray .research-title {
    margin-bottom: 20px;
    text-align: left;
  }
  .main-contents.pdt18 {
    margin-top: 0;
    padding: 0;
  }
  .main-contents.pdt27 {
    margin-top: 0;
    padding: 0;
  }
  .main-contents.pdt36 {
    padding: 0;
  }
  .main-contents.pdt60 {
    padding: 0;
  }
  .main-contents.pdt60 .video-list {
    margin-bottom: 0;
  }
  .main-contents.photo {
    padding: 0 0 40px;
  }
  .main-contents.campus {
    padding-bottom: 72px;
  }
  .main-contents.campus .heading {
    padding: 9px 0 14px;
  }
  .main-contents.campus .heading img {
    height: 38px;
  }
  .main-contents.campus .link-btn-area {
    margin: 0 0 11px;
  }
  .main-contents.campus .link-btn-area a {
    padding: 17px 12px 15px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .main-contents.campus .link-btn-area a:after {
    right: 11px;
    width: 5px;
    height: 10px;
    margin-top: -5px;
    background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
    background-size: 5px 10px;
  }
  .main-contents.academics .ttl-red {
    margin: 16px 0 9px;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
  }
  .main-contents.academics .ttl-red.mgt44 {
    margin-top: 16px;
  }
  .main-contents.academics .link-set-col2 {
    overflow: hidden;
  }
  .main-contents.academics .link-set-col2 h3 {
    margin-top: 0;
  }
  .main-contents.academics .link-set-col2 .fl-l {
    float: none;
  }
  .main-contents.academics .link-set-col2 .fl-r {
    float: none;
  }
  .main-contents.academics .link-set {
    margin-right: 0;
    font-size: 0;
  }
  .main-contents.academics .link-set.pdb18 {
    padding-bottom: 0;
  }
  .main-contents.academics .link-set.small .img {
    width: 13.26531%;
  }
  .main-contents.academics .link-set.small .img img {
    border: none;
  }
  .main-contents.academics .link-set.small li {
    margin: 0 0 13px 0;
  }
  .main-contents.academics .link-set.small h4 {
    width: 85.03401%;
    padding: 8px 23px 0 11px;
    min-height: inherit;
  }
  .main-contents.academics .link-set.small a:after {
    top: 19px;
  }
  .main-contents.academics .link-set li {
    display: block;
    width: 100%;
    font-size: 10px;
    font-size: 1rem;
    margin: 0 0 11px 0;
  }
  .main-contents.academics .link-set a {
    padding: 5px 0;
    background: #fff;
  }
  .main-contents.academics .link-set a:after {
    top: 26px;
    right: 13px;
    width: 5px;
    height: 10px;
    margin-top: 0;
    background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
    background-size: 5px 10px;
  }
  .main-contents.academics .link-set .img {
    width: 16.66667%;
    margin: 0 0 0 1.70068%;
  }
  .main-contents.academics .link-set .img img {
    border: none;
  }
  .main-contents.academics .link-set h4 {
    margin: 0 0 -1px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .main-contents.academics .link-set .text {
    width: 81.63265%;
    padding: 4px 23px 0 10px;
    min-height: inherit;
  }

  .research-title {
    margin: 15px 0;
    text-align: center;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .research-title span {
    padding-bottom: 6px;
  }

  .research-list {
    margin-bottom: 19px;
  }
  .research-list.type2.mgb7-sp {
    margin-bottom: 7px;
  }
  .research-list.type2 .mod-title.type3 {
    margin: 12px 0 13px;
    padding: 8px 7px 7px;
  }
  .research-list.type2 .free-text-area {
    margin-bottom: 0;
  }
  .research-list.type2 .free-text-area p {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .research-list.type2 .image-list-col2 .fl-l {
    width: auto;
    float: none;
  }
  .research-list.type2 .image-list-col2 .fl-r {
    width: auto;
    float: none;
  }
  .research-list.type2 .image-list-col2 .fl-r .research-title {
    margin-top: 7px;
  }
  .research-list.type2 .image-list-col2 h3 {
    padding: 3px 0 6px;
    font-size: 13px;
    font-size: 1.3rem;
    text-align: center;
  }
  .research-list.type2 .research-title {
    margin: 19px 0 14px;
  }
  .research-list.type2 .research-title.mgt5 {
    margin-top: 5px;
  }
  .research-list.type2 .research-title span {
    padding-bottom: 4px;
  }
  .research-list.type2.mgt53 {
    margin-top: 53px;
  }
  .research-list.type2 .image-list.mgb32 .image-set figure {
    margin-bottom: 12px;
  }
  .research-list.type2 .image-list.type2 {
    margin-right: 0;
  }
  .research-list.type2 .image-list.type2 .image-set {
    width: 100%;
    margin-right: 0;
  }
  .research-list.type2 .image-set.mgb32 figure {
    margin-bottom: 10px;
  }
  .research-list.type2 .image-set figure {
    margin-bottom: 13px;
  }
  .research-list.type2 .image-set figure figcaption {
    padding: 12px 36px 9px 12px;
  }
  .research-list.type2 .image-set figure figcaption:after {
    margin-top: 3px;
    top: 13px;
    right: 13px;
    height: 10px;
    width: 5px;
    background-size: 5px 10px;
  }
  .research-list.type2 .image-set a.blank figcaption:after {
    position: absolute;
    content: '';
    right: 20px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -6px;
    background: url("/common/images_e/common/icon_blank_x2.png") no-repeat left top;
    background-size: 11px 11px;
  }
  .research-list.type2 .image-set a.pdf figcaption:after {
    position: absolute;
    content: '';
    right: 20px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -6px;
    background: url("/common/images_e/common/icon_pdf_x2.png") no-repeat left top;
    background-size: 11px 11px;
  }
  .research-list.type2 .image-set a.excel figcaption:after {
    position: absolute;
    content: '';
    right: 20px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -6px;
    background: url("/common/images_e/common/icon_excel_x2.png") no-repeat left top;
    background-size: 11px 11px;
  }
  .research-list.type2 .image-set a.word figcaption:after {
    position: absolute;
    content: '';
    right: 20px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -6px;
    background: url("/common/images_e/common/icon_word_x2.png") no-repeat left top;
    background-size: 11px 11px;
  }
  .research-list .image-list {
    overflow: hidden;
    position: relative;
    margin-right: -3%;
    box-sizing: border-box;
    text-align: left;
  }
  .research-list .image-list.aid01.link.lg, .research-list .image-list.aid02.link.lg, .research-list .image-list.aid03.link.lg, .research-list .image-list.aid04.link.lg {
    padding-bottom: 10px;
  }
  .research-list .image-list.aid01 figure figcaption, .research-list .image-list.aid02 figure figcaption, .research-list .image-list.aid03 figure figcaption, .research-list .image-list.aid04 figure figcaption {
    padding: 6px 21px 7px 11px;
  }
  .research-list .image-set {
    max-width: none !important;
    width: 47%;
    margin-right: 3%;
    box-sizing: border-box;
  }
  .research-list .image-set figure {
    margin-bottom: 12px;
  }
  .research-list .image-set figure figcaption {
    padding: 10px 25px 10px 10px;
  }
  .research-list .image-set figure figcaption:after {
    top: 13px;
    right: 13px;
  }
  .research-list .image-set figure figcaption small {
    font-size: 10px;
    font-size: 1rem;
  }
  .research-list .image-set.full {
    width: 100%;
  }
  .research-list .image-list.link.lg {
    margin-right: -4.08163%;
    padding-bottom: 5px;
  }
  .research-list .image-list.link.lg .image-set {
    width: 46.07843%;
    margin: 0 3.92157% 3.92157% 0;
  }
  .research-list .image-list.link.lg.bdt {
    margin-top: 7px;
    padding: 20px 0 0;
  }
  .research-list .image-list.link.lg .image-set a {
    padding: 12px 25px 12px 12px;
  }
  .research-list .image-list.link.lg .image-set a:after {
    margin-top: -6px;
  }
  .research-list .image-list.link .image-set {
    width: 47%;
    margin-right: 3%;
    margin-bottom: 3%;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .research-list .image-list.link .image-set.line a {
    font-size: 10px;
    font-size: 1rem;
    padding: 18px 20px 19px 11px;
  }
  .research-list .image-list.link .image-set a {
    padding: 13px 25px 12px 14px;
  }
  .research-list .image-list.link .image-set a:after {
    position: absolute;
    content: '';
    right: 13px;
    width: 5px;
    height: 10px;
    margin-top: -12px;
    background: url("/common/images_e/common/bg_right_red_x2.png") no-repeat left top;
    background-size: 5px 10px;
  }

  .research-link-list {
    margin-bottom: 10px;
    padding-top: 20px;
  }
  .research-link-list.type2.pdt9 {
    padding-top: 0;
  }
  .research-link-list.type2 .heading {
    text-align: center;
  }
  .research-link-list.type2 .image-set.full img {
    width: 100%;
  }
  .research-link-list.type2 .menu-list ul a {
    width: auto;
    padding: 13px 23px 12px 12px;
    line-height: 1.5;
  }
  .research-link-list.type2 .menu-list ul a:after {
    margin-top: 3px;
    top: 13px;
    right: 13px;
    height: 10px;
    width: 5px;
    background-size: 5px 10px;
  }
  .research-link-list.type2 .menu-list ul p {
    width: auto;
    padding: 13px 23px 12px 12px;
    line-height: 1.5;
  }
  .research-link-list .sp-hide {
    display: none;
  }
  .research-link-list .heading {
    float: none;
    width: auto;
    margin-bottom: 13px;
  }
  .research-link-list .menu-list {
    float: none;
    width: auto;
  }
  .research-link-list .menu-list ul a {
    padding: 10px 25px 10px 10px;
  }
  .research-link-list .menu-list ul a:after {
    top: 20px;
    right: 13px;
  }

  .other-list-area .main-contents {
    padding-top: 20px;
  }
  .other-list-area .main-contents.mgt0-sp {
    margin-top: 0;
  }
  .other-list-area .main-contents.pdt0-sp {
    padding-top: 0;
  }
  .other-list-area .main-contents.pdt0 {
    margin-top: 0;
  }
  .other-list-area .main-contents.pdt5 {
    padding-top: 0;
  }
  .other-list-area .main-contents.pdt8 {
    padding-top: 0;
  }
  .other-list-area .main-contents.pdt10 {
    padding-top: 0;
    margin-top: 0;
  }
  .other-list-area .main-contents.pdb50-sp {
    padding-bottom: 50px;
  }
  .other-list-area .main-contents.pdb111 {
    padding-bottom: 23px;
  }
  .other-list-area .research-link-list {
    position: relative;
    border-top: 1px solid #fff;
    padding: 13px 0 10px;
    margin-bottom: 0;
  }
  .other-list-area .research-link-list:before {
    width: 80px;
  }
  .other-list-area .research-link-list .heading {
    margin: 0 0 11px;
    font-size: 15px;
    font-size: 1.5rem;
    text-align: left;
  }

  .all-for-btn.posi-r {
    margin: 0;
    text-align: left;
  }
  .all-for-btn.posi-r a {
    padding: 13px 10px 11px;
    width: 48.29932%;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .all-for-btn.btn-list {
    overflow: hidden;
  }
  .all-for-btn.btn-list a {
    float: right;
    display: inline-block;
    padding: 13px 0 11px;
  }
  .all-for-btn.btn-list .first {
    float: left;
    margin: 0;
  }
  .all-for-btn a {
    display: block;
    padding: 20px;
    font-size: 13px;
    font-size: 1.3rem;
  }

  .research-news-topics,
  .research-events {
    padding: 20px 0 25px;
  }
  .research-news-topics.bg-gray,
  .research-events.bg-gray {
    padding: 26px 0 27px;
  }
  .research-news-topics.feature,
  .research-events.feature {
    padding: 20px 0 23px;
  }
  .research-news-topics.feature .heading,
  .research-events.feature .heading {
    border-bottom: none;
    margin-bottom: 0;
  }
  .research-news-topics.feature .heading img,
  .research-events.feature .heading img {
    height: 42px;
  }
  .research-news-topics.feature p a,
  .research-events.feature p a {
    display: block;
  }
  .research-news-topics.feature p img,
  .research-events.feature p img {
    width: 100%;
  }
  .research-news-topics .blank img,
  .research-news-topics .pdf img,
  .research-news-topics .excel img,
  .research-news-topics .word img,
  .research-events .blank img,
  .research-events .pdf img,
  .research-events .excel img,
  .research-events .word img {
    width: 11px;
    height: auto;
  }
  .research-news-topics .heading,
  .research-events .heading {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d1d5d8;
  }
  .research-news-topics .heading img,
  .research-events .heading img {
    width: auto;
    height: 19px;
  }
  .research-news-topics .c-frame,
  .research-events .c-frame {
    margin: 0 13px;
  }
  .research-news-topics .all-for-btn,
  .research-events .all-for-btn {
    margin-right: 0;
  }

  .research-news-topics.type2 {
    text-align: center;
  }
  .research-news-topics.type2 .research-news-entry {
    padding-bottom: 11px;
    text-align: left;
  }
  .research-news-topics.type2 .photo.clip-icon a:before {
    display: block;
  }
  .research-news-topics.type2 .text-box {
    padding: 0;
    border: none;
  }
  .research-news-topics.type2 .text-box .date-icon {
    margin: 0 0 2px;
  }
  .research-news-topics.type2 .text-box .news-header {
    margin-bottom: 3px;
  }
  .research-news-topics.type2 .all-for-btn {
    margin-top: 10px;
  }
  .research-news-topics.type2 .all-for-btn a {
    padding: 18px 20px 16px;
  }
  .research-news-topics.type2 .text-box .tag-icon:after {
    left: 2px;
    top: 5px;
    width: 9px;
    height: 9px;
    background-size: 9px 9px;
  }
  .research-news-topics.type2 .text-box .tag-icon a {
    color: #666;
  }
  .research-news-topics .l-contents {
    margin-right: 0;
  }
  .research-news-topics .all-for-btn {
    margin-top: 10px;
  }
  .research-news-topics .research-news-entry {
    width: auto;
    margin-right: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d1d5d8;
  }
  .research-news-topics .research-news-entry .photo {
    margin-bottom: 13px;
    text-align: center;
  }
  .research-news-topics .research-news-entry .photo a {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
  }
  .research-news-topics .research-news-entry .photo.new-icon a:after {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }
  .research-news-topics .research-news-entry .photo.clip-sp a:before {
    top: 11px;
    right: -3px;
    width: 41px;
    height: 18px;
    background-size: 41px 18px;
  }
  .research-news-topics .research-news-entry .date-icon {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .research-news-topics .research-news-entry .headline {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .research-news-topics .research-news-entry .tag-icon {
    font-size: 10px;
    font-size: 1rem;
  }
  .research-news-topics.top {
    padding: 23px 0 15px;
  }
  .research-news-topics.top .c-frame:before, .research-news-topics.top .c-frame:after {
    top: -23px;
    margin-left: -10px;
  }
  .research-news-topics.top .c-frame:before {
    border-width: 10px;
  }
  .research-news-topics.top .c-frame:after {
    border-top: solid #f1f3f4;
    border-width: 10px;
  }

  @-moz-document url-prefix() {
    .research-news-topics.type2 .text-box .tag-icon:after {
      top: 5px;
    }
  }
  .research-events .heading {
    margin-bottom: 0;
    padding-top: 0;
  }
  .research-events .event-entry .tag-icon {
    margin-top: 0;
  }
}
/* トップ */
.main-top-area {
  position: relative;
  height: 600px;
}

.top-news-list {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
}
.top-news-list li {
  width: 580px;
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
.top-news-list li:first-child {
  margin-top: 0;
}
.top-news-list a {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 5px;
  color: #ffffff;
  background: #990000;
}
.top-news-list a:after {
  content: '';
  position: absolute;
  right: 9px;
  top: 50%;
  width: 3px;
  height: 6px;
  margin-top: -3px;
  background-image: url("/common/images_e/common/bg_right_white_x2.png");
  background-repeat: no-repeat;
  background-size: 3px 6px;
}

.btn-scroll {
  position: absolute;
  bottom: 15px;
  left: 50%;
  margin-left: -32px;
}
.btn-scroll a {
  display: block;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .main-top-area {
    height: 458px;
    height: auto;
  }

  .top-news-list {
    position: static;
    margin-top: -50px;
  }
  .top-news-list li {
    display: block;
    width: auto;
    margin-top: 0;
    border-top: 1px solid #b4494a;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .top-news-list li:first-child {
    border-top: none;
  }
  .top-news-list a {
    position: relative;
    display: block;
    padding: 11px 9px;
  }
  .top-news-list a:after {
    width: 6px;
    height: 12px;
    margin-top: -6px;
    background-size: 6px 12px;
  }

  .btn-scroll {
    display: none;
  }
}
.topics-borders {
  background: url("/common/images_e/top/top_topics_bg01.png") no-repeat center top;
}
.topics-borders .c-frame {
  position: relative;
  padding: 68px 0;
}
.topics-borders .heading {
  margin-bottom: 45px;
  text-align: center;
}
.topics-borders .blank img,
.topics-borders .pdf img,
.topics-borders .excel img,
.topics-borders .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.topics-borders .news-entry {
  position: relative;
  margin-bottom: 0;
}
.topics-borders .news-entry .photo {
  position: absolute;
  width: 510px;
}
.topics-borders .news-entry .photo.new-icon a {
  overflow: hidden;
  position: relative;
  display: block;
}
.topics-borders .news-entry .photo.new-icon a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  background: url("/common/images_e/common/icon_new_x2.png") no-repeat left top;
  background-size: 76px 76px;
}
.topics-borders .news-entry .text {
  position: relative;
  z-index: 0;
  width: 550px;
  margin-bottom: 20px;
  padding: 30px 35px;
  border-width: 5px;
}
.topics-borders .news-entry .text .news-header {
  min-height: auto;
  padding-bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.topics-borders .news-entry .text .news-header .no {
  margin-bottom: 5px;
  color: #990000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}
.topics-borders .news-entry .text .event-footer {
  padding-top: 0;
  border-top: none;
}
.topics-borders .news-entry .text .icon-arrow {
  position: absolute;
  right: 7px;
  top: 0;
  display: block;
  padding: 11px;
}
.topics-borders .news-entry .text .icon-arrow img {
  width: 10px;
  height: 20px;
}
.topics-borders .news-entry.img-left {
  min-height: 275px;
}
.topics-borders .news-entry.img-left .text {
  float: right;
  margin-top: 35px;
  margin-bottom: 60px;
}
.topics-borders .news-entry.img-left .text .topics-frame {
  min-height: 152px;
}
.topics-borders .news-entry.img-right {
  margin-top: 40px;
  min-height: 230px;
}
.topics-borders .news-entry.img-right .photo {
  right: 0;
  top: -60px;
}
.topics-borders .news-entry.img-right .text {
  float: left;
  margin-bottom: 40px;
}
.topics-borders .news-entry.img-right .text .topics-frame {
  min-height: 152px;
}
.topics-borders .news-entry.topics-entry .text .topics-frame {
  display: table;
  height: 100%;
}
.topics-borders .news-entry.topics-entry .text .topics-cell {
  display: table-cell;
}
.topics-borders .news-entry.topics-entry .text .news-header {
  display: table-row;
}
.topics-borders .news-entry.topics-entry .text .news-header .topics-cell {
  vertical-align: top;
}
.topics-borders .news-entry.topics-entry .text .event-footer {
  display: table-row;
  vertical-align: bottom;
}
.topics-borders .news-entry.topics-entry .text .event-footer .topics-cell {
  vertical-align: bottom;
}
.topics-borders .news-entry.eyes {
  min-height: 358px;
  margin-bottom: 40px;
}
.topics-borders .news-entry.eyes .photo {
  width: 630px;
}
.topics-borders .news-entry.eyes .text {
  position: relative;
  width: 390px;
  height: auto;
  margin-bottom: 0;
  padding: 25px 35px;
  border: none;
  background: #990000;
  color: #ffffff;
  box-sizing: border-box;
}
.topics-borders .news-entry.eyes .text:before {
  content: '';
  position: absolute;
  left: -30px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 8px solid #990000;
  border-right: 15px solid #990000;
  border-bottom: 8px solid transparent;
  border-left: 15px solid transparent;
}
.topics-borders .news-entry.eyes .text a {
  color: #ffffff;
}
.topics-borders .news-entry.eyes .text .topics-frame {
  min-height: 308px;
}
.topics-borders .news-entry.eyes .text .news-header .topics {
  margin-bottom: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}
.topics-borders .news-entry.eyes .text .news-header h2 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #b4494a;
  font-size: 18px;
  font-size: 1.8rem;
}
.topics-borders .news-entry.eyes .text .news-header .eyes-txt {
  font-size: 14px;
  font-size: 1.4rem;
}
.topics-borders .news-entry.eyes .text .icon-arrow a {
  display: block;
  padding: 16px 18px;
}
.topics-borders .news-entry.eyes .text .icon-arrow img {
  width: 10px;
  height: 20px;
}
.topics-borders .news-entry.eyes .text .date-icon:after {
  background-image: url("/common/images_e/common/icon_top_date_x2.png");
}
.topics-borders .news-entry.eyes .text .tag-icon:after {
  background-image: url("/common/images_e/common/icon_top_tag_x2.png");
}
.topics-borders .news-entry.eyes .eye {
  position: absolute;
  display: table;
  left: 0;
  right: 0;
  bottom: 0;
  width: 630px;
  border: none;
}
.topics-borders .news-entry.eyes .eye .headline {
  display: table-cell;
  width: 40px;
  padding: 20px 15px 15px;
  text-align: center;
  background: #3177c5;
  color: #ffffff;
  line-height: 1;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}
.topics-borders .news-entry.eyes .eye .headline span {
  font-size: 36px;
  font-size: 3.6rem;
}
.topics-borders .news-entry.eyes .eye .eye-text {
  display: table-cell;
  padding: 0 23px;
  vertical-align: middle;
  background: #000000;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .topics-borders .c-frame {
    padding: 20px 13px;
  }
  .topics-borders .heading {
    margin-bottom: 15px;
  }
  .topics-borders .heading img {
    width: 103px;
    height: auto;
  }
  .topics-borders .blank img,
  .topics-borders .pdf img,
  .topics-borders .excel img,
  .topics-borders .word img {
    width: 11px;
    height: auto;
  }
  .topics-borders .news-entry {
    margin-top: 10px;
  }
  .topics-borders .news-entry .photo {
    position: static;
    width: auto;
  }
  .topics-borders .news-entry .photo.new-icon a:after {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }
  .topics-borders .news-entry .text {
    width: auto;
    height: auto;
    min-height: inherit;
    padding: 13px 14px;
    border-width: 3px;
  }
  .topics-borders .news-entry .text .news-header .no {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .topics-borders .news-entry .text .icon-arrow img {
    width: 7px;
    height: 14px;
  }
  .topics-borders .news-entry.img-left {
    min-height: inherit;
  }
  .topics-borders .news-entry.img-left .text {
    float: none;
    margin: 10px 0 0;
  }
  .topics-borders .news-entry.img-right {
    margin-top: 10px;
    min-height: inherit;
  }
  .topics-borders .news-entry.img-right .photo {
    top: 0;
  }
  .topics-borders .news-entry.img-right .text {
    float: none;
    margin: 10px 0 0;
  }
  .topics-borders .news-entry.topics-entry .text .topics-frame {
    display: block;
    height: auto;
    min-height: inherit;
  }
  .topics-borders .news-entry.topics-entry .text .topics-cell {
    display: block;
  }
  .topics-borders .news-entry.topics-entry .text .news-header {
    display: block;
  }
  .topics-borders .news-entry.topics-entry .text .event-footer {
    display: block;
  }
  .topics-borders .news-entry.eyes {
    min-height: auto;
    margin-bottom: 13px;
  }
  .topics-borders .news-entry.eyes .photo {
    width: auto;
    margin-bottom: 0;
  }
  .topics-borders .news-entry.eyes .text {
    border: none;
    width: auto;
    min-height: initial;
    margin-bottom: 0;
    padding: 15px;
  }
  .topics-borders .news-entry.eyes .text:before {
    display: none;
  }
  .topics-borders .news-entry.eyes .text .topics-frame {
    min-height: initial;
  }
  .topics-borders .news-entry.eyes .text .news-header .topics {
    margin-bottom: 5px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
  }
  .topics-borders .news-entry.eyes .text .news-header h2 {
    margin-bottom: 12px;
    padding-bottom: 8px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .topics-borders .news-entry.eyes .text .news-header .eyes-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .topics-borders .news-entry.eyes .text .icon-arrow a {
    padding: 13px;
  }
  .topics-borders .news-entry.eyes .text .icon-arrow img {
    width: 7px;
    height: 14px;
  }
  .topics-borders .news-entry.eyes .eye {
    position: static;
    display: block;
    width: auto;
    padding: 13px;
    background: #272c32;
  }
  .topics-borders .news-entry.eyes .eye .headline {
    display: block;
    width: auto;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    background: none;
    color: #3177c5;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .topics-borders .news-entry.eyes .eye .headline br {
    display: none;
  }
  .topics-borders .news-entry.eyes .eye .headline span {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .topics-borders .news-entry.eyes .eye .eye-text {
    display: block;
    padding: 0;
    background: none;
    text-align: left;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.icon-rss {
  position: absolute;
  right: 0;
  top: 0;
}
.icon-rss img {
  width: 69px;
  height: 31px;
}

.more-events {
  -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
}
.more-events .c-frame {
  position: relative;
}
.more-events .c-frame:before {
  overflow-x: hidden;
  z-index: 1;
  content: '';
  position: absolute;
  left: 50%;
  top: 0px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid rgba(0, 0, 0, 0.2);
  border-width: 20px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}
.more-events .c-frame:after {
  z-index: 2;
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid #e7eaec;
  border-width: 20px;
}
.more-events .icon-rss {
  top: 55px;
}
.more-events .c-frame {
  padding: 55px 0 60px;
}
.more-events .c-frame:after {
  border-top-color: #e2e6e9;
}
.more-events .heading {
  margin-bottom: 35px;
  text-align: center;
}
.more-events .heading img {
  width: 393px;
}
.more-events .category-list {
  font-size: 0px;
  font-size: 0rem;
  text-align: center;
}
.more-events .category-list li {
  vertical-align: top;
  display: inline-block;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}
.more-events .category-list li img {
  width: 60px;
  height: auto;
}
.more-events .category-list a {
  display: block;
  padding: 0 20px;
}
.more-events .category-list a:hover {
  text-decoration: none;
}
.more-events .category-list a:hover p {
  text-decoration: none;
}
.more-events .category-list a p {
  margin-top: 12px;
  color: #000;
  line-height: 1.5;
  font-weight: bold;
}
.more-events .tag-list {
  margin: 15px -10px 10px 0;
  padding: 0 29px;
  text-align: center;
  font-size: 0px;
  font-size: 0rem;
}
.more-events .tag-list li {
  vertical-align: top;
  display: inline-block;
  margin: 0 10px 10px 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
}
.more-events .tag-list a {
  position: relative;
  display: block;
  padding: 5px 8px 5px 20px;
  color: inherit;
  background: #ffffff;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.more-events .tag-list a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 11px;
  height: 11px;
  background: url("/common/images_e/common/icon_events_tag_x2.png") no-repeat left top;
  background-size: 11px 11px;
}

.why {
  -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
}
.why .c-frame {
  position: relative;
}
.why .c-frame:before {
  overflow-x: hidden;
  z-index: 1;
  content: '';
  position: absolute;
  left: 50%;
  top: 0px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid rgba(0, 0, 0, 0.2);
  border-width: 20px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}
.why .c-frame:after {
  z-index: 2;
  content: '';
  position: absolute;
  left: 50%;
  top: -2px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid #e7eaec;
  border-width: 20px;
}
.why.no-news-topics {
  background: #e2e6e9;
}
.why.no-news-topics .c-frame:after {
  border-top-color: #f2f4f6;
}
.why .c-frame {
  padding: 60px 0 60px;
}
.why .c-frame:after {
  border-top-color: #e2e6e9;
}
.why .heading {
  margin-bottom: 40px;
  text-align: center;
}
.why .heading img {
  width: 128px;
}
.why .l-contents {
  margin-right: -40px;
  vertical-align: top;
  font-size: 0px;
  font-size: 0rem;
}
.why .link-list {
  text-align: center;
}
.why .link-list img {
  width: 100%;
  height: auto;
}
.why .link-list li {
  display: inline-block;
  min-height: 242px;
  width: 320px;
  margin: 0 40px 40px 0;
}
.why .link-list a {
  position: relative;
  display: block;
  padding-bottom: 37px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.why .link-list a:hover {
  opacity: 0.70;
  -moz-opacity: 0.70;
  filter: alpha(opacity=70);
}
.why .link-list .text-box {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  padding: 0 20px 0 17px;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.why .link-list .text-box:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  right: 0;
  height: 20px;
  width: 10px;
  background: url(/common/images_e/common/icon_whylink.png) no-repeat;
}
.why .link-list h3 {
  font-size: 28px;
  font-size: 2.8rem;
  color: #000;
}
.why .link-list p {
  font-size: 14px;
  font-size: 1.4rem;
  color: #990000;
}
.why .link-list02 {
  text-align: center;
}
.why .link-list02 img {
  width: 100%;
  height: auto;
}
.why .link-list02 li {
  display: inline-block;
  width: 290px;
  margin: 0 0 20px 64px;
}
.why .link-list02 li:first-child {
  margin: 0;
}
.why .link-list02 a {
  position: relative;
  display: block;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.why .link-list02 a:hover {
  opacity: 0.70;
  -moz-opacity: 0.70;
  filter: alpha(opacity=70);
}
.why .link-list02 .text {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: -14px 0 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}
.why .link-list02 .text:after {
  content: "";
  display: inline-block;
  height: 12px;
  width: 6px;
  background: url(/common/images_e/common/icon_whylink_w.png) no-repeat;
  -moz-background-size: 6px 12px;
  -o-background-size: 6px 12px;
  -webkit-background-size: 6px 12px;
  background-size: 6px 12px;
  margin: 0 0 0 7px;
}

.research-events.top {
  -moz-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.5) inset;
}
.research-events.top .c-frame {
  position: relative;
}
.research-events.top .c-frame:before {
  overflow-x: hidden;
  z-index: 1;
  content: '';
  position: absolute;
  left: 50%;
  top: -45px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid rgba(0, 0, 0, 0.2);
  border-width: 20px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
}
.research-events.top .c-frame:after {
  z-index: 2;
  content: '';
  position: absolute;
  left: 50%;
  top: -47px;
  display: block;
  width: 0;
  height: 0;
  margin-left: -20px;
  border: solid transparent;
  border-top: solid #f2f4f6;
  border-width: 20px;
}
.research-events.top.no-news-topics {
  background: #f2f4f6;
}
.research-events.top.no-news-topics .c-frame:after {
  border-top-color: #e2e6e9;
}

@media screen and (max-width: 767px) {
  .icon-rss img {
    width: 46px;
    height: 18px;
  }

  .more-events .icon-rss {
    top: 30px;
    right: 13px;
  }
  .more-events .c-frame {
    padding: 30px 13px 20px;
  }
  .more-events .c-frame:before, .more-events .c-frame:after {
    margin-left: -10px;
  }
  .more-events .c-frame:before {
    border-width: 10px;
  }
  .more-events .c-frame:after {
    border-width: 10px;
  }
  .more-events .heading {
    margin-bottom: 15px;
  }
  .more-events .heading img {
    width: 220px;
    height: auto;
  }
  .more-events .category-list li {
    margin-bottom: 13px;
  }
  .more-events .category-list li img {
    width: 60px;
  }
  .more-events .category-list a {
    padding: 0 18px;
  }
  .more-events .tag-list {
    display: none;
  }

  .research-events.top .c-frame:before, .research-events.top .c-frame:after {
    top: -20px;
    margin-left: -10px;
  }
  .research-events.top .c-frame:before {
    border-width: 10px;
  }
  .research-events.top .c-frame:after {
    border-width: 10px;
  }

  .why .c-frame {
    margin: 0 13px;
    padding: 24px 0 28px;
  }
  .why .heading {
    margin-bottom: 17px;
  }
  .why .heading img {
    width: 64px;
  }
  .why .l-contents {
    margin-right: 0;
    vertical-align: top;
  }
  .why .link-list li {
    min-height: inherit;
    width: 100%;
    margin: 0 0 19px;
    border-bottom: 2px solid #d1d5d8;
  }
  .why .link-list a {
    padding-bottom: 50px;
  }
  .why .link-list .text-box {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    padding: 0 20px 0 9px;
    text-align: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .why .link-list .text-box:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 2px;
    right: 0;
    height: 14px;
    width: 7px;
    background: url(/common/images_e/common/icon_whylink_x2.png) no-repeat;
    -moz-background-size: 7px 14px;
    -o-background-size: 7px 14px;
    -webkit-background-size: 7px 14px;
    background-size: 7px 14px;
  }
  .why .link-list h3 {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .why .link-list p {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .why .link-list02 li {
    width: 31.63265%;
    margin: 0 0 0 2.38095%;
  }
  .why .link-list02 .text {
    margin: -9px 0 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .why .link-list02 .text:after {
    height: 9px;
    width: 5px;
    background: url(/common/images_e/common/icon_whylink_w.png) no-repeat;
    -moz-background-size: 5px 9px;
    -o-background-size: 5px 9px;
    -webkit-background-size: 5px 9px;
    background-size: 5px 9px;
    margin: 0 0 0 3px;
  }
}
.facts {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: url("/common/images_e/top/top_bg_facts.png") no-repeat center top;
  background-size: cover;
}
.facts:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 60px;
  background: url("/common/images_e/top/top_bg_facts03.png") repeat-x center top;
}
.facts:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: url("/common/images_e/top/top_bg_facts04.png") repeat-x center top;
}
.facts .c-bg {
  width: 100%;
  background: url("/common/images_e/top/top_bg_facts02.png") repeat center top;
}
.facts .c-frame {
  margin: 0 auto;
}
.facts .l-content {
  position: relative;
  width: 1248px;
  height: 1675px;
  margin: 0 -104px;
  padding-top: 178px;
  box-sizing: border-box;
}
.facts .heading {
  position: absolute;
  left: 50%;
  top: 118px;
  margin-left: -93px;
}
.facts .heading img {
  width: 186px;
  height: auto;
}
.facts .facts-list li img {
  width: 208px;
  height: 241px;
}
.facts .tit,
.facts .pic,
.facts .btn1,
.facts .btn2,
.facts .btn3,
.facts .btn4 {
  position: absolute;
}
.facts .facts-t,
.facts .facts-d,
.facts .facts-g,
.facts .facts-e,
.facts .facts-r {
  position: relative;
}
.facts .facts-t .tit {
  top: 1px;
  left: 104px;
}
.facts .facts-t .btn1 {
  top: 1px;
  left: 312px;
}
.facts .facts-t .btn2 {
  top: 180px;
  left: 208px;
}
.facts .facts-t .btn3 {
  top: 180px;
  left: 416px;
}
.facts .facts-t .pic {
  top: 180px;
  left: 0px;
}
.facts .facts-d .tit {
  top: 180px;
  left: 624px;
}
.facts .facts-d .btn1 {
  top: 1px;
  left: 936px;
}
.facts .facts-d .btn2 {
  top: 180px;
  left: 832px;
}
.facts .facts-d .btn3 {
  top: 359px;
  left: 728px;
}
.facts .facts-d .pic {
  top: 1px;
  left: 728px;
}
.facts .facts-g .tit {
  top: 538px;
  left: 208px;
}
.facts .facts-g .btn1 {
  top: 538px;
  left: 416px;
}
.facts .facts-g .btn2 {
  top: 717px;
  left: 104px;
}
.facts .facts-g .btn3 {
  top: 717px;
  left: 312px;
}
.facts .facts-g .btn4 {
  top: 896px;
  left: 208px;
}
.facts .facts-g .pic {
  top: 538px;
  left: 0px;
}
.facts .facts-e .tit {
  top: 538px;
  left: 832px;
}
.facts .facts-e .btn1 {
  top: 717px;
  left: 728px;
}
.facts .facts-e .btn2 {
  top: 717px;
  left: 936px;
}
.facts .facts-e .btn3 {
  top: 896px;
  left: 832px;
}
.facts .facts-e .pic {
  top: 538px;
  left: 1040px;
}
.facts .facts-r .tit {
  top: 896px;
  left: 416px;
}
.facts .facts-r .btn1 {
  top: 1075px;
  left: 312px;
}
.facts .facts-r .btn2 {
  top: 1075px;
  left: 520px;
}
.facts .facts-r .btn3 {
  top: 1075px;
  left: 728px;
}
.facts .facts-r .pic {
  top: 896px;
  left: 624px;
}
.facts .facts-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .facts {
    background: url("/common/images_e/top/top_bg_facts_x2.png") no-repeat center top;
  }
  .facts:before {
    min-width: inherit;
    height: 42px;
    background-size: 147px auto;
  }
  .facts:after {
    min-width: inherit;
    height: 42px;
    background-size: 147px auto;
  }
  .facts .c-bg {
    background: none;
  }
  .facts .c-frame {
    padding-top: 0;
  }
  .facts .l-content {
    width: auto;
    height: auto;
    margin: 0;
    padding: 60px 13px 65px;
    min-width: inherit;
    height: auto;
  }
  .facts .heading {
    position: static;
    left: 0;
    top: 0;
    margin: 0 0 18px;
    text-align: center;
  }
  .facts .heading img {
    width: 104px;
    height: auto;
  }
  .facts .facts-list {
    display: none;
    position: relative;
    width: 294px;
    height: 1840px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .facts .facts-list li img {
    width: 147px;
    height: 170px;
  }
  .facts .pic {
    display: none;
  }
  .facts .facts-t .tit {
    top: 0px;
    left: 25%;
  }
  .facts .facts-t .btn1 {
    top: 127px;
    left: 0;
  }
  .facts .facts-t .btn2 {
    top: 127px;
    left: 50%;
  }
  .facts .facts-t .btn3 {
    top: 254px;
    left: 25%;
  }
  .facts .facts-d .tit {
    top: 381px;
    left: 0;
  }
  .facts .facts-d .btn1 {
    top: 381px;
    left: 50%;
  }
  .facts .facts-d .btn2 {
    top: 508px;
    left: 25%;
  }
  .facts .facts-d .btn3 {
    top: 635px;
    left: 0;
  }
  .facts .facts-g .tit {
    top: 635px;
    left: 50%;
  }
  .facts .facts-g .btn1 {
    top: 762px;
    left: 25%;
  }
  .facts .facts-g .btn2 {
    top: 889px;
    left: 0;
  }
  .facts .facts-g .btn3 {
    top: 889px;
    left: 50%;
  }
  .facts .facts-g .btn4 {
    top: 1016px;
    left: 25%;
  }
  .facts .facts-e .tit {
    top: 1143px;
    left: 0;
  }
  .facts .facts-e .btn1 {
    top: 1143px;
    left: 50%;
  }
  .facts .facts-e .btn2 {
    top: 1270px;
    left: 25%;
  }
  .facts .facts-e .btn3 {
    top: 1397px;
    left: 0;
  }
  .facts .facts-r .tit {
    top: 1397px;
    left: 50%;
  }
  .facts .facts-r .btn1 {
    top: 1524px;
    left: 25%;
  }
  .facts .facts-r .btn2 {
    top: 1651px;
    left: 0;
  }
  .facts .facts-r .btn3 {
    top: 1651px;
    left: 50%;
  }
  .facts .facts-btn {
    display: block;
    text-align: center;
  }
  .facts .facts-btn a {
    display: block;
  }
  .facts .facts-btn img {
    width: 190px;
    height: 54px;
  }
}
.bnr-area {
  padding-top: 52px;
  background: #ffffff;
}
.bnr-area ul {
  position: relative;
  overflow: hidden;
  margin-right: -40px;
  font-size: 0px;
  font-size: 0rem;
}
.bnr-area li {
  vertical-align: top;
  display: inline-block;
  margin: 0 40px 40px 0;
}
.bnr-area a {
  display: block;
}

.school-list-footer {
  background: #e2e6e9;
  font-size: 14px;
  font-size: 1.4rem;
}
.school-list-footer.no-news-topics {
  background: #f2f4f6;
}
.school-list-footer.no-news-topics .c-frame:after {
  border-top-color: #e2e6e9;
}
.school-list-footer .blank img,
.school-list-footer .pdf img,
.school-list-footer .excel img,
.school-list-footer .word img {
  width: 11px;
  height: auto;
  margin: 0 5px;
  vertical-align: middle;
}
.school-list-footer .c-frame {
  padding: 40px 0;
}
.school-list-footer ul {
  display: table;
}
.school-list-footer .s1,
.school-list-footer .s2,
.school-list-footer .s3 {
  display: table-cell;
  padding: 0 20px;
  box-sizing: border-box;
  border-left: 1px solid #ffffff;
}
.school-list-footer .s1 span,
.school-list-footer .s2 span,
.school-list-footer .s3 span {
  position: relative;
  display: block;
  padding: 15px 0 20px;
  font-weight: bold;
}
.school-list-footer .s1 span:before,
.school-list-footer .s2 span:before,
.school-list-footer .s3 span:before {
  content: '';
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 20px;
  height: 2px;
  border-top: 2px solid #990000;
}
.school-list-footer .s3 {
  border-right: 1px solid #ffffff;
}
.school-list-footer li ul {
  display: block;
}
.school-list-footer li li {
  border-left: none;
}
.school-list-footer li a {
  color: inherit;
}
.school-list-footer .s1,
.school-list-footer .s3 {
  width: 27%;
}
.school-list-footer .s2 {
  width: 46%;
}
.school-list-footer .s2 ul {
  box-sizing: border-box;
  margin-right: -10px;
  font-size: 0px;
  font-size: 0rem;
}
.school-list-footer .s2 li {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  margin-right: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .bnr-area {
    padding: 19px 13px 0;
    text-align: center;
  }
  .bnr-area ul {
    margin-right: 0px;
  }
  .bnr-area li {
    margin: 0 0 13px 0;
  }
  .bnr-area img {
    max-width: 100%;
  }

  .school-list-footer .c-frame {
    overflow: hidden;
    padding: 15px 13px 1px;
  }
  .school-list-footer .blank img,
  .school-list-footer .pdf img,
  .school-list-footer .excel img,
  .school-list-footer .word img {
    width: 11px;
    height: auto;
  }
  .school-list-footer ul {
    display: block;
  }
  .school-list-footer .s1,
  .school-list-footer .s2,
  .school-list-footer .s3 {
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 15px;
    padding: 0;
    border-left: none;
  }
  .school-list-footer .s1 span,
  .school-list-footer .s2 span,
  .school-list-footer .s3 span {
    padding: 0 0 10px;
  }
  .school-list-footer .s1 span:before,
  .school-list-footer .s2 span:before,
  .school-list-footer .s3 span:before {
    display: none;
  }
  .school-list-footer .s1 .sp-hide,
  .school-list-footer .s2 .sp-hide,
  .school-list-footer .s3 .sp-hide {
    display: none;
  }
  .school-list-footer .s2 {
    float: right;
  }
  .school-list-footer li li {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .school-list-footer .s2 ul {
    margin-right: 0;
  }
  .school-list-footer .s2 li {
    display: block;
    width: auto;
    margin-right: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .school-list-footer .s3 {
    border-right: none;
  }
}
/* メディア出演情報 */
.media-title {
  margin-bottom: 40px;
  font-size: 22px;
  font-size: 2.2rem;
}
.media-title span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #990000;
}

.monthly-list {
  margin-bottom: 50px;
}
.monthly-list ol {
  font-size: 0px;
  font-size: 0rem;
}
.monthly-list li {
  vertical-align: middle;
  display: inline-block;
  width: 60px;
  padding-right: 1px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}
.monthly-list li.current span {
  border-color: #990000;
  background: #ffffff;
  color: #990000;
}
.monthly-list a,
.monthly-list span {
  display: block;
  padding: 12px 0;
  border: 2px solid #D1D6DA;
}
.monthly-list a {
  border-color: #990000;
  background: #990000;
  color: #ffffff;
  box-sizing: border-box;
}
.monthly-list span {
  background: #D1D6DA;
}

.mod-wysiwyg .set-table.media table thead th {
  background: #333;
  vertical-align: middle;
}
.mod-wysiwyg .caption-list {
  font-size: 14px;
  font-size: 1.4rem;
}
.mod-wysiwyg .caption-list li {
  margin-bottom: 0;
  padding-left: 10px;
  text-indent: -10px;
}
.mod-wysiwyg .caption-list li:before {
  display: none;
}

@media screen and (max-width: 767px) {
  .mod-title.type2.monthly {
    text-align: center;
  }

  .monthly-list {
    margin-bottom: 33px;
  }
  .monthly-list ol {
    margin-right: -1px;
  }
  .monthly-list li {
    width: 25%;
    margin-bottom: 2px;
    padding-right: 2px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
/*お問い合わせ*/
.toiawase-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 61px 0 0;
}
.toiawase-page h1 {
  display: inline-block;
  margin: 0 0 34px;
  border-bottom: 3px solid #990000;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
}
.toiawase-page h1 span {
  display: block;
  padding: 14px 0 18px;
  font-size: 20px;
  font-size: 2rem;
  color: #666;
}
.toiawase-page .text-jp {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}
.toiawase-page .text-en {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  line-height: 2;
}
.toiawase-page .attention {
  margin: 15px 0 3px;
}
.toiawase-page .must {
  color: #990000;
}
.toiawase-page dl {
  position: relative;
  margin: 35px 0 24px;
}
.toiawase-page dt {
  position: absolute;
  width: 214px;
  padding: 18px 0 0 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.toiawase-page dt .en {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  font-weight: normal;
}
.toiawase-page dd {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 27px 26px 29px 214px;
  background: #fff;
  border-bottom: 6px solid #f2f4f6;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}
.toiawase-page input,
.toiawase-page textarea {
  padding: 4px 5px 4px;
  width: 100%;
  border: 1px solid #e2e6e9;
  background: #e2e6e9;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
  font-size: 1.6rem;
}
.toiawase-page input:focus,
.toiawase-page textarea:focus {
  background: #fff;
}
.toiawase-page textarea {
  min-height: 400px;
}
.toiawase-page .btn-area {
  text-align: center;
  padding: 37px 0 214px;
}
.toiawase-page .btn,
.toiawase-page button {
  height: 70px;
  width: 240px;
  display: inline-block;
  border: none;
  padding: 0;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.toiawase-page .btn:hover,
.toiawase-page button:hover {
  opacity: 0.70;
  -moz-opacity: 0.70;
  filter: alpha(opacity=70);
}
.toiawase-page .btn .en,
.toiawase-page button .en {
  font-size: 14px;
  font-size: 1.4rem;
}
.toiawase-page .btn p,
.toiawase-page button p {
  height: 100%;
  display: inline-block;
  padding: 13px 0 0;
  text-align: center;
  vertical-align: top;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.toiawase-page .btn.prev,
.toiawase-page button.prev {
  background: #5f5f5f;
  color: #fff;
  margin: 0 28px 0 0;
}
.toiawase-page .btn.prev .en,
.toiawase-page button.prev .en {
  color: #ababab;
  letter-spacing: -0.05em;
}
.toiawase-page .btn a,
.toiawase-page button a {
  display: block;
  height: 100%;
}
.toiawase-page .btn a, .toiawase-page .btn.next,
.toiawase-page button a,
.toiawase-page button.next {
  background: #990000;
  color: #fff;
}
.toiawase-page .btn a .en, .toiawase-page .btn.next .en,
.toiawase-page button a .en,
.toiawase-page button.next .en {
  color: #cb8484;
}
.toiawase-page .btn a:after, .toiawase-page .btn.next:after,
.toiawase-page button a:after,
.toiawase-page button.next:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 100%;
  margin: 0 -15px 0 7px;
  background: url(/common/images_e/common/bg_right_small_white.png) no-repeat center center;
}
.toiawase-page .btn:hover {
  opacity: 1;
}
.toiawase-page .check dl {
  margin: 6px 0 24px;
}
.toiawase-page .check dd {
  padding: 26px 26px 26px 217px;
}
.toiawase-page .check .text-en {
  margin: 3px 0 0;
}
.toiawase-page .check .btn-area {
  overflow: hidden;
  width: 510px;
  margin: 0 auto;
  padding: 37px 0 109px;
}
.toiawase-page .check .btn-area .next {
  float: right;
}
.toiawase-page .check .btn-area .prev {
  float: left;
}
.toiawase-page .text-box {
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 21px 20px;
  margin: 6px 0 3px;
}
.toiawase-page.complete .btn-area {
  padding: 37px 0 104px;
}

@media screen and (max-width: 767px) {
  .toiawase-page {
    width: 91.875%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  .toiawase-page .sp-hide {
    display: none;
  }
  .toiawase-page .ttl {
    text-align: center;
  }
  .toiawase-page h1 {
    margin: 0 0 16px;
    border-bottom: 2px solid #990000;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1;
  }
  .toiawase-page h1 span {
    padding: 8px 0 10px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .toiawase-page .text-jp {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2;
  }
  .toiawase-page .text-en {
    font-size: 11px;
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
  }
  .toiawase-page .attention {
    margin: 15px 0 3px;
  }
  .toiawase-page .must {
    color: #990000;
  }
  .toiawase-page dl {
    position: relative;
    margin: 15px 0 9px;
  }
  .toiawase-page dt {
    position: inherit;
    width: 100%;
    background: #fff;
    padding: 10px 11px 5px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .toiawase-page dt .en {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 0 0 0 6px;
  }
  .toiawase-page dt br {
    display: none;
  }
  .toiawase-page dd {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px 12px;
    background: #fff;
    border-bottom: 6px solid #f2f4f6;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .toiawase-page input,
  .toiawase-page textarea {
    padding: 11px 5px 11px;
    width: 100%;
    border: 1px solid #e2e6e9;
    background: #e2e6e9;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .toiawase-page textarea {
    min-height: 226px;
  }
  .toiawase-page .btn-area {
    text-align: center;
    padding: 15px 0 80px;
  }
  .toiawase-page form .text-en {
    margin: 5px 0 0;
  }
  .toiawase-page .btn,
  .toiawase-page button {
    height: 67px;
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .toiawase-page .btn .en,
  .toiawase-page button .en {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .toiawase-page .btn p,
  .toiawase-page button p {
    height: 100%;
    padding: 17px 0 0;
  }
  .toiawase-page .btn a:after, .toiawase-page .btn.next:after,
  .toiawase-page button a:after,
  .toiawase-page button.next:after {
    width: 5px;
    background: url(/common/images_e/common/bg_right_small_white_x2.png) no-repeat center center;
    background-size: 5px 9px;
  }
  .toiawase-page .check dl {
    margin: 4px 0 10px;
  }
  .toiawase-page .check dd {
    padding: 9px 15px 17px 20px;
  }
  .toiawase-page .check .text-en {
    margin: 3px 0 0;
  }
  .toiawase-page .check .btn-area {
    width: 100%;
    padding: 19px 0 93px;
  }
  .toiawase-page .check .btn-area .next {
    float: none;
    margin: 0 0 18px;
  }
  .toiawase-page .check .btn-area .prev {
    float: none;
  }
  .toiawase-page .text-box {
    padding: 8px 12px 13px;
    margin: 4px 0 3px;
  }
  .toiawase-page .text-box .text-en {
    margin: 5px 0 0;
  }
  .toiawase-page.complete .btn-area {
    padding: 17px 0 75px;
  }
}
.link-list-full {
  margin: 0 0 61px;
}
.link-list-full ul {
  font-size: 0;
  border: 1px solid #f2f4f6;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.link-list-full li {
  display: inline-block;
  width: 50%;
  border: 1px solid #f2f4f6;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.link-list-full a {
  display: block;
  position: relative;
}
.link-list-full .img img {
  width: 100%;
}
.link-list-full .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-family: 'Lora', serif;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.8rem;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.link-list-full .text br {
  display: none;
}
.link-list-full .text p {
  background: rgba(0, 0, 0, 0.5);
  padding: 11px 15px 12px;
}

.main-image-aid {
  height: 270px;
  margin: 0 0 40px;
  background-color: #272c32;
  background-position: center right;
  background-repeat: no-repeat;
  line-height: 1.2;
  font-size: 28px;
  font-size: 2.8rem;
}
.main-image-aid.aid01, .main-image-aid.aid02, .main-image-aid.aid03, .main-image-aid.aid04 {
  margin-top: 50px;
}
.main-image-aid.aid01 {
  background-image: url(/common/images_e/admissions-aid/bg-admissions01.png);
}
.main-image-aid.aid01 h2 span {
  color: #1ba7e1;
}
.main-image-aid.aid02 {
  background-image: url(/common/images_e/admissions-aid/bg-admissions02.png);
}
.main-image-aid.aid02 h2 span {
  color: #be258a;
}
.main-image-aid.aid03 {
  background-image: url(/common/images_e/admissions-aid/bg-admissions03.png);
}
.main-image-aid.aid03 h2 span {
  color: #95d023;
}
.main-image-aid.aid04 {
  background-image: url(/common/images_e/admissions-aid/bg-admissions04.png);
}
.main-image-aid.aid04 h2 span {
  color: #db9b00;
}
.main-image-aid .inner {
  max-width: 1040px;
  margin: 0 auto;
}
.main-image-aid .ttl {
  display: table;
  height: 270px;
  width: 100%;
  padding: 0 0 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main-image-aid h2 {
  display: table-cell;
  font-family: 'Lora', serif;
  vertical-align: bottom;
  color: #fff;
}
.main-image-aid h2 span {
  display: block;
  margin: 0 0 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

.main-contents.aid01, .main-contents.aid02, .main-contents.aid03, .main-contents.aid04 {
  padding-top: 0;
}
.main-contents.aid01 .mod-title, .main-contents.aid02 .mod-title, .main-contents.aid03 .mod-title, .main-contents.aid04 .mod-title {
  margin-top: 0;
}
.main-contents.aid01 .mod-title.type4, .main-contents.aid02 .mod-title.type4, .main-contents.aid03 .mod-title.type4, .main-contents.aid04 .mod-title.type4 {
  margin-bottom: 30px;
}
.main-contents.aid01 .mod-title.type4 {
  background: #e2e6e9 url("/common/images_e/common/bg_border_left_blue.png") repeat-y left top;
  -moz-background-size: 3px auto;
  -o-background-size: 3px auto;
  -webkit-background-size: 3px auto;
  background-size: 3px auto;
}
.main-contents.aid02 .mod-title.type4 {
  background: #e2e6e9 url("/common/images_e/common/bg_border_left_pink.png") repeat-y left top;
  -moz-background-size: 3px auto;
  -o-background-size: 3px auto;
  -webkit-background-size: 3px auto;
  background-size: 3px auto;
}
.main-contents.aid03 .mod-title.type4 {
  background: #e2e6e9 url("/common/images_e/common/bg_border_left_green.png") repeat-y left top;
  -moz-background-size: 3px auto;
  -o-background-size: 3px auto;
  -webkit-background-size: 3px auto;
  background-size: 3px auto;
}
.main-contents.aid04 {
  margin-bottom: 90px;
}
.main-contents.aid04 .mod-title.type4 {
  background: #e2e6e9 url("/common/images_e/common/bg_border_left_yellow.png") repeat-y left top;
  -moz-background-size: 3px auto;
  -o-background-size: 3px auto;
  -webkit-background-size: 3px auto;
  background-size: 3px auto;
}

@media screen and (max-width: 767px) {
  .link-list-full {
    margin: 0 0 40px;
  }
  .link-list-full ul {
    border: none;
  }
  .link-list-full li {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #f2f4f6;
  }
  .link-list-full .text {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .link-list-full .text br {
    display: block;
  }
  .link-list-full .text p {
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 4.0625% 7px;
  }

  .main-image-aid {
    height: 106px;
    margin: 0 0 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .main-image-aid.aid01, .main-image-aid.aid02, .main-image-aid.aid03, .main-image-aid.aid04 {
    margin-top: 25px;
  }
  .main-image-aid.aid01 {
    background-image: url(/common/images_e/admissions-aid/bg-admissions01-sp.png);
    -moz-background-size: auto 106px;
    -o-background-size: auto 106px;
    -webkit-background-size: auto 106px;
    background-size: auto 106px;
  }
  .main-image-aid.aid02 {
    background-image: url(/common/images_e/admissions-aid/bg-admissions02-sp.png);
    -moz-background-size: auto 106px;
    -o-background-size: auto 106px;
    -webkit-background-size: auto 106px;
    background-size: auto 106px;
  }
  .main-image-aid.aid03 {
    background-image: url(/common/images_e/admissions-aid/bg-admissions03-sp.png);
    -moz-background-size: auto 106px;
    -o-background-size: auto 106px;
    -webkit-background-size: auto 106px;
    background-size: auto 106px;
  }
  .main-image-aid.aid04 {
    background-image: url(/common/images_e/admissions-aid/bg-admissions04-sp.png);
    -moz-background-size: auto 106px;
    -o-background-size: auto 106px;
    -webkit-background-size: auto 106px;
    background-size: auto 106px;
  }
  .main-image-aid .inner {
    padding: 0 4.0625%;
  }
  .main-image-aid .ttl {
    height: 106px;
    padding: 0 0 12px;
  }
  .main-image-aid h2 span {
    font-size: 9px;
    font-size: 0.9rem;
  }

  .main-contents.aid01, .main-contents.aid02, .main-contents.aid03, .main-contents.aid04 {
    padding-top: 0;
  }
  .main-contents.aid01 .mod-title, .main-contents.aid02 .mod-title, .main-contents.aid03 .mod-title, .main-contents.aid04 .mod-title {
    margin-top: 0;
  }
  .main-contents.aid01 .mod-title.type4, .main-contents.aid02 .mod-title.type4, .main-contents.aid03 .mod-title.type4, .main-contents.aid04 .mod-title.type4 {
    margin-bottom: 15px;
    padding: 3px 5px 4px 9px;
  }
  .main-contents.aid01 .mod-title.type4 {
    background: #e2e6e9 url("/common/images_e/common/bg_border_left_blue.png") repeat-y left top;
    -moz-background-size: 3px auto;
    -o-background-size: 3px auto;
    -webkit-background-size: 3px auto;
    background-size: 3px auto;
  }
  .main-contents.aid02 .mod-title.type4 {
    background: #e2e6e9 url("/common/images_e/common/bg_border_left_pink.png") repeat-y left top;
    -moz-background-size: 3px auto;
    -o-background-size: 3px auto;
    -webkit-background-size: 3px auto;
    background-size: 3px auto;
  }
  .main-contents.aid03 .mod-title.type4 {
    background: #e2e6e9 url("/common/images_e/common/bg_border_left_green.png") repeat-y left top;
    -moz-background-size: 3px auto;
    -o-background-size: 3px auto;
    -webkit-background-size: 3px auto;
    background-size: 3px auto;
  }
  .main-contents.aid04 {
    margin-bottom: 90px;
  }
  .main-contents.aid04 .mod-title.type4 {
    background: #e2e6e9 url("/common/images_e/common/bg_border_left_yellow.png") repeat-y left top;
    -moz-background-size: 3px auto;
    -o-background-size: 3px auto;
    -webkit-background-size: 3px auto;
    background-size: 3px auto;
  }
}
.video-list .image-list .image-set,
.photo-list .image-list .image-set {
  min-width: 320px;
}
.video-list .photo-thumb,
.photo-list .photo-thumb {
  overflow: hidden;
  background: #e2e6e9;
  text-align: center;
}

.video-list .photo-thumb {
  background: #020202;
}

.photo-post-area {
  margin-top: 20px;
  margin-bottom: 115px;
}
.photo-post-area .img-area-main {
  height: 492px;
  background: #272c32;
  padding: 20px;
  text-align: center;
}
.photo-post-area .img-area-main .img-area {
  position: relative;
}
.photo-post-area .img-area-main .main-img {
  display: table;
  position: relative;
  z-index: 2;
  height: 492px;
  width: 100%;
}
.photo-post-area .img-area-main .main-img span {
  display: table-cell;
  vertical-align: middle;
}
.photo-post-area .img-area-main .main-img img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.photo-post-area .img-area-main .main-img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.photo-post-area .photo-list-thumb {
  width: 1050px;
  margin: 0 0 19px;
  font-size: 0;
}
.photo-post-area .photo-list-thumb li {
  display: inline-block;
  width: 95px;
  margin: 10px 10px 0 0;
  background: #e2e6e9;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  vertical-align: top;
  text-align: center;
}
.photo-post-area .photo-list-thumb li:hover {
  opacity: 0.70;
  -moz-opacity: 0.70;
  filter: alpha(opacity=70);
}
.photo-post-area .photo-list-thumb li img {
  height: 63px;
  width: auto;
}
.photo-post-area .photo-data {
  color: #990000;
  margin: 0 0 1em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .main-contents.photo-post-area {
    margin-bottom: 40px;
  }

  .photo-list .image-list .image-set {
    min-width: inherit;
  }
  .photo-list .photo-thumb {
    position: relative;
    overflow: hidden;
    padding: 66.75427% 0 0;
  }
  .photo-list .photo-thumb span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
  }

  .photo-post-area .img-area-main {
    height: auto;
    padding: 0;
  }
  .photo-post-area .img-area-main .img-area {
    position: relative;
  }
  .photo-post-area .img-area-main .main-img {
    height: auto;
  }
  .photo-post-area .img-area-main .main-img img {
    width: 100%;
  }
  .photo-post-area .photo-list-thumb {
    width: 100.34014%;
    margin: 0 0 11px;
    font-size: 0;
  }
  .photo-post-area .photo-list-thumb li {
    position: relative;
    width: 19.66102%;
    margin: 1px 0.33898% 0 0;
    padding: 12.88136% 0 0;
  }
  .photo-post-area .photo-list-thumb li p {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
  }
  .photo-post-area .photo-list-thumb li img {
    height: 100%;
  }
  .photo-post-area .mod-wysiwyg p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.about-kyoto {
  margin: 19px auto 109px;
}
.about-kyoto .mod-title.type2 {
  margin-top: 19px;
  margin-bottom: 20px;
}
.about-kyoto .mod-title.type3 {
  margin-bottom: 20px;
}
.about-kyoto .img-full {
  margin-bottom: 61px;
}

@media screen and (max-width: 767px) {
  .about-kyoto.main-contents {
    margin: 11px 13px 25px;
  }
  .about-kyoto .mod-title.type2 {
    padding-bottom: 6px;
    margin-top: 10px;
    margin-bottom: 11px;
  }
  .about-kyoto .mod-title.type3 {
    margin-bottom: 12px;
    padding: 7px 7px 8px 7px;
  }
  .about-kyoto .img-full {
    margin-bottom: 35px;
  }
  .about-kyoto .mod-wysiwyg {
    margin-bottom: 13px;
  }
  .about-kyoto .mod-wysiwyg p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.fr-overlay-background {
  opacity: 0.80;
  -moz-opacity: 0.80;
  filter: alpha(opacity=80);
}

.fr-ui-outside .fr-info-background {
  background: #fff;
}

.fr-caption {
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
}

.fr-close {
  top: 60px;
  right: 60px;
  width: 72px;
  height: 72px;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background {
  display: none;
}

.fr-close-background, .fr-close-icon {
  width: 72px;
  height: 72px;
}

.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
  background: url(/common/images_e/common/bg_close_modal.png) no-repeat 0 0;
}

@media screen and (max-width: 767px) {
  .fr-overlay-ui-fullclick .fr-overlay-background {
    background: #000;
    opacity: 0.80;
    -moz-opacity: 0.80;
    filter: alpha(opacity=80);
  }

  .fr-close {
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .fr-window-skin-fresco.fr-window-ui-inside .fr-close-background,
  .fr-window-skin-fresco.fr-window-ui-fullclick .fr-close-background {
    display: none;
  }

  .fr-close-background, .fr-close-icon {
    left: 0;
    top: 0;
    width: 34px;
    height: 34px;
  }

  .fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
    background: url(/common/images_e/common/bg_close_modal.png) no-repeat 0 0;
    background-size: 34px auto;
  }

  .fr-info-background {
    background: #fff;
  }
}
/*! jQuery UI - v1.12.1 - 2016-10-18
* http://jqueryui.com
* Includes: core.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
}

.ui-widget-content a {
  color: #333;
}

.ui-widget-header {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: 1px solid #ccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, a.ui-button:hover, a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #fff;
}

.ui-icon-background, .ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #fff;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #fff;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 3px;
}

.ui-widget-overlay {
  background: #aaa;
  opacity: .3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 5px #666;
  box-shadow: 0 0 5px #666;
}


.top-news-list2 {
  background: #990000;
}
.top-news-list2 ul li {
  padding: 5px 0;
  font-size: 20px;
  font-size: 2.0rem;
}
.top-news-list2 a {
  position: relative;
  display: block;
  color: #ffffff;
}
.top-news-list2 a:after {
  content: '';
  position: absolute;
  right: 9px;
  top: 50%;
  width: 3px;
  height: 6px;
  margin-top: -3px;
  background-image: url("/common/images_e/common/bg_right_white_x2.png");
  background-repeat: no-repeat;
  background-size: 3px 6px;
}
@media screen and (max-width: 767px) {
  .top-news-list2 {
    padding: 0;
  }
  .top-news-list2 ul li {
    margin-top: 0;
    border-top: 1px solid #b4494a;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .top-news-list2 li:first-child {
    border-top: none;
  }
  .top-news-list2 a {
    display: block;
    padding: 10px 15px;
  }
}
