@charset "UTF-8";

li {
  list-style: none;
}
a {
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.3s ease;
}



.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

/* セクションタイトル */
.section-title {
	width: 100%;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  position: relative;
}
.section-title span {
  max-width: 1000px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}
.section-title::before {
  content: "";
  width: calc((100% - 1000px) / 2);
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 12px;
  left: 0;
}

/*-------------------------------------------
メニュー
-------------------------------------------*/
.pagelink-list {
  display: flex;
  margin-bottom: 80px;
}
.pagelink-list li {
  width: calc(100% / 4);
  border-left: solid 1px #1f1f1f;
  font-size: 14px;
  text-align: center;
  position: relative;
}
.pagelink-list li:last-child {
  border-right: solid 1px #1f1f1f;
}
.pagelink-list li::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #1f1f1f;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
.pagelink-list li a {
  display: block;
}

/*-------------------------------------------
#group グループ
-------------------------------------------*/
#group {
	width:92%;
  margin-bottom: 120px;
}
#group .group-list {
  display: flex;
  flex-wrap: wrap;
	  width: 90%;
  border-top: solid 1px #1f1f1f;
	border-bottom: solid 2px #1f1f1f;

}
#group .group-list dt {
  width: 400px;
 /* border-top: solid 0px #1f1f1f;*/
font-size: 1.1em;
	line-height:1.8;
  padding: 10px 0px;
	background-color: #FFFFFF;

}
#group .group-list dt a{
	color: #000000;

}

#group .group-list dt:last-of-type {
  border-bottom: solid 0px #1f1f1f;
}
/**/
#group .group-list dd {
  width: calc(100% - 400px);
  border-top: solid 0px #ccc;
  font-size: 15px;
  padding: 20px 0;	
  line-height: 1.8;
}

#group .group-list dd:last-of-type {
  border-bottom: solid 0px #ccc;
}



/*-------------------------------------------
#affiliate 関連
-------------------------------------------*/
#affiliate {
	width:92%;
  margin-bottom: 120px;
}
#affiliate .affiliate-list {
  display: flex;
  flex-wrap: wrap;
}
#affiliate .affiliate-list dt {
  width: 350px;
  border-top: solid 1px #1f1f1f;
  font-size: 15px;
	line-height:1.8;
  padding: 20px 0px;
	background-color: #F8F8F8;
}
#affiliate .affiliate-list dt:last-of-type {
  border-bottom: solid 2px #1f1f1f;
}
#affiliate .affiliate-list dd {
  width: calc(100% - 350px);
  border-top: solid 2px #ccc;
  font-size: 15px;
  padding: 20px 0;
  line-height: 1.8;
}
#affiliate .affiliate-list dd:last-of-type {
  border-bottom: solid 2px #ccc;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* セクションタイトル */
  .section-title {
    margin-bottom: 10px;
  }
  .section-title::before {
    content: none;
  }

  /*-------------------------------------------
  メニュー
  -------------------------------------------*/
  .pagelink-list {
    margin-bottom: 40px;
  }
  .pagelink-list li {
    font-size: 12px;
  }
  /*-------------------------------------------
group グループ会社
  -------------------------------------------*/
#affiliate {
    margin-bottom: 60px;
  }
#affiliate .group-list dt {
    width: 400px;
    padding: 20px 0;
  }
#affiliate .group-list dd {
    width: calc(100% - 400px);
    padding: 20px 0;
  }
  /*-------------------------------------------
group グループ会社
  -------------------------------------------*/
  #group {
    margin-bottom: 60px;
  }
  #group .group-list dt {
    width: 400px;
    padding: 20px 0;
  }
  #group .group-list dd {
    width: calc(100% - 400px);
    padding: 20px 0;
  }


}