@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #41392a;
  --color-white: #ffffff;
  --color-gray: #a8a6a1;
  --color-lightgray: #f4f7f1;
  --color-green: #2c7865;
  --color-lightgreen: #90d26d;
  --color-whitegreen: #d9edbf;
  --color-orange: #ff9800;
  /*カレントカラー*/
  --color-current: #2c7865;
  /*テキストリンクカラー*/
  --color-textlink: #2c7865;
  /*必須ボタンカラー*/
  --color-required: #2c7865;
  /*任意ボタンカラー*/
  --color-optional: #2c7865;
  /*ラジオボタンカラー*/
  --color-radio: #2c7865;
  /*チェックボタンカラー*/
  --color-check: #2c7865;
  /*==============================
      フォントファミリー
  ==============================*/
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-shippori: "Shippori Mincho B1", serif;
  --font-family-zen: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.1176;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #41392a;
  --color-white: #ffffff;
  --color-gray: #a8a6a1;
  --color-lightgray: #f4f7f1;
  --color-green: #2c7865;
  --color-lightgreen: #90d26d;
  --color-whitegreen: #d9edbf;
  --color-orange: #ff9800;
  /*カレントカラー*/
  --color-current: #2c7865;
  /*テキストリンクカラー*/
  --color-textlink: #2c7865;
  /*必須ボタンカラー*/
  --color-required: #2c7865;
  /*任意ボタンカラー*/
  --color-optional: #2c7865;
  /*ラジオボタンカラー*/
  --color-radio: #2c7865;
  /*チェックボタンカラー*/
  --color-check: #2c7865;
  /*==============================
      フォントファミリー
  ==============================*/
  /*本文*/
  --font-family-body: "Zen Kaku Gothic New", sans-serif;
  --font-family-shippori: "Shippori Mincho B1", serif;
  --font-family-zen: "Zen Kaku Gothic New", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.7rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2.1176;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0.05em;
}

/*opacity含めたカラー指定あればここで定義*/
/*========================
    default
========================*/
html {
  font-size: 62.5%;
}

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

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

.wrapper {
  min-width: 1280px;
  max-width: 1920px;
  margin-inline: auto;
}

.container {
  /*ヘッダー追従の時はここにmax-width:1920px;,overflow-x:hidden;をかける*/
}

.com-inbox {
  width: 1080px;
}

/*ロゴのホバー処理*/
.logo a:hover {
  transition: opacity 0.3s;
}
.logo a:hover:hover {
  opacity: 0.5;
}

