@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================================
  切り替え用
===============================================*/
html {
  font-size: clamp(14px, 1.1034482759vw, 16px);
}

.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: flex-start;
  width: calc(100% - 6.25rem);
  max-width: 93.75rem;
  padding-top: 2.1875rem;
}
#header .header__logo {
  width: 9.375rem;
}
#header .header__logo img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875rem;
  min-height: 3.9375rem;
}
#header .header__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5625rem;
}
#header .header__btn {
  width: 16.25rem;
  height: 3.9375rem;
  font-size: 1.125rem;
}
#header .header__btn.com-btn--mail {
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
}
#header .header__btn.com-btn--mail::before {
  width: 1.5625rem;
}
#header .header__btn.com-btn--line {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
#header .header__btn.com-btn--line::before {
  width: 1.9375rem;
}
#header .header__btn.com-btn--line::after {
  width: 0.8125rem;
}

/*===============================================
  footer
===============================================*/
#footer::after {
  content: "";
  width: calc(50% + 4.125rem);
  height: 100%;
  background: var(--pattern-beige);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}
#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 67.5rem;
  padding-block: 4.6875rem 5rem;
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 3.125rem;
}
#footer .footer__logo {
  width: 9.375rem;
  margin-bottom: 0.625rem;
}
#footer .footer__logo img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .footer__add {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  letter-spacing: 0.06em;
}
#footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  font-size: var(--font-size-xs);
  color: var(--color-white);
  background: var(--color-btn);
  padding-block: calc((1.875rem - 1em) / 2);
  padding-inline: calc(50% - 33.75rem);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  padding-top: 1.25rem;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 1.875rem 6.25rem;
  font-weight: 700;
}
.footer-nav__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  line-height: 2;
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__item::before {
  content: "";
  display: block;
  width: 0.375rem;
  aspect-ratio: 2/3;
  background: url(../img/common/arrow_nav.svg) no-repeat center/contain;
}
.footer-nav__sub-list {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2;
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__sub-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-nav__sub-item::after {
  content: "|";
  margin-inline: 1em;
}
.footer-nav__sub-item:last-of-type::after {
  display: none;
}
.footer-nav__sub-link {
  display: block;
}
.footer-nav__sub-link:hover, .footer-nav__sub-link.current {
  color: var(--color-cream);
}

/*コピーライト
-----------------------------*/
/*===============================================
  fixed固定
===============================================*/
/*サイドボタン
-----------------------------*/
#side {
  width: clamp(125px, 20vw - 11.0625rem, 12.9375rem);
  bottom: 1.875rem;
  right: clamp(2px, 10vw - 8.875rem, 3.125rem);
}
#side img {
  width: 100%;
  aspect-ratio: 207/190;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-out;
}
#side:hover img {
  transform: translateY(-0.3125rem);
}

