@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  Bootstrap icon変数
=================================*/
/*===============================
  パターン変数
=================================*/
:root {
  /* カラー */
  --color-text: #7a6246;
  --color-white: #fff;
  --color-yellow: #ffedbb;
  --color-green: #309041;
  --color-mint: #a6d5c5;
  /* font-family */
  --font-family-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-family-sawarabi: "Sawarabi Gothic", sans-serif;
  --font-family-montserrat: "Montserrat", sans-serif;
  --font-family-icon: "bootstrap-icons";
  /* font-weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* pattern */
  --pattern-bg: url(../img/common/pt-bg_white.png);
  --pattern-bg-brown: url(../img/common/pt-bg_brown.png);
  --pattern-grid: url(../img/common/pt-grid.png);
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 4.8rem;
    --font-size-h2: 4rem;
    --font-size-h3: 3.2rem;
    --font-size-h4: 2.8rem;
    --font-size-h5: 2.4rem;
    --font-size-h6: 1.8rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-h1: 1;
    --line-height-h2: 1.625;
    --line-height-h3: 1.40625;
    --line-height-h4: 1;
    --line-height-h5: 1;
    --line-height-h6: 1.3888889;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-xl: 0.25em;
    --letter-spacing-lg: 0.15em;
    --letter-spacing-base: 0.1em;
    --letter-spacing-sm: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 2em;
    --font-size-h2: 1.75em;
    --font-size-h3: 1.5625em;
    --font-size-h4: 1.375em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-spacing */
    --letter-spacing-xl: 0.15em;
    --letter-spacing-lg: 0.125em;
    --letter-spacing-base: 0.1em;
    --letter-spacing-sm: 0.05em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

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

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-base);
  padding-top: 3em;
}
.pagenation li {
  width: 36px;
  line-height: 40px;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated__list {
  font-size: var(--font-size-base);
  padding-top: 1em;
  margin-top: 3em;
}
.paginated__link {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
.paginated__link-title {
  font-size: var(--font-size-sm);
}
.paginated__link--prev .paginated__link-txt::before {
  margin-right: 1em;
}
.paginated__link--next .paginated__link-txt::after {
  margin-left: 1em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
  font-size: var(--font-size-base);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(15px, 1.0416666667vw, 20px) clamp(20px, 1.5625vw, 30px);
}
#header .header__logo {
  width: clamp(70px, 4.4270833333vw, 85px);
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: clamp(1.4rem, 1.0810810811vw, 1.6rem);
  -moz-column-gap: clamp(20px, 1.5625vw, 30px);
       column-gap: clamp(20px, 1.5625vw, 30px);
}
#header .header__btn {
  width: clamp(216px, 16.2162162162vw, 240px);
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 80px 0 50px;
}
#footer .footer__inner {
  display: grid;
  grid-template: "left nav" auto "left links" 1fr/auto auto;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px 80px;
  width: 1080px;
}
#footer .footer__left {
  grid-area: left;
}
#footer .footer__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.5625;
  letter-spacing: var(--letter-spacing-base);
  row-gap: 40px;
  padding-top: 40px;
}
#footer .footer__info > * {
  margin-block: calc((1em - 1lh) / 2);
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
#footer .footer__other dt::after {
  content: "│";
}
#footer .footer__other dd {
  width: calc(100% - 6em);
}
#footer .footer__links {
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-area: links;
}
#footer .footer__link .com-btn {
  width: 240px;
}
#footer .footer__link--sns {
  width: 40px;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  grid-area: nav;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 44px 68px;
  align-items: flex-start;
}
.footer-nav__item:has(.dropdown-menu) {
  grid-row: span 2;
}
.footer-nav__link {
  line-height: var(--line-height-base);
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav .dropdown-menu__list {
  font-size: var(--font-size-xs);
  line-height: 2.08334;
  margin: calc(20px + (1em - 1lh) / 2) 0 calc((1em - 1lh) / 2);
}
.footer-nav .dropdown-menu__link::before {
  content: "-";
  margin-right: 0.25em;
}

/*コピーライト
-----------------------------*/
.copy {
  padding: 18px 0;
}
.copy p {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-base);
}

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

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

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  height: clamp(534px, 41.71875vw, 801px);
}
.visual__main-catch {
  width: clamp(668px, 52.1875vw, 1002px);
}
.visual__main-images {
  display: grid;
  grid-template: repeat(2, 50%)/repeat(4, 1fr);
}
.visual__main-image--big {
  grid-column: span 2;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(300px, 23.4375vw, 450px);
}
.visual__sub::before {
  width: 50%;
}
.visual__sub::after {
  width: 25.521%;
  max-width: 490px;
  height: clamp(108px, 8.4375vw, 162px);
}
.visual__sub-catch {
  font-size: clamp(2.8rem, 2.0833333333vw, 4rem);
  padding-bottom: 5px;
  margin-left: max(clamp(60px, 50vw - 540px, 100px), 50% - 610px);
}
.visual__sub-catch .en {
  font-size: 0.5em;
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 1em;
}
.visual__sub-catch .ja {
  letter-spacing: var(--letter-spacing-xl);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  line-height: 3.5;
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.25em;
       column-gap: 1.25em;
  margin-block: calc((1em - 1lh) / 2);
}
.gnav__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gnav__item:has(.dropdown-menu) {
  cursor: pointer;
  position: relative;
  z-index: 0;
}
.gnav__item:has(.dropdown-menu)::after {
  content: "\f229";
  font-size: 0.625em;
  font-family: var(--font-family-icon);
  font-weight: 400;
  line-height: 1;
  margin-left: 0.6em;
}
.gnav__item:has(.dropdown-menu):hover .dropdown-menu__list {
  max-height: calc(14em + clamp(20px, 1.4583333333vw, 28px) + 3px);
  padding-block: clamp(10px, 0.7291666667vw, 14px);
}
.gnav__link {
  display: block;
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
  transition: all 0.12s ease-out;
}
.gnav__link:hover, .gnav__link[aria-current=page] {
  color: var(--color-green);
}
.gnav .dropdown-menu__list {
  max-height: 0;
  background: #fff;
  padding-inline: clamp(20px, 1.5625vw, 30px);
  overflow: hidden;
  transition: all 0.56s ease-out;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
.gnav .dropdown-menu__item {
  min-width: 7.5em;
  line-height: 2;
  padding: 0.5em 0;
  border-bottom: solid 1px var(--color-text);
}
.gnav .dropdown-menu__item:last-of-type {
  border-bottom: none;
}
.gnav .dropdown-menu__link {
  display: block;
  text-align: center;
  white-space: nowrap;
  transition: all 0.12s ease-out;
}
.gnav .dropdown-menu__link:hover {
  color: var(--color-green);
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 60px;
}
.breadcrumb__list {
  width: 1080px;
}
.breadcrumb__item::after {
  margin: 0 1em;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: 100px 0;
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
.com-tel {
  font-size: var(--font-size-h2);
  row-gap: 0.25em;
}
.com-tel-num::before {
  font-size: 0.5em;
  margin-right: 0.5em;
}
.com-tel-num span {
  letter-spacing: var(--letter-spacing-sm);
  margin: -0.2em calc(var(--letter-spacing-sm) * -1) -0.075em 0;
}
.com-tel .com-replace {
  font-size: 0.3em;
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 300px;
  height: 60px;
  border-radius: 8px;
  padding-left: 1.5em;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  padding: 19px 7px;
}
.com-table tr td {
  padding: 19px 7px;
}

/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-text strong {
  font-size: var(--font-size-h6);
  line-height: 1.66667;
}
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-h2);
  margin-bottom: 50px;
}
.com-title01 .en {
  font-size: 0.5em;
  letter-spacing: var(--letter-spacing-base);
  padding: 0.5em calc(0.875em - var(--letter-spacing-base)) 0.5em calc(0.875em + var(--letter-spacing-base));
  margin-bottom: 1em;
}
.com-title01 .ja {
  line-height: var(--line-height-h2);
  letter-spacing: var(--letter-spacing-xl);
  margin-right: calc(var(--letter-spacing-xl) * -1);
}
.com-title01 .ja .b {
  font-size: 1.2em;
  line-height: 1;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-h3);
  margin-bottom: 30px;
}
.com-title02 > span {
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-lg);
  margin-right: calc(var(--letter-spacing-lg) * -1);
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  background-size: auto clamp(276px, 21.5625vw, 414px);
  padding: clamp(214px, 16.6666666667vw, 320px) 0 10px;
}
.com-contact::before {
  width: 98%;
  min-width: 1560px;
  max-width: 1840px;
  height: clamp(180px, 14.0625vw, 270px);
  bottom: -5px;
}
.com-contact__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: flex-start;
  width: 1020px;
  padding: 50px 110px;
}
.com-contact__inner::before {
  width: calc(100% + 60px);
  height: 230px;
  bottom: -17px;
}
.com-contact__title {
  align-items: flex-start;
  text-align: left;
  padding-left: 30px;
  margin-bottom: 0;
}
.com-contact__text {
  margin-top: 0;
}
.com-contact__box {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  grid-column: span 2;
  padding-top: 30px;
  margin-top: 40px;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*こんなお悩みございませんか？
-----------------------------*/
.top-worries {
  padding-bottom: 0;
}
.top-worries__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 350px;
  padding: 50px 10px 17px;
}
.top-worries__list::before {
  content: "";
  width: 51px;
  height: 147px;
  background: url(../img/common/deco_pen.png) no-repeat right bottom/contain;
  position: absolute;
  right: -12px;
  bottom: 0;
  z-index: -1;
}
.top-worries__list::after {
  width: calc(100% - 60px);
  height: 173px;
  bottom: 100%;
}
.top-worries__item {
  width: 50%;
  padding-left: calc(1.5625em + 30px);
  margin-bottom: 33px;
}
.top-worries__item::before {
  font-size: 0.9375em;
  margin-top: 1px;
  left: 30px;
}
.top-worries__item p {
  font-size: var(--font-size-h6);
  line-height: 1.33334;
}
.top-worries__text {
  height: 150px;
  margin: 50px 0 0;
}
.top-worries__text p {
  margin-right: calc(var(--letter-spacing-xl) * -1 - 0.5em);
}
.top-worries__text p::before {
  width: calc(100% + 2em);
  height: 1.25em;
}

