/* ===================================

  2025.04.17 修正

====================================== */

body {
  font-family: sans-serif !important;
}

/* ===================================

  ヘッダー

====================================== */
.header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 9000;
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  margin: 0 auto;
  max-width: 100%;
  width: 1340px;
  height: 100%;
}
.header .header-logo {
  width: 182px;
}
.header .header-logo__link,
.header .header-logo__img {
  display: block;
  width: 100%;
}
.header .header-logo__link {
  transition: all 0.3s;
}
.header .header-logo__link:hover {
  opacity: 0.75;
}
.header .header__contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .header-tel {
  width: 254px;
  pointer-events: none;
}
.header .header-tel__link,
.header .header-tel__img {
  display: block;
  width: 100%;
}
.header .header__btns {
  display: flex;
  align-items: center;
  margin-left: 18px;
}
.header .header-btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 13px;
  width: 95px;
  height: 70px;
  border-radius: 8px;
  z-index: 1;
  transition: all 0.3s;
}
.header .header-btn:hover {
  opacity: 0.75;
}
.header .header-btn__txt {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.header .header-btn.mail {
  background-color: #e36a11;
}
.header .header-btn.mail .header-btn__img {
  width: 28px;
}
.header .header-btn.mail .header-btn__txt {
  margin-top: 2px;
}
.header .header-btn.line {
  margin-left: 8px;
  background-color: #56bc38;
}
.header .header-btn.line .header-btn__img {
  width: 26px;
}
.header .header-btn.line .header-btn__txt {
  margin-top: 0;
}

@media screen and (max-width: 758px) {
  .header {
    position: relative;
    height: 65px;
    z-index: 10;
  }
  .header .header__inner {
    padding: 0 19px;
    width: 100%;
  }
  .header .header-logo {
    width: 120px;
  }
  .header .header-logo__link:hover {
    opacity: 1;
  }
  .header .header__contents {
    display: none;
  }
}

/* ===================================

  各ページ共通：お問い合わせセクション

====================================== */
.Common--contact .contents {
  position: relative;
  margin-top: 40px;
  padding: 50px 85px 55px;
  background-color: #fff;
  line-height: 1;
  border-radius: 16px;
  z-index: 1;
}
.Common--contact .contents__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.Common--contact .contents__txt {
  margin-top: 18px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.Common--contact .contents-tel {
  margin-top: 30px;
}
.Common--contact .contents-tel__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.Common--contact .contents-tel__ico {
  position: relative;
  top: 0.25em;
  width: 45px;
}
.Common--contact .contents-tel__num {
  margin-left: 10px;
  font-size: 64px;
  font-weight: 700;
}
.Common--contact .contents-tel__txt {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}
.Common--contact .contents .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.Common--contact .contents .btn {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 18px;
  width: calc((100% - 30px) / 2);
  height: 100px;
  background-image: url(../../assets/images/modify2025/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 10px 12px;
  background-position: center right 35px;
  border-radius: 10px;
  z-index: 1;
  transition: all 0.3s;
}
.Common--contact .contents .btn:hover {
  opacity: 0.75;
}
.Common--contact .contents .btn.email {
  background-color: #f76a0c;
}
.Common--contact .contents .btn.line {
  background-color: #00b120;
}
.Common--contact .contents .btn__head {
  flex: 0 0 60px;
  width: 60px;
}
.Common--contact .contents .btn__ico {
  display: block;
  width: 100%;
}
.Common--contact .contents .btn__body {
  flex: 1 1 auto;
  margin-left: 12px;
}
.Common--contact .contents .btn__txt {
  font-size: 16px;
  font-weight: 700;
  color: #ffff00;
}
.Common--contact .contents .btn__title {
  margin-top: 7px;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 758px) {
  .Common--contact .contents {
    margin-top: 25px;
    padding: 40px 20px;
    border-radius: 12px;
  }
  .Common--contact .contents__title {
    font-size: 16px;
    line-height: 1.5;
  }
  .Common--contact .contents__txt {
    margin-top: 15px;
    font-size: 14px;
  }
  .Common--contact .contents-tel {
    margin-top: 25px;
  }
  .Common--contact .contents-tel__ico {
    top: 0.1em;
    width: 24px;
  }
  .Common--contact .contents-tel__num {
    margin-left: 6px;
    font-size: 29px;
  }
  .Common--contact .contents-tel__txt {
    margin-top: 8px;
    font-size: 12px;
  }
  .Common--contact .contents .btns {
    display: block;
    margin-top: 30px;
  }
  .Common--contact .contents .btn {
    padding-left: 15px;
    width: 100%;
    height: 80px;
    background-size: 8px 10px;
    background-position: center right 15px;
    border-radius: 8px;
  }
  .Common--contact .contents .btn:hover {
    opacity: 1;
  }
  .Common--contact .contents .btn.line {
    margin-top: 15px;
  }
  .Common--contact .contents .btn__head {
    flex: 0 0 38px;
    width: 38px;
  }
  .Common--contact .contents .btn__body {
    margin-left: 10px;
  }
  .Common--contact .contents .btn__txt {
    font-size: 12px;
  }
  .Common--contact .contents .btn__title {
    margin-top: 6px;
    font-size: 18px;
  }
}

/* ===================================

  フッター：企業ロゴ

====================================== */
.Footer .spt {
  margin-bottom: 60px;
}
.Footer .spt .spt-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.Footer .spt .spt-item {
  width: 180px;
  transition: all 0.3s;
}
.Footer .spt .spt-item:hover {
  opacity: 0.75;
}
.Footer .spt .spt-item + .spt-item {
  margin-left: 15px;
}
.Footer .spt .spt-item__img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 758px) {
  .Footer .spt {
    margin-bottom: 28px;
  }
  .Footer .spt .spt-items {
    justify-content: space-between;
  }
  .Footer .spt .spt-item {
    width: calc((100% - 12px) / 2);
  }
  .Footer .spt .spt-item:nth-child(n + 3) {
    margin-top: 12px;
  }
  .Footer .spt .spt-item:hover {
    opacity: 1;
  }
  .Footer .spt .spt-item + .spt-item {
    margin-left: 0;
  }
}

/* ===================================

  フッター：Instagramアイコン

====================================== */
.Footer .insta {
  margin: 28px 0;
}
.Footer .insta__link {
  display: block;
  width: 60px;
  margin: 0 auto;
  transition: all 0.3s;
}
.Footer .insta__link:hover {
  opacity: 0.75;
}
.Footer .insta__ico {
  display: block;
  width: 100%;
}

@media screen and (max-width: 758px) {
  .Footer .insta {
    margin: 25px 0;
  }
  .Footer .insta__link {
    width: 40px;
  }
  .Footer .insta__link:hover {
    opacity: 1;
  }
}

/* ===================================

  SP：固定フッターナビ

====================================== */
.Footer {
  margin-bottom: 50px;
}
.Footer__fixed {
  height: 50px;
  line-height: 1;
}
.Footer__fixed .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  height: 50px;
  background-color: #f0a337;
}
.Footer__fixed .item.num {
  background-color: #f0a337;
}
.Footer__fixed .item.email {
  background-color: #e56a11;
}
.Footer__fixed .item.line {
  background-color: #56bc38;
}
.Footer__fixed .item.telnum .item__ico {
  width: 35px;
  margin-right: 5px;
}
.Footer__fixed .item.email .item__ico {
  width: 28px;
  margin-right: 12px;
}
.Footer__fixed .item.line .item__ico {
  width: 26px;
  margin-right: 15px;
}
.Footer__fixed .item__txt {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* ===================================

  TOPページ：リフォームプラン

====================================== */
#index .Plan .container .bnrs {
  margin-bottom: 20px;
}
#index .Plan .bnrs + .bnrs {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #index .Plan .bnrs + .bnrs {
    margin-top: 40px;
  }
  #index .Plan .bnrs .bnr {
    width: calc((100% - 40px) / 2);
  }
}