/*===============================================
  visual
===============================================*/
/*共通
-----------------------------*/
.visual {
  min-height: calc(8.4375rem + clamp(262px, 20.46875vw, 393px));
  padding-top: calc(8.4375rem + clamp(40px, 3.125vw, 60px));
}
.visual::before {
  height: calc(8.75rem + clamp(200px, 15.3645833333vw, 295px));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30.46875% 22.069%, 0 85.058%);
}
.visual::after {
  width: calc(100% + clamp(98px, 7.6041666667vw, 146px));
  height: clamp(110px, 8.59375vw, 165px);
  top: clamp(332px, 25.9375vw, 498px);
}
.visual > * {
  width: calc(100% - 6.25rem);
  max-width: 93.75rem;
  margin-inline: auto;
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 2.1875vw, 42px) clamp(67px, 5.2083333333vw, 100px);
  padding-left: clamp(35px, 2.6041666667vw, 50px);
}
.visual__link {
  height: clamp(200px, 15.625vw, 300px);
  border-radius: clamp(14px, 1.0416666667vw, 20px);
  border-bottom-right-radius: clamp(35px, 2.6041666667vw, 50px);
}
.visual__link::before, .visual__link::after {
  border-radius: clamp(14px, 1.0416666667vw, 20px);
  border-bottom-right-radius: clamp(35px, 2.6041666667vw, 50px);
}
.visual__link::after {
  font-size: clamp(20px, 1.5625vw, 30px);
}
.visual__link:nth-of-type(1), .visual__link:nth-of-type(2) {
  left: clamp(-50px, -2.6041666667vw, -35px);
}
.visual__link:nth-of-type(2), .visual__link:nth-of-type(4) {
  top: clamp(-57px, -2.96875vw, -38px);
}
.visual__catch--main .en {
  height: clamp(49px, 3.8020833333vw, 73px);
  top: clamp(-10px, -0.5208333333vw, -7px);
  left: clamp(-50px, -2.6041666667vw, -35px);
}
.visual__catch--main .txt {
  height: clamp(76px, 5.9375vw, 114px);
}
.visual__catch--main::after {
  width: clamp(35px, 2.6041666667vw, 50px);
  right: clamp(12px, 0.9375vw, 18px);
  bottom: clamp(12px, 0.9375vw, 18px);
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  height: clamp(270px, 20.8333333333vw, 400px);
  border-radius: clamp(15px, 1.0416666667vw, 20px);
}
.visual__catch--sub img {
  height: clamp(40px, 3.125vw, 60px);
}
.visual__catch--sub::before {
  width: calc(100% + clamp(35px, 2.6041666667vw, 50px));
  min-width: clamp(240px, 18.75vw, 360px);
  height: calc(clamp(44px, 3.4375vw, 66px) + 1px);
  top: calc(clamp(-45px, -2.34375vw, -30px) - 1px);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  background: var(--pattern-orange);
  background-position: left top;
  margin-top: calc(clamp(50px, 3.90625vw, 75px) - 1px);
  padding-block: 0.625rem 1.4375rem;
  position: relative;
  z-index: 5;
}
.gnav::before {
  content: "";
  width: 100%;
  height: clamp(40px, 3.125vw, 60px);
  -webkit-mask: url(../img/common/wave-nav.svg) no-repeat center bottom/100% 100%;
          mask: url(../img/common/wave-nav.svg) no-repeat center bottom/100% 100%;
  background: var(--pattern-orange);
  background-position: left bottom;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 1px);
  pointer-events: none;
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1875rem;
}
.gnav__item {
  width: 13.3125rem;
  position: relative;
}
.gnav__item:nth-of-type(1) {
  width: calc(13.3125rem - 3em);
}
.gnav__item:nth-of-type(2) {
  width: calc(13.3125rem + 3em);
}
.gnav__item::before {
  content: "";
  width: 0.1875rem;
  height: 1.6875rem;
  background-image: radial-gradient(circle, #ffffff 0.09375rem, transparent 0.09375rem);
  background-position: left center;
  background-repeat: repeat-y;
  background-size: 0.1875rem 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.1875rem;
  pointer-events: none;
}
.gnav__item:last-of-type::after {
  content: "";
  width: 0.1875rem;
  height: 1.6875rem;
  background-image: radial-gradient(circle, #ffffff 0.09375rem, transparent 0.09375rem);
  background-position: left center;
  background-repeat: repeat-y;
  background-size: 0.1875rem 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.1875rem;
  pointer-events: none;
}
.gnav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: 0.9375rem;
  font-family: var(--font-family-title);
  font-weight: 900;
  color: var(--color-white);
  line-height: 2;
  letter-spacing: 0;
}
.gnav__link img {
  display: block;
  width: 1.875rem;
  aspect-ratio: 1;
  transition: all 0.56s ease-out;
}
.gnav__link span {
  display: block;
  letter-spacing: var(--letter-spacing-xs);
  margin-inline-end: calc(var(--letter-spacing-xs) * -1);
}
.gnav__link:hover img {
  transform: rotateY(360deg);
}
.gnav__link.current {
  color: var(--color-btn);
  -webkit-text-stroke: var(--color-white) 0.1875rem;
  paint-order: stroke;
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-block: calc(1.25rem - 0.5em);
}
.breadcrumb__list {
  width: 67.5rem;
}
/*===============================================
  main共通
===============================================*/
.section {
  padding-block: 10rem;
}
.section--top::before {
  min-width: 120rem;
  height: calc(7.1875rem + 1px);
}
.section--bg::before {
  min-width: 120rem;
  height: 14.125rem;
}

.inbox {
  width: 67.5rem;
}

/*電話番号
-----------------------------*/
/*ボタン
-----------------------------*/
.com-btn {
  width: 23.125rem;
  height: 4.375rem;
  font-size: var(--font-size-lg);
}
.com-btn:not([class*=com-btn--])::before {
  width: 1.5625rem;
  aspect-ratio: 25/12;
  top: 0.125rem;
  right: -1.125rem;
}
.com-btn:not([class*=com-btn--])::after {
  width: 2.25rem;
  right: 1rem;
}
.com-btn--mail {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.com-btn--mail::before {
  width: 1.875rem;
}
.com-btn--line {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  padding-right: 0.9375rem;
}
.com-btn--line::before {
  width: 2.1875rem;
}
.com-btn--line::after {
  width: 0.875rem;
  right: 0.625rem;
}

/* SNS
-----------------------------*/
.com-sns {
  gap: 1.5625rem;
}
.com-sns li {
  width: 3.125rem;
}

/*テーブル
-----------------------------*/
.com-table {
  line-height: 1.76471;
}
.com-table table {
  border-spacing: 0 0.625rem;
  margin-block: -0.625rem;
}
.com-table tr th {
  width: 10rem;
  text-align: center;
  vertical-align: middle;
  border-radius: 0.625rem;
  padding-block: 0.9375rem;
}
.com-table tr td {
  padding: 0.625rem 1.5625rem;
  vertical-align: middle;
}

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

/*お知らせ
-----------------------------*/
.com-post__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.com-post__link {
  flex-direction: column;
  padding-top: 1.875rem;
  position: relative;
}
.com-post__image img {
  aspect-ratio: 240/180;
  border-radius: 0.9375rem;
  border-top-right-radius: 0;
}
.com-post__date {
  min-width: 6.875rem;
  line-height: 2;
  padding-inline: 0.5em;
  border-radius: 0.625rem 0.625rem 0 0;
  position: absolute;
  top: 0;
  right: 0;
}
.com-post__inner {
  row-gap: 1.25rem;
  padding-top: 0.9375rem;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  margin-bottom: 5rem;
}
.com-title01:has(span.en) {
  padding-top: 4.375rem;
}
.com-title01 span.en {
  width: 20.625rem;
  font-size: 2.375rem;
  padding: 0 0 1.3125rem 0.625rem;
  margin-block-start: -0.3125rem;
  left: -3.125rem;
  transform: rotate(-6deg);
  background-size: auto 1rem;
}

/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding-block: 4.0625rem 6.25rem;
}
.com-contact::before {
  height: 15.8125rem;
}
.com-contact::after {
  width: 48.125rem;
  height: 15.125rem;
}
.com-contact__box {
  padding: 5.3125rem 3.75rem 5rem;
}
.com-contact__box::before {
  width: 77.5rem;
  height: 7.9375rem;
  bottom: -1.4375rem;
}
.com-contact__box::after {
  width: 73.125rem;
  height: 7.6875rem;
  bottom: -1.3125rem;
}
.com-contact__bg {
  clip-path: polygon(0 10.375rem, 50% 0, 100% 10.375rem, 100% 100%, 0 100%);
}
.com-contact__bg::before {
  clip-path: polygon(0 10.375rem, 50% 0, 100% 10.375rem, 100% 100%, 0 100%);
}
.com-contact__title {
  align-items: center;
  row-gap: 1.1875rem;
  margin-bottom: 0.625rem;
}
.com-contact__title .en {
  width: 7.625rem;
}
.com-contact__title .txt {
  width: 28.0625rem;
}
.com-contact__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
}
.com-contact__label {
  width: 11.875rem;
  flex-shrink: 0;
}
.com-contact__text {
  font-size: var(--font-size-lg);
  line-height: 2;
}
.com-contact__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
.com-contact__btn {
  width: 19.375rem;
  height: 4.6875rem;
  font-size: 1.375rem;
}
.com-contact__btn.com-btn--mail {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.com-contact__btn.com-btn--mail::before {
  width: 1.875rem;
}
.com-contact__btn.com-btn--line {
  -moz-column-gap: 1.375rem;
       column-gap: 1.375rem;
}
.com-contact__btn.com-btn--line::before {
  width: 2.25rem;
}

/*診断チャート
-----------------------------*/
.chart-back__btn {
  width: 13.75rem;
  height: 3.125rem;
  font-size: 0.9375rem;
}
.chart-back__btn::before {
  width: 0.75rem;
  left: 1.125rem;
}

/*質問内容
-----------------*/
.chart-question__title {
  min-height: 6.25rem;
  font-size: 1.875rem;
  padding-inline: 5.625rem;
  padding-block: 1.25rem;
}
.chart-question__title::before {
  font-size: 2.5rem;
  left: 1.5625rem;
}
.chart-question__title > span {
  line-height: 1.2;
}
.chart-question__inner {
  padding: 3.75rem 2.5rem;
}
.chart-question__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
.chart-question__item {
  width: 100%;
  max-width: 25rem;
  height: 4.75rem;
}
.chart-question__btn {
  padding-inline: 0.75rem 2.5rem;
}
.chart-question__btn::after {
  width: 1.75rem;
  right: 0.625rem;
}
.chart-question__back {
  padding-top: 2.5rem;
}

/*回答結果
-----------------*/
.chart-result__title {
  min-height: 11.25rem;
  font-size: 2.5rem;
  padding: 1.875rem 11.25rem;
}
.chart-result__title::before {
  width: 9.0625rem;
  left: 1.5625rem;
}
.chart-result__title::after {
  width: 13.9375rem;
  aspect-ratio: 223/162;
  right: -2.5rem;
  bottom: -1.25rem;
}
.chart-result__title > span {
  line-height: 1.5;
}
.chart-result__title > span::before {
  font-size: 1.875rem;
  line-height: 1.53334;
  margin-bottom: 0.625rem;
}
.chart-result__title > span::after {
  width: calc(100% + 10.625rem);
  height: 6.75rem;
}
.chart-result__inner {
  padding: 2.5rem 2.5rem 3.75rem;
}
.chart-result__contents {
  display: grid;
  grid-template-columns: 22.5rem 1fr;
  gap: 1.875rem 1.5625rem;
}
.chart-result__text {
  margin-block: calc(0.8125rem - (0.5lh - 0.5em));
}
.chart-result__btn {
  height: 3.75rem;
  font-size: 0.9375rem;
  grid-column: span 2;
}
.chart-result__btn::after {
  width: 2.25rem;
  right: 2.5rem;
}
.chart-result__back {
  padding-top: 1.875rem;
}

/*===============================================
  トップページ
===============================================*/
/*もっと早く相談すればよかった。
そんなリフォームを。
-----------------------------*/
.top-about {
  padding-block: 10rem 5rem;
}
.top-about::after {
  width: 79.75rem;
  height: 14.875rem;
  top: 5.625rem;
}
.top-about__title {
  margin-bottom: 8.9375rem;
}
.top-about__title .en {
  width: 14.8125rem;
  margin-bottom: -0.25rem;
}
.top-about__title .txt {
  width: 35.9375rem;
  margin-left: 6.875rem;
}
.top-about__inner {
  padding-left: 31.25rem;
  position: relative;
  z-index: 0;
}
.top-about__text {
  line-height: 2.11765;
}
.top-about__btn {
  margin-top: 3.75rem;
}
.top-about__image {
  width: calc(50vw + 13.5rem);
  min-width: calc(600px + 13.5rem);
  height: 55rem;
  position: absolute;
  right: calc(50% - 13.5rem);
  top: -16.4375rem;
  z-index: -1;
  pointer-events: none;
}
.top-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask: url(../img/index/img_about-mask.png) no-repeat left center/100% 100%;
          mask: url(../img/index/img_about-mask.png) no-repeat left center/100% 100%;
}

