@charset "UTF-8";
/* CSS Document */
/*メイン画像*/
img {
  max-width: 100%;
}

.main-img {
  width: 100%;
  position: relative;
}

.main-img img {
  max-width: 100%;
}

.main-img h2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  z-index: 1;
  letter-spacing: 5px;
}

.main-img h2 small {
  font-size: 12px;
  color: #fff;
  font-weight: 300;
}

.main-copy {
  padding: 50px 0;
}

.main-copy ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}

.main-copy ul li:first-child {
  width: 35%;
  margin-right: 5%;
}

.main-copy ul li:first-child h3 {
  font-size: 22px;
  line-height: 2;
  margin: 0 0 10px;
}

.main-copy ul li:first-child p {
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}

.main-copy ul li:last-child {
  width: 50%;
}

/*        1030px以下の時のレイアウト
=========================================*/
@media only screen and (max-width: 1030px) {
  .main-copy ul li:first-child {
    width: 43%;
    margin-right: 3%;
  }
  .main-copy ul li:first-child h3 {
    font-size: 20px;
    margin: 0 0 5px;
  }
  .main-copy ul li:first-child p {
    font-size: 16px;
  }
}

/*        860px以下　SP　メイン画像
=========================================*/
@media only screen and (max-width: 860px) {

  .main-img h2 {
    font-size: 20px;
  }
  .main-copy {
    padding: 30px 0;
  }
  .main-copy ul li:first-child {
    order: 2;
    width: 90%;
    margin-right: 0;
    margin: 0 auto;
  }
  .main-copy ul li:last-child {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }
}

/*メインコンテンツ*/
.content {
  text-align: center;
  width: 1000px;
  max-width: 95%;
  margin: 0 auto 80px;
  padding: 1px 0;
  color: #000;
}

/*ライフインフォメーション*/
.lifeinfo-box {
  width: 100%;
  margin-top: 100px;
}

/*タイトル*/
.lifeinfo-box .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.lifeinfo-box .ttl li:first-child {
  font-size: 28px;
  font-weight: 600;
  margin-right: 10px;
}

.lifeinfo-box .ttl li:last-child {
  border-bottom: 3px solid #ade504;
  box-sizing: border-box;
  flex: 1;
  text-align: right;
  font-size: 13px;
  padding: 0 0 5px;
  letter-spacing: 3px;
  font-weight: 600;
}

/*画像のボックス*/
.lifeinfo-box .imgbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.lifeinfo-box .imgbox li {
  width: 24%;
}

.lifeinfo-box .imgbox li h3 {
  border-left: 3px solid #ade504;
  font-size: 15px;
  text-align: left;
  padding: 10px 0 10px 10px;
  line-height: 1.3;
}

.lifeinfo-box .imgbox li h3 strong {
  color: #74b502;
  font-size: 23px;
  font-weight: 500;
}

.lifeinfo-box .imgbox li h3 small {
  font-size: 12px;
}