/*パンくずリスト*/
.breadcrumb {
  padding-block: 2.5rem;
  margin-bottom: 6rem;
}
.breadcrumb__list {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  gap: 0.25em;
}
.breadcrumb__item {
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0;
  font-family: var(--font-family-zen);
  letter-spacing: 0;
}
.breadcrumb__item::after {
  content: "＞";
  margin-left: 0.25em;
  pointer-events: none;
}
.breadcrumb__item:last-child {
  display: block;
  max-width: 23rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb__item:last-child::after {
  display: none;
}
.breadcrumb__item a:hover {
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover:hover {
  opacity: 0.5;
}

/*==============================
    各種ホバー処理
==============================*/
.gnav__link {
  transition: all 0.3s;
}
.gnav__link:hover {
  opacity: 0.5;
}

.com-btn--orange {
  transition: all 0.3s;
}
.com-btn--orange::after {
  transition: all 0.3s;
}
.com-btn--orange:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}
.com-btn--orange:hover::after {
  background: url(../img/common/arw_o.svg) top left/contain no-repeat;
}

.mail-btn {
  transition: all 0.3s;
}
.mail-btn::before, .mail-btn::after {
  transition: all 0.3s;
}
.mail-btn:hover {
  color: var(--color-orange);
}
.mail-btn:hover::before {
  background: url(../img/common/icon-mail-og.png) top left/contain no-repeat;
}
.mail-btn:hover::after {
  width: 130%;
  background-color: var(--color-white);
}

.line-btn {
  transition: all 0.3s;
}
.line-btn::after {
  transition: all 0.3s;
}
.line-btn:hover::after {
  width: 130%;
}

.top-contents__btn {
  transition: all 0.3s;
}
.top-contents__btn:hover {
  opacity: 0.5;
}

.swiper-button-next,
.swiper-button-prev {
  transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.5;
}

.top-company__btn {
  transition: all 0.3s;
}
.top-company__btn::after {
  transition: all 0.3s;
}
.top-company__btn:hover {
  background-color: var(--color-orange);
}
.top-company__btn:hover::after {
  right: -2rem;
}

.paginated__link:hover {
  opacity: 0.5;
}

.follow_btn {
  transition: all 0.3s;
}
.follow_btn:hover {
  opacity: 0.7;
  bottom: 7rem;
}

/*==============================
    ヘッダー
==============================*/
/*==============================
    メインビジュアル
==============================*/
.mv__title {
  width: clamp(428px, 33.44vw, 642px);
  position: absolute;
  z-index: 65;
  left: 0;
  bottom: 0;
  aspect-ratio: 642/387;
}

/*==============================
    サブビジュアル
==============================*/
.sv {
  height: clamp(360px, 28.13vw, 540px);
}
.sv__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30%;
  white-space: nowrap;
  font-size: clamp(25px, 1.93vw, 37px);
  padding: clamp(23px, 1.82vw, 35px) clamp(65px, 5.05vw, 97px) clamp(23px, 1.82vw, 35px) clamp(61px, 4.79vw, 92px);
}

/*==============================
    共通ボタン
==============================*/
.com-btn {
  width: 32rem;
  min-height: 6rem;
}

/*==============================
    共通テーブル
==============================*/
/*==============================
    TOP
==============================*/
.top-about {
  padding-block: 16.7rem 5rem;
}
.top-about__text {
  padding-left: 20rem;
}
.top-about__text::before {
  width: clamp(185px, 14.43vw, 277px);
  right: -10rem;
  top: 7.4rem;
}
.top-about .com-title01 {
  margin-bottom: 6.7rem;
}
.top-about__image--01 {
  top: -1.5rem;
  left: -12rem;
  width: 25.5rem;
  aspect-ratio: 255/400;
}
.top-about__image--02 {
  right: 0;
  top: 31.5rem;
  width: 23rem;
  aspect-ratio: 1;
}