/*かんたん診断
-----------------------------*/
.top-chart {
  padding-block: 10.9375rem 6.25rem;
}
.top-chart__title {
  margin-bottom: 3.75rem;
}
.top-chart__title .en {
  width: 20.5rem;
  margin-bottom: 0.25rem;
}
.top-chart__title .sub {
  width: 16.0625rem;
  top: -3.3125rem;
  right: 0.75rem;
}
.top-chart__title .txt {
  width: 17.4375rem;
  margin-inline: 8.75rem;
}

/*オランジュホームが選ばれる理由
-----------------------------*/
.top-reason {
  padding-block: 6.25rem 8.4375rem;
}
.top-reason::before {
  height: 26.125rem;
}
.top-reason::after {
  width: 71.6875rem;
  height: 12.375rem;
  background-size: 7.875rem;
  left: calc(50% - 0.3125rem);
  top: 7.5rem;
}
.top-reason__title {
  margin-bottom: 6.5625rem;
}
.top-reason__title .en {
  width: 7.25rem;
  margin-bottom: -0.125rem;
}
.top-reason__title .txt {
  width: 22.9375rem;
}
.top-reason__title .deco {
  padding-inline: 3.75rem;
}
.top-reason__title .deco::before {
  width: calc(100% + 7.5rem);
  height: 6.75rem;
}
.top-reason__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.375rem;
}
.top-reason__item {
  padding: 2.8125rem 3.75rem 3.75rem;
  border-radius: 1.875rem;
  position: relative;
}
.top-reason__icon {
  width: 7.375rem;
  position: absolute;
  top: -2rem;
  right: -0.625rem;
}
.top-reason__icon img {
  width: 100%;
  aspect-ratio: 118/110;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
}
.top-reason__heading {
  word-break: keep-all;
  padding-right: 1em;
  margin-block: -0.1875rem 2.3125rem;
}
.top-reason__num {
  position: absolute;
  right: -0.625rem;
  bottom: -0.375rem;
}
.top-reason__num img {
  height: 1.875rem;
}
.top-reason__btn {
  width: 28.125rem;
  margin: 5rem auto 0;
}

