@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
html {
  scroll-padding-top: 13rem;
}

.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
/*===============================================
  詳細ページ前後
===============================================*/
/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 2rem;
}
#header .header__logo {
  width: 8rem;
  padding-block: 1.5rem;
}
#header .header__right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .header__other > *:not(.header__mail) {
  padding-right: 1.5rem;
}
#header .header__tel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 55rem;
  gap: 0.5rem 0.8rem;
}
#header .header__tel .com-tel__mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.9rem;
  padding-inline: 2rem;
  border-radius: 0.5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
#header .header__tel .com-tel__mobile::after {
  width: 0.6rem;
  aspect-ratio: 6/10;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#header .header__tel .com-tel__txt {
  width: 29.4rem;
  text-align: center;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-noto);
  font-weight: var(--font-weight-semiBold);
  color: var(--color-orange);
  letter-spacing: var(--letter-spacing-base);
  line-height: 2;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px var(--color-orange) inset;
}
#header .header__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
#header .header__sns li {
  width: 3rem;
}
#header .header__mail {
  width: 13rem;
  height: 7rem;
  border-radius: 0 0 1rem 1rem;
  flex-direction: column;
  padding-right: 0;
}
#header .header__mail::after {
  display: none;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding-block: clamp(80px, 5.2083333333vw, 100px);
}
#footer .footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 3rem;
  width: 1080px;
}
#footer .footer__logo a {
  gap: 2rem;
}
#footer .footer__logo img {
  width: 8rem;
}
#footer .footer__logo span {
  font-size: 2.5rem;
}
#footer .footer__add {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
#footer .footer__add::before {
  width: 1.4rem;
}
#footer .footer__add span {
  margin-right: calc(1em - 1rem);
}
#footer .footer__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  max-width: 64rem;
}
#footer .footer__tel .com-tel__num {
  font-size: 3rem;
}
#footer .footer__tel .com-tel__num > span {
  margin-top: -0.6rem;
  margin-bottom: -0.2rem;
}
#footer .footer__tel .com-tel__num--box {
  width: 28rem;
  height: 9.2rem;
}
#footer .footer__tel .com-tel__mobile {
  width: 28rem;
  height: 9.2rem;
  border-radius: 0.5rem;
  gap: 1.5rem 0.8rem;
}
#footer .footer__tel .com-tel__mobile::before {
  font-size: var(--font-size-base);
  align-self: flex-end;
}
#footer .footer__tel .com-tel__mobile::after {
  height: 1rem;
  margin-block: 0.3rem;
  align-self: flex-end;
}
#footer .footer__tel .com-tel__mobile .com-tel__num {
  align-self: flex-start;
}
#footer .footer__tel .com-tel__info {
  font-size: var(--font-size-base);
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-base);
  margin-block: calc((1em - 1lh) / 2);
}
#footer .footer__tel .com-tel__info li::after {
  margin-inline: 2rem;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
  padding-top: 5rem;
}
.footer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 1080px;
  gap: 2rem calc(1em + var(--letter-spacing-base));
  border-top: solid 1px var(--color-denim);
  border-bottom: solid 1px var(--color-denim);
  padding: 3rem 28rem;
  margin-inline: auto;
}
.footer-nav__item {
  margin-block: calc((1em - 1lh) / 2);
}

/*コピーライト
-----------------------------*/
.copy {
  padding-top: 5rem;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  bottom: 10px;
  right: 10px;
}