.top-contents {
  padding-block: clamp(70px, 5.47vw, 105px) clamp(80px, 6.25vw, 120px);
  /* 前へ次への矢印カスタマイズ */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.top-contents::after {
  top: 0;
  width: clamp(175px, 13.65vw, 262px);
  right: calc(50% + clamp(185px, 14.43vw, 277px));
}
.top-contents .com-title01 {
  margin-bottom: clamp(35px, 2.71vw, 52px);
}
.top-contents .swiper-slide {
  min-height: clamp(257px, 20.1vw, 386px);
}
.top-contents .swiper-slide.slide01 .top-contents__inner::before {
  width: clamp(75px, 5.83vw, 112px);
  top: clamp(17px, 1.35vw, 26px);
  right: clamp(40px, 3.13vw, 60px);
}
.top-contents .swiper-slide.slide02 .top-contents__inner::before {
  width: clamp(75px, 5.83vw, 112px);
  bottom: -0.4rem;
  right: clamp(30px, 2.34vw, 45px);
}
.top-contents .swiper-slide.slide03 .top-contents__inner::before {
  width: clamp(75px, 5.83vw, 112px);
  bottom: -0.4rem;
  right: clamp(30px, 2.34vw, 45px);
}
.top-contents__inner {
  padding: clamp(33px, 2.6vw, 50px);
}
.top-contents__wrap {
  gap: clamp(28px, 2.19vw, 42px);
  align-items: flex-start;
}
.top-contents__image {
  width: clamp(160px, 12.5vw, 240px);
  aspect-ratio: 240/160;
  flex-shrink: 0;
}
.top-contents__text p {
  font-size: clamp(10px, 0.78vw, 15px);
}
.top-contents__title .serif {
  width: clamp(194px, 15.16vw, 291px);
  height: clamp(20px, 1.56vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(12px, 0.94vw, 18px);
}
.top-contents__title .main {
  line-height: 1;
  font-size: clamp(16px, 1.25vw, 24px);
}
.top-contents__title .wg_bg {
  font-size: clamp(15px, 1.15vw, 22px);
  padding: clamp(5px, 0.42vw, 8px) clamp(5px, 0.42vw, 8px);
  margin-bottom: clamp(7px, 0.52vw, 10px);
}
.top-contents__title .lg_bg {
  font-size: clamp(15px, 1.15vw, 22px);
  padding: clamp(5px, 0.42vw, 8px) clamp(5px, 0.42vw, 8px);
}
.top-contents .swiper-button-prev,
.top-contents .swiper-button-next {
  height: clamp(53px, 4.17vw, 80px);
  width: clamp(53px, 4.17vw, 80px);
}
.top-contents .swiper-button-prev::after,
.top-contents .swiper-button-next::after {
  height: clamp(53px, 4.17vw, 80px);
  width: clamp(53px, 4.17vw, 80px);
}
.top-contents .swiper-button-prev {
  left: clamp(267px, 20.83vw, 400px);
}
.top-contents .swiper-button-next {
  right: clamp(267px, 20.83vw, 400px);
}

.top-column {
  padding-block: 12.1rem 12.4rem;
}
.top-column .com-title01 {
  margin-bottom: 5.6rem;
}
.top-column .com-title01::before {
  bottom: calc(100% + 0.8rem);
  right: -5.3rem;
  width: 16.5rem;
}

.top-company {
  padding-block: 12.2rem 13.9rem;
  overflow: hidden;
}
.top-company::before {
  left: calc(50% - 18rem);
}
.top-company::after {
  width: 140.5rem;
  aspect-ratio: 1405/294;
  top: 51%;
  transform: translateY(-50%);
  right: calc(50% - 44.5rem);
}
.top-company .com-title01 {
  margin-bottom: 6rem;
}
.top-company__wrap {
  gap: 5.2rem;
  align-items: flex-start;
}
.top-company__image {
  flex-shrink: 0;
  padding-top: 18rem;
}
.top-company__text p {
  line-break: anywhere;
}
.top-company__btn {
  width: 13.5rem;
  margin: 0 -11.2rem 0 auto;
}
.top-company__btn::before {
  width: 26.7rem;
}
.top-company__btn::after {
  width: 4.2rem;
}

.top-contact {
  padding-block: 6.3rem 5.9rem;
}
.top-contact::before {
  left: calc(50% + 30rem);
  width: 18.9rem;
}
.top-contact .com-inbox {
  width: 84rem;
}
.top-contact__item a {
  width: 29.8rem;
  min-height: 7.8rem;
}

/*==============================
    共通まとめ部分
==============================*/
.com-summary {
  padding-block: 12rem;
}

/*==============================
    共通：この記事の監修者
==============================*/
.com-supervisor__box {
  margin-inline: auto;
  width: 70rem;
  padding: 5rem 5rem 5.4rem 5.7rem;
}
.com-supervisor__image {
  flex-shrink: 0;
}

/*==============================
    Lifeスマイルについて
==============================*/
/*お客様の気持ちに寄り添う不動産買取店*/
.about-section {
  padding-block: 0 30rem;
}
.about-section .com-title02 {
  margin-bottom: 3.2rem;
}

/*Lifeスマイルが選ばれる理由*/
.about-reason {
  padding-block: 9rem 12rem;
}
.about-reason::after {
  top: -15.2rem;
  left: calc(50% + 29.7rem);
}
.about-reason .com-inbox::before {
  bottom: -3.2rem;
  left: -7.3rem;
}
.about-reason__list {
  flex-wrap: wrap;
}
.about-reason__item {
  width: 50rem;
}
.about-reason__title {
  min-height: 6.1rem;
}
.about-reason__title span:not(.inline-block) {
  min-width: 15.6rem;
}

/*代表ごあいさつ*/
.about-greeting {
  padding-block: 5.5rem 14.5rem;
}
.about-greeting__wrap {
  align-items: flex-start;
}
.about-greeting__image {
  flex-shrink: 0;
  aspect-ratio: 501/450;
  width: 50.1rem;
  margin-left: -10rem;
}

/*会社概要*/
.about-company {
  padding-block: 12rem;
}

/*==============================
    高松市の不動産相場はいくら？
    エリア別の価格と今後の見通し
==============================*/
/*はじめに*/
.market_price-intro {
  padding-bottom: 17.5rem;
}

/*高松市の不動産市場の特徴*/
.market_price-feature {
  padding-block: 8.8rem 12rem;
}
.market_price-feature__item {
  width: 51rem;
}

/*高松市のマンション相場動向*/
.market_price-apartment {
  padding-block: 12rem;
}
.market_price-apartment__item {
  width: 51rem;
}

/*高松市の戸建て相場動向*/
.market_price-detached_house {
  padding-block: 12rem;
}

/*高松市の不動産相場の今後の見通し*/
.market_price-outlook {
  padding-block: 12.4rem 12rem;
}

/*==============================
    仲介と買取どっちがいい？
    不動産売却で迷ったときに
    買取がおすすめのケース
==============================*/
/*はじめに*/
.case-intro {
  padding-bottom: 15.1rem;
}

/*仲介と買取の基本的な違い*/
.case-difference {
  padding-block: 4.3rem 12rem;
}
.case-difference::before {
  top: -5.3rem;
  left: calc(50% + 32.8rem);
}
.case-difference__item {
  width: 51rem;
}

/*おすすめなケース*/
.case-section {
  padding-block: 28.6rem 12rem;
}
.case-section__item .line::before {
  min-width: 17.6rem;
}
.case-section__box:first-child {
  margin-bottom: 22rem;
}
.case-section__box:first-child .case-section__wrap {
  justify-content: flex-end;
}
.case-section__box:first-child .case-section__list {
  width: 77.5rem;
}
.case-section__box:first-child .case-section__text {
  margin-left: -7rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.case-section__box:first-child .case-section__image {
  margin-top: -14.5rem;
}
.case-section__box:first-child .case-section__title {
  padding-left: 9.2rem;
  width: 86.7rem;
}
.case-section__box:last-child .case-section__wrap {
  flex-direction: row-reverse;
}
.case-section__box:last-child .case-section__image {
  margin-left: -7.6rem;
  margin-top: -14.8rem;
}
.case-section__box:last-child .case-section__title {
  margin-bottom: 6.2rem;
  width: 87.6rem;
}
.case-section__image {
  flex-shrink: 0;
  position: relative;
  z-index: -1;
}

/*==============================
    不動産を売ったときにかかる
    税金一覧
    ｜高松市で売却前に
    知っておきたい費用と特例
==============================*/
/*はじめに*/
.tax-intro {
  padding-bottom: 15rem;
}

/*不動産売却でかかる主な税金*/
.tax-sell {
  padding-block: 12rem 12.5rem;
}
.tax-sell::before {
  top: -1.3rem;
  left: calc(50% + 32rem);
}
.tax-sell::after {
  bottom: 7.6rem;
  left: calc(50% + 26rem);
}
.tax-sell__box {
  width: 52rem;
}

/*節税のための特例制度*/
.tax-saving {
  padding-block: 12.5rem;
}

/*==============================
    お知らせ一覧
==============================*/
.news {
  padding-bottom: 10rem;
}

/*お知らせ共通部分*/
.com-news__list {
  width: 80rem;
}
.com-news__item a:hover {
  transition: opacity 0.3s;
}
.com-news__item a:hover:hover {
  opacity: 0.5;
}

/*タグリスト(PC)
-----------------------------*/
.tag-select {
  text-align: right;
  margin-bottom: 5rem;
}
.tag-select__box {
  min-width: 24rem;
}
.tag-select__box::after {
  right: 1.8rem;
}
.tag-select__dropdown {
  line-height: 1;
  padding: 12px 48px 12px 12px;
  background-color: var(--color-white);
}

/*==============================
    お知らせ詳細
==============================*/
.news-detail {
  padding-block: 0 12rem;
}
.news-detail__box {
  padding: 4rem 4rem 6rem 4rem;
}

/*==============================
  お問い合わせ
==============================*/
.contact {
  padding-bottom: 12rem;
}
.contact .com-table {
  margin-bottom: 3rem;
}
.contact .com-table th {
  width: 35%;
}
.contact .com-btn {
  margin-top: 5rem;
  width: 30rem;
  margin-inline: 0;
}
.contact .contact-submits-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

/*==============================
  お問い合わせ完了
==============================*/
.complete {
  padding-bottom: 12rem;
}
.complete__box {
  text-align: center;
}
.complete__btn {
  margin-top: 5rem;
}
.complete__btn:hover {
  opacity: 0.5;
}

/*==============================
　プライバシーポリシー
==============================*/
.privacy {
  padding-block: 0 12rem;
}
.privacy__box {
  margin-bottom: 5rem;
}
.privacy__box:last-child {
  margin-bottom: 0;
}

/*==============================
    サイトマップ
==============================*/
.site {
  padding-block: 0 12rem;
}
.site .com-inbox {
  width: 70rem;
}
.site__list {
  display: flex;
  flex-direction: column;
}
.site__item {
  height: 7.5rem;
}
.site__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.site__item a::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 1;
  transform: rotate(-45deg);
}
.site__item a:hover {
  transition: all 0.3s;
  opacity: 0.5;
}
.site__item a:hover::after {
  transform: rotate(-45deg) translate(5px, 5px);
  transition: all 0.3s;
}

/*==============================
    このページは存在しません
==============================*/
.e404 {
  padding-block: 0 12rem;
}
/*==============================
    フッター
==============================*/
.footer__inner {
  padding-block: 8rem 6.3rem;
  width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  padding-top: 0.8rem;
  margin-bottom: 3.4rem;
}
.footer__box-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-nav__list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 3.3rem 7.4rem;
}
.footer-nav__item {
  font-size: 1.5rem;
  line-height: 1;
}
.footer-nav__item a {
  position: relative;
  transition: all 0.3s;
}
.footer-nav__item a::before {
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  content: "";
  border-radius: 100vh;
  background-color: var(--color-lightgreen);
  display: block;
  aspect-ratio: 1;
  width: 0.7rem;
}
.footer-nav__item a:hover {
  opacity: 0.5;
}
.footer__btn {
  width: 30rem;
  transition: all 0.3s;
}
.footer__btn:hover {
  opacity: 0.5;
}
.footer__bottom {
  background-color: var(--color-green);
  padding-block: 2.9rem;
  line-height: 1;
}
.footer__bottom-inner {
  width: 1080px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom small {
  color: var(--color-white);
  font-size: 1.5rem;
}
.footer-sub__list {
  display: flex;
  gap: 0.25em;
}
.footer-sub__item {
  font-size: 1.5rem;
  color: var(--color-white);
  line-height: 1;
  flex-shrink: 0;
  display: flex;
}
.footer-sub__item::after {
  content: "｜";
  margin-left: 0.25em;
}
.footer-sub__item:last-child::after {
  display: none;
}
.footer-sub__item a {
  transition: all 0.3s;
}
.footer-sub__item a:hover {
  opacity: 0.5;
}
.footer-sub__item .current {
  color: var(--color-orange);
}
.footer .nav-link--site, .footer .nav-link--privacy {
  display: none;
}