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

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

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

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

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#header .header__logo {
  width: 12rem;
  border-bottom-right-radius: 2.4rem;
}
#header .header__logo img {
  width: 64%;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 6.4rem 0 3.2rem;
}
#footer .footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 90%;
  row-gap: 3rem;
}
#footer .footer__logo {
  text-align: center;
  padding-bottom: 1rem;
}
#footer .footer__logo img {
  height: 15rem;
}
#footer .footer__info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  line-height: var(--line-height-base);
}
#footer .footer__info p .label::after {
  content: "｜";
  margin-right: -0.25em;
}
#footer .footer__add {
  width: 100%;
  text-align: center;
}
#footer .footer__add .label {
  display: none;
}
#footer .footer__link {
  width: 32rem;
}
#footer .footer__sns {
  gap: 30px;
}
#footer .footer__sns li {
  width: max(40px, 5rem);
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  padding-top: 1rem;
}
.footer-nav__list {
  display: none;
}

/*コピーライト
-----------------------------*/
.copy {
  margin-bottom: 8rem;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 1rem;
  bottom: 1.5rem;
}
#pagetop::before {
  width: 6.4rem;
}
#pagetop > span {
  -webkit-text-stroke-width: 0.4rem;
}

/*サイドボタン
-----------------------------*/
#side {
  width: 30rem;
  height: 6rem;
  border-radius: 1rem;
  left: 1rem;
  bottom: 1rem;
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  flex-direction: column;
  margin-top: 8rem;
}
.visual__main::before {
  display: block;
  height: 35rem;
  background-position: left 80% center;
}
.visual__main-box {
  width: 100%;
  padding: 6rem 0 4rem;
  background: var(--color-bg);
  row-gap: 2.4rem;
}
.visual__main-box::before {
  height: 8rem;
}
.visual__main-box::after {
  height: 3.6rem;
  top: -3rem;
  left: 5%;
}
.visual__main-catch {
  font-size: var(--font-size-h1);
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1 - 0.5em);
}
.visual__main-catch .b {
  font-size: 1.125em;
}
.visual__main-catch::after {
  content: "";
  height: 12rem;
  aspect-ratio: 249/183;
  background: url(../img/visual/mv_deco-right.png) no-repeat right top/contain;
  position: absolute;
  top: -2rem;
  right: max(50% - 21.2rem, 3%);
  z-index: -1;
}
.visual__main-sub {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  padding: 1rem 1.5rem;
}
.visual__main-sub p {
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*サブビジュアル
-----------------------------*/
.visual__sub-inner {
  padding: 15rem 5% 3rem;
  row-gap: 2rem;
}
.visual__sub-inner::before {
  width: 40%;
  height: 8rem;
}
.visual__sub-inner::after {
  width: 9.6rem;
  top: 9rem;
  right: 3.2rem;
}
.visual__sub-catch {
  font-size: var(--font-size-h2);
}
.visual__sub::after {
  height: 15rem;
}

/*===============================================
  main#container
===============================================*/
/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  font-size: var(--font-size-sm);
}
/*===============================================
  main共通
===============================================*/
.section {
  padding: 8rem 0;
}

.inbox {
  width: 90%;
}

/*電話番号
-----------------------------*/
.com-tel-num {
  font-size: var(--font-size-h1);
}
.com-tel-num::before {
  font-size: var(--font-size-h5);
  margin-right: 1rem;
}
/*ボタン
-----------------------------*/
.com-btn {
  height: 6.4rem;
}
.com-btn--line, .com-btn--mail {
  width: 32rem;
  height: max(80px, 9rem);
  font-size: var(--font-size-h6);
}
.com-btn--mail::before {
  font-size: var(--font-size-h4);
}
.com-btn--line {
  -moz-column-gap: 11px;
       column-gap: 11px;
}
.com-btn--line::before {
  width: max(40px, 4.5rem);
}

/*テーブル
-----------------------------*/
.com-table tr th {
  padding-block: 2rem;
}
.com-table tr td {
  padding-block: 2rem;
}
.com-table--noblock tr th {
  width: 8em;
}
.com-table:not(.com-table--noblock) tr:first-of-type {
  border-top: none;
}
.com-table:not(.com-table--noblock) tr:first-of-type th {
  padding-top: 0;
}
.com-table:not(.com-table--noblock) tr td {
  padding-top: 0;
}

