@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;
}
/*recommendBox================================================================*/
#mainContents .recommendBox {
  margin: 30px auto 0;
  padding: 30px;
  background: #e6f2ff;
}
#mainContents .recommendBox .txtArea .ttl {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  font-weight: bold;
	font-size: 3rem;
  color: #00006c;
  margin: 20px 0 10px;
}
#mainContents .recommendBox .txtArea .txt {
  line-height: 1.5;
}
#mainContents .recommendBox .linkArea {
  width: 50%;
  margin: 20px auto 0;
}
#mainContents .recommendBox .linkArea p {
  position: relative;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  background: #3c6ef0;
}
#mainContents .recommendBox .linkArea p a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px;
}
#mainContents .recommendBox .linkArea p a:hover {
  border-radius: 4px;
  background: #66b9ff;
}
#mainContents .recommendBox .linkArea p a::after {
  position: absolute;
  right: 10px;
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}
/*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, #mainContents .categoryBox .txtArea .ttl {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: #3c6ef0;
  padding-left: 1em;
  text-indent: -1em;
}
#mainContents .categoryBox .txtArea p::before, #mainContents .categoryBox .txtArea .ttl::before {
  content: "\f138";
  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 {
	line-height: 1.5;
  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;
}
/*snsContents================================================================*/


/*--------------------★★★PCサイト用（1080px以上）★★★---------------------*/
@media screen and (min-width: 1080px) {
  /*maincontents================================================================*/
  #mainContents .pageBoxHeading {
    font-size: 2.1rem;
  }
  #mainContents .usefulBack span {
    top: 13px;
  }
  /*categoryBox================================================================*/
  #mainContents .categoryBox .txtArea p, #mainContents .categoryBox .txtArea .ttl {
    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%;
  }
}
/*--------------------★★★タブレット★★★---------------------*/
@media (min-width: 768px) and (max-width: 1079px) {
  /*maincontents================================================================*/
  #mainContents .pageBoxHeading {
    font-size: 1.6rem;
  }
  #mainContents .usefulBack span {
    top: 11px;
  }
  /*categoryBox================================================================*/
  #mainContents .categoryBox .linkArea {
    display: none;
  }
}
/*--------------------★★★スマホサイト用（767px以下）★★★---------------------*/
@media screen and (max-width:767px) {
  /*maincontents================================================================*/
  #mainContents .pageBoxHeading {
    font-size: 1.7rem;
  }
  #mainContents .usefulBack span {
    top: -12px;
    font-size: 1.1rem;
  }
  /*recommendBox================================================================*/
  #mainContents .recommendBox .txtArea .ttl {
    font-size: 2.5rem;
  }
  #mainContents .recommendBox .linkArea {
    width: 100%;
  }
  /*categoryBox================================================================*/
  #mainContents .categoryBox a {
    display: block;
  }
  #mainContents .categoryBox .imgArea, #mainContents .categoryBox .txtArea {
    width: 100%;
  }
  #mainContents .categoryBox .txtArea {
    margin-top: 20px;
  }
  #mainContents .categoryBox .txtArea p, #mainContents .categoryBox .txtArea .ttl {
    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%;
  }
  #snsContents {
    width: 100%;
    background: #fff;
  }
}