/*アクセス用画像のボックス*/
.lifeinfo-box .imgbox_ac {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lifeinfo-box .imgbox_ac li:first-child {
  width: 33%;
}

.lifeinfo-box .imgbox_ac li:last-child {
  width: 64%;
}

.lifeinfo-box .imgbox_ac li h3 {
  border-left: 3px solid #ade504;
  font-size: 15px;
  text-align: left;
  padding: 10px 0 10px 10px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.lifeinfo-box .imgbox_ac li h3 strong {
  color: #74b502;
  font-size: 23px;
  font-weight: 500;
}

.lifeinfo-box .imgbox_ac li h3 small {
  font-size: 12px;
}

/*テキストのボックス*/
.lifeinfo-box .txtbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #acacac;
  border-bottom: 1px solid #acacac;
  padding: 8px 0 10px;
  margin-top: 30px;
}

.lifeinfo-box .txtbox li.left,
.lifeinfo-box .txtbox li.right {
  width: 49%;
}

.lifeinfo-box .txtbox li.left ul,
.lifeinfo-box .txtbox li.right ul {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #acacac;
  padding: 12px 0 10px;
}

.lifeinfo-box .txtbox li.left ul:last-child,
.lifeinfo-box .txtbox li.right ul:last-child {
  border-bottom: none;
}

.lifeinfo-box .txtbox li.left ul li,
.lifeinfo-box .txtbox li.right ul li {
  font-size: 14px;
}

.lifeinfo-box .txtbox li.left ul li small,
.lifeinfo-box .txtbox li.right ul li small {
  font-size: 12px;
}

.flex2-1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex2-1 .w50 {
  width: 48%;
}

.flex2-1 .w50 .lifeinfo-box .imgbox li {
  width: 48%;
}

.flex2-1 .w50 .lifeinfo-box .txtbox li.left,
.flex2-1 .w50 .lifeinfo-box .txtbox li.right {
  width: 100%;
}

/*        1030px以下の時のレイアウト
=========================================*/
/*        860px以下　SP　ライフインフォメーション
=========================================*/
@media only screen and (max-width: 860px) {
  .content {
    margin: 0 auto 50px;
  }
  .lifeinfo-box {
    margin-top: 50px;
  }
  .lifeinfo-box .imgbox {
    flex-wrap: wrap;
  }
  .lifeinfo-box .imgbox li {
    width: 48%;
    margin-bottom: 20px;
  }
  .lifeinfo-box .txtbox {
    margin-top: 0;
  }
  .lifeinfo-box .txtbox li.left,
  .lifeinfo-box .txtbox li.right {
    width: 100%;
  }
  .lifeinfo-box .txtbox li.left ul,
  .lifeinfo-box .txtbox li.right ul {
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .lifeinfo-box .txtbox li.right {
    border-top: 1px dashed #acacac;
  }
  .lifeinfo-box .txtbox li.left ul li,
  .lifeinfo-box .txtbox li.right ul li {
    text-align: left;
    line-height: 1.5;
    font-size: 13px;
  }
  .lifeinfo-box .imgbox li h3 {
    font-size: 13px;
  }
  .lifeinfo-box .imgbox li h3 strong {
    font-size: 20px;
  }
  .lifeinfo-box .ttl {
    flex-wrap: wrap;
  }
  .flex2-1 .w50 {
    width: 100%;
  }
  .lifeinfo-box .imgbox_ac li:first-child {
    width: 100%;
  }
  .lifeinfo-box .imgbox_ac li:last-child {
    width: 100%;
  }
}

/*=========================================*/
.main-img.main-img_results {
  height: 320px;
}

.main-img.main-img_results h2 {
  color: #000;
}

.main-img.main-img_results h2 small {
  color: #000;
}

@media screen and (max-width: 860px) {
  .main-img.main-img_results {
    height: 70px;
  }
}

.logo_haseko {
  max-width: 287px;
  width: 100%;
  margin: -10px auto 2em;
}

@media screen and (max-width: 860px) {
  .logo_haseko {
    max-width: 50%;
    width: 100%;
    margin: 2em auto 2em;
  }
}

.main_cp {
  max-width: 705px;
  width: 100%;
  margin: 0 auto 2em;
}

@media screen and (max-width: 860px) {
  .main_cp {
    max-width: 90%;
    width: 100%;
    margin: 0 auto 2em;
  }
}

.lead {
  font-size: 15px;
  text-align: center;
  line-height: 2.4;
  margin: 0 0 3.5em;
}

@media screen and (max-width: 860px) {
  .lead {
    font-size: 13px;
    text-align: center;
    line-height: 2.0;
    margin: 0 0 2em;
  }
}

.logo_branchera {
  max-width: 256px;
  width: 100%;
  margin: 0 auto 2.5em;
}

@media screen and (max-width: 860px) {
  .logo_branchera {
    max-width: 60%;
    width: 100%;
    margin: 0 auto 1.5em;
  }
}

.works {
  max-width: 695px;
  width: 100%;
  margin: 0 auto 8.1em;
}

.works .gp {
  display: flex;
  justify-content: space-between;
}

.works .gp .pict {
  margin: 0 0 2em;
}

.works .gp .pict .cap {
  padding: 0.7em 0 0 0;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.works .gp .pict .cap .cap_small {
  font-size: 11px;
  display: block;
  padding: 0.5em 0 0 0;
}

.works .gp .pict .cap_let {
  font-feature-settings: "palt";
  letter-spacing: -1px;
}

.works .gp .pict:nth-child(1) {
  width: calc(450/695*100%);
}

.works .gp .pict:nth-child(2) {
  width: calc(225/695*100%);
}

@media screen and (max-width: 860px) {
  .works .gp .pict .cap {
    padding: 0.7em 0 0 0;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
  }
  .works .gp .pict .cap .cap_small {
    font-size: 10px;
    display: block;
    padding: 0 0 0 0;
  }
  .works {
    margin: 0 auto 4em;
  }
  .works .gp .pict {
    margin: 0 0 1em;
  }
}

.works_long {
  max-width: 920px;
  width: 100%;
  margin: 0 auto 0;
}

.works_long .gp .pict:nth-child(1) {
  width: calc(450/920*100%);
}

.works_long .gp .pict:nth-child(2) {
  width: calc(450/920*100%);
}

.logo_homestage {
  max-width: 268px;
  width: 100%;
  margin: 0 auto 4.2em;
}

@media screen and (max-width: 860px) {
  .logo_homestage {
    max-width: 60%;
    width: 100%;
    margin: 0 auto 2em;
  }
}

.logo_rexia {
  max-width: 316px;
  width: 100%;
  margin: 0 auto 2.5em;
}

@media screen and (max-width: 860px) {
  .logo_rexia {
    max-width: 73%;
    width: 100%;
    margin: 0 auto 1.5em;
  }
}
/*# sourceMappingURL=style.css.map */