/* 背景
-----------------------------*/
.com-bg::before {
  height: 12rem;
}
.com-bg::after {
  display: none;
}

/*お知らせ
-----------------------------*/
.com-post__item {
  margin-bottom: 2rem;
}
.com-post__item:last-of-type {
  margin-bottom: 0;
}
.com-post__link {
  display: grid;
  grid-template-columns: 12rem 1fr;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.com-post__inner {
  padding-block: 1rem;
}
.com-post__tags {
  margin-top: auto;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  row-gap: 2.4rem;
  margin-bottom: 4rem;
}

/*中タイトル
-----------------------------*/
.com-title02 {
  border-radius: 2rem;
}

/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  background-size: 250%;
}
.com-contact::before {
  height: 6.4rem;
}
.com-contact::after {
  width: 92%;
  height: 4.8rem;
  top: 3rem;
}
.com-contact__list::before {
  width: 96vw;
  height: 9.5rem;
  bottom: -8rem;
  z-index: 1;
}
.com-contact__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.com-contact__item:last-of-type {
  margin-bottom: 0;
}
.com-contact__item:first-of-type::after {
  content: "";
  width: 5.2rem;
  aspect-ratio: 52/31;
  background: url(../img/common/contact_deco-box.png) no-repeat left top/contain;
  position: absolute;
  top: -2.9rem;
  right: 1rem;
}
.com-contact__tel {
  padding-block: 1rem;
}

/*空き家をお持ちの方へ
-----------------------------*/
.com-bnr.section {
  padding-block: 5rem;
}
.com-bnr__box {
  border-radius: 2rem;
  overflow: hidden;
}
.com-bnr__inner {
  padding: 4rem 2rem;
}
.com-bnr__inner::after {
  width: 8rem;
  top: 1.2rem;
  right: 0.2rem;
}
.com-bnr__image img {
  aspect-ratio: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.com-bnr__image::after {
  width: 10rem;
  right: 0.5rem;
}
.com-bnr__btn {
  height: 6rem;
  -moz-column-gap: 9.5rem;
       column-gap: 9.5rem;
  grid-column: span 2;
}

/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
.top-news__btn {
  margin: 4rem auto 0;
}

/*ご挨拶
-----------------------------*/
.top-greeting {
  padding-top: 0;
}
.top-greeting::before {
  height: 24rem;
  margin-bottom: 5rem;
}
.top-greeting__btn {
  margin: 4rem auto 0;
}
.top-greeting__box {
  padding: 0 3rem 4rem;
  border-radius: 0 0 2rem 2rem;
  margin-top: 8rem;
}
.top-greeting__box::before {
  height: calc(100% - 2rem);
  border-radius: 2rem;
}
.top-greeting__box::after {
  height: 8rem;
  border-radius: 0 0 2rem 2rem;
}
.top-greeting__heading {
  width: calc(100% + 6rem);
  margin-inline: -3rem;
}
.top-greeting__heading::before {
  width: 92%;
  height: 3.6rem;
  top: -3.2rem;
}
.top-greeting__heading::after {
  width: calc(100% + 3rem);
  height: 5rem;
  top: -1.5rem;
}
.top-greeting__image {
  width: 15rem;
  margin: 0 auto 3rem;
}
.top-greeting + .top-movie::before,
.top-greeting + .top-service::before {
  height: 12rem;
}

/*動画で『すずめ不動産』を
わかりやすく紹介！
-----------------------------*/
.top-movie::after {
  width: calc(100% - 2rem);
  height: calc(100% + 2rem);
  background-size: 7rem, 12rem;
  top: 0;
}
.top-movie__title {
  margin-bottom: 5rem;
}
/*事業内容
-----------------------------*/
.top-service__item {
  margin-bottom: 5rem;
}
.top-service__item:last-of-type {
  margin-bottom: 0;
}
.top-service__image {
  margin-bottom: 3rem;
}
.top-service__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-service__image img {
  border-radius: 2rem;
}
.top-service__image figcaption {
  width: 24rem;
  font-size: var(--font-size-h5);
  border-top-right-radius: 2rem;
  padding-block: 1rem;
}
.top-service__image figcaption::after {
  width: 100%;
  height: 9rem;
  left: 0;
}
.top-service__btn {
  margin: 4rem auto 0;
}

/*売却実績
-----------------------------*/
.top-achievements::before {
  height: calc(100% - 3rem);
  background-size: 8rem;
  top: 2rem;
}
.top-achievements__title::before {
  width: 38rem;
  height: 10rem;
  bottom: -4.5rem;
}
.top-achievements__slider .swiper-button-prev,
.top-achievements__slider .swiper-button-next {
  display: none;
}
.top-achievements__slider:not(.swiper-initialized) .top-achievements__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25em;
}
.top-achievements__slider:not(.swiper-initialized) .top-achievements__item {
  width: 24rem;
}
.top-achievements__link {
  row-gap: 0.625em;
}
.top-achievements__image {
  margin-bottom: 0.625em;
}
.top-achievements__tags {
  font-size: 0.75em;
}
.top-achievements__btn {
  margin: 4rem auto 0;
}