/*サイドボタン
-----------------------------*/
#side {
  bottom: 10px;
  right: 10px;
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
.visual {
  padding-block: 2rem;
}
.visual > * {
  width: 96.875%;
  max-width: 1760px;
  outline: solid 0.5rem var(--color-navy);
  outline-offset: -0.5rem;
  border-radius: clamp(15px, 1.0416666667vw, 20px);
}
.visual:has(.visual__main) {
  padding-bottom: clamp(40px, 3.125vw, 60px);
}
.visual:has(.visual__main)::before {
  height: clamp(335px, 26.0416666667vw, 500px);
}
.visual:has(.visual__main)::after {
  height: clamp(30px, 2.0833333333vw, 40px);
  bottom: calc(clamp(335px, 26.0416666667vw, 500px) - 1px);
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: clamp(580px, 44.2708333333vw, 850px);
}
.visual__catch--main {
  width: 42.3296%;
  row-gap: clamp(12px, 0.8333333333vw, 16px);
}
.visual__catch--main img {
  width: 83.893%;
}
.visual__catch--main::after {
  width: 64.967%;
}
.visual #slideshow {
  width: 53.978%;
  height: 85.883%;
  top: 7.059%;
  right: 3.4091%;
}
.visual #slideshow li {
  -webkit-mask: url(../img/visual/slide-mask.png) no-repeat center/100% 100%;
          mask: url(../img/visual/slide-mask.png) no-repeat center/100% 100%;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(280px, 21.875vw, 420px);
}
.visual__sub::before {
  width: 61.364%;
  height: 85.715%;
  top: 7.1429%;
  right: 1.705%;
  border-radius: 1rem;
}
.visual__catch--sub {
  font-size: clamp(3rem, 2.34375vw, 4.5rem);
  line-height: 1.15556;
  padding: clamp(10px, 0.78125vw, 15px) clamp(30px, 2.0833333333vw, 40px);
  margin-left: 4.546%;
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  font-size: var(--font-size-base);
  margin-block: auto;
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav__item::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 3rem;
  background: linear-gradient(to bottom, var(--color-navy) 2px, transparent 2px, transparent 4px) repeat-y center top/2px 4px;
  opacity: 0.5;
}
.gnav__item:last-of-type::after {
  display: none;
}
.gnav__link {
  display: block;
  line-height: 1.875;
  letter-spacing: var(--letter-spacing-base);
  padding-inline: 3rem;
}
.gnav__link:hover, .gnav__link.current {
  color: var(--color-orange);
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 40px;
}
.breadcrumb__list {
  width: 1080px;
}
/*===============================================
  main共通
===============================================*/
.section {
  padding-block: 10rem;
}
.section:has(.com-title01) {
  padding-top: 6rem;
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
/*ボタン
-----------------------------*/
/*テーブル
-----------------------------*/
.com-table tr th {
  width: 34rem;
  text-align: center;
  vertical-align: middle;
  padding: 2rem 4rem;
  border-bottom: solid 1px var(--color-white);
}
.com-table tr td {
  padding: 2rem 4rem;
  border-bottom: solid 1px var(--color-navy);
  border-right: solid 2px var(--color-navy);
}
.com-table tr:first-of-type th {
  border-top: solid 2px var(--color-navy);
  border-top-left-radius: 1rem;
}
.com-table tr:first-of-type td {
  border-top: solid 2px var(--color-navy);
  border-top-right-radius: 1rem;
}
.com-table tr:last-of-type th {
  border-bottom: solid 2px var(--color-navy);
  border-bottom-left-radius: 1rem;
}
.com-table tr:last-of-type td {
  border-bottom-width: 2px;
  border-bottom-right-radius: 1rem;
}

/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*お知らせ
-----------------------------*/
.com-post__image {
  width: 15rem;
}

/* 背景
-----------------------------*/
.com-bg::before {
  height: 4rem;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*こんな症状・お悩みがありませんか？
-----------------------------*/
.top-trouble {
  padding-block: clamp(120px, 7.8125vw, 150px);
}
.top-trouble::before {
  background-size: min(402px, 20.9375%);
}
.top-trouble__title {
  margin-bottom: 6rem;
}
.top-trouble__title::before {
  content: "";
  width: 100rem;
  height: 16rem;
  background: url(../img/index/deco_trouble-left.png) no-repeat left bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8rem;
  z-index: -1;
}
.top-trouble__title::after {
  content: "";
  width: 56rem;
  height: 11.8rem;
  background: url(../img/index/deco_trouble-right.png) no-repeat right bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
  z-index: -2;
}
.top-trouble__box {
  padding: 5rem;
  border-radius: 2rem;
}
.top-trouble__box::before {
  width: calc(100% + 24rem);
  height: 22.4rem;
  bottom: -0.5rem;
}
.top-trouble__heading {
  width: 50rem;
  border-radius: 100vh;
  padding: 2rem 3rem;
  margin: 0 auto 2rem;
}
.top-trouble__heading::before {
  width: 9.7rem;
  top: -0.5rem;
  left: -1rem;
}
.top-trouble__heading::after {
  height: 2.6rem;
}
.top-trouble__area {
  padding-top: 5.4rem;
  margin-bottom: 4rem;
  position: relative;
}
.top-trouble__area--paint {
  height: 64.5rem;
}
.top-trouble__area--reform {
  height: 74.5rem;
  margin-bottom: 5rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(1) {
  top: 0;
  right: 7rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(1)::before {
  width: 24.2rem;
  height: 4.3rem;
  background: url(../img/index/border_trouble-paint01.png) no-repeat center/contain;
  left: -14.9rem;
  bottom: -3.9rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(1)::after {
  left: -17.6rem;
  bottom: -5rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(2) {
  top: 22.5rem;
  right: 0;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(2)::before {
  width: 21.8rem;
  height: 0.7rem;
  background: url(../img/index/border_trouble-paint02.png) no-repeat center/contain;
  left: -21.6rem;
  top: 9.6rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(2)::after {
  top: 7rem;
  left: -23rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(3) {
  bottom: 0;
  right: 7rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(3)::before {
  width: 14rem;
  height: 8.6rem;
  background: url(../img/index/border_trouble-paint03.png) no-repeat center/contain;
  left: -13.7rem;
  top: 2.4rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(3)::after {
  top: -1.5rem;
  left: -16.9rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(4) {
  bottom: 7.5rem;
  left: 0;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(4)::before {
  width: 25.1rem;
  height: 9rem;
  background: url(../img/index/border_trouble-paint04.png) no-repeat center/contain;
  right: -24.8rem;
  top: 2rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(4)::after {
  top: -0.5rem;
  right: -27.3rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(5) {
  top: 8rem;
  left: 6rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(5)::before {
  width: 8.9rem;
  height: 3.1rem;
  background: url(../img/index/border_trouble-paint05.png) no-repeat center/contain;
  right: -8.6rem;
  bottom: 7.2rem;
}
.top-trouble__list--paint .top-trouble__item:nth-of-type(5)::after {
  bottom: 5rem;
  right: -12rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(1) {
  top: 0;
  right: 7rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(1)::before {
  width: 14.1rem;
  height: 11.9rem;
  background: url(../img/index/border_trouble-reform01.png) no-repeat center/contain;
  left: -13.8rem;
  bottom: -0.7rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(1)::after {
  left: -16rem;
  bottom: -2rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(2) {
  top: 25.5rem;
  right: 0;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(2)::before {
  width: 10rem;
  height: 10.4rem;
  background: url(../img/index/border_trouble-reform02.png) no-repeat center/contain;
  left: -9.7rem;
  bottom: 2.7rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(2)::after {
  left: -11.5rem;
  bottom: 1rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(3) {
  bottom: 0;
  right: 26rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(3)::before {
  width: 8.5rem;
  height: 5.9rem;
  background: url(../img/index/border_trouble-reform03.png) no-repeat center/contain;
  top: -5.7rem;
  left: 1.4rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(3)::after {
  top: -8rem;
  left: -1rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(4) {
  bottom: 4.5rem;
  left: 0;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(4)::before {
  width: 20.9rem;
  height: 13.7rem;
  background: url(../img/index/border_trouble-reform04.png) no-repeat center/contain;
  top: -0.5rem;
  right: -20.7rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(4)::after {
  top: -3rem;
  right: -23.7rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(5) {
  top: 8rem;
  left: 4rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(5)::before {
  width: 14.6rem;
  height: 5.5rem;
  background: url(../img/index/border_trouble-reform05.png) no-repeat center/contain;
  right: -3rem;
  bottom: -5.1rem;
}
.top-trouble__list--reform .top-trouble__item:nth-of-type(5)::after {
  right: -6rem;
  bottom: -7.5rem;
}
.top-trouble__item {
  position: absolute;
}
.top-trouble__item::before {
  content: "";
  position: absolute;
  z-index: 0;
}
.top-trouble__item::after {
  content: "";
  width: 4rem;
  aspect-ratio: 40/46;
  background: url(../img/common/glass.png) no-repeat center/contain;
  position: absolute;
  z-index: 1;
}
.top-trouble__inner {
  width: 21rem;
  padding: 1rem 1rem 2rem;
  border-radius: 1rem;
  position: relative;
  z-index: 2;
}
.top-trouble__inner::before {
  content: "";
  width: 100%;
  height: 3.2rem;
  background: url(../img/common/pin01.png) no-repeat center/contain;
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: 1;
}
.top-trouble__thumb {
  margin-bottom: 2rem;
}
.top-trouble__thumb img {
  aspect-ratio: 1.4615384615;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-trouble__thumb img {
  border-radius: 1rem;
}
.top-trouble__body {
  text-align: center;
  padding: calc(5rem + (1em - 1lh) / 2) 5rem;
  border-radius: 2rem;
}

/*ご挨拶
-----------------------------*/
.top-greeting__title {
  margin-bottom: 4rem;
}
.top-greeting__title::after {
  content: "";
  width: 54rem;
  height: 10.7rem;
  background: url(../img/index/deco_greeting-left.png) no-repeat left bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.top-greeting__heading {
  max-width: 64rem;
  padding: 1.5rem 3rem;
  margin: 0 auto 8.2rem;
}
.top-greeting__heading::before {
  width: calc(100% + 12.6rem);
  height: 6.4rem;
  bottom: -2.2rem;
}
.top-greeting__heading > span::after {
  content: "";
  width: 1168px;
  height: 24.2rem;
  background: url(../img/index/deco_greeting-right.png) no-repeat right bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc((1lh - 1em) / 2 - 8.2rem - 1.5rem);
  z-index: -1;
}
.top-greeting__inner {
  min-height: 40rem;
  padding-block: 2rem;
  padding-right: 54rem;
  position: relative;
}
.top-greeting__image {
  width: calc(50vw - 8rem);
  min-width: 52rem;
  position: absolute;
  top: 0;
  left: calc(50% + 8rem);
}
.top-greeting__image img {
  width: 100%;
  height: 40rem;
  border-radius: 2rem 0 0 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/*当社の特徴
-----------------------------*/
.top-feature {
  background-size: max(1920px, 100%);
  padding-bottom: clamp(120px, 7.8125vw, 150px);
}
.top-feature__title {
  margin-bottom: 4rem;
}
.top-feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8rem 4rem;
}
.top-feature__list::before {
  width: 81rem;
  height: 21.1rem;
  top: -17rem;
}
.top-feature__item {
  width: 50rem;
}
.top-feature__icon {
  margin-bottom: 2rem;
}
.top-feature__heading {
  padding: 0.75rem 3rem;
  margin: 0 2rem 3rem;
}
.top-feature__heading::before {
  width: calc(100% - 1.5rem);
  clip-path: polygon(0 0, calc(100% - 2.3rem) 0, 100% 100%, 0 100%);
}
.top-feature__heading::after {
  height: 7.1rem;
  right: -2.4rem;
}
.top-feature__body {
  text-align: center;
  line-height: 1.875;
}

/*サービス
-----------------------------*/
.top-service {
  padding-bottom: clamp(120px, 7.8125vw, 150px);
}
.top-service__title::after {
  width: 47rem;
  height: 8.7rem;
  bottom: 1.6rem;
}
.top-service__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
  gap: 3rem;
}
.top-service__list:not(:has(.top-service__item:last-of-type:nth-of-type(3n + 1))) .top-service__item:first-of-type {
  padding-bottom: 10rem;
}
.top-service__list::after {
  width: 1260px;
  height: 18rem;
  bottom: -12rem;
}
.top-service__item {
  box-shadow: 7px 7px var(--color-denim);
  padding: 3rem 2rem 4rem;
}
.top-service__item:last-of-type:nth-of-type(3n + 1) {
  padding-bottom: 9rem;
}
.top-service__heading {
  margin-bottom: 2rem;
}
.top-service__heading::after {
  width: calc(100% - 3rem + 1px);
}
.top-service__image {
  margin-bottom: 3rem;
}
.top-service__body {
  line-height: 1.875;
}
.top-service__body p {
  display: inline;
}

/*対応エリア
-----------------------------*/
.top-area {
  padding-top: 5rem !important;
}
.top-area::after {
  width: 1290px;
  height: 22.3rem;
  bottom: 3rem;
  z-index: 6;
}
.top-area__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 6.8rem;
       column-gap: 6.8rem;
}
.top-area__wrap {
  width: 45.3rem;
  min-height: 443px;
  padding: 4rem 1.5rem;
  background: url(../img/index/bg_area-text.png) no-repeat center/100% 100%;
}
.top-area__text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.22223;
}
.top-area__map {
  padding-top: 5rem;
  padding-right: 6rem;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 5rem);
  max-width: 1280px;
  gap: 8rem;
}
.top-bnr__item {
  width: calc(50% - 4rem);
  height: 35rem;
}
.top-bnr__link {
  border-radius: 2rem;
  outline-width: 1rem;
  outline-offset: -1rem;
}
.top-bnr__link::before {
  border-radius: 2rem;
}
.top-bnr__link::after {
  width: 10rem;
  right: -2rem;
  bottom: -2rem;
}

/*お問い合わせ
-----------------------------*/
.top-contact {
  padding-block: clamp(80px, 5.2083333333vw, 100px);
}
.top-contact__inner {
  padding: clamp(80px, 5.2083333333vw, 100px) 5rem;
  border-radius: 2rem;
}
.top-contact__inner::before {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  border-radius: 2rem;
}
.top-contact__title {
  min-width: 51.3rem;
}
.top-contact__title::after {
  width: calc(100% + 16rem);
  height: 15rem;
  bottom: 0;
}
.top-contact__heading--text {
  margin-bottom: 5rem;
}
.top-contact__heading--text::after {
  content: "";
  width: 56.8rem;
  height: calc(100% - 1rem);
  background: url(../img/index/deco_contact-left.png) no-repeat left bottom, url(../img/index/deco_contact-right.png) no-repeat right 3rem top;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1rem;
}
.top-contact__heading--credit {
  width: 78rem;
  margin-inline: auto;
}
.top-contact__body {
  line-height: 1.875;
}
.top-contact__body--center {
  text-align: center;
}
.top-contact__credit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 5rem;
  padding-top: 5rem;
}
.top-contact__credit .top-contact__body {
  width: 35rem;
}
.top-contact__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding-top: 4rem;
}
.top-contact__item--tel {
  display: grid;
  grid-template-columns: repeat(3, 28rem);
  gap: 1.5rem 2rem;
  width: 100%;
}
.top-contact__item--tel:not(:has(.com-tel__mobile)) {
  grid-template-columns: repeat(2, 28rem);
}
.top-contact__item--tel .com-tel__num--box {
  height: 9.2rem;
  grid-row: span 2;
}
.top-contact__item--tel .com-tel__mobile {
  grid-row: span 2;
}
.top-contact__item--tel .com-tel__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 1.5rem;
  align-self: flex-start;
}
.top-contact__item--tel .com-tel__info li {
  line-height: 1.25;
}
.top-contact__item--tel .com-replace {
  margin-inline: auto;
}
.top-contact__item--tel .com-replace:has(+ .com-tel__info) {
  align-self: flex-end;
}
.top-contact__item--btn {
  width: 35rem;
  height: 9rem;
}
.top-contact__item--btn.com-btn--line {
  padding-right: 5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.top-contact__item--btn.com-btn--line::before {
  width: 3rem;
}

/*法人様へ
-----------------------------*/
.top-corporation {
  padding-top: 13rem;
}
.top-corporation::before {
  background-size: min(402px, 20.9375%);
}
.top-corporation__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem 3rem;
  padding: 0 5rem 10rem;
}
.top-corporation__inner::before {
  border-radius: 2rem;
}
.top-corporation__title {
  width: 50rem;
  margin-inline: calc(50% - 25rem);
}
.top-corporation__title::after {
  height: 2.6rem;
}
.top-corporation__text {
  width: 41rem;
  margin-left: 1rem;
}

/*求人募集
-----------------------------*/
.top-recruit {
  padding-bottom: calc(10rem + clamp(120px, 7.8125vw, 150px));
}
.top-recruit::before {
  background-size: min(402px, 20.9375%);
}
.top-recruit::after {
  width: calc(100% - 5rem);
  max-width: 1720px;
  height: calc(100% - clamp(120px, 7.8125vw, 150px));
  border-radius: 2rem;
}
.top-recruit__inner::before {
  width: 124rem;
  height: 23.4rem;
  bottom: -10rem;
}
.top-recruit__text {
  text-align: center;
}
.top-recruit__btn {
  margin: 5rem auto 0;
}

/*お知らせ/ブログ
-----------------------------*/
.top-news__box {
  display: grid;
  grid-template-columns: 33rem 1fr;
  align-items: flex-start;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
.top-news__title {
  padding-top: 13rem;
}
.top-news__title::after {
  height: 32rem;
  top: -5rem;
}
.top-news__list,
.top-news .com-empty {
  min-height: 31.5rem;
  grid-row: span 2;
}
.top-news .com-empty {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-news__btn {
  width: 25rem;
  margin-inline: auto;
  align-self: flex-end;
}

/*===============================================
  正樹建装について
===============================================*/
/*選ばれる理由
-----------------------------*/
.about-reason {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.about-reason__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
}
.about-reason__icon {
  margin-bottom: 2rem;
}
.about-reason__heading {
  padding: 0.75rem 1.5rem;
  border-radius: 100vh;
  margin-bottom: 3rem;
}
.about-reason__heading > span {
  line-height: 1.6;
}
.about-reason__body p {
  display: inline;
}
.about-reason__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding-top: 10rem;
}
.about-reason__cards::before {
  width: 1200px;
  height: clamp(165px, 12.8255208333vw, 197px);
  bottom: clamp(-120px, -7.8125vw, -100px);
}
.about-reason__card {
  padding: 4rem;
}
.about-reason__caption {
  margin-bottom: 4rem;
}
.about-reason__caption::before {
  width: calc(100% + 3rem);
}
.about-reason__summary {
  line-height: 1.875;
}

/*企業理念
-----------------------------*/
.about-philosophy__heading {
  max-width: 64rem;
  padding: 1.5rem 3rem;
  margin: 0 auto 8.2rem;
}
.about-philosophy__heading::before {
  width: calc(100% + 12.6rem);
  height: 6.4rem;
  bottom: -2.2rem;
}
.about-philosophy__heading > span::after {
  content: "";
  width: 1020px;
  height: 24.2rem;
  background: url(../img/about/deco_philosophy.png) no-repeat left bottom/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc((1lh - 1em) / 2 - 8.2rem - 1.5rem);
  z-index: -1;
}
.about-philosophy__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.about-philosophy__text {
  width: 52rem;
  margin-top: calc(2rem + (1em - 1lh) / 2);
}
.about-philosophy__image {
  width: 50rem;
}
.about-philosophy__image img {
  width: 100%;
  height: 36rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}

/*スタッフ紹介
-----------------------------*/
.about-staff::before {
  height: 4rem;
}
.about-staff__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  -moz-column-gap: 7rem;
       column-gap: 7rem;
  padding: 4rem;
}
.about-staff__image {
  width: 34rem;
  flex-shrink: 0;
}
.about-staff__inner {
  width: 100%;
}

/*===============================================
  事業内容
===============================================*/
/*共通
-----------------------------*/
.business-section {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.business-section__heading {
  margin-bottom: 4rem;
}
.business-section__heading::after {
  width: 52.6rem;
  height: 10.3rem;
  bottom: -2rem;
}
.business-section__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
.business-section__image {
  width: 58rem;
  flex-shrink: 0;
}
.business-section__image img {
  width: 100%;
  height: 48rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.business-section__text {
  width: 100%;
  margin-top: calc(2rem + (1em - 1lh) / 2);
}
.business-section__item {
  padding: 0 8rem 8rem;
  margin-top: 8rem;
}
.business-section__item::before {
  height: calc(100% - 4rem);
  border-radius: 2rem;
}
.business-section__caption {
  width: 50rem;
  border-radius: 100vh;
  padding: 2rem 3rem;
  margin: 0 auto 6.8rem;
}
.business-section__caption::before {
  width: 11.6rem;
  left: -5rem;
  bottom: -2rem;
}
.business-section__caption::after {
  height: 2.6rem;
}
.business-section__caption--work {
  width: 100%;
}
.business-section__summary {
  text-align: center;
}
.business-section__work {
  padding-top: 10rem;
}
.business-section__card {
  display: grid;
  grid-template: auto 1fr/1fr 40rem;
  grid-auto-flow: column;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  padding: 4rem;
  padding-left: 6rem;
  border-radius: 2rem;
}
.business-section__label {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.business-section__label::before {
  width: calc(100% + 4rem);
}
.business-section__check {
  display: grid;
  grid-template: repeat(4, 3rem)/repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 2rem;
}
.business-section__thumb {
  grid-row: span 2;
}
.business-section__thumb img {
  width: 100%;
  height: 32rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.business-section:nth-of-type(2n + 1):not(:first-of-type)::before {
  height: 4rem;
}
.business-section:nth-of-type(2n + 1) .business-section__inner {
  flex-direction: row-reverse;
}
.business-section--reform .business-section__caption::before {
  background-image: url(../img/business/deco_house.png);
}

/*===============================================
  初めての方へ
===============================================*/
/*ご依頼の流れ
-----------------------------*/
.beginner-flow {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.beginner-flow__item {
  border-radius: 2rem;
}
.beginner-flow__item:last-child::before {
  width: calc(100% + 20rem);
  height: 15.6rem;
  bottom: -6rem;
}
.beginner-flow__heading {
  padding: 2.5rem 20rem;
  border-radius: 2rem 2rem 0 0;
}
.beginner-flow__heading::before {
  top: 1rem;
  left: 12rem;
}
.beginner-flow__body {
  padding: calc(4rem + (1em - 1lh) / 2) 6rem;
}

/*よくあるご質問
-----------------------------*/
.beginner-faq {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.beginner-faq__item {
  padding: 4rem 6rem;
  border-radius: 2rem;
}
.beginner-faq__label {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.beginner-faq__label::before {
  width: 6rem;
  margin-top: -4rem;
  margin-bottom: -1.5rem;
}
.beginner-faq__body {
  padding-top: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.beginner-faq__body::before {
  width: 5rem;
  margin-top: -2rem;
}

/*===============================================
  施工事例
===============================================*/
/*一覧
-----------------------------*/
.example-list {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.example-list__title {
  margin-bottom: 3rem;
}
.example-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 6rem 3rem;
}
.example-list__image img {
  aspect-ratio: 1.36;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.example-list__image img {
  border-radius: 2rem;
}

/*詳細
-----------------------------*/
.example-detail {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.example-detail__title {
  padding: 1.75rem 6rem;
  margin-bottom: 4rem;
}
.example-detail__inner {
  display: grid;
  grid-template-columns: 62rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
.example-detail__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.example-detail__image--main img {
  border-radius: 2rem;
}

/*===============================================
  会社案内
===============================================*/
/*代表挨拶
-----------------------------*/
.company-message {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
  background-size: min(402px, 20.9375%);
}
.company-message::after {
  width: calc(100% - 5rem);
  max-width: 1280px;
  height: clamp(120px, 9.375vw, 153px);
}
.company-message__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
.company-message__inner:not(:has(.company-message__image)) .company-message__text {
  text-align: center;
  word-break: keep-all;
}
.company-message__image {
  width: 44rem;
  flex-shrink: 0;
}
.company-message__image img {
  border-radius: 2rem;
}
.company-message__text {
  width: 100%;
  margin-top: calc(1rem + (1em - 1lh) / 2);
}

/*会社概要
-----------------------------*/
.company-info {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.company-info__map {
  height: 35rem;
}

/*求人募集要項
-----------------------------*/
.company-recruit {
  padding-bottom: clamp(100px, 7.8125vw, 120px);
}
.company-recruit::before {
  height: 4rem;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
.news-archive__title {
  margin-bottom: 3rem;
}
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 360px;
  text-align: left;
  vertical-align: top;
  line-height: 2.375;
  padding: 2rem 3rem;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
  padding: 2rem 3rem;
}
.contact-form .contact-submits-wrap > * {
  width: 32rem;
  height: 7rem;
  margin: 20px 15px 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
.contact-complete__text {
  text-align: center;
}

/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__box {
  padding: 4rem;
}

/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
}
.sitemap-list__link {
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 1.5rem;
}

/*===============================================
  404エラー
===============================================*/