/* ===================================

  2025.07.18 修正

====================================== */

/* ---------------------------------
  トップ：新着の一覧リンクの設置
----------------------------------- */
#index .Info__lists .info__link {
  padding: 0;
  margin: 1.5em auto 0;
  max-width: 100%;
}

/* ---------------------------------
  トップ：バナーセクション追加
----------------------------------- */
#index .bnr-sec {
  position: relative;
  padding: 80px 0 0;
  z-index: 10;
}
#index .bnr-sec .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1060px;
  max-width: 100%;
}
#index .bnr-sec .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#index .bnr-sec .item {
  width: calc((100% - 40px) / 2);
}
#index .bnr-sec .item__link,
#index .bnr-sec .item__bnr {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  #index .bnr-sec .container {
    width: 100%;
    max-width: 768px;
  }
  #index .bnr-sec .items {
    display: flex;
  }
  #index .bnr-sec .item {
    width: calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 758px) {
  #index .bnr-sec .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #index .bnr-sec .items {
    display: block;
  }
  #index .bnr-sec .item {
    width: 100%;
  }
  #index .bnr-sec .item + .item {
    margin-top: 1em;
  }
}

/* ---------------------------------
  お問い合わせ一部非表示
----------------------------------- */
.wp-singular.elementor-page-30 .Lead,
.wp-singular.elementor-page-30 .Tel {
  display: none !important;
}