/*各種ご案内
-----------------------------*/
.top-info {
  padding-bottom: 0;
}
.top-info__link {
  gap: 3rem 1.5rem;
}
.top-info__link > span {
  max-width: calc(100% - 4rem);
  word-break: keep-all;
}
.top-info__link::after {
  font-size: var(--font-size-h4);
}
.top-info__image {
  margin-top: 5rem;
}
.top-info__image img {
  aspect-ratio: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-info__image::after {
  width: 8rem;
  right: 2rem;
  bottom: 0;
}

/*===============================================
  すずめ不動産について
===============================================*/
/*代表挨拶
-----------------------------*/
.about-greeting__image {
  max-width: 24rem;
  margin: 0 auto 2rem;
}
.about-greeting__image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-greeting__image img {
  border-radius: 2rem;
}
.about-greeting__image figcaption {
  padding-block: 2rem;
}
.about-greeting__image figcaption::after {
  width: 10rem;
  left: 0;
  bottom: 100%;
}
.about-greeting__box {
  margin-bottom: 4rem;
}
.about-greeting__box:last-of-type {
  margin-bottom: 0;
}

/*すずめ不動産が選ばれる3つの理由
-----------------------------*/
.about-reason__item {
  padding-top: 4.8rem;
}
.about-reason__image {
  margin-bottom: 2.4rem;
}
.about-reason__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-reason__image img {
  border-radius: 2rem;
}
.about-reason__image::after {
  width: 16rem;
}
.about-reason__inner::after {
  width: 12rem;
  top: 0;
  left: -0.5rem;
}
.about-reason__heading {
  margin-bottom: 3rem;
}

/*店舗案内
-----------------------------*/
.about-info {
  padding-block: 6.4rem;
}
.about-info__map {
  height: 32rem;
}

/*===============================================
  事業内容
===============================================*/
/*不動産売却・買取 / 不動産販売
-----------------------------*/
.service__image {
  margin-top: 4rem;
}
.service__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__image img {
  border-radius: 2rem;
}
.service__image::after {
  width: 16rem;
}
.service__point {
  padding-top: 12rem;
}
.service__point::before {
  height: 24rem;
}
.service__box {
  padding: 3rem 2rem 0;
  border-radius: 2rem;
}
.service__box::before {
  width: calc(100% - 2rem);
  height: 4.2rem;
  top: -3.2rem;
}
.service__box::after {
  width: calc(100% + 3rem);
  height: 6rem;
  top: -1.5rem;
}
.service__heading::before {
  height: 9.6rem;
  bottom: calc(100% + 1rem);
}
.service__list dt > span {
  padding-left: 1.8em;
}
.service__list dt > span::before {
  width: 1.8em;
  margin-left: -1.8em;
  margin-right: 0;
}
.service__btn {
  margin: 5rem auto 0;
}

/*===============================================
  空き家をお持ちの方へ
===============================================*/
/*このようなお悩みはございませんか？
-----------------------------*/
.support-worries {
  padding-bottom: 0;
}
.support-worries__list {
  padding: 3rem;
  border-radius: 2rem;
}
.support-worries__image {
  text-align: right;
  margin-top: -2rem;
  margin-right: -4vw;
}
.support-worries__image img {
  width: 20rem;
}

/*そのお悩み、
すずめ不動産にご相談ください！
-----------------------------*/
.support-about {
  padding-block: 5rem;
}
.support-about__title {
  padding-inline: 1.5rem;
}
.support-about__title::after {
  width: 3.7rem;
}
.support-about__image {
  margin-top: 3.6rem;
}
.support-about__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support-about__image img {
  border-radius: 2rem;
}

/*すずめ不動産の空き家売却の強み
-----------------------------*/
.support-feature__title::before {
  width: 21.6rem;
  position: absolute;
  top: -4.2rem;
  right: -2.5vw;
}
.support-feature__item {
  padding-top: 2.5rem;
  margin-bottom: 4rem;
}
.support-feature__item:last-of-type {
  margin-bottom: 0;
}
.support-feature__image {
  margin-bottom: 2rem;
}
.support-feature__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support-feature__image--right img {
  -o-object-position: right center;
     object-position: right center;
}

/*空き家がもたらすリスク
-----------------------------*/
.support-risk__image {
  margin-top: 4rem;
}
.support-risk__image img {
  aspect-ratio: 1.7777777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.support-risk__image img {
  border-radius: 2rem;
}
.support-risk__image::after {
  width: 16rem;
}
.support-risk__list dt > span {
  padding-left: 1.8em;
}
.support-risk__list dt > span::before {
  width: 1.8em;
  margin-left: -1.8em;
  margin-right: 0;
}

/*放置せず、今できる対策を！
-----------------------------*/
/*ボタンリンクセクション
-----------------------------*/
.support-links {
  padding-block: 5rem;
}
.support-links__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/*===============================================
  売却実績
===============================================*/
/*一覧
-----------------------------*/
.results-list__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 1.5rem 1.5rem;
}
.results-list__link .com-btn {
  min-height: 6.4rem;
}
.results-list__items {
  margin-top: 5rem;
}
.results-list__item {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: flex-start;
}
.results-list__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 1.5rem;
}
.results-list__inner > *:not(.com-btn) {
  width: 100%;
}
.results-list__heading {
  margin-bottom: 0;
}
.results-list__tags {
  font-size: var(--font-size-sm);
}
.results-list__btn {
  width: 100%;
  max-width: 25rem;
  margin: 2rem 0 0 auto;
}

