/** common **/
/* =============================================== */
.contentspage img {
  max-width: 100%;
  height: auto;
}

/* ul,ol */
.contentspage ul,
.contentspage ol {
  margin: 2rem 0;
  counter-reset: ol_li;
}
.contentspage ul > li,
.contentspage ol > li {
  position: relative;
  padding-left: 2rem;
  list-style-type: none;
}
.contentspage ul > li:before {
  content: '';
  width: .8rem;
  height: .8rem;
  display: inline-block;
  background: #2aa5d8;
  position: absolute;
  left: 0;
  top: .7rem;
}
.contentspage ol > li:before {
  counter-increment: ol_li;
  content: counter(ol_li) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: #2aa5d8;
}

/* table */
.contentspage table { border-collapse: collapse; border-spacing: 0; width: 100%; }
.contentspage table img { max-width: 100%; height: auto; }
.contentspage th, .contentspage td {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}
.contentspage th {
  width: 100%;
  padding: 2rem 1rem 0.5rem;
  background-color: #fafafa;
  text-align: left;
}
.contentspage th::after {
  display: none;
}
.contentspage th:empty, td:empty {
  border: none;
}
.contentspage th p:last-of-type, .contentspage td p:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .contentspage th, .contentspage td { display: table-cell; padding: 1.5rem; border-bottom: 1px solid #ddd; }
  .contentspage th { width: 200px; }
  .contentspage th:empty, .contentspage  td:empty { border-bottom: 1px solid #ddd; }
}
.noboder th,
.noboder td { border: none; }


/* document button */
.contentspage .dmt {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 1px solid #3994c7;
  background-color: rgba(42, 165, 216, 1);
  text-decoration: none;
  color: #fff;
  transition: all 0.5s;
}
.contentspage .dmt:hover {
  background-color: rgba(42, 165, 216, 0.8);
}
.contentspage .dmt::before {
  content: '\f019';
  position: absolute;
  left: 0.8rem;
  font: 1.4rem/1.6 'FontAwesome';
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* pagenation */
.pagenation {
  margin: 2rem 0 0;
}
.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.pagenation ul {
    margin: 0;
}
.pagenation ul li {
  border: 1px solid #ddd;
  padding: 0;
  float: left;
  list-style: none outside none;
  margin-left: -1px;
}
.pagenation ul li::before {
  display: none;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
  background-color: rgba(42, 165, 216, 1);
  color: #fff;
  padding: .8rem 1.5rem;
}
.pagenation li a {
  display: block;
  width: 100%;
  padding: .8rem 1.5rem;
  background: transparent;
  color: #227aab !important;

  text-decoration: none !important;
}
.pagenation li a:hover {
  background-color: rgba(42, 165, 216, 1);
  color: #fff !important;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

#contents .contentspage h2 {
  position: relative;
  line-height: 2.2rem;
  margin: 5rem 0 4rem;
  padding: 0.5rem 0 1.5rem;
  border-bottom: 1px solid #d9d9d9;
  color: #028ac3;
  font-size: 2.2rem;
  font-weight: normal;
}
#contents .contentspage h2::before {
  display: none;
}
#contents .contentspage h2:first-child {
  margin: 0 0 4rem;
}
.contentspage h3 {
  position: relative;
  line-height: 2.2rem;
  margin: 5rem 0 4rem;
  padding-left: 2rem;
  font-size: 1.8rem;
}
.contentspage h3::before {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2.5px;
  background: #2aa5d8;
}
.contentspage h4 {
  position: relative;
  line-height: 2.2rem;
  margin: 4rem 0 3rem;
  font-size: 1.6rem;
}

.contentspage p { margin-bottom: 1.5rem; }

.page_title {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  max-height: 200px;
  min-height: 120px;
}
.page_title::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 20vw;
  max-height: 200px;
  min-height: 120px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.76);
}
#contents .page_title h2 {
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  border: none;
  color: #028ac3;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}
