@charset "UTF-8";
/* CSS Document */
.text-center {
text-align: center;
}
/*見出しオーバーライド*/

.content h3 {
	position: relative;
    padding-bottom: 0.5em;
	padding-left: 0;
	padding-right: 0;
    border-bottom: 4px solid #DDD;
	color: #446689;
}

.content h3::after {
     position: absolute;
     content: " ";
     border-bottom: solid 4px #446689;
     bottom: -4px;
     width:15%;
     display: block;
}


/*業績概要ボタン用*/

.btn-flat {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  background-color: #f4a460;
  color: white;
  border: solid 2px #f4a460;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat:hover {
  background-color: white;
  color: #f4a460;
}

/*newアイコン*/

.label {
  display: inline;
  padding: .4em .6em .4em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
	margin-left: 0.4em;
}

.new {
	background-color: crimson;
}


/*box用*/

.green {
	color: #167f92;
}

.box {
    position: relative;
    margin: 1em 0;
    padding-top: 1em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 1em;
    border: solid 1px #167f92;
	background-color: #fffaf0;
	border-radius: 4px;
}

.box2 {
    position: relative;
    margin: 1em 0;
    padding-top: 1em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 1em;
    background-color: #e6f2f5;
	border: solid 1px #167f92;
	border-radius: 4px;
}

.box .box-title {
    display: inline-block;
    top: -25px;
    left: 10px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    background: #167f92;
    color: #ffffff;
    border-radius: 4px;
}

.box2 .box-title {
    display: inline-block;
    top: -25px;
    left: 10px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    background: #167f92;
    color: #ffffff;
	border-radius: 4px;
}

.box p,.box2 p {
    margin: 0; 
    padding: 0;
}

.box.f-item p .name {
    color: #167f92;
	padding: 0.3em 0;
	font-weight: bold;
	font-size: 0.875em;
	margin-right: 1em;
}

.f-container{
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

.f-container .f-item {
	width: 49.5%;
}
/*3カラム調整用*/
.f-container::after{
  content:"";
  display: block;
  width:49.5%;
}

@media screen and (max-width: 767px) {
  .f-container {
    flex-direction: column;
	align-content: center;
  }
  .f-container .f-item {
    width:100%;
  }

}
