@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/* font-weight */
:root {
  /* カラー */
  --color-text: #333;
  --color-orange: #fb7f1b;
  --color-orange-shadow: #db6403;
  --color-green: #29be5c;
  --color-green-shadow: #0c9d3e;
  --color-yellow: #f6da00;
  --color-yellow-line: #fff9c3;
  --color-bg: #f8f8ea;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-maru: "Zen Maru Gothic", serif;
  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-xxxl: 5rem;
    --font-size-xxl: 4.2rem;
    --font-size-xl: 3.6rem;
    --font-size-gl: 2.4rem;
    --font-size-base: 1.8rem;
    --font-size-sm: 1.6rem;
    /* line-height */
    --line-height-xxxl: 1.52;
    --margin-height-xxxl: -0.26em;
    --line-height-xl: 1.55556;
    --margin-height-xl: -0.2778em;
    --line-height-gl: 1.33334;
    --margin-height-gl: -0.1667em;
    --line-height-base: 1.77778;
    --margin-height-base: -0.38889em;
    /* letter-speacing */
    --letter-spacing-base: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-xxl: 3.6rem;
    --font-size-xl: 3rem;
    --font-size-gl: 2.4rem;
    --font-size-base: 1.5rem;
    --font-size-xm: 1.2rem;
    /* line-height */
    --line-height-xl: 2;
    --margin-height-xl: -0.5em;
    --line-height-base: 1.75;
    --margin-height-base: -0.375em;
    --line-height-sm: 1.5;
    --margin-height-sm: -0.25em;
    /* letter-speacing */
    --letter-spacing-base: 0.04em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.sp-none {
  display: none !important;
}

.com-table table,
.com-table table tbody,
.com-table table th,
.com-table table tr,
.com-table table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  padding-top: 40px;
}
.pagenation li {
  width: 2em;
  font-size: 1.5rem;
  line-height: 2em;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated__list {
  padding-top: 15px;
  margin-top: 30px;
}
.paginated__item {
  width: 90px;
}
.paginated__link {
  font-size: 1.4rem;
  line-height: 2.14286;
  letter-spacing: 0;
}
.paginated__link--prev::before {
  margin-right: 0.5em;
}
.paginated__link--next::after {
  margin-left: 0.5em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 80px;
}
.header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__other > * {
  margin-right: 20px;
}
.header__other > *:last-child {
  margin-right: 0;
}
.header__tel .com-tel-num::before,
.header__tel .com-tel-num span {
  display: none;
}
.header__tel .com-tel-num a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/icon_tel.png) no-repeat center/24px;
  margin-right: 0;
}
.header__tel .com-replace {
  display: none;
}
.header__line {
  width: 40px;
}
.header--main .header__logo img {
  height: clamp(16px, 5vw, 20px);
}
.header--entrance .header__logo img {
  height: 45px;
}

/*===============================================
  footer
===============================================*/
.footer {
  font-size: clamp(1.4rem, 4.2666666667vw, 1.6rem);
  letter-spacing: var(--letter-spacing-base);
  box-shadow: 0 2px 0 0 var(--color-yellow) inset;
  padding: clamp(64px, 20vw, 80px) 0 clamp(32px, 10vw, 40px);
  background-image: url(../img/common/footer_bg-lt.png), url(../img/common/footer_bg-rb.png);
  background-repeat: no-repeat;
  background-position: left top, right bottom;
  background-size: 40%;
}
.footer::before {
  width: 98%;
  height: 96%;
  background-size: min(96px, 16%);
  top: 3%;
}
.footer__inner {
  width: 90%;
}
.footer__logo {
  text-align: center;
  margin-bottom: 30px;
}
.footer__logo img {
  height: clamp(20px, 4.8387096774vw, 24px);
}
.footer__other {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__other > * {
  margin-bottom: 20px;
}
.footer__other > *:last-child {
  margin-bottom: 0;
}
.footer__info {
  font-size: clamp(1.3rem, 4vw, 1.5rem);
  line-height: var(--line-height-base);
}
.footer__info-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer__info-item dt {
  width: 5em;
  text-align: center;
  margin-right: 0.5em;
}
.footer__info-item dd {
  max-width: calc(100% - 5.5em);
}
.footer__info-item .min {
  display: block;
  font-size: 0.75em;
}
.footer__link {
  width: min(360px, 75vw);
  height: 60px;
}
.footer__link::before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 1em;
}
.footer .copy {
  padding-top: 20px;
}

