@charset "utf-8";

/*-------------- greeting --------------*/
.gr_txt {
    text-align: justify;
    line-height: 2;
}
.gr_name {
    font-size: 1.5rem;
    font-weight: 600;
}
.gr_img {
    width: 100%;
    overflow: hidden;
}
.gr_img img {
    object-fit: cover;
}

/*-------------- outline --------------*/
.ol_list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
}
.ol_list dt {
    width: 30%;
    padding: 1rem 2rem;
    background-color: #f2f4f5;
    border-bottom: 1px solid #ccc;
}
.ol_list dt:first-child {
    border-top: 1px solid #ccc;
}
.ol_list dd {
    width: 70%;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}
.ol_list dd:nth-child(2) {
    border-top: 1px solid #ccc;
}

/*-------------- policy --------------*/
.pol_txt {
    margin-left: 3rem;
}
.policy_section {
    padding: 3em;
}
.policy_section dl {
    display: flex;
    flex-wrap: wrap;
}
.policy_section dd {
    width: 100%;
}
.number_ttl {
    position: relative;
    font-size: 2rem;
    /*padding-left: 2.8rem;*/
}
.number_ttl::before {
    content: attr(data-number);
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    /*color: #a922a5;
    font-size: 1.77rem;*/
}

/*-------------- history --------------*/
.history_container {
    border-bottom: 1px solid #ccc;
  }
  .history_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .h_list_year  {
    width: 15%;
    padding: 1em;
    border-top: 1px solid #fff;
    font-size: 100%;
    font-weight: bold;
    background-color: #ACD8BD;
  }
  .h_list_data  {
    width: 85%;
  }
  .h_list_data .h_list_inbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .h_list_data .h_list_inbox > .date {
    width: 20%;
    padding: 1em;
    border-top: 1px solid #ccc;
    font-size: 100%;
    font-weight: normal;
    background-color: #DAEEE2;
  }
  .h_list_data .h_list_inbox > .data {
    width: 80%;
    padding: 1em;
    border-top: 1px solid #ccc;
    line-height: 1.8;
  }

  /*-------------- disclosure --------------*/
.doc_list ul {
    /*display: flex;
    flex-wrap: wrap;*/
    padding-left: 1em;
    padding-right: 1em;
}
.doc_list ul li {
    /*width: calc(100% / 3);*/
    margin-bottom: 1.11rem;
    text-align: left;
}
.doc_list ul li a,
.txt_link {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: .3s;
}
.doc_list ul li a:hover,
.txt_link:hover {
    opacity: 1;
}
.doc_list ul li a::after,
.txt_link::after {
    position: absolute;
    bottom: .5em;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #41AE98;
    opacity: 0;
    transition: .3s;
}
.doc_list ul li a:hover::after,
.txt_link:hover::after {
    bottom: 0;
    opacity: 1;
}
.txt_link_c {
    color: #41AE98;
}