/*そのお悩み、
住感工房にお任せください！
-----------------------------*/
.top-about {
  padding: 80px 0;
}
.top-about__inner {
  padding-left: 500px;
}
.top-about__title {
  align-items: flex-start;
  text-align: left;
}
.top-about__title .ja {
  margin-right: calc(var(--letter-spacing-xl) * -1 - 0.5em);
}
.top-about__text {
  font-weight: var(--font-weight-bold);
}
.top-about__btn {
  margin-top: 50px;
}

/*住感工房の想いを動画でご紹介！
-----------------------------*/
.top-movie {
  padding-top: 0;
}
.top-movie::before {
  min-width: 1360px;
  max-width: 1920px;
  height: clamp(310px, 23.9583333333vw, 460px);
}
.top-movie::after {
  content: "";
  width: calc(50% - 120px);
  min-width: 520px;
  max-width: 750px;
  height: 500px;
  background: url(../img/index/img_about.jpg) no-repeat center/cover;
  position: absolute;
  left: max(50% - 870px, 0px);
  top: -128px;
  z-index: 2;
}
.top-movie__images {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1280px;
  padding: 80px 0;
  margin-inline: auto;
}
.top-movie__image {
  position: relative;
}
.top-movie__image--front {
  margin-top: -119px;
  margin-right: 305px;
}
.top-movie__title {
  margin-bottom: 30px;
}
.top-movie__box {
  height: 506px;
}

