@charset "utf-8";
/*----------------------------------------------------
	共通パーツ
----------------------------------------------------*/
/*flex*/
.flexBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}
.flexBox__item {
  width: calc((100% - 2em) / 2);
}
@media (max-width:575px) { /* SP */
.flexBox { flex-direction: column; }
.flexBox__item { width: 100%; }
}

/* リスト */
.list { margin-left: 1.5em; }
.item::marker { color: var(--mainColor); font-weight: bold; }

/* リンクボタン */
.button {
  display: inline-block;
  width: min(220px, 100%);
  padding: 1em 3em 1em 2em;
  background: var(--mainColor);
  border: 2px solid transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  transition: .25s;
}
.button:focus,
.button:hover {
  background: #fff;
  border-color: currentColor;
  color: var(--mainColor);
}

/*矢印付きボタン*/
.button.-arrowRight {
  position: relative;
}
.button.-arrowRight::after {
  font-family: 'material icons';
  content: 'chevron_right';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

/*大ボタン*/
.button.-large {
  font-size: 1.8rem;
  width: min(400px, 100%);
}

/*色違いボタン*/
.button.-orange {
  background:  var(--subColor);
  color: #fff;
}
.button.-orange:focus,
.button.-orange:hover {
  background: #fff;
  border-color: currentColor;
  color: var(--subColor);
}

/*角丸ボタン*/
.button.-rounded {
  border-radius: 100vh;
}
.button.-rounded:focus,
.button.-rounded:hover {
  background-color:  #fff;
  border-color:  currentColor;
}

/*長ボタン*/
.button.-long { width: auto; }

/*タイトル*/
.title {  }
.title.-business { background: url("../../business/images/h2_business.jpg") no-repeat center center / cover; }
.title.-company { background: url("../../company/images/h2_company.jpg") no-repeat center center / cover; }
.title.-case { background: url("../../case/images/h2_case.jpg") no-repeat center center / cover; }
.title.-survey { background: url("../../survey/images/h2_survey.jpg") no-repeat center center / cover; }
.title.-contact { background: url("../../contact/images/h2_contact.jpg") no-repeat center center / cover; }
.title.-privacy { background: url("../../privacy/images/h2_privacy.jpg") no-repeat center center / cover; }
.title__inner { width: min(100% - 4em, var(--mainSize)); margin-inline: auto; }
.title__text {
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .2em;
  text-indent: .2em;
  padding: 2.5em .5em;
  line-height: 1.5;
  color: #fff;
}

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.fullBack.-bgTopCompanyBack { background: url("../../index/images/top_company_back.jpg") no-repeat top center / cover; }
.topCompany__title {
  font-family: YuMincho, Yu Mincho, serif;
  font-size: 4.5rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
}
.topCompany__title span { font-size: 6.0rem; }
.topCompany__subtitle {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--mainColor);
  margin-bottom: .5em;
}
.flexBox__item.-topCompanyImg { width: 38%; }
.flexBox__item.-topCompanyText { width: 57%; }
@media (max-width:575px) { /* SP */
.topCompany__title { font-size: 3.4rem; }
.flexBox__item.-topCompanyImg,
.flexBox__item.-topCompanyText { width: 100%; }
}