/*フッターナビ
-----------------------------*/
.fnav {
  padding-top: 40px;
}
.fnav__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: -1em;
}
.fnav__item {
  width: 48%;
  border-bottom: solid 2px var(--color-yellow);
  margin-top: 1em;
}
.fnav__link {
  line-height: 2;
  padding: 1em 0.5em;
}
.fnav__link--min {
  font-size: 0.75em;
}

/*コピーライト
-----------------------------*/
.copy {
  padding: 10px 0;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  width: 50px;
  right: 8px;
  bottom: 8px;
  filter: drop-shadow(0px 5px 11px rgba(51, 51, 51, 0.2));
}

/*===============================================
  visual
===============================================*/
.visual {
  padding-bottom: 10vw;
}
.visual::before {
  height: 25vw;
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  align-items: flex-end;
  height: 125vw;
}
.visual__main::after {
  display: none;
}
.visual__main-catch {
  width: 73.75%;
}
.visual__main-catch img {
  filter: drop-shadow(0 0 1.25vw rgba(51, 51, 51, 0.24));
}
.visual__main-catch::after {
  width: 64%;
  padding-top: 28%;
  background-image: url(../img/common/visual/catch_deco_sp.png);
  left: -15%;
  bottom: -12%;
}
.visual__main-images {
  width: 100%;
  height: 64%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2.5vw;
}
.visual__main-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.visual__main-image--left {
  grid-row: 1/3;
}
.visual__main-image--left img {
  aspect-ratio: 1.2352941176;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.visual__main-image--right img {
  aspect-ratio: 2.5454545455;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: 50vw;
}
.visual__sub::before {
  width: 64%;
  border-bottom-left-radius: 5vw;
}
.visual__sub::after {
  width: 102%;
  height: 10vw;
  bottom: -2.5vw;
}
.visual__sub-box {
  min-width: 64%;
  height: 50%;
  margin-left: 5vw;
  border-radius: 5vw;
  box-shadow: 0 0 0 1.25vw #fff inset, 0px 0px 2.5vw rgba(51, 51, 51, 0.24);
  padding: 0 5vw;
  margin-top: 5vw;
}
.visual__sub-box::after {
  width: 12.5vw;
  padding-top: 19.375vw;
  left: -3.125vw;
  bottom: -48%;
}
.visual__sub-catch {
  font-size: 5.625vw;
  -webkit-text-stroke-width: 1.25vw;
}
.visual__sub-catch::after {
  height: 1.875vw;
  margin-top: 3.75vw;
}

/*===============================================
  main#container
===============================================*/
#container {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
#container:not(.entrance) {
  background: url(../img/common/arch-l.png) no-repeat left top 1.5vw/auto 15vw, url(../img/common/arch-r.png) no-repeat right top 1.5vw/auto 15vw, linear-gradient(to bottom, transparent max(126px, 9.84375vw), #fff max(126px, 9.84375vw));
  padding-top: 7.5vw;
}
#container:not(.entrance)::before {
  height: calc(100% - 7.5vw);
}
#container:not(.entrance)::after {
  display: none;
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  font-size: 0.75em;
  padding-top: 12px;
  top: calc(-1.5em - 12px);
  display: none;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  main共通
===============================================*/
.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel-num {
  font-size: clamp(var(--font-size-xl), 9vw, var(--font-size-xxl));
}
.com-tel-num::before {
  width: 0.75em;
  height: 0.75em;
  margin-right: 10px;
}
.com-tel-num a {
  letter-spacing: var(--letter-spacing-base);
  margin-top: -0.15em;
}
.com-tel .com-replace {
  margin-top: clamp(10px, 3vw, 12px);
}
.com-tel .com-replace img {
  height: clamp(10px, 3vw, 12px);
}

/*ボタン
-----------------------------*/
.com-btn {
  letter-spacing: var(--letter-spacing-base);
  padding-left: calc(var(--letter-spacing-base) * 1em);
  border-radius: 6px;
}
.com-btn::before {
  width: 12px;
  left: min(30px, 6%);
}

/*テーブル
-----------------------------*/
.com-table tr {
  padding: 0 1em 1em;
  margin-bottom: 1em;
}
.com-table tr th {
  color: var(--color-orange);
  margin-bottom: 0.5em;
}