/*住感工房の特徴
-----------------------------*/
.top-feature {
  padding: 80px 0;
}
.top-feature::before {
  width: 100%;
  max-width: calc(50% + 840px);
  border-top-right-radius: clamp(68px, 5.2083333333vw, 100px);
}
.top-feature__inner {
  display: grid;
  grid-template: "title btn" auto "list list" 1fr/1fr 300px;
  align-items: flex-end;
  gap: 50px 40px;
  padding: 50px 0;
}
.top-feature__inner::before {
  width: calc(100vw - 80px);
  max-width: 1280px;
  min-width: 1120px;
}
.top-feature__title {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
  grid-area: title;
}
.top-feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  grid-area: list;
}
.top-feature__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding-bottom: 1em;
}
.top-feature__item::before {
  font-size: 1.875em;
  margin: -0.1em 0 calc(10px - 0.1em);
}
.top-feature__icon {
  text-align: center;
}
.top-feature__icon img {
  width: 73px;
  aspect-ratio: 73/71;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-feature__text {
  font-size: 1.25em;
  line-height: 1.25;
  padding-inline: 1.5em;
}
.top-feature__btn {
  grid-area: btn;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr::before {
  width: 100%;
  max-width: calc(50% + 840px);
  height: 50%;
  max-height: 430px;
}
.top-bnr::after {
  min-width: 1360px;
  max-width: 1920px;
  height: clamp(416px, 32.5vw, 624px);
  bottom: clamp(51px, 3.9583333333vw, 76px);
}
.top-bnr__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.top-bnr__item {
  width: 510px;
  height: clamp(510px, 36.4583333333vw, 700px);
}
.top-bnr__item:nth-of-type(2n + 1) {
  margin-top: clamp(60px, 4.6875vw, 90px);
}
.top-bnr__item:hover .top-bnr__link::after {
  height: 200%;
}
.top-bnr__item:hover .top-bnr__inner {
  min-height: 100%;
}
.top-bnr__link {
  justify-content: flex-end;
  padding: 50px 30px;
}
.top-bnr__link::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/index/filter_bnr-pc.png) no-repeat center bottom/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.4s ease-out;
}
.top-bnr__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  min-height: 0%;
  transition: all 0.4s ease-out;
}
.top-bnr__title {
  margin-bottom: 1.875em;
}
.top-bnr__title .en {
  font-size: 1.25em;
  margin-bottom: 1em;
}
.top-bnr__title .ja {
  max-width: calc(100% - 60px);
  font-size: var(--font-size-h3);
  padding-bottom: 9px;
}
.top-bnr__title::after {
  font-size: 1.5em;
  width: 50px;
  margin-right: 10px;
}