#contents .page_title h2::before { display: none; }

@media (max-width: 768px) {
  #contents .page_title h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 540px) {
  #contents .page_title h2 {
    font-size: 2rem;
  }
}
.breadcrumb {
  font-size: 1.3rem;
  background: #f1f1f1;
}
.breadcrumb > p {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
}
.breadcrumb a { color: #2aa5d8 !important; }

.contentspage .inner {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 0;
}
.contentspage .inner2 {
  width: 96%;
  max-width: 1000px;
  margin: -5rem auto 0;
  padding: 0 0 6rem;
}

.contentspage .archive {
  padding: 2rem 0;
  background-color: #f1f1f1;
}
.contentspage .anchor {
  background-color: #f9f9f9;
}
.contentspage .archive > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  -flex-pack:justify;
  -ms-flex-wrap:wrap;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto -1rem;
  transition: all 0.5s;
}
.contentspage .archive > ul + ul {
  margin: 2rem auto -1rem;
}
.contentspage .archive > ul li:before { display: none; }
.contentspage .archive > ul li {
  margin-bottom: 1rem;
}
.contentspage .archive > ul a {
  display: block;
  position: relative;
  padding: 0.3rem 1rem;
  border-radius: 3px;
  background-color: rgba(42, 165, 216, 1);
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.contentspage .archive > ul a:hover {
  color: #fff;
  background-color: rgba(42, 165, 216, 0.8);
}
.contentspage .archive > .anchorlinks li {
  padding: 0;
}
.contentspage .archive > .anchorlinks a {
  position: relative;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  color: rgba(42, 165, 216, 1);
  text-decoration: none;
  font-size: 1.3rem;
  text-align: center;
}
.contentspage .archive > .anchorlinks a::after {
  content: "";
  display: inline;
  width: 1px;
  height: 100%;
  position: absolute;
  right: -12.5%;
  border-right: 1px solid #ccc;
}
.contentspage .archive > .anchorlinks li:nth-of-type(5n) a::after {
  display: none;
}
.contentspage .archive > .anchorlinks a:hover {
  color: rgba(42, 165, 216, 0.8);
  background-color: transparent;
}

@media (min-width: 999px) {
  .contentspage .archive > ul li:last-of-type {
    margin-right: 0;
  }
}
.contentspage .archive > .sp_snopen { display: none; }
@media (max-width: 999px) {
  .contentspage .archive .flex-four > li,
  .contentspage .archive .flex-five > li {
    width: 22.5%;
    margin: 0 1% 1rem;
  }
  .contentspage .archive > .anchorlinks li:nth-of-type(5n) a::after {
    display: inline;
  }
  .contentspage .archive > .anchorlinks li:nth-of-type(4n) a::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .contentspage .archive .flex-four > li,
  .contentspage .archive .flex-five > li {
    width: 46%;
    margin: 0 2% 1rem;
  }
  .contentspage .archive > .anchorlinks li:nth-of-type(2n) a::after {
    display: none;
  }
}
@media (max-width: 540px) {
  .contentspage .archive > .sp_snopen {
    display: block;
    font-weight: bold;
    text-align: center;
  }
  .contentspage .archive > .sp_snopen i {
    font-size: 1.8rem;
    transition: all 0.5s;
  }
  .contentspage .archive ul { display: none; margin: 2rem 0 0; }
  .contentspage .archive .flex-four > li {
    width: 96%;
    margin: 0 auto 1rem;
    padding: 0;
  }
  .contentspage .archive .flex-five > li {
    width: 50%;
    margin: 0 0 1rem;
  }
  .contentspage .archive > .anchorlinks li a {
    padding: 0 1rem;
    text-align: left;
  }
  .contentspage .archive > .anchorlinks a::after {
    right: 0;
  }
}
.contentspage .archive > .anchorlinks li:last-of-type a::after {
  display: none;
}

/** about **/

/** magazines **/
.magazine_list h3 {
  margin: 0 0 2rem;
}

.magazine_list {
  width: 100%;
  position: relative;
  overflow: hidden;
  zoom:1;
  padding: 2.2rem 2rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fdfdfd;
  border-top: 2px solid #ddd;
}
.magazine_list:first-of-type {
  margin: 5rem 0 1rem;
}
.magazine_list:last-of-type {
  margin: 1rem 0 0;
}
.magazine_list > dt {
  position: relative;
  width: calc(100% - 150px);
  line-height: 1;
  margin-bottom: 1.5rem;
  padding: 1rem 6rem 1rem 1rem;
  float: right;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 1.6rem;
}
.magazine_list > dt > .dmt {
  position: absolute;
  margin: 0;
  padding: .5rem .8rem .5rem 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 3px;
  border: none;
  border-bottom: 1px solid #db7c0e;
  background-color: #f4911c;
}
.magazine_list > dt > .dmt:hover {
  background-color: #fba034;
}
.magazine_list > dd:first-of-type {
  margin-bottom: 0;
  float: left;
  text-align: left;
}
.magazine_list > dd:first-of-type img {
  width: 125px;
  height: auto;
}
.magazine_list > dd:nth-of-type(2) {
  width: calc(100% - 150px);
  float: right;
  font-size: 1.4rem;
}
@media (max-width: 540px) {
  .magazine_list {
    padding: 1rem;
  }
  .magazine_list > dt {
    width: 100%;
    float: none;
  }
  .magazine_list > dd:first-of-type {
    width: 100%;
    margin-bottom: 1.5rem;
    float: none;
    text-align: center;
  }
  .magazine_list > dd:first-of-type img {
    width: 100%;
    max-width: 100px;
  }
  .magazine_list > dd:nth-of-type(2) {
    width: 100%;
    float: none;
  }
}
@media (max-width: 375px) {
  .magazine_list > dt > .dmt {
    display: none;
    position: relative;
    margin: 1rem 0;
  }
}

/** role **/

/** seminar **/
.seminar_list {
  width: 100%;
  position: relative;
  overflow: hidden;
  zoom:1;
  padding: 2.2rem 2rem 1rem;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fdfdfd;
}
.seminar_list:first-of-type {
  margin: 5rem 0 1rem;
}
.seminar_list:last-of-type {
  margin: 1rem 0 0;
}
.seminar_list > dt {
  position: relative;
  width: 100%;
  line-height: 1;
  color: #333;
  margin-bottom: 1.5rem;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 1.6rem;
}
.seminar_list dl {
  position: relative;
  overflow: hidden;
  zoom:1;
  width: 31%;
  margin: 2.7rem 0 0 0;
  float: right;
  -ms-flex-wrap:wrap;
  flex-wrap: wrap;
}
.seminar_list dl > dt {
  width: 80px;
  margin-bottom: 0.2rem;
  color: #666;
  font-size: 1.3rem;
}
.seminar_list dl > dd {
  width: calc(100% - 80px);
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}
.seminar_list > dd div {
  display: block;
  position: relative;
  width: 65%;
  float: left;
  font-size: 1.5rem;
  padding-bottom: 3.5rem;
}
.seminar_list > dd div > span {
  display: block;
  margin-bottom: 1rem;
  color: #028ac3;
  font-size: 1.2rem;
}
.seminar_list > dd > dl .dmt {
  padding: .2rem .8rem 0 2.5rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 3px;
  border: none;
  border-bottom: 1px solid #db7c0e;
  background-color: #f4911c;
}
.seminar_list > dd > dl .dmt:hover {
  background-color: #fba034;
}
.seminar_list > dd > .dmt::before {
  top: 47%;
}
.seminar_list .more {
  display: block;
  position: absolute;
  padding: .5rem 1.9rem .5rem 0;
  left: 0;
  bottom: 0;
  color: #232323;
  font-weight: normal;
  font-size: 1.3rem;
  text-align: right;
  text-decoration: none;
  transition: all 0.2s linear;
}
.seminar_list .more::after {
  content: '\f0da';
  display: block;
  position: absolute;
  top: .5rem;
  left: calc(100% - 0.7rem);
  color: #2aa5d8;
  font: 1.3rem/1.6 'FontAwesome';
  transition: all 0.2s linear;
}
.seminar_list .more:hover {
  color: #2aa5d8;
}
@media (max-width: 768px) {
  .seminar_list > dt {
    padding: 0 0 1rem 0;
}
  .seminar_list > dt > span {
    display: block;
    position: relative;
    margin: 2rem 0 0;
    padding: .5rem .8rem;
    top: auto;
  }
  .seminar_list dl {
    width: 100%;
    margin: 0;
  }
  .seminar_list > dd div {
    width: 100%;
    padding-bottom: 4.5rem;
  }
  .seminar_list .more {
    bottom: 1rem;
  }
}
/* entry */
.seminar .entry .cate {
  display: block;
  margin-bottom: 1rem;
  color: #028ac3;
  font-size: 1.4rem;
}
.seminar .entry .description {
  position: relative;
  overflow: hidden;
  zoom:1;
}
.seminar .entry .description > div {
  float: left;
  width: 64%;
}
.seminar .entry .description > dl {
  position: relative;
  padding: 1rem;
  overflow: hidden;
  zoom:1;
  width: 32%;
  float: right;
  border: 1px solid #eee;
  background: #fffcf6;
  -ms-flex-wrap:wrap;
  flex-wrap: wrap;
}
.seminar .entry .description > dl > dt {
  width: 80px;
  margin-bottom: 0.2rem;
  color: #666;
  font-size: 1.3rem;
}
.seminar .entry .description > dl > dd {
  width: calc(100% - 80px);
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
}
.seminar .entry .description > dl .dmt {
  padding: .2rem .8rem 0 2.5rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 3px;
  border: none;
  border-bottom: 1px solid #db7c0e;
  background-color: #f4911c;
}
.seminar .entry .description > dl .dmt:hover {
  background-color: #fba034;
}
.seminar .entry .description > dl .dmt::before {
  top: 47%;
}
@media (max-width: 768px) {
  .seminar .entry .description > dl {
    width: 100%;
    margin: 0;
  }
  .seminar .entry .description > div {
    width: 100%;
    padding-bottom: 4.5rem;
  }
}

/** disclosure **/
.disclosure_link {
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fdfdfd;
}
.disclosure_link li {
  padding: 0 !important;
  border-top: 1px solid #ddd;
}
.disclosure_link li:first-of-type {
  border-top: none;
}
.disclosure_link li:before {
  top: 46% !important;
  -webkit-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
.disclosure_link li > a {
  display: block;
  position: relative;
  padding: .5rem 100px .5rem 2rem;
}
.disclosure_link li > a > .dmt {
  position: absolute;
  width: 90px;
  padding: .2rem .8rem 0 2.5rem;
  right: 0;
  color: #028ac3;
  font-size: 1.2rem;
  font-weight: normal;
  border-radius: 3px;
  border: none;
  background-color: transparent;
}
.disclosure_link li > a:hover > .dmt {
  background-color: transparent;
}
@media (max-width: 425px) {
.disclosure_link li > a {
  padding: .5rem 30px .5rem 2rem;
}
.disclosure_link li > a > .dmt {
  padding: 5px 5px 0 5px;
  width: 20px;
  overflow: hidden;
  color: transparent;
}
.disclosure_link li > a:hover > .dmt {
  color: transparent;
}
.disclosure_link li > a > .dmt::before {
  left: 5px;
  color: #028ac3;
}
}

/** member **/
.member th,
.member td {
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .member th:first-of-type {
    padding: .5rem 1rem .5rem;
    border-bottom: none;
    font-weight: bold;
  }
  .member td {
    padding: .3rem 1rem;
  }
  .member tr + tr th {
    border-top: none;
  }
}

/** links **/
.links th,
.links td {
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .links th:first-of-type {
    padding: .5rem 1rem .5rem;
    border-bottom: none;
    font-weight: bold;
  }
  .links td {
    padding: .3rem 1rem;
  }
  .links tr + tr th {
    border-top: none;
  }
}


/** sitemap **/
.sitemap li {
  padding: 0 !important;
}
.sitemap li::before {
  display: none !important;
}
.sitemap a {
  display: block;
  position: relative;
  padding: 0.5rem 0;
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}
.sitemap a:hover {
  text-decoration: underline;
}
.sitemap.subcontents {
  margin-bottom: 1.5rem;
}
.sitemap .subcontents a {
  padding: 0.5rem 0 0.5rem 1rem;
  font-weight: normal;
}
.sitemap .subcontents a::before {
  content: '\f0da';
  display: block;
  position: absolute;
  top: .25rem;
  left: 0;
  color: #2aa5d8;
  font: 1.3rem/1.6 'FontAwesome';
  transition: all 0.2s linear;
}
@media (max-width: 540px) {
  .sitemap .flex-four {
    -ms-flex-wrap:wrap;
    flex-wrap: wrap;
  }
  .sitemap .flex-four > li {
    width: 46%;
  }
}
@media (max-width: 320px) {
  .sitemap .flex-four > li {
    width: 96%;
  }
}

/** topics **/
.topics .inner > ul {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px dotted #dcdcdc;
}
@media (max-width: 768px) {
  .topics .inner > ul {
    margin-bottom: 4rem;
  }
}
.topics .inner > ul li {
  min-height: 60px;
  padding: 0;
  border-bottom: 1px dotted #dcdcdc;
  font-weight: bold;
}
.topics .inner > ul li::before {
  display: none;
}
.topics .inner > ul a {
  display: block;
  width: 100%;
  padding: 0.8rem 0;
  text-decoration: none;
}
.topics .date {
  display: block;
  margin-bottom: 0.2rem;
  color: #666;
  font-size: 1.3rem;
  font-weight: normal;
}
@media (max-width: 1000px) {
  .topics .flex-two > li {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .topics .flex-between {
    display: block;
  }
  .topics .flex-two > li {
    width: 98%;
    margin: 0 auto;
    padding: 0;
  }
}

#contents .topics_entry .inner h2:first-child {
  margin-bottom: 1rem !important;
}
.topics_entry .date {
  display: block;
  margin-bottom: 3rem;
  color: #666;
  font-size: 1.3rem;
  font-weight: normal;
}

/* contact */
.inq_btn .flex-two li {
  margin: 0 0 1.5rem;
  padding: 0 !important;
  width: 48%;
}
.inq_btn .flex-two li:first-of-type {
  margin-right: 4%;
}
.inq_btn li::before {
  display: none !important;
}
.inq_btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 2rem 1rem;
  border-radius: 3px;
  border: 1px solid #3994c7;
  background-color: rgba(42, 165, 216, 1);
  text-decoration: none;
  color: #fff !important;
  transition: all 0.5s;
}
.inq_btn a::after {
  content: '\f105';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  color: #fff;
  font: 1.3rem/1.6 'FontAwesome';
  transition: all 0.2s linear;
}
.inq_btn a:hover {
  background-color: rgba(42, 165, 216, 0.8);
}
@media (max-width: 580px) {
  .inq_btn .flex-left {
    display: block;
  }
  .inq_btn .flex-two li,
  .inq_btn .flex-two li:first-of-type {
    width: 90%;
    max-width: 90%;
    margin: .5rem auto;
  }
}



/** respond **/
/* =============================================== */
@media (max-width: 1200px) {
}
@media (max-width: 1000px) {
}
@media (max-width: 768px) {
  html {
    font-size: 58.8%;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 55.55%;
  }
}