/*リフォーム内容
-----------------------------*/
.top-reform {
  padding-block: 5.625rem 9.375rem;
}
.top-reform::before {
  width: 50.625rem;
  height: 8rem;
  top: 6.0625rem;
}
.top-reform__title {
  margin-bottom: 3.75rem;
}
.top-reform__title .en {
  width: 7.25rem;
  margin-bottom: 0.25rem;
}
.top-reform__title .txt {
  width: 24.25rem;
  margin-inline: 5rem;
}
.top-reform__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
}
.top-reform__item {
  width: 20rem;
}
.top-reform__item:nth-of-type(2):nth-last-of-type(2) {
  margin-top: 4.375rem;
}
.top-reform__image img {
  width: 100%;
  aspect-ratio: 0.9302325581;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-reform__image {
  padding-top: 0.375rem;
  margin-bottom: 1.875rem;
}
.top-reform__image img {
  clip-path: polygon(0 6.375rem, 50% 0, 100% 6.375rem, 100% 100%, 0 100%);
}
.top-reform__image--left img {
  -o-object-position: left center;
     object-position: left center;
}
.top-reform__image--right img {
  -o-object-position: right center;
     object-position: right center;
}
.top-reform__heading {
  min-height: 2.875rem;
  margin-bottom: 1.875rem;
}
.top-reform__heading::before {
  width: 100%;
  height: 2.875rem;
}
.top-reform__btn {
  width: 12.5rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding-right: 1.875rem;
  margin: 2.5rem auto 0;
}

/*施工実績
-----------------------------*/
.top-works {
  padding-block: 5.625rem 9.375rem;
}
.top-works::after {
  width: 67.5rem;
  height: 11.4375rem;
  top: 2.8125rem;
}
.top-works__title {
  margin-left: 0;
  margin-bottom: 3.75rem;
}
.top-works__title .en {
  width: 7.25rem;
  margin-bottom: 0.25rem;
}
.top-works__title .txt {
  width: 12.125rem;
  margin-inline: 2.8125rem;
}
.top-works__tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.875rem 2.8125rem;
  padding: 1.875rem 2.5rem 2.5rem;
  border-radius: 1.875rem;
  margin-bottom: 3.75rem;
}
.top-works__tags::before {
  border-radius: calc(1.875rem - 2px);
}
.top-works__tag {
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  font-size: 1.375rem;
}
.top-works__tag img {
  width: 4.375rem;
}
.top-works__tag > span {
  padding-block: 0.9375rem;
}
.top-works__tag > span::before {
  width: calc(100% - 3.125rem);
}
.top-works__tag > span::after {
  width: 2.25rem;
  aspect-ratio: 36/12;
}
.top-works__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.top-works__item img {
  width: 100%;
  aspect-ratio: 1.1267605634;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-works__item img {
  border-radius: 1.875rem;
}

/*お知らせ
-----------------------------*/
.top-news {
  padding-block: 8.75rem 10.625rem;
}
.top-news__box {
  display: grid;
  grid-template: auto 1fr/auto 46.25rem;
  row-gap: 2.5rem;
}
.top-news__title {
  margin-left: 0;
  margin-bottom: 0;
}
.top-news__title .en {
  width: 7.25rem;
  margin-bottom: 0.375rem;
}
.top-news__title .txt {
  width: 11.5rem;
  margin-inline: 2.8125rem;
}
.top-news__list,
.top-news .com-empty {
  grid-row: span 2;
}
.top-news__list {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0.625rem;
}
.top-news__item .com-post__image img {
  aspect-ratio: 220/156;
}
.top-news__btn {
  width: 12.5rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding-right: 1.5625rem;
  margin-inline: 2.8125rem;
}

/*===============================================
  オランジュホームについて
===============================================*/
/*暮らしに寄り添い、想いをカタチに。
-----------------------------*/
.about-lead::after {
  width: 51.875rem;
  height: 10.1875rem;
  background-size: 7.875rem;
  left: calc(50% - 0.9375rem);
  top: 11.25rem;
}
.about-lead .inbox::after {
  width: 77.5rem;
  height: 14.875rem;
  bottom: -17.1875rem;
}
.about-lead__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
}
.about-lead__title img {
  width: 22.6875rem;
}
.about-lead__text {
  text-align: center;
  line-height: 2.29412;
}