.topBusiness__title {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: .5em;
  color: var(--mainColor);
}
.topBusiness { position: relative; }
.topBusiness__arrow { width: 60px; height: 60px; background: var(--mainColor); position: absolute; top: 0; left: 0; }
.topBusiness__arrowRight {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  margin: 18px 15px;
}
.topBusiness__link { font-size: 2.6rem; font-weight: bold; color: var(--mainColor); background: #fff; padding: .4em 1em; }
.topBusiness__link:hover { color: #fff; background: var(--mainColor); transition: .5s; }

.fullBack.-bgTopSurveyBack { background: url("../../index/images/top_survey_back.jpg") no-repeat top center / cover; }
.topSurvey { position: relative; }
.topSurvey__arrow { width: 60px; height: 60px; background: var(--subColor); position: absolute; top: 0; left: 0; }
.topSurvey__arrowRight {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  margin: 18px 15px;
}
.topSurvey__subtitle {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: .5em;
  color: #fff;
}
.topSurvey__text { color: #fff; }

.topAccess__company { font-size: 2.5rem; font-weight: bold; }
.topAccess__address {  }
.topAccess__tel { font-size: 2.0rem; font-weight: bold; }
.topAccess__image {
  width: 20em;
  height: 20em;
  border-radius: 50%;
  margin: 1em auto 0;
  background: url("../../company/images/company_img.jpg") no-repeat center center / cover;
}

/*----------------------------------------------------
	事業内容
----------------------------------------------------*/
.flexBox.-business { align-items: stretch; gap: 0; }
.flexBox__item.-businessImg { width: 46%; margin-top: 2em; }
.flexBox__item.-businessText { width: 54%; background: #fff; padding: 2em; margin-top: 2em; }
@media (max-width:575px) { /* SP */
.flexBox__item.-businessImg { width: 100%; margin-top: 2em; }
.flexBox__item.-businessText { width: 100%; margin-top: 0; }
}

.business__title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: .5em;
  color: var(--mainColor);
}
.business__text { color: #505050; }

/*----------------------------------------------------
	会社案内
----------------------------------------------------*/
/* 通常テーブル */
.table { width: 100%; border-collapse: collapse; border-spacing: 0; line-height: 1.5; border-top: 1px solid #999; }
.table__th { display: table-cell; border-bottom: 1px solid #999; padding: 1em 2em; font-weight: bold; white-space: nowrap; }
.table__td { display: table-cell; border-bottom: 1px solid #999; padding: 1em 2em; }
@media (max-width:575px) { /* SP */
.table { border-top: 1px solid #999; }
.table__th,
.table__td { display: block; width: 100%; border-top: none; }
}
.table.-history { border-top: 1px solid #80bbe1; }
.-history .table__th,
.-history .table__td { border-bottom: 1px solid #80bbe1; }
.history__title { font-size: 3.0rem; font-weight: normal; color: var(--mainColor); border-bottom: .5em; }

/*----------------------------------------------------
	雨漏り調査
----------------------------------------------------*/
.box-trouble { text-align: center; padding: 10rem 0 18rem; }
.inner-trouble { padding: 0 1.5rem; }
.ttl-trouble { font-size: 4.2rem; font-weight: normal; margin-bottom: 6rem; }
.txt-comment { line-height: 1.8; background: #BFDDF0; border-radius: 30px; margin-top: 2.5rem;  padding: 3rem 3rem 5rem 3rem; }
.yellow02 { background: #FFF1D6; }
.navy03 { background: #BFD1E2; }
.icon-comment { margin-top: -4rem; margin-bottom: 7rem; } 

@media (max-width:575px) { /* SP */
    .box-trouble { padding: 8rem 0 20rem; }
    .ttl-trouble { font-size: 3.5rem; line-height: 1.5; }
    .inner-trouble { max-width: 350px; margin: 0 auto; padding: 0 0; }
}

.box-membership { text-align: center; padding: 7.5rem 0 10rem;  position: relative; }
.icon-ms { width: 27.2rem; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); }
.ttl-ms { font-size: 4rem; line-height: 1.4; color: #fff; }
.ttl-ms span { color: #FFC85A; }
.txt-ms { font-size: 1.9rem; line-height: 1.4; color: #fff; margin: 1rem 0 2.5rem; }
.bnr-ms { font-size: 1.7rem; line-height: 1.5; background: #FFC85A; border-radius: 40px; margin: 4rem 0; padding: 1.5rem; }
.bnr-ms span { font-weight: bold; color: #00468C; }
.inner-visit { font-weight: bold; line-height: 1.4; background: #fff; border-radius: 10px; padding: 3.5rem; }
.ttl-visit { font-size: 3.5rem; }
.ttl-visit span { color: #FF7D00; }
.txt-visit { font-size: 1.4rem; color: #FF7D00; margin-top: 1.2rem; }

@media (max-width:575px) { /* SP */
    .icon-ms { top: -17%; }
    .ttl-ms { font-size: 3.4rem; line-height: 1.4; }
    .ttl-visit { font-size: 3.1rem; }
}

.ttl-survey { text-align: center; font-size: 3rem; font-weight: normal; color: #fff; background: #FF7D00; border-radius: 40px; margin: 0 5rem 5rem; padding: 1rem; }
.box-process { margin: 4rem 0 0 0; position: relative; }
.icon-free { position: absolute; top: -1em; right: -1em; width: 7.5rem; }
.inner-process { padding: 2.2rem 2.8rem; background: #fff; }
.ttl-process { font-size: 2.1rem; line-height: 1; color: #FF7D00; }
.ttl-process span { font-size: 3.6rem; }
.txt-process { font-size: 1.6rem; padding-top: 1.3rem; line-height: 1.7; }
.tel-blue { font-weight: bold; color: #0078C3; }
.txt-point { font-size: 1.4rem; line-height: 1.7; background: #FFF9EE; border-radius: 10px; margin-top: 1.3rem; 
  padding: 1.3rem; }
.txt-point span { font-weight: bold; color: #FF7D00; }
.inner-process.-orange { background: #FF9733; }
.ttl-process.-orange { color: #fff; }
.txt-point.-orange { background: #fff; }

@media (max-width:575px) { /* SP */
    .Box-process { max-width: 450px; }
    .ttl-survey { font-size: 2.8rem; line-height: 1.5; border-radius: 30px; margin: 0 2rem 5rem; padding: 2rem  }
}

/*----------------------------------------------------
	お問い合わせ
----------------------------------------------------*/
.contact__title { font-size: 2.3rem;  font-weight: bold; text-align:center; margin-top: 3em; }
.contact__privacy {
  width: 100%;
  padding: 1em;
  margin-top: 1em;
  border-top: var(--mainColor) 1px solid;
  border-bottom: var(--mainColor) 1px solid;
}

/*----------------------------------------------------
	個人情報保護方針
----------------------------------------------------*/
.privacy__title { font-size: 1.8rem; color: var(--mainColor); border-bottom: var(--mainColor) 1px solid; margin: 2em 0 1em; }
.privacy__title:first-of-type { margin-top: 0; }
.privacy__subtitle { font-size: 1.6rem; color: var(--mainColor); margin: 2em 0 .5em; }
