@charset "utf-8";

/* 共通
---------------------------------------------------*/
main #big-headline {
  background: url("/info/img/big_headline_bg.png")no-repeat center center/101% auto;
}
@media only screen and (max-width:1366px) {
  main #big-headline {
    background: url("/info/img/big_headline_bg.png")no-repeat center center/auto 101%;
  }
}
@media only screen and (max-width:768px) {
  main #big-headline {
    background: url("/info/img/big_headline_bg_sp.png")no-repeat center center/101% auto;
  }
}
@media only screen and (max-width:390px) {
  main #big-headline {
    background: url("/info/img/big_headline_bg_sp.png")no-repeat center center/auto 101%;
  }
}


#info .info-list li.new-icon dd::after,
#info-details .data.new-icon::after {
  content: "NEW";
  display: inline-block;
  width: 44px;
  height: 20px;
  color: #fff;
  font-size: 0.7em;
  font-weight: bold;
  text-align: center;
  padding: 4px 8px;
  background: #DE0000;
  box-sizing: border-box;
}

#info .info-list li.pdf-icon .pdf-position {
  display: inline-block;
  width: 18px;
  height: 20px;
  margin: 0 0 -5px 10px;
  background: url("/info/img/pdf_icon.png")no-repeat center/18px 20px;
}

@media only screen and (max-width:768px) {
  #info .info-list li.new-icon dd::after,
  #info .info-list li.pdf-icon .pdf-position {
    display: none;
  }
  #info .info-list li.new-icon dt::before {
    position: absolute;
    content: "NEW";
    display: inline-block;
    width: 44px;
    height: 20px;
    right: -55px;
    top: 0;
    color: #fff;
    font-size: 0.7em;
    font-weight: bold;
    text-align: center;
    padding: 4px 8px;
    background: #DE0000;
    box-sizing: border-box;
  }

  #info .info-list li.pdf-icon dt::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 20px;
    margin: 0 0 -5px 10px;
    background: url("/info/img/pdf_icon.png")no-repeat center/18px 20px;
  }
}


/* お知らせ一覧
---------------------------------------------------*/
#info .info-list li {
  padding: 25px 0;
  border-top: #CBD1D9 solid 1px;
}
#info .info-list li:nth-child(10n),
#info .info-list li:last-child {
  border-bottom: #CBD1D9 solid 1px;
}

#info .info-list li dl {
  display: flex;
  text-align: left;
}

#info .info-list li dl dt {
  font-size: 1.6em;
  line-height: 1.3;
  margin-right: 16px;
}

#info .info-list li dl dd {
  min-height: 20px;
  font-size: 1.6em;
  line-height: 1.4;
}
#info .info-list li.new-icon dl dd::after {
  margin-left: 14px;
}

#info .info-list .new-icon-label {
  display: inline-block;
  width: 44px;
  height: 20px;
  color: #fff;
  font-size: 0.7em;
  font-weight: bold;
  text-align: center;
  padding: 4px 8px;
  background: #DE0000;
  margin-left: 5px;
  box-sizing: border-box;
}

#info .info-list li dl dd a {
  text-decoration: underline;
  opacity: 1;
  transition: 0.2s;
}
#info .info-list li dl dd a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* -- pager -- */
.pager {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pager .first-page button,
.pager .end-page button {
  width: 48px;
  height: 48px;
  border: #20344B solid 1px;
  box-sizing: border-box;
  cursor: pointer;
}
.pager .first-page button {
  background: url("/info/img/pager_first_arrow.png")no-repeat center/12px 12px,#fff;
}
.pager .end-page button {
  background: url("/info/img/pager_last_arrow.png")no-repeat center/12px 12px,#fff;
}

.pager .prev-page button,
.pager .next-page button {
  position: relative;
  width: 48px;
  height: 48px;
  border: #20344B solid 1px;
  cursor: pointer;
}
.pager .prev-page button {
  margin-left: 16px;
  background: url("/info/img/pager_prev_arrow.png")no-repeat center /7px 14px,#fff;
}
.pager .next-page button {
  margin: 0 16px 0 6px;
  background: url("/info/img/pager_next_arrow.png")no-repeat center /7px 14px,#fff;
}

.pager .line_list {
  display: flex;
}

.pager .line_list li {
  margin-left: 6px;
}

.pager .line_list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  color: #20344B;
  font-size: 1.6em;
  font-weight: bold;
  background: #fff;
  border: #20344B solid 1px;
  box-sizing: border-box;
}
.pager .line_list li.current a {
  color: #fff;
  font-weight: bold;
  background: #20344B;
  border: #20344B solid 1px;
}
.pager .line_list li a:hover {
  opacity: 1;
}

.pager .first-page.disabled button,
.pager .end-page.disabled button,
.pager .prev-page.disabled button,
.pager .next-page.disabled button {
  cursor: default;
}
.disabled {
  opacity: 0.6;
}

@media only screen and (max-width:768px) {
  #info #main-cntent h3 + .content-inner {
    margin-top: 20px;
  }

  #info .info-list li {
    padding: 15px 0;
  }

  #info .info-list li dl {
    display: block;
  }

  #info .info-list li dl dt {
    position: relative;
    display: inline-block;
    font-size: 1.4em;
    margin: 0 0 5px 0;
  }

  #info .info-list li dl dd {
    min-height: initial;
    font-size: 1.4em;
  }
  #info .info-list li dl dd.new-icon::after {
    margin-left: 0;
  }

  #info .info-list li dl dd a {
    transition: initial;
  }
  #info .info-list li dl dd a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  /* -- pager -- */
  .pager {
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .pager .first-page button,
  .pager .end-page button {
    width: 40px;
    height: 40px;
  }

  .pager .prev-page button,
  .pager .next-page button {
    width: 40px;
    height: 40px;
  }

  .pager .prev-page button {
    margin-left: 12px;
  }
  .pager .next-page button {
    margin: 0 12px 0 6px;
  }

  .pager .line_list li a {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }

  .pager .first-page,
  .pager .prev-page,
  .pager .line_list,
  .pager .next-page,
  .pager .end-page {
    margin-top: 10px;
  }
}




/* お知らせ詳細
---------------------------------------------------*/
#info-details .data {
  font-size: 1.6em;
  line-height: 1.3;
}
#info-details .data.new-icon::after {
  margin-left: 16px;
}

#info-details .data + .txt {
  margin-top: 37px;
}

#info-details .txt a {
  color: #365796;
  text-decoration: underline;
  opacity: 1;
  transition: 0.2s;
}
#info-details .txt a:hover {
  opacity: 0.7;
  text-decoration: none;
}

#info-details .link-but-large {
  margin-top: 56px;
}

@media only screen and (max-width:768px) {
  #info-details .data + .txt {
    margin-top: 20px;
  }

  #info-details .txt a {
    transition: initial;
  }
  #info-details .txt a:hover {
    opacity: 1;
  }

  #info-details .link-but-large {
    margin-top: 40px;
  }
}
