@charset "UTF-8";
/* CSS Document */
/*--------------------★★★PC、SP両方に共有★★★---------------------*/
/*maincontents================================================================*/

#mainContents .pageBoxHeading {
  color: #fff;
  padding: 15px;
}
#mainContents .newBuildingBack {
  background: #3232be;
}
#mainContents .houseMovingBack {
  background: #0069dc;
}
#mainContents .usefulBack {
	position: relative;
  background: #00006c;
}
#mainContents .usefulBack span {
	position: absolute;
	right: 10px;
	box-sizing: border-box;
	font-size: 1.3rem;
	color: #fff;
	padding: 5px;
	background: #ff0078;
}
#mainContents .linkPass {
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  background: #00006c;
}
#mainContents .linkPass a {
  display: block;
  color: #fff;
  text-decoration: none;
}
#mainContents .linkPass a::after {
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  margin: 4px;
  text-decoration: none;
}
#mainContents .linkPass:hover {
  background: #3c6ef0;
}
/*categoryBox================================================================*/
#mainContents .categoryBox {
  margin: 30px auto 0;
  padding-bottom: 30px;
  border-bottom: 2px dotted #333;
}
#mainContents .last {
  padding: 0;
  border: none;
}
#mainContents .categoryBox a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
}
#mainContents .categoryBox a:hover {
  opacity: 0.7;
}
#mainContents .categoryBox .imgArea {
  width: 30%;
}
#mainContents .categoryBox .imgArea img {
  width: 100%;
}
#mainContents .categoryBox .txtArea {
  width: 68%;
}
#mainContents .categoryBox .txtArea p {
	position: relative;
	display: inline-block;
  font-weight: bold;
  color: #3c6ef0;
	padding-left: 1em;
	text-indent: -1em;
}
#mainContents .categoryBox .txtArea p::before {
  content: "\f138";/*f105*/
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
	font-size: 2.2rem;
  color: #3c6ef0;
  margin: 4px;
  text-decoration: none;
}
#mainContents .categoryBox .txtArea ul {
  margin-right: 16px;
}
#mainContents .categoryBox .txtArea ul li {
  margin: 15px 0 0 16px;
}
/*readMore================================================================*/
#mainContents .readMore {
	display: block;
	box-sizing: border-box;
	position: relative;
	margin: 50px 0 0;
	padding: 20px;
	border: solid 3px #00008f;
	border-radius: 8px;
	text-decoration: none;
}
#mainContents .readMore .ttl {
  position: absolute;
  display: inline-block;
  top: -15px;
  left: 20px;
  padding: 7px 25px;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #00008f;
  border-radius: 15px;
}
#mainContents .readMore ul li {
	box-sizing: border-box;
	list-style: none;
	line-height: 1.2;
	margin-top: 20px;
}
#mainContents .readMore ul li a {
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	color: #3c6ef0;
}
#mainContents .readMore ul li a:hover {
	opacity: 0.7;
}
#mainContents .readMore ul li a img {
	float: left;
	width: 20%;
	vertical-align: top;
	margin-right: 5px;
}






