/*施工実績
-----------------------------*/
.top-works::before {
  width: 95%;
  max-width: calc(50% + 840px);
  border-top-left-radius: clamp(68px, 5.2083333333vw, 100px);
}
.top-works__inner {
  display: grid;
  grid-template: "title btn" auto "list list" 1fr/1fr 300px;
  align-items: flex-end;
  gap: 50px 40px;
  padding: 50px 0;
}
.top-works__inner::before {
  max-width: 1280px;
  min-width: 1200px;
}
.top-works__title {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
  grid-area: title;
}
.top-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
  grid-area: list;
}
.top-works__image {
  margin-bottom: 15px;
}
.top-works__image img {
  aspect-ratio: 1.4583333333;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-works__heading {
  font-size: 1.25em;
  line-height: 1.25;
}
.top-works__btn {
  grid-area: btn;
}
.top-works__empty {
  grid-area: list;
}

/*お知らせ
-----------------------------*/
.top-news__box {
  display: grid;
  grid-template: "title list" auto "btn list" 50px/1fr 790px;
  -moz-column-gap: 100px;
       column-gap: 100px;
  align-items: flex-start;
  min-height: 300px;
}
.top-news__box:has(.top-news__item:nth-of-type(2)) .top-news__title::after {
  margin-top: 42px;
}
.top-news__box:has(.top-news__item:nth-of-type(3)) .top-news__title::after {
  margin-top: 62px;
}
.top-news__title {
  align-items: flex-start;
  text-align: left;
  grid-area: title;
  margin-bottom: 0;
}
.top-news__title::after {
  content: "";
  width: 100%;
  height: 87px;
  background: url(../img/index/deco_news.png) no-repeat center/contain;
  margin-top: 22px;
}
.top-news__list {
  grid-area: list;
}
.top-news__item {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.top-news__item-link {
  row-gap: 14px;
}
.top-news__item-tags {
  font-size: var(--font-size-xs);
  line-height: 1.5;
}
.top-news__btn {
  grid-area: btn;
  line-height: 2.25;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.top-news__btn::before {
  width: 50px;
  font-size: 1.5em;
}

/*===============================================
  住感工房について
===============================================*/
/*私たちの想い
-----------------------------*/
.about-thoughts__feeling {
  padding: 50px 40px;
  margin-bottom: 50px;
}
.about-thoughts__feeling::after {
  width: 51px;
  right: 18px;
  bottom: 9px;
}
.about-thoughts__feeling-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 50px;
  margin-bottom: 50px;
}
.about-thoughts__feeling-item {
  width: 300px;
}
.about-thoughts__feeling-heading {
  width: 150px;
  margin-bottom: 20px;
}
.about-thoughts__feeling-heading::before {
  font-size: 1.875em;
  margin: -0.3em 0 0.5em;
}
.about-thoughts__feeling-heading > span {
  font-size: var(--font-size-h4);
}
.about-thoughts__feeling-body {
  font-size: var(--font-size-xs);
  line-height: 1.83334;
}
.about-thoughts__feeling-text {
  text-align: center;
}
.about-thoughts__box {
  min-height: 470px;
  padding-right: 460px;
  position: relative;
}
.about-thoughts__box-image {
  width: 400px;
  position: absolute;
  top: 0;
  right: 0;
}
.about-thoughts__box-image img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

/*住感工房の特徴
-----------------------------*/
.about-feature {
  padding: 80px 0;
}
.about-feature::before {
  width: 100%;
  max-width: calc(50% + 840px);
  border-top-right-radius: clamp(68px, 5.2083333333vw, 100px);
}
.about-feature__inner {
  padding: 50px 0;
}
.about-feature__inner::before {
  width: calc(100vw - 80px);
  max-width: 1280px;
  min-width: 1120px;
}
.about-feature__item {
  display: grid;
  grid-template: auto 1fr/200px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 50px;
}
.about-feature__icon {
  grid-row: span 2;
  row-gap: 25px;
}
.about-feature__icon::before {
  font-size: 1.875em;
  margin-block: -0.1em;
}
.about-feature__icon img {
  width: 73px;
  aspect-ratio: 73/71;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-feature__heading {
  margin-bottom: 40px;
}
.about-feature__body {
  font-weight: var(--font-weight-bold);
}

/*会社情報
-----------------------------*/
.about-company__inner {
  display: grid;
  grid-template-columns: 1fr 750px;
  align-items: flex-start;
  gap: 50px;
}
.about-company__title {
  align-items: flex-start;
  text-align: left;
}
.about-company__table {
  margin-block: calc((1em - 1lh) / 2);
}
.about-company__table tr th {
  width: 137px;
}
.about-company__table tr td .com-replace {
  font-size: var(--font-size-xs);
}
.about-company__table tr:first-of-type th,
.about-company__table tr:first-of-type td {
  padding-top: 0;
}
.about-company__table tr:last-of-type {
  border-bottom: none;
}
.about-company__table tr:last-of-type th,
.about-company__table tr:last-of-type td {
  padding-bottom: 0;
}
.about-company__map {
  grid-column: span 2;
  height: 400px;
}

/*===============================================
  リフォーム
===============================================*/
/*住感工房のリフォーム
-----------------------------*/
.reform-about__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: flex-start;
}
.reform-about__image img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*リフォーム例
-----------------------------*/
.reform-example::before {
  width: 100%;
  max-width: calc(50% + 840px);
  border-top-right-radius: clamp(68px, 5.2083333333vw, 100px);
}
.reform-example__heading {
  padding-top: 30px;
}
.reform-example__heading:first-of-type {
  padding-top: 0;
}
.reform-example__images {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  -moz-column-gap: 26px;
       column-gap: 26px;
}
.reform-example__image img {
  width: 100%;
  aspect-ratio: 25/17;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.reform-example__image figcaption {
  text-align: center;
  font-size: 2rem;
  line-height: 1.25;
  margin-block: calc((1em - 1lh) / 2);
  word-break: keep-all;
}
.reform-example__text {
  justify-content: center;
  height: 150px;
  padding-top: 11px;
  margin: 50px 0 0;
}
.reform-example__text .main {
  letter-spacing: var(--letter-spacing-xl);
  margin-right: calc(var(--letter-spacing-xl) * -1 - 0.5em);
}
.reform-example__text .main::before {
  width: calc(100% + 2em);
  height: 1.25em;
}
.reform-example__text .min {
  font-size: 0.5em;
  margin-top: 30px;
}

/*施工実績
-----------------------------*/
.reform-works__inner {
  display: grid;
  grid-template: "title btn" auto "list list" 1fr/1fr 300px;
  align-items: flex-end;
  gap: 50px 40px;
  padding: 50px 0;
}
.reform-works__inner::before {
  max-width: 1280px;
  min-width: 1200px;
}
.reform-works__title {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
  grid-area: title;
}
.reform-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
  grid-area: list;
}
.reform-works__image {
  margin-bottom: 15px;
}
.reform-works__image img {
  aspect-ratio: 1.4583333333;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reform-works__heading {
  font-size: 1.25em;
  line-height: 1.25;
}
.reform-works__btn {
  grid-area: btn;
}
.reform-works__empty {
  grid-area: list;
}

/*費用の目安
-----------------------------*/
.reform-cost__title {
  margin-bottom: 30px;
}
.reform-cost__text {
  text-align: center;
}
.reform-cost__box {
  display: grid;
  grid-template-columns: 1fr 650px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-top: 50px;
  margin-bottom: 30px;
}
.reform-cost__box::after {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding: 2.5em 0;
}
.reform-cost__item {
  padding: 18px 0;
}
.reform-cost__item:first-of-type {
  padding-top: 0;
  margin-top: calc((1em - 1lh) / 2);
}
.reform-cost__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: calc((1em - 1lh) / 2);
  border-bottom: none;
}

/*===============================================
  初めての方へ
===============================================*/
/*ご依頼の流れ
-----------------------------*/
.beginner-flow__item {
  display: grid;
  grid-template-columns: 384px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: flex-start;
  padding: 30px;
  margin-bottom: 50px;
}
.beginner-flow__item::after {
  width: 10px;
  height: 50px;
  left: 217px;
}
.beginner-flow__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.beginner-flow__num {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70px;
  aspect-ratio: 1;
  line-height: 1.375;
  border-radius: 50%;
  border: solid 1px var(--color-text);
  padding-left: var(--letter-spacing-base);
}
.beginner-flow__num::after {
  font-size: 1.25em;
  line-height: 1.10001;
}
.beginner-flow__heading {
  width: calc(100% - 100px);
  margin-bottom: 0;
}
.beginner-flow__heading > span {
  word-break: keep-all;
}
.beginner-flow__text {
  width: 100%;
}
.beginner-flow__contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/*よくある質問
-----------------------------*/
.beginner-faq::before {
  width: 100%;
  max-width: calc(50% + 840px);
  border-top-right-radius: clamp(68px, 5.2083333333vw, 100px);
}
.beginner-faq__item {
  padding: 40px;
  margin-bottom: 20px;
}
.beginner-faq__heading {
  grid-template-columns: 30px 1fr;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.beginner-faq__heading > span {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  margin-block: calc((1em - 1lh) / 2);
}
.beginner-faq__body {
  padding-left: 45px;
  margin-bottom: calc((1em - 1lh) / 2);
}

/*===============================================
  施工実績・お客様の声
===============================================*/
/*一覧ページ
-----------------------------*/
.works-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 15px;
  grid-area: list;
}
.works-list__image {
  margin-bottom: 15px;
}
.works-list__image img {
  aspect-ratio: 1.4583333333;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-list__heading {
  font-size: 1.25em;
  line-height: 1.25;
}

/*詳細ページ
-----------------------------*/
.works-detail__box {
  padding: 0 40px;
}
.works-detail__images:has(+ .works-detail__text) {
  margin-bottom: 40px;
}
.works-detail__image img {
  width: 100%;
  aspect-ratio: 1000/685;
  -o-object-fit: contain;
     object-fit: contain;
}
.works-detail__voice {
  padding-top: 80px;
}
.works-detail__voice-image {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive__item {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.news-archive__item-link {
  row-gap: 14px;
}
.news-archive__item-tags {
  font-size: var(--font-size-xs);
  line-height: 1.5;
}
.news-archive__btn {
  grid-area: btn;
  line-height: 2.25;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.news-archive__btn::before {
  width: 50px;
  font-size: 1.5em;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 50px;
}
.tag-select__box {
  min-width: 15em;
}
.tag-select__box::after {
  right: 1em;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0.75em 3em 0.75em 0.75em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 20px;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 350px;
  text-align: left;
  line-height: 2.375;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: 2;
  padding: 0 0.5em;
  margin-top: 5px;
}
.contact-form__table tr th .upload-notice {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-top: 0.5em;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
}
.contact-form__table tr td .upload-items,
.contact-form__table tr td .imgs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.875em;
}
.contact-form__table tr td .upload-item,
.contact-form__table tr td .img {
  min-width: 340px;
}
.contact-form .contact-submits-wrap {
  padding-top: 32px;
}
.contact-form .contact-submits-wrap > * {
  width: 320px;
  height: 60px;
  margin: 20px 15px 0;
}

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

/*==================================================
プライバシーポリシー
================================================== */
.privacy-policy__box {
  padding: 50px 40px;
  margin-bottom: 30px;
}

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

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