/*サービス内容
-----------------------------*/
.about-service__title {
  margin-bottom: 6.25rem;
}
.about-service__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 65%, 1.5em 100%, 0 100%);
  padding-inline: 0.1875rem;
}
.about-service__title img {
  width: 22rem;
}
.about-service__title .deco::before {
  width: calc(100% + 6.875rem);
  height: 2.0625rem;
}
.about-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
.about-service__item {
  padding: 2.5rem 1.25rem;
  border-radius: 1.875rem;
}
.about-service__heading {
  max-width: 25.3125rem;
  padding: calc((2.75rem - 1em) / 2) 1.25rem;
  margin: 0 auto 1.875rem;
}
.about-service__heading::before {
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.625rem) 50%, 100% 100%, 0 100%, 0.625rem 50%);
}
.about-service__image {
  width: 20rem;
  margin: 0 auto 1.875rem;
}
.about-service__image img {
  width: 100%;
  aspect-ratio: 1.6;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-service__body {
  text-align: center;
}

/*オランジュホームが選ばれる理由
-----------------------------*/
.about-reason::before {
  height: 24.375rem;
}
.about-reason .inbox::before {
  content: "";
  width: 97.625rem;
  height: 13.3125rem;
  background: url(../img/common/deco_block-l.svg) no-repeat left bottom, url(../img/common/deco_block-r.svg) no-repeat right top;
  background-size: 7.875rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 28.4375rem;
  z-index: -2;
  pointer-events: none;
}
.about-reason .inbox::after {
  content: "";
  width: 97.625rem;
  height: 7.375rem;
  background: url(../img/common/deco_block-l.svg) no-repeat left top, url(../img/common/deco_block-r.svg) no-repeat right bottom;
  background-size: 7.875rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(-1, 1);
  top: 78.75rem;
  z-index: -2;
  pointer-events: none;
}
.about-reason__title {
  margin-bottom: 6.25rem;
}
.about-reason__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 65%, 1.5em 100%, 0 100%);
  padding-inline: 0.1875rem;
}
.about-reason__title .deco::before {
  width: calc(100% + 15rem);
  height: 6.75rem;
}
.about-reason__title img {
  width: 22.9375rem;
}
.about-reason__item {
  min-height: 26.875rem;
  padding: 3.125rem 3.75rem;
  padding-right: 37.8125rem;
  margin-bottom: 3.75rem;
  border-radius: 1.875rem;
}
.about-reason__num {
  position: absolute;
  top: -1.125rem;
  left: 2.8125rem;
}
.about-reason__num img {
  height: 1.875rem;
}
.about-reason__heading {
  word-break: keep-all;
  padding-right: 2em;
  margin-block: -0.1875rem 2.3125rem;
}
.about-reason__image {
  width: calc(50% - 3.75rem);
  height: calc(100% - 6.25rem);
  position: absolute;
  top: 3.125rem;
  right: 3.75rem;
}
.about-reason__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.875rem;
}

