@charset "utf-8";

/*====================================================================================================

  サービス

====================================================================================================*/


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

  一覧
  
----------------------------------------------------------------------------------------------------*/

.infoList {
	list-style:none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.infoList li {
  display: block;
  width: calc(50% - 15px);
  margin-bottom: 30px;
}
.infoList li a {
  color: inherit;
  text-decoration: none;
}
.infoList li a .title {
  position: relative;
  font-size:1.2em;
  padding: 0 0 0 1.2em;
  margin-top: 0.5em;
}
.infoList li a .title::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background: #35bdcc;
  content: "";
}
.infoList li a img {
  transition: 0.2s;
}
.infoList li a:hover img {
  opacity: 0.8;
}


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

  詳細
  
----------------------------------------------------------------------------------------------------*/

.infoDetail-ct {
  padding-bottom: 2rem;
}

.p-glog {
  margin-bottom: 2em;
}

.mg-top {
  margin-top: 2em;  
}
.mg-top-s {
  margin-top: 1em;
}

.mg-bottom {
  margin-bottom: 2em;  
}
.mg-bottom-s {
  margin-bottom: 1em;
}

/* hdline */
.hdline {
  font-size: 1.2em;
  color: #197ece;
}
.l-hdline--line {
  display: block;
  margin-bottom: 40px;
}
strong.l-hdline--bg {
  display: inline-block;
  border-radius:5px;
  padding:0.75rem 1rem;
  margin-left: 0;
  margin-right: 0;
}

/* list */
ul.list {
  list-style: none;
  margin-top: 1em;
}
ul.list li::before {
  content: "●";
  color: #197ece;
  padding-right: 0.5rem;
}

/* numberlist */
ol.numberlist {
  counter-reset:number;
  list-style-type: none!important; 
}
ol.numberlist li {
  line-height: 1.5em;
  padding-bottom: 0.5em;
  padding-left:2.5em;
  text-indent:-2.5em;
}
ol.numberlist li:before{
  counter-increment: number;
  content: counter(number);
  display:inline-block;
  background: #197ece;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 1em;
  padding-left:1em;
  text-indent:-1em;
}

/* schedule */
.schedule {
  overflow: hidden;
}
.schedule dt {
  clear: left;
  float: left;
  width: 4em;
  padding-right: 1em;
  margin-bottom: 0.5em;
  text-align: right;
  color: #6DB74F;
  font-weight: 500;
}
.schedule dd {
  width: calc(100% - 5em);
  float: left;
  margin-bottom: 0.5em;
}

/* schedule02 */
.schedule02 {
  overflow: hidden;
}
.schedule02 dt {
  clear: left;
  float: left;
  width: 5em;
  padding-right: 1em;
  margin-bottom: 0.5em;
  text-align: right;
  color: #6DB74F;
  font-weight: 500;
}
.schedule02 dd {
  width: calc(100% - 6em);
  float: left;
  margin-bottom: 0.5em;
}

/* contactinfo */
.contactinfo {
  padding: 1em 30px;
  border: 2px solid #0a6fbf;
  border-radius: 10px;
  background-color: #278dde;
  color: #fff;
  text-align: center;
}

.contactinfo a {
  text-decoration: none;
  color: inherit;
}



