/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #444444;
  text-decoration: none;
}

a:hover {
  color: #a9a9a9;
  text-decoration: none;
}

pre {
  font-family: "Open Sans", sans-serif , serif;
  color: #444444;
  font-size: 15px;
  line-height: 25px;
}

.side-head {
  font-size: 20px;
  line-height: 30px;
  padding-left: 7px;
  margin-bottom: 15px;
  border-left: 5px solid #00863c;
}

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

::selection {
  background: #ccc;
  color: #444;
}

.half_wrap {
  display: flex;
  width: 100%;
  border-bottom: 1px dashed #d3d3d3;
  padding-bottom: 10px;
}

.half_wrap .left {
  width: 50%;
  margin: 0 auto;
}

.half_wrap .right {
  width: 40%;
}

.half_txt {
  position: relative;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn, a.btn, button.btn {
  position: relative;
  /* display: inline-block; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  vertical-align: middle;
  text-decoration: none;
}

.btn:focus {
  box-shadow: none;
}

a.btn_view {
  line-height: 40px;
  width: 150px;
  height: 40px;
  padding: 0;
  background-color: transparent;
}

a.btn_view svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

a.btn_view svg rect {
  stroke: #a5a5a5;
  stroke-width: 2;
  stroke-dasharray: 150px, 16px;
  stroke-dashoffset: 40px;
}

a.btn_view:hover svg rect {
  stroke-dashoffset: 144px;
}

a.btn_cubic {
  padding: 1rem 2rem;
  margin: 1rem 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 10px;
}

.b_back {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 10px;
  background: #ccc;
  color: #fff;
  margin: auto;
}

.b_back:hover{
  color: #fff;
  background: #c0c0c0;
}


/*--------------------------------------------------------------
# Border
--------------------------------------------------------------*/
.bd_1 {
  border-bottom: 1px dashed #c0c0c0;
}

.bd_2 {
  background: linear-gradient(transparent 60%, #ffff93 60%);
}

.bd_3 {
  border-bottom: 1px solid #c0c0c0;
}

/*--------------------------------------------------------------
# Background
--------------------------------------------------------------*/
.bg-gray {
  background: #f3f5fa;
}

.t_foo {
  background: #f5f5f5;
}
/*--------------------------------------------------------------
# Margin & Padding
--------------------------------------------------------------*/
.mt--1{
  margin-top: -1px;
}

.mt--3{
  margin-top: -3px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-300 {
  margin-top: 300px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-1rem{
  margin-bottom: 1rem;
}

.mb-2rem{
  margin-bottom: 2rem;
}

.pt-50 {
  padding-top: 50px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-200 {
  padding-top: 200px;
}


.pb-100 {
  padding-bottom: 100px;
}

.py-100 {
  padding: 100px 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #FFF;
}

#preloader:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: url(../../images/logo.png) center center no-repeat;
  width: 100%;
  height: 100%;
  -webkit-animation: animate-preloader 3s linear infinite;
  animation: animate-preloader 3s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animate-preloader {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgb(0, 134, 60, .8);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #444;
  color: #444;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  padding: 20px 0;
  background: #00863c;
}

.header-container {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-title {
  text-align: center;
}

.section-title h2, .section-title h4 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before, .section-title h4:before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2:after, .section-title h4:after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #d8373f;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 2rem 0;
  background: #00863c;
}

.footer .copyright {
  text-align: center;
  font-size: 80%;
  color: #fff;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news {
  padding-top: 150px;
}

.news .bg_cat, .client .bg_cat {
  padding: .5rem;
  color: #fff;
  font-weight: unset;
  font-family: sans-serif;
}

.news .card span {
  vertical-align: middle;
}

.news .news_list {
  line-height: 35px;
}

.news .side_bar {
  background: #fff;
  padding: 1rem;
}

.news .ns_head {
  margin-bottom: 1rem;
}

.news .ns_head p {
  text-align: center;
  padding-top: 1.5rem;
  margin-bottom: 0;
  color: #777;
  font-size: 1.75rem;
  font-weight: 600;
}

.news .ns_head small {
  position: relative;
  padding: 0 25px;
  font-size: 15px;
}

.news .ns_head small:before {
  position: absolute;
  top: calc(55% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #b7b7b7;
}

.news .ns_head small span {
  position: relative;
  padding: 0.5em;
  background: #fff;
}

.news .side_bar ul {
  list-style: none;
  margin-left: 1rem;
}

.news .side_bar li {
  list-style: none;
  margin-left: 0.5rem;
}

.news .side_bar ul ul li:last-of-type {
  margin-bottom: 20px;
}

.news .side_bar ul ul li {
  margin-left: -45px;
}

.news .side_bar img {
  vertical-align: text-bottom;
  margin-right: 5px;
}

.sidebar_icon {
  color: #ddd;
}

.sidebar_circle {
  font-size: 1px;
  color: #ddd;
}

.news .side_bar .arrow {
  vertical-align: baseline;
  margin-right: 1rem;
}

.news .side_bar .btn-link i {
  color: #444;
}

.news .card {
  padding: 2rem;
  margin-bottom: 30px;
}

.news .card .news_title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 1rem;
}

.news .card .news_txt {
  margin-top: 15px;
}

.news .card .news_txt p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
}

.news .card .news_txt img {
  margin: 2rem 0;
}

.news .card svg {
  fill: currentColor;
  width: 15px;
  vertical-align: -2px;
}

/*--------------------------------------------------------------
jhi-add
--------------------------------------------------------------*/

.star-icon {
  font-size: 14px;
  color: #999999;
}

.comment-color {
  color: #990000;
}

.entry-header {
    color: #333333;
    font-size: 20px;
    padding-left: 10px;
    border-left: 5px solid #999;
}

.entry-header_change1 {
    font-size: 1rem;
    margin-left: 10px;
    margin-top: 1rem;
    padding: 0px 21px 0px 14px;
}

.news_title_marginchange {
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 0rem;
}

.news_title_marginchange2 {
  font-weight: bold;
  margin-bottom: 0rem;
}

.p-4_pdchage {
  padding: 1rem 1.5rem 1rem 1.5rem;
  margin: 0px 0px 0px 0px;
}

.m-4_add_pd {
  margin: 1rem 0rem 1rem 1.5rem;
  padding: 0px 0px 7px 0px;
}

.m-4_add_pd2 {
  margin: 1rem 0rem 1rem 0rem;
  padding: 0px 0px 7px 0px;
}

.add1_mt {
   margin-top: 7px;
}

.title-border {
  border-bottom: 1px dashed #d3d3d3;
}

.title-border2 {
  border-bottom: 1px dashed #d3d3d3;
  margin-top: 1rem;
}

.category_content {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}

.green-short-underline {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
  margin-top: 1em;
  font-size: 24px;
  font-weight: bold;
}

.green-short-underline:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00863c;
  border-radius: 2px;
}

.news .ns_head2 p {
  text-align: center;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  color: #777;
  font-size: 1.75rem;
  font-weight: 600;
}

.popular-articles-pd {
  padding: 0px;
}

.same_category-title {
padding: 2rem;
margin-bottom: 2rem;
}

.color-only1 {
 background-color:#ebebeb;
}

.pdt4 {
padding-top: 4px;
}


@media screen and (max-width:1024px) {
  .pdt4{
  padding-top: 0px;
  }
}

.mb60 {
  margin-bottom: 60px;
}

@media(max-width : 575px) {
  .green-short-underline {
    margin-bottom: 30px;
    font-size: 21px;
  }

  .green-short-underline:before {
    bottom: -10px;
  }
}


/*月別アーカイブ*/
.accordion-container .accordion-title {
  position: relative;
  cursor: pointer;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

/* CSS for CodePen */
.accordion-container {
  width: 300px;
}

.square-down-change {
  padding: .25rem .5rem;
  font-size: .875rem;
  border-radius: .2rem;
}

.btn-change1 {
  color: #fff;
  background-color: #00863c;
  border-color: #00863c;
  padding: 0px 12px;
  border-radius: 0rem 0.25rem 0.25rem 0rem;
  border: none;
  outline: none;
}

.btn-change1:hover {
  background-color: #136740;
  transition: all 0.3s;
}

.search-results-li {
  list-style: none;
}

.search-results-font {
  font-size: 24px;
  font-weight: bold;
}

.search-results-height {
  height: 50px;
  line-height: 50px;
}

.search-results-box {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem;
  margin-bottom: 1rem;
  padding: 25px;
}

.jhi-img {
  margin: 4px 0px 0px 0px;
}

button:focus {
	outline:0;
}

.TextBoxCustomFocusBorder {
  display: block;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem 0rem 0rem .25rem;
  position: relative;
  flex: 1 1 auto;
  width: 0%;
  min-width: 0%;
}

.TextBoxCustomFocusBorder:focus {
  outline: none;
}

.mb-change-rem1 {
  margin-bottom: 1.5rem;
}

.ml-change-rem1 {
  margin-left: 1.5rem;
}

.font-weight-n {
  font-weight: normal;
}

.accordion-mt1 {
  margin-top: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.news .ns_head3 {
  margin-bottom: 0rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
}

.news .side_bar2 {
  background: #fff;
  padding: 1rem 1rem 0rem 1rem;
}

.sidebar-ul-point {
  list-style: none;
}


/*ページネーション関係*/
.pagination-position1 {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.wp-pagenavi {
  display: inline-block;
	clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
	background-color: #fff;
	border: 1px solid rgba(0,0,0,.125);
	padding: 8px 15px;
  margin: 0px 0px 0px 4px;
	white-space: nowrap;
	-moz-border-radius: .25rem;
	-webkit-border-radius: .25rem;
	border-radius: .25rem;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-decoration: none;
}

.wp-pagenavi a:hover {
  display: inline-block;
	color: #FFF;
	background-color: #ddd;
	border-color: rgba(0,0,0,.125);
}

.wp-pagenavi span.current {
  display: inline-block;
	color: #FFF;
	background-color: #00863c;
	border-color: #00863c;
	font-weight: bold;
}

/*------------------*/

.arrows-icon-margin {
  margin: 0px 5px 0px 5px;
}

.mr-10 {
  margin-right: 10px;
}

.float-l-mr10-mt2 {
  float: left;
  margin-right: 10px;
  margin-top: 2px;
}

.category-after-lc::after {
  content: ",";
}

.category-after-lc:last-child::after {
  content: none;
}

.popular-articles-information-color {
  color: #d0d0d0;
}

.half_wrap span:after {
  content: '|';
  padding: 0 5px;
  vertical-align: text-bottom;
}

.half_wrap .d-flex span:last-of-type:after {
  display: none;
}

.half_wrap span.pop_date {
  vertical-align: baseline;
}

.table-bordered thead th {
  border-bottom-width: 1px;
}

@media(max-width : 575px) {
  .half_wrap {
    display: block;
  }
  .half_wrap span:last-of-type:after {
    display: none;
  }
  .side-head {
    font-size: 18px;
    border-left: 3px solid #00863c;

  }
  .news .card {
    padding: 15px;
    margin-bottom: 20px;
  }
  .news .card .news_title {
    font-size: 17px;
    line-height: 25px;
  }
  .news .card span {
    font-size: 14px;
    line-height: 23px;
}
  .mb-change-rem1 {
    margin-bottom: 15px;
  }
  .title-border2 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .b_back {
    height: 50px;
  }
  .search-results-box {
    padding: 10px;
  }
  .search-results-font {
    font-size: 18px;
  }
}