/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}
.com-text b {
  font-size: 1.125em;
}
.com-text br {
  display: none;
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: 2.4rem;
  line-height: 1.66667;
  padding: 60px 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: clamp(var(--font-size-gl), 7.5vw, var(--font-size-xl));
  margin-bottom: calc(1em + 10px);
}
.com-title01:has(.line) {
  margin-bottom: calc(1.5em + 10px);
}
.com-title01 > span {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title01 > span:first-child {
  margin-top: var(--margin-height-base);
}
.com-title01 > span:last-child {
  margin-bottom: var(--margin-height-base);
}
.com-title01 > span .b.line {
  box-shadow: 0 0.1em 0 var(--color-yellow);
}
.com-title01 .br {
  display: inline-block;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: clamp(var(--font-size-base), 5vw, 2rem);
  padding: 0.75em 1em;
  border-radius: 6px;
  margin-bottom: 1.25em;
}
.com-title02 > span {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title02 > span:first-child {
  margin-top: var(--margin-height-base);
}
.com-title02 > span:last-child {
  margin-bottom: var(--margin-height-base);
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: clamp(var(--font-size-base), 5vw, 2rem);
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  border-bottom-width: 2px;
}
.com-title03 > span {
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-title03 > span:first-child {
  margin-top: var(--margin-height-sm);
}
.com-title03 > span:last-child {
  margin-bottom: var(--margin-height-sm);
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: clamp(64px, 20vw, 80px) 0;
}
.com-contact::before {
  display: none;
}
.com-contact::after {
  background-size: 40%;
}
.com-contact__title {
  padding-top: 40px;
}
.com-contact__title::before {
  width: 10em;
  max-width: 96vw;
  height: 36px;
  top: 0;
}
.com-contact__list {
  padding-top: 10px;
}
.com-contact__item {
  font-size: 1.25em;
  margin-bottom: 20px;
}
.com-contact__item:last-of-type {
  margin-bottom: 0;
}
.com-contact__item-ttl {
  padding: 0.5em 0;
  border-width: 2px;
}
.com-contact__link {
  height: 80px;
  border-radius: 12px;
}
.com-contact__link::before {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.com-contact__link > span {
  min-width: 43%;
}
.com-contact__link--mail::before {
  height: 20px;
}
.com-contact__tel {
  height: clamp(80px, 25vw, 100px);
  background: #fff;
}

/*セクション名
-----------------------------*/
/*===============================================
  エントランスページ
===============================================*/
.entrance {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 150vw;
  min-height: calc(100vh - 120px);
}
.entrance::before {
  height: 96%;
  background-size: 20%;
  top: 3%;
}
.entrance__box {
  width: 100%;
  height: 100%;
  border: solid 4px var(--color-yellow-line);
}
.entrance__box:has(+ .entrance__box) {
  border-bottom-width: 2px;
}
.entrance__box:has(+ .entrance__box) + .entrance__box {
  border-top-width: 2px;
}
.entrance__box--top {
  background-position: center bottom 8% !important;
}
.entrance__box--hidden::after {
  font-size: 6.25vw;
}
.entrance__link {
  width: 80%;
  height: 48%;
  outline-width: 1.25vw;
  border-radius: 5vw;
  box-shadow: 0px 0px 2.5vw rgba(51, 51, 51, 0.24);
  margin-top: 20vw;
}
.entrance__link::after {
  width: 120%;
  height: 56%;
  bottom: -6px;
}
.entrance__text {
  font-size: 6.25vw;
  line-height: 1.5;
  -webkit-text-stroke-width: 2.5vw;
  margin: -0.25em 0;
}
.entrance__sub {
  font-size: 4.375vw;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  padding-left: 1em;
  margin-right: calc(var(--letter-spacing-base) * -1);
  margin-top: 1em;
}
.entrance__sub::before {
  width: calc(100% + 1em);
  height: 1em;
}

/*===============================================
  トップページ
===============================================*/
/*お家のどの部分でお悩みですか？
-----------------------------*/
.top-worries {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.top-worries::before {
  height: 50px;
  top: -20px;
}
.top-worries__title {
  margin-bottom: 87px;
}
.top-worries__title::before {
  width: calc(100vw + 0.5em);
  max-width: 620px;
  height: 2.5em;
  bottom: -2em;
}
.top-worries__box {
  margin-bottom: clamp(48px, 15vw, 60px);
}
.top-worries__box::before {
  width: 96vw;
  height: 25vw;
  bottom: clamp(-30px, -7.5vw, -24px);
  z-index: 1;
}
.top-worries__box-title {
  margin-bottom: 20px;
}
.top-worries__box-image {
  margin-top: 20px;
}
.top-worries__box-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-worries__box-image img {
  border-radius: 16px;
}
.top-worries__box-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 5px;
}
.top-worries__box-item {
  width: 48%;
}
.top-worries__box-link {
  height: 60px;
  font-size: 1.25em;
}
.top-worries__box-link::before {
  width: 16px;
  left: 20px;
}
.top-worries__box-link--yes {
  box-shadow: 0 5px var(--color-orange-shadow);
}
.top-worries__box-link--no {
  box-shadow: 0 5px var(--color-green-shadow);
}
.top-worries__box-link:hover {
  box-shadow: none !important;
  transform: translateY(5px);
}

/*住まいのことなら
住まいのリフォーム相談所に
お任せください！
-----------------------------*/
.top-about {
  padding: clamp(64px, 20vw, 80px) 0;
  background-size: 40%, 40%, auto;
}
.top-about::before {
  height: 64px;
  top: -20px;
}
.top-about .inbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top-about .inbox > *:not(.top-about__list) {
  width: 100%;
}
.top-about__title {
  font-size: clamp(2.1rem, 6.5vw, 2.6rem);
  padding-top: 40px;
}
.top-about__title::before {
  width: 10em;
  max-width: 96vw;
  height: 36px;
  top: 0;
}
.top-about__list {
  padding-top: clamp(48px, 15vw, 60px);
}
.top-about__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 1em;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 20px;
}
.top-about__item-num {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/common/num_bg.png) no-repeat center/contain;
  width: 80px;
  height: 96px;
  padding-top: 10px;
}
.top-about__item-num img {
  height: 50px;
}
.top-about__item-txt {
  max-width: calc(100% - 80px);
  font-size: 1.25em;
  padding-left: 1em;
}
.top-about__item-txt br {
  display: none;
}

/*対応エリア
-----------------------------*/
.top-area {
  padding: clamp(64px, 20vw, 80px) 0 clamp(80px, 25vw, 100px);
}
.top-area__title {
  padding-top: 40px;
}
.top-area__title::before {
  width: 10em;
  max-width: 96vw;
  height: 36px;
  top: 0;
}
.top-area__box {
  padding: 30px 20px;
  border-radius: 16px;
  background-size: 32%;
  background-position: right 5% bottom -5vw;
  box-shadow: 0px 0px 19px 5px rgba(51, 51, 51, 0.12);
}
.top-area__box-text {
  -webkit-text-stroke: #fff 2px;
  paint-order: stroke;
}
.top-area__box-text br {
  display: none;
}
.top-area__box::before {
  width: calc(100% + 40px);
  height: calc(100% - 20px);
  background-size: 48px;
  left: calc(50% + 5px);
}
.top-area__box::after {
  width: calc(100% + 60px);
  height: 88px;
  left: -30px;
  bottom: clamp(-80px, -20vw, -64px);
}

/*サービス内容
-----------------------------*/
.top-service {
  padding: clamp(64px, 20vw, 80px) 0 30vw;
  background-size: 100%;
}
.top-service::before, .top-service::after {
  display: none;
}
.top-service__title {
  padding-top: 40px;
}
.top-service__title::before {
  width: 10em;
  max-width: 96vw;
  height: 36px;
  top: 0;
}
.top-service__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top-service__list {
  padding: 30px 0 5px;
}
.top-service__item {
  height: clamp(120px, 37.5vw, 150px);
  outline: solid 5px #fff;
  filter: drop-shadow(0 0 10px rgba(51, 51, 51, 0.24));
  border-radius: 12px;
  margin-bottom: 30px;
}
.top-service__item:last-of-type {
  margin-bottom: 0;
}
.top-service__item-txt {
  width: 80%;
  max-width: 288px;
  margin-bottom: 0;
}
.top-service__item-txt::before {
  width: 110%;
  height: 150%;
  background-size: 40% !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*お知らせ
-----------------------------*/
.top-news {
  padding: clamp(64px, 20vw, 80px) 0;
}
.top-news__title {
  padding-top: 40px;
}
.top-news__title::before {
  width: 10em;
  max-width: 96vw;
  height: 36px;
  top: 0;
}
.top-news__item {
  padding-bottom: 1.5em;
  margin-bottom: 2em;
}
.top-news__item-title {
  font-size: 1.125em;
  margin-top: 0.5em;
}
.top-news__date {
  width: 6em;
}
.top-news__tags {
  margin-left: 6em;
  margin-top: calc(var(--line-height-base) * -1em);
}
.top-news__btn {
  width: min(360px, 75vw);
  height: 60px;
  margin: 40px auto 0;
}

/*===============================================
  内装リフォーム
===============================================*/
/*診断チャート
-----------------------------*/
.interior-chart {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.interior-chart .result__item::before {
  height: 56px;
  top: clamp(-120px, -25vw - 20px, -100px);
}

/*内装リフォームなら
住まいのリフォーム相談所に
お任せください！
-----------------------------*/
.interior-about {
  padding: clamp(64px, 20vw, 80px) 0;
}
.interior-about::before {
  width: 110%;
  padding-top: min(125px, 30%);
  bottom: -4vw;
  z-index: 2;
}
.interior-about__title {
  font-size: clamp(2.1rem, 6.5vw, 2.6rem);
}
.interior-about__list {
  padding-top: clamp(48px, 15vw, 60px);
}
.interior-about__item {
  margin-bottom: clamp(32px, 10vw, 40px);
}
.interior-about__item-num {
  width: 100px;
  height: 120px;
  padding-top: 16px;
  margin: 0 auto 20px;
}
.interior-about__item-num img {
  height: 64px;
}
.interior-about__item-title br {
  display: none;
}
.interior-about__item-image {
  margin-bottom: 20px;
}
.interior-about__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interior-about__item-image img {
  border-radius: 16px;
}

/*===============================================
  水回りリフォーム
===============================================*/
/*診断チャート
-----------------------------*/
.wet-chart {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.wet-chart .result__item::before {
  height: 56px;
  top: clamp(-120px, -25vw - 20px, -100px);
}

/*水回りリフォームなら
住まいのリフォーム相談所に
お任せください！
-----------------------------*/
.wet-about {
  padding: clamp(64px, 20vw, 80px) 0;
}
.wet-about::before {
  width: 110%;
  padding-top: min(125px, 30%);
  bottom: -4vw;
  z-index: 2;
}
.wet-about__title {
  font-size: clamp(2.1rem, 6.5vw, 2.6rem);
}
.wet-about__list {
  padding-top: clamp(48px, 15vw, 60px);
}
.wet-about__item {
  margin-bottom: clamp(32px, 10vw, 40px);
}
.wet-about__item-num {
  width: 100px;
  height: 120px;
  padding-top: 16px;
  margin: 0 auto 20px;
}
.wet-about__item-num img {
  height: 64px;
}
.wet-about__item-title br {
  display: none;
}
.wet-about__item-image {
  margin-bottom: 20px;
}
.wet-about__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wet-about__item-image img {
  border-radius: 16px;
}

/*===============================================
  外壁リフォーム
===============================================*/
/*お客様のお家にオススメの
塗料プラン診断！
-----------------------------*/
.wall-chart {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.wall-chart::before {
  width: 110%;
  padding-top: 30%;
  bottom: -15vw;
  z-index: 1;
}
.wall-chart__title {
  font-size: clamp(2.1rem, 6.5vw, 2.6rem);
}
.wall-chart__question {
  margin-bottom: 20px;
}
.wall-chart__options {
  margin-bottom: 40px;
}
.wall-chart__options:last-of-type {
  margin-bottom: 0;
}
.wall-chart__option {
  margin-bottom: 40px;
}
.wall-chart__option:last-of-type {
  margin-bottom: 0;
}
.wall-chart__label {
  width: 3em;
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: -10px;
}
.wall-chart__description {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 1.125em;
  line-height: 1.5;
  padding: 1em;
  border-width: 3px;
  border-radius: 6px;
}
.wall-chart__description::before {
  width: 30px;
  height: 20px;
}
.wall-chart__description::after {
  width: 60px;
  height: 20px;
  top: calc(100% + 19px);
}
.wall-chart__result {
  height: 80px;
  font-size: 1.125em;
  padding-left: 1.5em;
  box-shadow: 0 5px var(--color-orange-shadow);
  margin: 45px 0 5px;
}
.wall-chart__result::before {
  width: 20px;
  left: 6%;
}
.wall-chart__result:hover {
  box-shadow: none !important;
  transform: translateY(5px);
}

/*塗料について
-----------------------------*/
.wall-paint {
  padding: clamp(64px, 20vw, 80px) 0;
}
.wall-paint__title {
  margin-bottom: 0;
}
.wall-paint__box {
  padding-top: clamp(52px, 16vw, 64px);
}
.wall-paint__box:first-of-type {
  padding-top: clamp(32px, 10vw, 40px);
}

/*===============================================
  ご依頼の流れ / 会社案内
===============================================*/
/*ご依頼の流れ
-----------------------------*/
.about-flow {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
  background-size: 100%;
}
.about-flow::before {
  width: 110%;
  height: 6%;
  background: url(../img/common/deco_r.png) no-repeat right top/24%;
  top: 2%;
}
.about-flow::after {
  width: 98%;
  height: 96%;
  background-size: 16%;
  bottom: 1%;
}
.about-flow__list::before {
  width: 2px;
}
.about-flow__item {
  padding: 30px 20px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
}
.about-flow__item-title::before {
  font-size: clamp(2rem, 6vw, 2.4rem);
  letter-spacing: var(--letter-spacing-base);
  margin-bottom: 0.75em;
}
.about-flow__item-image {
  margin-top: 20px;
}
.about-flow__item-image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-flow__item-image img {
  border-radius: 16px;
}

/*会社案内
-----------------------------*/
.about-company {
  padding: clamp(64px, 20vw, 80px) 0;
}
.about-company__table td .replace {
  font-size: clamp(1.3rem, 4.0540540541vw, 1.5rem);
  padding: 0.375em 0;
}
.about-company__table td .replace img {
  height: clamp(13px, 4.0540540541vw, 15px);
}
.about-company__map {
  height: 320px;
  margin-top: 40px;
  border-radius: 12px;
}

/*==================================================
 ニュース一覧
================================================== */
.news-archive {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.news-archive__item {
  padding-bottom: 1.5em;
  margin-bottom: 2em;
}
.news-archive__item-title {
  font-size: 1.125em;
  margin-top: 0.5em;
}
.news-archive__date {
  width: 6em;
}
.news-archive__tags {
  margin-left: 6em;
  margin-top: calc(var(--line-height-base) * -1em);
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 40px;
}
.tag-select__box {
  min-width: 160px;
}
.tag-select__box::after {
  right: 12px;
}
.tag-select__dropdown {
  font-size: 0.75em;
  line-height: 1.33334;
  padding: 12px 32px 12px 12px;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.news-detail__post {
  font-size: 0.75em;
  line-height: 1.66667;
  margin-bottom: 16px;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.contact-form .contact-form__table {
  margin-bottom: 40px;
}
.contact-form .contact-form__table th .optional-mark,
.contact-form .contact-form__table th .required-mark {
  font-size: 0.75em;
  line-height: 2;
  margin-left: 0.5em;
}
.contact-form .contact-form__table td select,
.contact-form .contact-form__table td textarea,
.contact-form .contact-form__table td input[type=tel],
.contact-form .contact-form__table td input[type=num],
.contact-form .contact-form__table td input[type=text],
.contact-form .contact-form__table td input[type=email],
.contact-form .contact-form__table td input[type=url] {
  font-size: clamp(1.4rem, 4.3243243243vw, 1.6rem);
  line-height: var(--line-height-base);
  padding: 0.75em 1em;
}
.contact-form .contact-submits-wrap {
  padding-top: 16px;
}
.contact-form .contact-submits-wrap > * {
  width: 75vw;
  max-width: 320px;
  height: 60px;
  margin: 0 auto 20px;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.privacy-policy__box {
  margin-bottom: clamp(48px, 15vw, 60px);
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}
.sitemap-list__items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: -10px;
}
.sitemap-list__item {
  width: 100%;
  margin-top: 10px;
}
.sitemap-list__item:has(.sitemap-list__link--min) {
  width: 48%;
  padding-top: 10px;
}
.sitemap-list__link {
  font-size: 1.125em;
  line-height: 2;
  padding: 1em;
}
.sitemap-list__link--min {
  text-align: center;
  font-size: 0.875em;
  padding: 1em 0;
}

/*===============================================
  404エラー
===============================================*/
.error-message {
  padding: clamp(80px, 25vw, 100px) 0 clamp(64px, 20vw, 80px);
}