@charset "utf-8";
/*--------------------------------------------
  service.css
  サービス用画面用CSS
--------------------------------------------*/
/*---------------------------------------------
	common
---------------------------------------------*/
#service {
  max-width: 1000px;
  margin: 0 auto;
}
#service .link_about a {
  text-decoration: none;
}
.arrow_right {
  display: inline-block;
}
.link_external a::after {
  content: "";
  background: url(../images/icon_external-link.svg) center / contain no-repeat;
  display: inline-block;
  margin-left: 5px;
  width: 0.9em;
  height: 0.9em;
}
.bdr-gray {
  border: 1px solid #b9b9b9;
}

@media screen and (min-width: 601px) {
  #FreePage .topGroupName {
    width: calc(100% - 40px);
  }
}

/*
	title
---------------------------------------------*/
/* ページタイトル */
.page-heading_title {
  font-size: 1.6em;
  font-weight: bold;
  border: none;
  margin-bottom: 1em;
  padding: 0;
}
/* セクションタイトル */
.sec_title {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  /*border-bottom: 1px solid #252525;
  padding-bottom: 15px;*/
  line-height: 1.5;
}

@media screen and (max-width: 960px) {
  /* ページタイトル */
  .page-heading_title {
    font-size: 1.3em;
  }
  /* セクションタイトル */
  .sec_title {
    font-size: 1.2em;
  }
}

/*---------------------------------------------
	contents
---------------------------------------------*/
.service_box_wrap {
  background-color: #f2f0ed;
  padding: 5%;
}
.service_box_wrap + .service_box_wrap {
  margin-top: 20px;
}
.service_box {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
}
.service_box + .service_box {
  margin-top: 10px;
}
.service_img {
  width: 306px;
  margin-right: 30px;
}
.service_img > a {
  display: block;
	text-align: center;
}
.service_txt {
  flex: 1 0 0%;
}
.service_txt dt {
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service_txt dt > a {
  font-weight: bold;
}
.service_txt dt > a > span {
  font-weight: bold;
  display: inline-block;
}
.service_txt dd + dd {
  margin-top: 6px;
}

@media screen and (max-width: 960px) {
  .service_img {
    margin-right: 20px;
    width: 25%;
  }
  .service_txt dt {
    font-size: 1.1em;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 600px) {
  .service_box {
    display: block;
  }
  .service_img {
    width: 100%;
    margin: 0 0 20px;
  }
}