/*詳細
-----------------------------*/
.results-detail__inner {
  padding-top: 3rem;
}
.results-detail__image {
  margin-bottom: 3rem;
}

/*===============================================
  取扱い不動産
===============================================*/
/*一覧
-----------------------------*/
.catalog-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
.catalog-list__items::before {
  grid-column: span 2;
  margin-bottom: 0;
}
.catalog-list__image {
  margin-bottom: 2rem;
}
.catalog-list__heading {
  font-size: var(--font-size-h6);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.catalog-list__heading > span {
  line-height: 1.25;
}
.catalog-list__btn {
  width: 100%;
  margin: 3rem auto 0;
}

/*詳細
-----------------------------*/
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(0.5em);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.catalog-detail__images {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.catalog-detail__images:has(+ .catalog-detail__text) {
  margin-bottom: 0.5rem;
}
.catalog-detail__text {
  padding-inline: 1.5rem;
  margin-bottom: 2.5rem;
}
.catalog-detail__text::after {
  content: "\f138";
  display: block;
  text-align: right;
  font-family: var(--font-family-icon);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-h3);
  letter-spacing: 0;
  line-height: 1;
  animation: scroll 2.4s infinite;
  position: relative;
}
.catalog-detail__image img {
  width: 100%;
  aspect-ratio: 3/2;
}
.catalog-detail__point {
  margin-top: 3rem;
}
.catalog-detail__list {
  padding-top: 1rem;
}
.catalog-detail__list-wrap {
  margin-top: 5rem;
}

/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
/*===============================================
  お問い合わせ
===============================================*/
.contact-form__table {
  margin-bottom: 2.5em;
}
.contact-form .contact-submits-wrap > * {
  width: 20em;
  max-width: 100%;
  height: clamp(50px, 13.3333333333vw, 60px);
  margin: 0 auto 1.25em;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*===============================================
  お問い合わせ完了
===============================================*/
/*===============================================
  プライバシーポリシー
===============================================*/
/*===============================================
  サイトマップ
===============================================*/
.sitemap-list__item {
  margin-bottom: 0.75em;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

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