/*代表挨拶
-----------------------------*/
.about-greeting::after {
  width: 50.875rem;
  height: 3.5rem;
  background-size: 7.875rem;
  top: 14.375rem;
}
.about-greeting__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
}
.about-greeting__title img {
  width: 15.1875rem;
}
.about-greeting__inner {
  padding: 5rem 3.125rem;
  border-radius: 1.875rem;
}
.about-greeting__inner::before {
  border-radius: calc(1.875rem - 2px);
}
.about-greeting__inner::after {
  width: calc(100% - 6.875rem);
  height: 8rem;
  bottom: -1.25rem;
}
.about-greeting__image {
  width: 21.875rem;
  margin: 0 auto 3.75rem;
}
.about-greeting__image img {
  width: 100%;
  aspect-ratio: 7/8;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.875rem;
}
.about-greeting__text {
  text-align: center;
}
.about-greeting__name {
  row-gap: 0.8125rem;
  margin-top: 3.75rem;
}
.about-greeting__name dd {
  line-height: 1.23077;
}
.about-greeting__name dd .label {
  width: 4.5rem;
  margin-right: 0.5em;
}

/*会社情報
-----------------------------*/
.about-company::before {
  transform: translateX(-50%) scale(-1, 1);
}
.about-company::after {
  width: 51.25rem;
  height: 4.25rem;
  top: 4.8125rem;
}
.about-company__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
}
.about-company__title img {
  width: 12.375rem;
}
.about-company__title::before {
  width: 44.375rem;
  height: 6.875rem;
  background-size: auto 2.1875rem, auto 3.4375rem;
  background-position: right 4.875rem top, right bottom;
  top: 1.625rem;
}
.about-company__map {
  height: 25rem;
  margin-top: 3.75rem;
}
.about-company__map iframe {
  border-radius: 0.9375rem;
}

/*===============================================
  リフォーム内容（内装/水回り/外構）
===============================================*/
/*このようなお悩みはありませんか？
-----------------------------*/
.reform-worries {
  padding-block-end: 5rem;
}
.reform-worries::before {
  min-width: 120rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14.6875rem), 50% 100%, 0 calc(100% - 14.6875rem));
}
.reform-worries__title::before {
  width: 48.125rem;
  height: 3.4375rem;
  bottom: -0.875rem;
}
.reform-worries__title::after {
  width: 47.5rem;
  height: 4.1875rem;
  top: 0.4375rem;
}
.reform-worries__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
}
.reform-worries__title img {
  width: 22.5rem;
}
.reform-worries__inner {
  margin-bottom: 6.25rem;
}
.reform-worries__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.reform-worries__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  aspect-ratio: 1;
  border-radius: 50%;
  outline: dotted 0.1875rem var(--color-orange);
  outline-offset: -0.125rem;
  padding: 1.5625rem 0.625rem 0.625rem;
  word-break: keep-all;
  position: relative;
}
.reform-worries__item:nth-of-type(2n) {
  margin-inline: -1.875rem;
  margin-bottom: 8.75rem;
}
.reform-worries__item p {
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: 1.75;
  margin-inline-end: calc(var(--letter-spacing-base) * -1);
}
.reform-worries__item::before {
  width: 3.125rem;
  position: absolute;
  top: 0.1875rem;
  left: 1.875rem;
  z-index: 1;
}
.reform-worries__image {
  padding-top: 2.5rem;
}
.reform-worries__image img {
  width: 22.5rem;
}
.reform-worries__text {
  max-width: 40rem;
  font-size: var(--font-size-h4);
  margin-block: -0.3125rem;
}
.reform-worries__text > span {
  line-height: 1.76471;
}
.reform-worries__text::before {
  width: calc(100% + 10rem);
  height: 6.75rem;
}