#mainContents .pullArea .pullBox .accordion-trigger { /* label */
  cursor: pointer;
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  margin-top: 10px;
  padding: 15px;
  padding-right: 42px; /* padding + icon width */
  position: relative;
}
#mainContents .pullArea .pullPink .accordion-trigger {
  background: #ff0078;
}
#mainContents .pullArea .pullBlue .accordion-trigger {
  background: #00006c;
}
#mainContents .pullArea .pullPurple .accordion-trigger {
  background: #664785;
}
#mainContents .pullArea .pullGreen .accordion-trigger {
  background: #10b8b4;
}
/* icon */
.accordion-trigger::before, .accordion-trigger::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  height: 2px;
  width: 12px;
  background-color: #fff;
  transition: all .1s ease-out;
}
.accordion-trigger:hover {
  opacity: 0.7;
}
.accordion-trigger::after {
  transform: rotate(90deg);
}
.accordion-trigger.is-opened::after {
  opacity: 0;
  transform: rotate(0);
}
/* /icon */
.accordion-target { /* target */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
  transition: height .4s ease-out;
  flex-wrap: wrap;
  height: 0;
  text-align: left;
}
.accordion-target.list > .list__item { /* target-child */
  box-sizing: border-box;
  position: relative;
  top: 0;
  line-height: 1.2;
  width: 49.5%;
  list-style: none;
  margin-top: 6px;
  border-radius: 4px;
}
.pullArea .pullPink .list__item { /* target-child */
  padding: 12px 0;
  background: #ffe8f3;
}
.pullArea .pullBlue .list__item { /* target-child */
  padding: 12px 0;
  background: #eaf0ff;
}
.pullArea .pullPurple .list__item { /* target-child */
  padding: 12px 0;
  background: #eae0f5;
}
.pullArea .pullGreen .list__item { /* target-child */
  padding: 12px 0;
  background: #dfecec;
}
.pullArea .pullPink .list__item:hover { /* target-child */
  background: rgba(255, 187, 220);
}
.pullArea .pullBlue .list__item:hover { /* target-child */
  background: rgba(190, 220, 255);
}
.pullArea .pullPurple .list__item:hover { /* target-child */
  background: rgba(227, 186, 255);
}
.pullArea .pullGreen .list__item:hover { /* target-child */
  background: rgba(180, 236, 236);
}
.accordion-target.list > .list__item > a {
  display: block;
  margin-top: -15px;
  margin-bottom: -15px;
  padding: 15px;
  color: #333;
  text-decoration: none;
}
#mainContents .pullArea .pullBox .accordion-target .list__item a {
  position: relative;
  font-weight: bold;
}
#mainContents .pullArea .pullBox .accordion-target .list__item a::after {
  position: absolute;
  top: 30%;
  right: 10px;
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
#mainContents .pullArea .pullPink .accordion-target.list > .list__item > a::after {
  color: #ff0078;
}
#mainContents .pullArea .pullBlue .accordion-target.list > .list__item > a::after {
  color: #00006c;
}
#mainContents .pullArea .pullPurple .accordion-target.list > .list__item > a::after {
  color: #664785;
}
#mainContents .pullArea .pullGreen .accordion-target.list > .list__item > a::after {
  color: #10b8b4;
}
#mainContents .pullArea .pullBox .accordion-target.list > .list__item > a::hover {
  opacity: 0.7;
}
/*--------------------★★★PCサイト用（1080px以上）★★★---------------------*/
@media screen and (min-width: 1080px) {
  /*maincontents================================================================*/
  #mainContents .linkPass {
    width: 40%;
    margin: 20px 0 0 auto;
  }
  #mainContents .pageBoxHeading {
    font-size: 2.1rem;
  }
	#mainContents .usefulBack span {
		top: 13px;
	}
	/*categoryBox================================================================*/
	#mainContents .categoryBox .txtArea p {
		font-size: 1.8rem;
	}
	#mainContents .categoryBox .linkArea {
		display: none;
	}
	/*readMore================================================================*/
	#mainContents .readMore ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#mainContents .readMore ul li {
		width: 48%;
	}

	
	
	
	
	
	
	
	
	
	
	
  #mainContents .pullArea .pullBox .pull-label {
    font-size: 1.8rem;
  }
  #mainContents .pullArea .pullBox .accordion-target .list__item {
    font-size: 1.5rem;
  }
}
/*--------------------★★★タブレット★★★---------------------*/
@media (min-width: 768px) and (max-width: 1079px) {
  /*maincontents================================================================*/
  #mainContents .linkPass {
    width: 60%;
    margin: 20px auto 0 auto;
  }
  #mainContents .pageBoxHeading {
    font-size: 1.6rem;
  }
	#mainContents .usefulBack span {
		top: 11px;
	}
	/*categoryBox================================================================*/
	#mainContents .categoryBox .linkArea {
		display: none;
	}
	
	
	
	
  #mainContents .pullArea .pullBox .pull-label {
    font-size: 1.6rem;
  }
  #mainContents .pullArea .pullBox .accordion-target .list__item {
    font-size: 1.4rem;
  }
}
/*--------------------★★★スマホサイト用（767px以下）★★★---------------------*/
@media screen and (max-width:767px) {
  /*maincontents================================================================*/
  #mainContents .linkPass {
    width: auto;
    margin: 20px auto 0;
  }
  #mainContents .pageBoxHeading {
    font-size: 1.7rem;
  }	
	#mainContents .usefulBack span {
		top: -12px;
		font-size: 1.1rem;
	}
	/*categoryBox================================================================*/
	#mainContents .categoryBox a {
		display: block;
	}
	#mainContents .categoryBox .imgArea,
	#mainContents .categoryBox .txtArea {
		width: 100%;
	}
	#mainContents .categoryBox .txtArea {
		margin-top: 20px;
	}
	#mainContents .categoryBox .txtArea p {
		font-size: 1.8rem;
	}
	#mainContents .categoryBox .linkArea {
		width: 50%;
		margin: 20px auto 0;
	}
	#mainContents .categoryBox .linkArea p {
		position: relative;
		color: #fff;
		text-align: center;
		padding: 10px;
		border-radius: 4px;
		background: #3c6ef0;;
}
	#mainContents .categoryBox .linkArea p::after {
		position: absolute;
		right: 10px;
		content: "\f105";
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		color: #fff;
		text-decoration: none;
}
	/*readMore================================================================*/
	#mainContents .readMore ul li {
		margin-top: 20px;
	}

	
	
	
	
	
  .accordion-target { /* target */
    display: block;
  }
  .accordion-target.list > .list__item { /* target */
    width: 100%;
  }
  #mainContents .pullArea .pullBox .pull-label {
    padding: 15px 10px;
  }
  #mainContents .pullArea .pullBox .accordion-target .list__item {
    font-size: 1.4rem;
  }
  #snsContents {
    width: 100%;
    background: #fff;
  }
}