@charset "UTF-8";
/*:::::::::: reset css ::::::::::*/
html, body, h1, h2, h3, h4, h5, h6, p, ul, img, table, th, td, dl, dt, dd, form {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
  font-size: 12px;
}

body {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100%;
  /*font-size: 100.01%*/
  line-height: 1.6;
  text-align: center;
  color: #333333;
  font-family: Meiryo,"メイリオ","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",Osaka,"MS P Gothic","ＭＳ Ｐゴシック",Helvetica,sans-serif;
  -webkit-text-size-adjust: none;
}

ul li {
  margin-left: 20px;
}

img {
  border: 0;
  /* line-height: 0;
  font-size: 1%; */
}

a img,
label {
  cursor: pointer;
}

/*:::::::::: header ::::::::::*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #BCBCBC;
  z-index: 3000;
  background: #FFf;
}
header #headerContents {
  position: relative;
  width: 950px;
  height: 62px;
  margin: 0 auto;
  padding: 5px 0;
  text-align: left;
}
header #logo {
  display: inline-block;
}
header #close {
  position: absolute;
  top: 0;
  right: 0;
}
header #close a {
  position: relative;
  display: inline-block;
  line-height: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (min-width: 769px) {
  header #close a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: url(/kojin/img/btn_closeBtn_on.jpg);
    display: inline-block;
    z-index: 1;
    opacity: 0;
  }
  header #close:hover a:before {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  header #headerContents {
    width: 100%;
    height: 82px;
    padding: 8px 10px;
    box-sizing: border-box;
  }
  header #close {
    top: 8px;
    right: 10px;
  }
  header #close a {
    position: relative;
    width: 22px;
    height: 22px;
  }
  header #close a:before, header #close a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    content: '';
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #000;
  }
  header #close a:before {
    transform: translate(50%, -50%) rotate(45deg);
  }
  header #close a:after {
    transform: translate(50%, -50%) rotate(-45deg);
  }
  header #close a img {
    display: none;
  }
}

/*:::::::::: footer ::::::::::*/
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #D0D0D0;
}
@media (min-width: 769px) {
  footer {
    padding: 10px 0 40px;
  }
}
@media (max-width: 768px) {
  footer p:before {
    content: 'Copyright (C) 2017 Mitsubishi UFJ Trust and Banking Corporation All rights reserved.';
  }
  footer p img {
    display: none;
  }
}

/*:::::::::: contents ::::::::::*/
main {
  position: relative;
  display: block;
  width: 950px;
  padding-top: 72px;
  padding-bottom: 100px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
}
main .contents {
  padding-top: 40px;
}
@media (max-width: 768px) {
  main {
    width: 100%;
    padding-top: 82px;
  }
  main .contents {
    padding: 40px 15px 0;
  }
}

/*:::::::::: お知らせ一覧 ::::::::::*/
/* ページ見出し */
.newstitle {
  box-sizing: content-box;
  margin-bottom: 20px;
  padding: 15px;
  border-bottom: 3px solid #b22222;
  background-color: #f5f5f5;
}
/* 大枠 */
.newslist {
  border: 1px solid #d3d3d3;
  border-bottom: none;
}
.newslist li {
  list-style: none;
  margin: 0;
}
@media (max-width: 768px) {
  .newslist {
    border: none;
  }
  .newslist li {
    margin-bottom: 5px;
  }
  .newslist li:last-child {
    margin-botom: 0;
  }
}

/* 日付と記事タイトル */
.news__header {
  position: relative;
  width: 100%;
  padding: 1px;
  border-bottom: 1px solid #d3d3d3;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.news__header dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  /*min-height: 57px;*/
  background: linear-gradient(to top, #e7eaef 0%, #e7eaef 34%, #fff 85%);
  box-sizing: border-box;
}
.news__header dl dt {
  width: 180px;
  padding: 16px 0;
  text-align: center;
}
.news__header dl dd {
  width: calc(100% - 180px);
  padding-right: 80px;
  box-sizing: border-box;
}
.news__header i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: block;
  width: 33px;
  height: 33px;
  background-image: url(/img/plus.png);
  background-repeat: no-repeat;
}
.news__header.active i {
  background-image: url(/img/minus.png);
}
@media (max-width: 768px) {
  .newstitle {
    text-align: left;
    margin: 6px 0;
    color: #EA0025;
    font-size: 1.5rem;
    font-weight: normal;
    padding-bottom: 6px;
    border-bottom: 3px solid #e70025;
    position: relative;
    padding-left: 0;
    background-color: #fff;
  }
  .newstitle:after {
    content: ".";
    line-height: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    bottom: -3px;
    width: 30%;
    border-bottom: 3px solid #b0001b;
  }
  .news__header {
    padding: 15px;
    border-bottom: none;
    background-color: #eee;
    color: #444;
    font-size: 15px;
    transition: .4s;
  }
  .news__header dl {
    display: block;
    padding: 0 20px;
    background: transparent;
    min-height: 0;
  }
  .news__header dl dt {
    position: relative;
    width: 100%;
    padding: 0;
    text-align: left;
  }
  .news__header dl dt:before {
    position: absolute;
    top: calc(50% + -2px);
    left: -15px;
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    border-width: 7px 0 7px 11px;
    border-style: solid;
    border-color: transparent transparent transparent #f00;
  }
  .news__header dl dd {
    width: 100%;
    padding: 0;
  }
  .news__header i {
    top: 10px;
    right: 10px;
    transform: none;
    width: 16px;
    height: 16px;
    background-image: none;
  }
  .news__header i:before, .news__header i:after {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    content: '';
    display: inline-block;
    border-radius: 1px;
    background-color: #444;
  }
  .news__header i:before {
    width: 100%;
    height: 4px;
  }
  .news__header i:after {
    width: 4px;
    height: 100%;
    opacity: 1;
  }
  .news__header.active {
    background-color: #ddd;
  }
  .news__header.active i {
    background: none;
  }
  .news__header.active i:after {
    opacity: 0;
  }
}
.news__body {
  border: 1px solid transparent;
  display: none;
  border-bottom: 1px solid #d3d3d3;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
}
.news__body p {
  line-height: 1.8em;
}
@media (max-width: 768px) {
  .news__body {
    margin-bottom: 5px;
    font-size: 14px;
    max-height: 800px;
    padding: 10px 18px;
    border: 1px solid #ddd;
    overflow: auto;
  }
  .news__body.active {
    max-height: 800px;
    padding: 10px 18px;
    border-color: #ddd;
    opacity: 1;
    overflow: auto;
  }
}