/*リード文
-----------------------------*/
.reform-about {
  padding-block: 7.1875rem 6.25rem;
}
.reform-about::before {
  width: 52.5rem;
  height: 3.4375rem;
  top: 10.25rem;
}
.reform-about::after {
  width: 49.375rem;
  height: 2.25rem;
  top: 12.5rem;
}
.reform-about__title {
  row-gap: 0.875rem;
  padding-top: 4.625rem;
}
.reform-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  -moz-column-gap: 2.8125rem;
       column-gap: 2.8125rem;
  background: rgba(250, 228, 138, 0.25);
  padding: 3.75rem;
  border-radius: 1.875rem;
}
.reform-about__image {
  width: 25rem;
  flex-shrink: 0;
}
.reform-about__image img {
  width: 100%;
  aspect-ratio: 8/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.reform-about__text {
  align-self: center;
}

.interior .reform-about__title span.en {
  left: 1.875rem;
}
.interior .reform-about__title .sub {
  width: 19.375rem;
}
.interior .reform-about__title .main {
  width: 38.125rem;
}

.water .reform-about__title span.en {
  left: -5.625rem;
}
.water .reform-about__title .sub {
  width: 21rem;
}
.water .reform-about__title .main {
  width: 23rem;
}

.exterior .reform-about::before {
  top: 16.5625rem;
}
.exterior .reform-about::after {
  top: 17.8125rem;
}
.exterior .reform-about__title {
  row-gap: 2.125rem;
}
.exterior .reform-about__title span.en {
  left: -1.5625rem;
}
.exterior .reform-about__title .sub {
  width: 36.8125rem;
}
.exterior .reform-about__title .main {
  width: 24.875rem;
}

/*対応内容
-----------------------------*/
.reform-service {
  padding-block-start: 9.375rem;
}
.reform-service::before {
  height: 35%;
  max-height: 22.5rem;
}
.reform-service::after {
  width: 52.5rem;
  height: 8rem;
  top: 5.75rem;
}
.reform-service__title span.en {
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
}
.reform-service__title .deco::before {
  width: calc(100% + 6.875rem);
  height: 2.0625rem;
}
.reform-service__title img {
  width: 15.1875rem;
}
.reform-service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
.reform-service__list:has(.reform-service__item:last-of-type:nth-of-type(3n)) {
  grid-template-columns: repeat(3, 1fr);
}
.reform-service__item {
  padding: 1.875rem;
  border-radius: 1.25rem;
}
.reform-service__heading {
  padding-block: calc((2.1875rem - 1em) / 2);
  margin-bottom: 1.25rem;
}
.reform-service__image {
  max-width: 17.5rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.reform-service__image img {
  width: 100%;
  height: 9.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

/*各種リノベーションにも対応！
-----------------------------*/
.reform-renovation {
  overflow: hidden;
}
.reform-renovation .inbox::before {
  content: "";
  width: 97.625rem;
  height: 13.3125rem;
  background: url(../img/common/deco_block-l.svg) no-repeat left bottom, url(../img/common/deco_block-r.svg) no-repeat right top;
  background-size: 7.875rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10.625rem;
  z-index: -2;
  pointer-events: none;
}
.reform-renovation .inbox::after {
  content: "";
  width: 97.625rem;
  height: 7.375rem;
  background: url(../img/common/deco_block-l.svg) no-repeat left top, url(../img/common/deco_block-r.svg) no-repeat right bottom;
  background-size: 7.875rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(-1, 1);
  top: 60.625rem;
  z-index: -2;
  pointer-events: none;
}
.reform-renovation__title {
  padding-top: 5.3125rem;
}
.reform-renovation__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 5.5em 0, 5.5em 100%, 0 100%);
  left: -2.1875rem;
}
.reform-renovation__title .deco::before {
  width: calc(100% + 10.625rem);
  height: 6.75rem;
}
.reform-renovation__title img {
  width: 30.6875rem;
}
.reform-renovation__item {
  min-height: 23.125rem;
  padding: 3.75rem;
  padding-left: 27.5rem;
  border-radius: 1.875rem;
  margin-bottom: 3.75rem;
  position: relative;
}
.reform-renovation__heading {
  padding: calc((2.1875rem - 1em) / 2) 1rem;
  margin-bottom: 1.875rem;
}
.reform-renovation__image {
  width: 21.25rem;
  height: calc(100% - 7.5rem);
  position: absolute;
  top: 3.75rem;
  left: 3.75rem;
}
.reform-renovation__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.875rem;
}

