@charset "UTF-8";
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/*
ドロップダウンメニューのカーソル
*/
.gnavi__item.-menu::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 6px;
  background: url(../images/gnavi_icon1.gif) no-repeat;
}

/**************************************************
**************************************************/
.gnavi__listLv1 > .gnavi__item {
  position: relative;
  flex-basis: calc( 100% / 6 );
  max-width: calc( 100% / 6 );
  margin-bottom: 0;
  border-right: 1px solid #D9D3E9;
}

.gnavi__listLv1 > .gnavi__item:first-child {
  border-left: 1px solid #D9D3E9;
}

/**************************************************
**************************************************/
.gnavi__listLv2 > .gnavi__item {
  margin-bottom: 0;
  border-top: 1px solid #999;
}

.gnavi__listLv2 > .gnavi__item:first-child {
  border-top: none;
}

/**************************************************
**************************************************/
.gnavi__listLv3 > .gnavi__item {
  margin-bottom: 0;
  padding-left: 20px;
}

.gnavi__listLv3 > .gnavi__item:first-child {
  border-top: none;
}

/****************************************************************************************************
****************************************************************************************************/
.gnavi__listLv1 {
  display: flex;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.gnavi__itemBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/****************************************************************************************************
****************************************************************************************************/
.gnavi__itemBtnText {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  width: 100%;
  height: 100%;
  line-height: 1.3;
  color: #432590;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.gnavi__listLv1 > .gnavi__item .gnavi__itemBtnText:hover {
  background-color: #ECE9F4;
}

/****************************************************************************************************
****************************************************************************************************/
.gnavi__inner {
  display: none;
  position: absolute;
  top: 55px;
  left: -50px;
  width: calc( 100% + 100px );
  background-color: #432A8E;
}

.gnavi__item.-close .gnavi__inner {
  display: none;
}

.gnavi__item.-open .gnavi__inner {
  display: block;
  animation: gnavi__inner__fadeIn 0.1s ease-in-out forwards;
}

@keyframes gnavi__inner__fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes globalNavi__inner__fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
/****************************************************************************************************
****************************************************************************************************/
.gnavi__link {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
  font-size: 1.4rem;
}

.gnavi__link:hover {
  background-color: #6958A3;
}

.gnavi__listLv3 > .gnavi__item .gnavi__link {
  padding: 5px;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.header {
  position: relative;
  z-index: 100;
  padding-bottom: 20px;
  background-color: #fff;
}

.header.-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header *:last-child {
  margin-bottom: 0 !important;
}

/****************************************************************************************************
****************************************************************************************************/
.header__inner {
  margin: 0 auto;
  width: 1060px;
}

/****************************************************************************************************
****************************************************************************************************/
.header__logo {
  padding-top: 20px;
}

/****************************************************************************************************
****************************************************************************************************/
.header__block1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

/****************************************************************************************************
****************************************************************************************************/
.header__block1Col.-col1 {
  flex-basis: 592px;
  max-width: 592px;
}

.header__block1Col.-col2 {
  flex-grow: 1;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.main {
  display: block;
  padding-top: 20px;
  padding-bottom: 40px;
  background-color: #EFEFEF;
}

/****************************************************************************************************
****************************************************************************************************/
.main__pageTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 40px;
  background: url(../images/cat_bg.jpg);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-size: 3.2rem;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.main__pageTitle::before {
  content: "";
  flex-shrink: 0;
  display: block;
  margin-right: 20px;
  width: 50px;
  height: 1px;
  background-color: #fff;
}

.main__pageTitle::after {
  content: "";
  flex-shrink: 0;
  display: block;
  margin-left: 20px;
  width: 50px;
  height: 1px;
  background-color: #fff;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.contents {
  padding-bottom: 40px;
}

/****************************************************************************************************
****************************************************************************************************/
.contents__outer {
  margin: 0 auto;
  width: 1060px;
  background-color: #fff;
  border-radius: 5px;
}

/****************************************************************************************************
****************************************************************************************************/
.contents__outerHeader {
  padding: 20px 50px;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.contentsBody {
  margin: 0 auto;
  width: 960px;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.topicsPath {
  margin-bottom: 0;
  font-size: 1.2rem;
}

/****************************************************************************************************
****************************************************************************************************/
.topicsPath li {
  display: inline;
  margin-right: 5px;
}

.topicsPath li::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 5px;
  height: 9px;
  background: url(../images/topicspath_cur1.gif);
}

.topicsPath li:last-child {
  margin-right: 0;
}

.topicsPath li:last-child::after {
  content: none;
}

/****************************************************************************************************
****************************************************************************************************/
.topicsPath a {
  color: #333;
  text-decoration: none;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.visitor {
  margin-bottom: 15px;
}

/****************************************************************************************************
****************************************************************************************************/
.visitor__list {
  display: flex;
  justify-content: flex-end;
  line-height: 1.5;
  font-size: 1.2rem;
  margin-bottom: 0;
}

/****************************************************************************************************
****************************************************************************************************/
.visitor__item {
  position: relative;
  margin-bottom: 0;
}

.visitor__link {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}

.visitor__item.-item1 {
  flex-basis: 180px;
  max-width: 180px;
  background-color: #6951A6;
}

.visitor__item.-item2 {
  flex-basis: 140px;
  max-width: 140px;
  background-color: #432590;
}

/****************************************************************************************************
****************************************************************************************************/
.visitor__insideBtn {
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: 20px center;
}

.visitor__insideBtn.-open {
  background-image: url(../images/visitor/icon_open.gif);
}

.visitor__insideBtn.-close {
  background-image: url(../images/visitor/icon_close.gif);
}

/****************************************************************************************************
リンクリスト
****************************************************************************************************/
.visitor__insideList {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0;
  width: 100%;
  background-color: #432590;
}

.visitor__link.link2 {
  padding-left: 40px;
  background-position: 20px center;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.utility__list {
  display: flex;
  justify-content: flex-end;
  line-height: 1.5;
  font-size: 1.2rem;
  margin-bottom: 0;
}

/****************************************************************************************************
****************************************************************************************************/
.utility__item {
  margin-left: 20px;
}

.utility__item a {
  color: #333;
  text-decoration: none;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.footer *:last-child {
  margin-bottom: 0 !important;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__inner {
  margin: 0 auto;
  width: 1060px;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__sitemap {
  padding: 30px 0;
  background-color: #333333;
}

.footer__sitemapRow {
  display: flex;
  justify-content: space-between;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__sitemapCol.-col1 {
  flex-basis: 260px;
  max-width: 260px;
}

.footer__sitemapCol.-col2 {
  flex-basis: 220px;
  max-width: 220px;
}

.footer__sitemapCol.-col3 {
  flex-basis: 160px;
  max-width: 160px;
}

.footer__sitemapCol.-col4 {
  flex-basis: 280px;
  max-width: 280px;
  padding-left: 30px;
  border-left: 1px solid #fff;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__sitemapText {
  margin-bottom: 0.5em;
  color: #fff;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__list {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
}

.footer__listItem a {
  color: #fff;
}

.footer__listLv2 {
  margin-top: 5px;
  margin-left: 15px;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__info {
  padding: 30px 0 60px;
  background-color: #432A8E;
  color: #fff;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__infoRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__infoText1 {
  margin-bottom: 0.5em;
}

.footer__infoText2 {
  font-size: 1.4rem;
}

/****************************************************************************************************
****************************************************************************************************/
.footer__infoCopyright {
  font-size: 1.4rem;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.headline1 {
  margin-bottom: 1em;
  padding: 10px;
  border: 1px solid #ccc;
  background: #FAFAFA url(../images/headline/headline_bg1.gif) repeat-x left bottom;
  font-size: 2rem;
  font-weight: bold;
}

.headline1 .subTitle {
  font-size: 70%;
}

/****************************************************************************************************
****************************************************************************************************/
.headline2 {
  margin-bottom: 1em;
  padding: 0 0 10px;
  background: url(../images/headline/headline_bg2.gif) repeat-x left bottom;
  font-size: 2rem;
  font-weight: bold;
}

.headline2.-s {
  font-size: 1.6rem;
}

/****************************************************************************************************
****************************************************************************************************/
.headline3 {
  margin-bottom: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}

/****************************************************************************************************
見出し中央
大
****************************************************************************************************/
.headline__sp1 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 15px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
}
.headline__sp1 .subTitle {
  font-size: 70%;
}

.headline__sp1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(../images/headline/sp_bg1.gif);
  border: 1px solid #6955A5;
}

/********* 穂高追加　************************/

.headline__details {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 15px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: left;
}
.headline__details .subTitle {
  font-size: 70%;
}

.headline__details::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(../images/headline/sp_bg1.gif);
  border: 1px solid #6955A5;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.section {
  margin-bottom: 50px;
}

/****************************************************************************************************
****************************************************************************************************/
.section2 {
  margin-bottom: 30px;
}

/****************************************************************************************************
****************************************************************************************************/
.section3 {
  margin-bottom: 20px;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.linkListBase {
  padding: 4px;
  border: 1px solid #ccc;
  background: #E9E9E9;
}
.linkListBase .linkListBody {
  padding: 10px 10px 5px;
  background: #fff;
}
.linkListBase li {
  margin-bottom: 5px;
}
.linkListBase li.head {
  clear: both;
}

/****************************************************************************************************
2列
****************************************************************************************************/
.linkListCol2 li {
  float: left;
  width: 290px;
}

/****************************************************************************************************
3列
****************************************************************************************************/
.linkListCol3 li {
  float: left;
  width: 193px;
}

/****************************************************************************************************
4列
****************************************************************************************************/
.linkListCol4 li {
  float: left;
  width: 145px;
}

/****************************************************************************************************
5列
****************************************************************************************************/
.linkListCol5 li {
  float: left;
  width: 116px;
}

/****************************************************************************************************
6列
****************************************************************************************************/
.linkListCol6 li {
  float: left;
  width: 96px;
}

/****************************************************************************************************
****************************************************************************************************/
.linkList__archive {
  margin-top: 40px;
}

.linkList__archiveList {
  display: flex;
  flex-wrap: wrap;
}
.linkList__archiveList li {
  margin-right: 20px;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
ドット
****************************************************************************************************/
.listDot {
  margin-left: 20px;
}

.listDot > li {
  margin-bottom: 5px;
  list-style: disc;
}

/****************************************************************************************************
数字
****************************************************************************************************/
.listDec {
  margin-left: 2em;
}

.listDec > li {
  margin-bottom: 5px;
  list-style: decimal;
}

/****************************************************************************************************
こめ付き数字リスト
****************************************************************************************************/
.listNo li {
  margin-bottom: 5px;
}

.listNo .no {
  float: left;
  width: 2em;
}

.listNo .body {
  margin-left: 2em;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.box1 {
  padding: 4px;
  border: 1px solid #ccc;
  background: #E9E9E9;
}

.box1 .boxBody {
  padding: 10px;
  background: #fff;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.txtEnd1 {
  padding: 3px 5px;
  background: #f00;
  font-size: 85%;
  color: #fff;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.tbl1 thead th {
  background: #E0E0E0;
  font-weight: bold;
}
.tbl1 tbody th {
  background: #F0F0F0;
  text-align: left;
  font-weight: bold;
}

.tbl1.w100per {
  width: 100%;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
カテゴリの色
****************************************************************************************************/
/*お知らせ*/
/*開催案内*/
/*開催報告*/
/*その他*/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************

最新情報関連

****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.news__category {
  display: inline-block;
  margin-right: 10px;
  padding: 5px 0;
  width: 80px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}

/*お知らせ*/
.news__category.-cat1 {
  background-color: #23AC0E;
}

/*開催案内*/
.news__category.-cat2 {
  background-color: #DA5019;
}

/*開催報告*/
.news__category.-cat3 {
  background-color: #3261AB;
}

/*その他*/
.news__category.-cat4 {
  background-color: #B61972;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.newsList1 {
  line-height: 1.5;
}

/****************************************************************************************************
****************************************************************************************************/
.newsList1 dl {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

.newsList1 dt {
  float: left;
  width: 150px;
}

.newsList1 dd {
  margin-left: 150px;
}

.newsList1 dd img {
  margin-right: 5px;
  vertical-align: text-bottom;
}

/****************************************************************************************************
日付なしリスト
****************************************************************************************************/
.newsList2 {
  line-height: 1.5;
}

.newsList2 li {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #ccc;
}

/****************************************************************************************************

エントリー関連

****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.entryHeader {
  margin-bottom: 40px;
}

/****************************************************************************************************
****************************************************************************************************/
.entryHeader img {
  margin-bottom: 5px;
  margin-right: 10px;
}

/****************************************************************************************************
****************************************************************************************************/
.entryHeader__categoryTag {
  display: block;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.entryFooter {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px dotted #ccc;
}

/****************************************************************************************************

タブ

****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
#TabBox .tabList {
  margin-bottom: 0;
  padding-left: 15px;
}
#TabBox .tabList li {
  float: left;
  margin: 0 5px 0 0;
}
#TabBox .tabList a {
  display: block;
  padding: 10px 0 5px;
  border-radius: 5px 5px 0 0;
  background: #f3f3f3;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  color: #333;
}
#TabBox .tabList a:hover {
  text-decoration: underline;
}
#TabBox .tabList a.active {
  position: relative;
  z-index: 2;
  border: 1px solid #ccc;
  border-bottom-color: #fff;
  background: #fff;
  font-weight: bold;
}

#TabBox .tabList_w140 a {
  width: 140px;
}

#TabBox .tabList2 a {
  padding-left: 20px;
  padding-right: 20px;
  width: auto;
}

/****************************************************************************************************
タブ　リンクリスト
****************************************************************************************************/
#TabBox .tabSubBox {
  position: relative;
  padding: 15px;
  top: -1px;
  border: 1px solid #ccc;
}

#TabBox .tabSubList {
  margin-bottom: 0;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
}

/****************************************************************************************************
****************************************************************************************************/
.pageTop__anchor {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff url(../images/back2top_icon.gif) no-repeat center center;
  line-height: 1;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.back2top a {
  float: right;
  display: block;
  background: url(../images/back2top1.gif) no-repeat;
  width: 130px;
  height: 22px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}

.back2top a:hover {
  display: block;
  background: url(../images/back2top1_o.gif) no-repeat;
}

.back2top_en a {
  float: right;
  display: block;
  background: url(../images/back2top_en2.gif) no-repeat;
  width: 130px;
  height: 22px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
.notice.-type1 {
  padding: 20px;
  text-align: center;
  border: 1px solid #333;
}

/****************************************************************************************************
****************************************************************************************************/

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
通常リンク
サイトマップ
メール
****************************************************************************************************/
.link1,
.linkSitemap1,
.linkMail1 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/icon_arw_p.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 8px 10px;
}

.link2,
.linkSitemap2,
.linkMail2 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/icon_arw_p2.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 10px 10px;
}

/****************************************************************************************************
学内別サイト
外部サイト
別ウィンドウ
****************************************************************************************************/
.linkOut1,
.linkExt1,
.linkBlank1 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/icon_blank_p.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 13px 13px;
}

.linkOut2,
.linkExt2,
.linkBlank2 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/icon_blank_p2.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 13px 13px;
}

/****************************************************************************************************
ページ内リンク
****************************************************************************************************/
.linkInpage1 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/btn_arw_dl.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 8px 10px;
}

/****************************************************************************************************
ダウンロード
****************************************************************************************************/
.linkDL1 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/icon_download.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 8px 10px;
}

.linkDL2 {
  padding-left: 20px;
  background-image: url(../images/kandai/pict/icon_download2.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 8px 10px;
}

/****************************************************************************************************
rss
****************************************************************************************************/
.linkRSS {
  padding-left: 20px;
  background-image: url(../images/icon_rss.gif);
  background-repeat: no-repeat;
  background-position: 2px center;
  background-size: 13px 13px;
}

/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
/****************************************************************************************************
****************************************************************************************************/
figcaption {
  margin-top: 10px;
  font-size: 85%;
  line-height: 1.5;
}

a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=common.css.map */