/*ご依頼の流れ
-----------------------------*/
.reform-flow {
  padding-block-start: 9.375rem;
}
.reform-flow__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 5.625rem 2.5rem;
}
.reform-flow__title {
  padding-inline: 1.875rem;
  margin-left: 0;
  margin-bottom: 0;
  order: 0;
}
.reform-flow__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 2.5em 0, 2.5em 65%, 2em 100%, 0 100%);
  left: 0;
}
.reform-flow__title img {
  width: 21.875rem;
}
.reform-flow__title::after {
  width: 12.25rem;
  aspect-ratio: 196/159;
  background-size: auto 4.1875rem, auto 3.4375rem;
  right: -9.375rem;
  top: -1.875rem;
}
.reform-flow__list {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 3.125rem 6rem;
  order: 2;
  grid-column: span 2;
}
.reform-flow__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1.25rem;
  width: 6.25rem;
  height: 19.75rem;
  padding: 2.1875rem 0.9375rem 0.625rem;
  border-radius: 0.625rem;
}
.reform-flow__item p {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  word-break: keep-all;
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
.reform-flow__item p span {
  display: block;
}
.reform-flow__item p span.ki {
  margin-inline: -0.5em;
}
.reform-flow__item::after {
  content: "";
  width: 1.375rem;
  aspect-ratio: 22/40;
  background: var(--color-btn);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2.3125rem;
}
.reform-flow__item:first-of-type::after {
  display: none;
}
.reform-flow__num {
  width: 2.625rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.75rem;
}
.reform-flow__icon {
  width: 4.375rem;
}
.reform-flow__icon img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.reform-flow__btn {
  order: 1;
}

/*施工実績
-----------------------------*/
.reform-works {
  padding-block-start: 5.9375rem;
}
.reform-works::after {
  width: 83.125rem;
  height: 14.875rem;
  top: -4.0625rem;
}
.reform-works__title {
  padding-top: 3.75rem;
  margin-bottom: 4.375rem;
}
.reform-works__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
  left: -2.5rem;
}
.reform-works__title img {
  width: 14.8125rem;
}
.reform-works__title .deco::before {
  width: calc(100% + 11.25rem);
  height: 4rem;
}
.reform-works__item {
  row-gap: 1.875rem;
  padding: 3.75rem;
  border-radius: 1.875rem;
  margin-bottom: 3.75rem;
}
.reform-works__heading {
  padding: calc((3.75rem - 1em) / 2) 1.25rem;
}
.reform-works__images {
  -moz-column-gap: 6.25rem;
       column-gap: 6.25rem;
}
.reform-works__images::before {
  width: 1.25rem;
  aspect-ratio: 20/34;
}
.reform-works__image img {
  width: 100%;
  aspect-ratio: 1.72;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
.news-archive__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 4em 0, 4em 65%, 1.5em 100%, 0 100%);
}
.news-archive__title img {
  width: 14.0625rem;
}

/* お知らせ 詳細
-----------------------------*/
.news-detail__box {
  padding: 3.75rem 3.125rem;
  border-radius: 1.875rem;
}
.news-detail__box::before {
  border-radius: calc(1.875rem - 2px);
}
.news-detail__heading {
  margin-bottom: 1.875rem;
}
.news-detail .com-post__date {
  border-radius: 0.5rem;
  position: relative;
  top: inherit;
  right: inherit;
}

/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 4em 0, 4em 100%, 0 100%);
}
.contact-form__title img {
  width: 21.875rem;
}
.contact-form__table tr th,
.contact-form__table tr td {
  line-height: calc(2.5rem / var(--font-size-base));
}
.contact-form__table tr th {
  width: 22.5rem;
  text-align: left;
  padding-inline: 1.875rem;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  margin-top: calc(1.25rem - 0.5lh);
}
.contact-form__table tr td {
  vertical-align: middle;
  padding-right: 0;
}
.contact-form .contact-submits-wrap > * {
  margin: 1.25rem 0.9375rem 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
.contact-complete__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 4.5em 0, 4.5em 100%, 0 100%);
}
.contact-complete__title img {
  width: 29.0625rem;
}
/*===============================================
  プライバシーポリシー
===============================================*/
.privacy-policy__title img {
  width: 35.125rem;
}
.privacy-policy__heading {
  padding: calc((2.8125rem - 1em) / 2) 0.9375rem;
  margin-bottom: 1.875rem;
}

/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__title span.en {
  width: 18.75rem;
  clip-path: polygon(0 0, 4.5em 0, 4.5em 100%, 0 100%);
}
.sitemap-list__title img {
  width: 19.375rem;
}
.sitemap-list__items {
  display: grid;
  grid-template: repeat(5, 1fr)/repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 1.25rem 5rem;
}
.sitemap-list__link {
  line-height: 1.5;
  padding: 1em 1.5em;
}

/*===============================================
  404エラー
===============================================*/
.error-message__title img {
  width: 30.875rem;
}