:root{
  --fv-gap: 0px;
}  
@media screen and (max-width: 767px) {
  .top-text{
    font-size: 13px !important;
    letter-spacing: 1.3px !important;
    line-height: 20px !important;
    font-weight: 500;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

html.is-scroll-locked,
body.is-scroll-locked{
  overflow: hidden;
  height: 100%;
}
/* ★ 540px(=SP寄り)でも top-title を小さくする */
@media screen and (max-width: 767px) {
  .top-title{
    font-size: 61px !important;
    line-height: 61px !important;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* button-01の査定依頼ボタン専用色・サイズ指定（yonego方式） */
.button-01.assessment {
    --fg: #fff;
    --fg-hover: #e85959;
    background: #e85959;
    width: 380px;
    height: 64px;
    font-size: 18px;
    margin-top: 40px;
}



@property --floatY {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

.sp-only {
    display: none;
}

@supports (-moz-appearance: auto)  {
    .img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 21.25% !important;
    background-color: #8ed28f;
    }
}  

.img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    background-color: #8ed28f;
    min-height: 100vh;
    overflow: hidden;
    /* aspect-ratio: 1600 / 969; */
}

.img-wrapper.is-fixed {
    min-height: 0;      /* ★100vhを解除 */
    height: auto;
    aspect-ratio: 1600 / 969;
}


@media screen and (max-width: 767px) {
  .img-wrapper.is-fixed {
    min-height: 0;   /* ★100vhを解除 */
    height: auto;
    aspect-ratio: 390 / 458;
  }
}


.size-ex {
    aspect-ratio: 1600 / 969;
    position: absolute;
    width: 100vw;
}

@media screen and (max-width: 767px) {
    .size-ex {
        aspect-ratio: 390 / 458;
    }
}

.img-wrapper.hero-img {
    width: 100%;
    height: auto;
}

.img-wrapper.bubble-img {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 4px;
}
img {
    width: 100%;
    height: auto;
}
.bubble-img {
    max-width: 200px;
    width: 10%;
}

@supports (-moz-appearance: auto)  {
    .greenback {
    width: 100%;
    height: 36% !important;
    background-color: #8ed28f;
    }
}  


.bubble-img,
.top-text {
  opacity: 0;
  transition:
    opacity 1s ease-in-out,
    transform 1s ease-in-out;
}


.bubble-img.appear,
.top-text.appear {
  opacity: 1;
}


.greenback {
    width: 100%;
    height: 100%;
    background-color: #8ed28f;
}
.greenback h1,
.greenback p,
.greenback div,
.greenback section {
    z-index: 1;
}

/* .bubble-img {
    position: absolute;
    z-index: 10;
    width: 100%;   
    max-width: 160px; */
.bubble-img{
  position: absolute;
  z-index: 10;

  --tx: -50%;
  --ty: -100%;
  --hoverY: 0px;
  --hoverS: 1;

  transform: translate(var(--tx), var(--ty)) translateY(var(--hoverY)) scale(var(--hoverS));
  transition: transform .4s ease-out;
}

.bubble-img:hover{
  --hoverY: -6px;
  --hoverS: 1.05;
}
.bubble-img.sell{ top:50.6%; left:40%; }
.bubble-img.search{ top:49.5%; left:8%; }
.bubble-img.orderhome{ top:58%; left:62%; }
.bubble-img.company{ top:88%; left:75%; }
.bubble-img.reform{ top:46%; left:73%; }
.bubble-img.spot{ top:40%; left:58.5%; }






.top-title.move-down {
    transform: translateX(-50%);
}



.top-text.move-down {
    transform: translate(-50%, -50%);
}


.text-group{
  position: absolute;
  top: var(--text-group-top, 25%);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: top 4s cubic-bezier(0.4,0,0.2,1);
}


/* ★ 中身は absolute をやめて text-group の中で普通に積む */
.top-title{
    
  position: static;
  transform: none;
  font-weight: bold;
    font-size: 101px;
    line-height: 101px;
    letter-spacing: 2.4px;
    text-align: center;
    max-width: 575px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.top-text{
  position: static;
  transform: none;
    margin-top: 10px;
  font-weight: bold;
  font-size: clamp(14px, 3vw, 16px);
  letter-spacing: clamp(1.4px, 3vw, 1.6px);
  line-height: 32px;
  text-align: center;
  color: #222222;
}

.main-padding {
    width: 100%;
    padding: 0 40px 100px 40px;
}

/*top visual*/
.fv-wrapper {
  position: relative;
  overflow: hidden;
}

.fv-wrapper img{
    transform: translateY(0);
}

.fv-wrapper img.is-animate {
    animation: slideDown 4s ease-out forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(var(--slide-diff));
  }
}

/* .bg-main {
  width: 100%; */
  /* transform: scale(2); */
  /* transform: scale(2.1);
  transform-origin: top center;
  transition: transform 4s ease-in-out;
} */

/* .bg-main.zoom-out {
  transform: scale(1);
} */

.top-cover {
  position: absolute;
  /* top: -50px; */
  bottom: 22px;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(0);
  transition:
    opacity 1s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.top-cover.enter {
  opacity: 1;
  transform: translateY(30px);
}

@keyframes bounce-mini {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-15px); }
  60%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

.top-cover.bounce-again {
  animation: bounce-mini 0.8s ease-in-out;
}

/* カード全体 */
.search-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.search-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 24px;
    min-width: 245px;
    max-width: 360px;
    background-color: #ffffff;
    border: 2px solid transparent;
}

/* PC：4枚並び */
.search-card {
    flex: 0 1 calc(25% - 40px); /* 4列 */
}

/* タブレット：2枚並び */
@media (max-width: 1024px) {
    .search-card {
        flex: 0 1 calc(50% - 40px); /* 2列 */
    }
}

/* スマホ：1枚並び */
@media (max-width: 600px) {
    .search-card {
        flex: 0 1 100%; /* 1列 */
        min-width: 100%;
    }
}

/* カード色個別指定 */
.search-card.yonego {
    border-color: #eb8e22;
}
.search-card.tottori {
    border-color: #e6c657;
}
.search-card.matsue {
    border-color: #eb9293;
}
.search-card.izumo {
    border-color: #7fb2f1;
}

/* タイトル */
.search-card-title {
    display: flex;
}
.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.area-title {
    font: bold 24px/28px "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2.4px;
    color: #222;
    text-align: center;
}

.sub {
    font: bold 18px/28px "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 1.8px;
    color: #222;
    text-align: center;
}

/* サブテキスト */
.area-title-text {
    font-weight: bold;
    font-size: 16px;
    line-height: 45px;
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 0.8px;
    text-align: left;
}

/* カード色個別指定（文字色） */
.area-title-text.yonego {
    color: #eb8e22;
    white-space: nowrap;
}
.area-title-text.tottori {
    color: #e6c657;
}
.area-title-text.matsue {
    color: #eb9293;
}
.area-title-text.izumo {
    color: #7fb2f1;
}

/* 画像 */
.area-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-top: 15.5px;
}

/* フッター */
.search-card-footer {
    margin-top: 22px;
}

/* ボタン共通 */
.button {
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
    font-family: "Ubuntu", sans-serif;
}

.contact-actions .button{
    min-width: 148px;
}

/* ボタン色個別指定 */
.button-01.yonego{
  --fg: #fff;  
  --fg-hover: #eb8e22;
  background: #eb8e22;
}

.button-01.tottori{
  --fg: #fff;  
  --fg-hover: #e6c657;
  background: #e6c657;
}

.button-01.matsue{
  --fg: #fff;  
  --fg-hover: #eb9293;
  background: #eb9293;
}


.button-01.izumo{
  --fg: #fff;  
  --fg-hover: #7fb2f1;
  background: #7fb2f1;
}





/* まちスポット特集 */
.spot-inner::before {
    content: "Special Contents!!";
    font-weight: bold;
    font-size: clamp(32px, 8vw, 100px);
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.32);
    transform: translate(0%, -100%);
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 1;
}

.spot-section {
    margin-top: 150px;
}
.spot-inner {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
    background-color: #fff;
    padding: 40px 60px 75px 70px;
}
.spot-inner-top {
    display: flex;
    gap: 6%;
}
.spot-inner-top-left,
.spot-inner-top-img {
    width: 47%;
}

.spot-hukidashi-imgs{
    width:100%;
    max-width: 300px;
}
.spot-title-imgs{
    width:100%;
    max-width: 400px;
}

.spot-heading {
    margin-top: 10px;
    font-weight: bold;
    font-size: 24px;
    line-height: 45px;
    letter-spacing: 1.2px;
    text-align: left;
}
.accent {
    color: #2b9b7d;
}
.spot-subheading {
    font-weight: bold;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 2px;
    text-align: left;
}
.spot-description {
    margin-top: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-align: left;
}
.spot-button {
    width: 240px !important;
    height:48px !important;
    margin-top: 55px;
    background-color: #2b9b7d;
    --btn-bg: #2b9b7d;
  --btn-fg: #fff;
  --btn-border: transparent;


  --btn-bg-hover: #fff;
  --btn-fg-hover: #2b9b7d;
  --btn-border-hover: #2b9b7d;

  /* dot */
  --dot-color: #fff;
  --dot-size: 8px;
  --dot-scale: 2.2;
  --dot-opacity-hover: 0;
  --dot-right: 14px;

  --dot-dur: .22s;
  --btn-dur: .22s;
}

.spot-inner-under {
    position: relative;
    margin-top: 65px;
    width: 100%;
}
.spot-map-img {
    width: 80%;
}
.spot-imgs,
.spot-texts {
  position: absolute;
  transform: translate(-50%, -100%);
}

.spot-texts {
    max-width: 193px;
    font-weight: bold;
    font-size: clamp(16px, 2vw, 32px);
    line-height: clamp(20px, 3vw, 40px);
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 1.6px;
    text-align: left;
}
.spot-bubble-img{
  max-width: 140px;
  width: 12%;
  position: absolute;
   transform: translate(-50%, calc(-100% + var(--floatY)));
  will-change: transform;
}

.spot-link{
  display:inline-block;
}

.spot-link:hover{
  animation: fluffy1 2s ease-in-out infinite alternate;
}

@keyframes fluffy1{
  0%   { --floatY: 0px; }
  20%  { --floatY: -11px; }
  60%  { --floatY: 0px; }
  100% { --floatY: -11px; }
}

.spot-yamakage {
    max-width: 350px;
}

.human-imgs {
    max-width: 316px;
    width: 100%;
}

.kazoku-img {
    top: -8%;
    left: 50%;
    max-width: 160px;
}
.kodomo-img {
    top: 81%;
    left: 85%;
}
.izumo-img {
    top: 63%;
    left: 14%;
}
.matsue-img {
    top: 18%;
    left: 27%;
}
.yonego-img {
    top: 45%;
    left: 40%;
}
.tottori-img {
    top: 36%;
    left: 60%;
}
.izumo-text {
    top: 72%;
    left: 15%;
    color: #7fb2f1;
}
.matsue-text {
    top: 28%;
    left: 26%;
    color: #eb9293;
}
.yonego-text {
    top: 62%;
    left: 42%;
    color: #eb8e22;
}
.tottori-text {
    top: 57%;
    left: 62%;
    color: #e6c657;
}
@media screen and (max-width: 519px) {
.spot-yamakage {
    max-width: 210px;
}
}

/* service + 会社案内　ほぼ同じため流用 */
.service-section,
.company-section {
    padding: 90px 100px;
}

.service-left{
min-width: 400px;
}

.service-inner {
    max-width: 1250px;
    width: 100%;
    display: flex;
    gap: 90px 100px;
    margin: 0 auto;
}
.heading-en {
    font-weight: bold;
    font-size: 80px;
    line-height: 98px;
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 4px;
    color: #000;
    text-align: left;
    letter-spacing: 0.1em;
}
.description {
    font-weight:500;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #222222;
    text-align: left;
}
.service-image {
    max-height: 60px;
    width: auto;
}
.service-right {
    width: 100%;
}
.service-item {
    background: repeating-linear-gradient(
            to right,
            #000 0 2px,
            transparent 2px 6px
        )
        top/100% 2px no-repeat;
}
.service-item-inner {
    display: flex;
    padding: 40px 0;
}

.border {
    height: 2px;
    padding: 0;
}

.item-inner-right {
    width: 100%;
    height: 100%;
}
.service-item-en {
    font-weight: bold;
    font-size: 16px;
    line-height: 45px;
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 0.8px;
    color: #2b9b7d;
    text-align: left;
}
.service-item-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 45px;
    letter-spacing: 0.1em;
    color: #222222;
    text-align: left;
    margin-top: 2px;
}

.item-inner-under {
    width: 100%;
    display: flex;
    gap: 0px;
    justify-content: space-between;
    align-items: end;
}

.service-item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.05em;
    color: #222222;
    text-align: left;
    margin-top: 23px;
}
.service-btn{
  max-width: 144px;
  height: 40px;
  padding: 0 24px;

  --btn-bg: #2b9b7d;
  --btn-fg: #fff;
  --btn-border: transparent;


  --btn-bg-hover: #fff;
  --btn-fg-hover: #2b9b7d;
  --btn-border-hover: #2b9b7d;

  /* dot */
  --dot-color: #fff;
  --dot-size: 8px;
  --dot-scale: 2.2;
  --dot-opacity-hover: 0;
  --dot-right: 14px;

  --dot-dur: 1.22s;
  --btn-dur: 1.22s;

}
.service-btn.button {
    display: inline-flex;
}

.button-01{
  position: relative;
  isolation: isolate;

  width: 144px;
  height: 40px;
  border-radius: 100px;
  padding: 10px 30px 10px 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "Zen Kaku Gothic New", sans-serif;

  /* 色（反転用） */
  --fg: #fff;
  --fg-hover: #2b9b7d;

  color: var(--fg);
  font-weight: bold;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: .01em;
  text-align: center;

  background: #2b9b7d;
  border: 1px solid var(--btn-border, transparent);

  cursor: pointer;
  overflow: hidden;

  transition: color .0s ease;
}

/* ===== 右端のドット ===== */
.button-01::after{
  content: "";
  position: absolute;
  right: 18px;               /* ← 起点（重要） */
  top: 50%;
  transform: translateY(-50%);

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background-color: var(--fg);
  transition: background-color .25s ease;
  z-index: 1;
}

/* ===== dot起点で広がる背景 ===== */
.button-01::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;

  /* dot位置を中心に円を作る */
  clip-path: circle(
    0px at calc(100% - 18px) 50%
  );

  transition: clip-path .45s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}

/* hover時：円が広がる */
.button-01:hover::before,
    .button-01:focus-visible::before{
    clip-path: circle(
        800px at calc(100% - 18px) 50%
    );
}

/* hover時：文字色反転 */
.button-01:hover,
.button-01:focus-visible{
  color: var(--fg-hover);
  outline: none;
}

/* hover時：ドット色反転 */
.button-01:hover::after,
.button-01:focus-visible::after{
  background-color: var(--fg-hover);
}




/* 会社案内 */
.company-section {
    margin: 0 auto;
    background-color: #f7f4ed;
}

/* estate-selectモーダル内のオレンジボタンhover時の文字色 */
.button-01.background-color--orange:hover,
.button-01.background-color--orange:focus-visible {
    color: #eb8e22;
}
.button-01.background-color--orange:hover::after,
.button-01.background-color--orange:focus-visible::after {
    background-color: #eb8e22;
}

/* イエローボタン */
.button-01.background-color--yellow:hover,
.button-01.background-color--yellow:focus-visible {
    color: #e6c657;
}
.button-01.background-color--yellow:hover::after,
.button-01.background-color--yellow:focus-visible::after {
    background-color: #e6c657;
}

/* ピンクボタン */
.button-01.background-color--pink:hover,
.button-01.background-color--pink:focus-visible {
    color: #eb9293;
}
.button-01.background-color--pink:hover::after,
.button-01.background-color--pink:focus-visible::after {
    background-color: #eb9293;
}

/* ブルーボタン */
.button-01.background-color--blue:hover,
.button-01.background-color--blue:focus-visible {
    color: #7fb2f1;
}
.button-01.background-color--blue:hover::after,
.button-01.background-color--blue:focus-visible::after {
    background-color: #7fb2f1;
}
.button-01.background-color--orange:hover,
.button-01.background-color--orange:focus-visible {
    color: #eb8e22;
}
.company-inner {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
}
.company-overview {
    display: flex;
    gap: 56px;
    align-items: flex-end;
}

.company-contact {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    margin-top: 90px;
    background-color: #ffffff;
    border: 4px solid #e85959;
    border-radius: 1000px;
    box-sizing: border-box;
    padding: 40px 40px;
    text-align: center;
}
.contact-phone-wrap{
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.company-right{
    display: flex;
 justify-content: space-between;
      width: 100%;
      gap:3%;
    align-items: end;
}
.phone-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}

.phone-icon{
  height: 1.6em;
  width: auto;
  flex-shrink: 0;
}
.contact-message {
    font: bold 24px/48px "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 2.4px;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 0 20px;
}
.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    margin-top: 10px;
    gap: 40px;
}

.contact-phone {
    font-size: 40px;
    color: #e85959;
    font-weight: bold;
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
}

.contact-btn{
  width: 240px;
  height: 64px;
  --fg: #fff;  
  --fg-hover: #e85959;
  background: #e85959;


  --btn-bg: #e85959;
  --btn-fg: #fff;
  --btn-border: transparent;


  --btn-bg-hover: #fff;
  --btn-fg-hover: #e85959;
  --btn-border-hover: #e85959;


  --dot-color: #fff;
  --dot-size: 8px;
  --dot-scale: 2.2;
  --dot-opacity-hover: 0;
  --dot-right: 18px;

  --dot-dur: .24s;
  --btn-dur: .24s;
}

@media screen and (max-width: 1360px) {
    .service-inner {
        display: inline;
    }
}

@media screen and (max-width: 1280px) {
    .pp-only {
        display: none;
    }

    .company-overview{
        display: grid;
    }
}

@media screen and (max-width: 1024px) {
    .contact-actions{
        gap:10px;
    }
}





@media screen and (max-width: 768px) {
  .service-item-inner{
    display: grid;
  }

  .service-section .service-item-inner{
    padding-bottom: 0;
  }

  .contact-actions {
    display: grid;
    width: 100%;
    align-content: center;
    gap: 20px;
  }

  .contact-actions .button{
    width: 100%;
    padding: 10px 10px;
  }

  .tb-only{
    display: none;
  }
}

/* ★ FV：iPad(768-1024) の is-fixed 比率調整 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .img-wrapper.is-fixed {
    min-height: auto;
    aspect-ratio: 390 / 358;
  }
}

@media screen and (max-width: 767px) {
  .img-wrapper.is-fixed {
    min-height: auto;
    aspect-ratio: 390 / 458;
  }
}
 .tb-only{
        display: none;
    }

@media screen and (max-width: 1024px) {
    .bubble-img {
        display: none;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .company-btn {
        width: 250px;
    }
    .company-img {
        height: auto !important;
    }
    .tb-only{
        display: block;
    }

}
@media screen and (min-width: 850px) and (max-width: 1024px) and (orientation: landscape) {
    .search-cards {
        flex-wrap: nowrap;   /* ← 1列に固定 */
    }
    .search-card {
    min-width: 200px;
    }
    .area-title {
    font: bold 16px / 28px "Zen Kaku Gothic New", sans-serif;
    }
    .area-title-text {
    font-size: 14px;
    }
    .search-cards {
    gap: 12px;
    }
}

@media screen and (max-width: 519px) {

      #fv-lottie-title {
    width: 320px;
    margin: 0 auto;
  }

  #fv-lottie-title svg {
    width: 100% !important;
    height: auto !important;
  }

    .top-title.move-up {
    top: 15%;

}

     .contact-actions {
        display: inline-block;
        width: 100%;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }

    .search-cards {
    gap: 24px;
}
    .top-title {
    top: 20%;}


    .main-padding {
        width: 100%;
        padding: 0 32px 80px;
    }
    .bubble-img {
        display: none;
    }
    .search-cards {
        flex-wrap: wrap;
    }
    .company-overview {
        display: inline;
    }
    .flex-sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .flex-center {
        width: 50%;
    }
    .area-img {
        width: calc(50% - 8px);
    }
    .search-card-title {
        display: flex;
        align-items: baseline;
        white-space: nowrap;
    }
    .area-title {
        font: normal normal bold 18px/28px "Zen Kaku Gothic New";
        letter-spacing: 1.8px;
    }
    .sub {
        font: normal normal bold 14px/28px "Zen Kaku Gothic New";
        letter-spacing: 1.4px;
    }
    .area-title-text {
        font: normal normal bold 12px/20px "Ubuntu";
        letter-spacing: 0.6px;
    }
    .search-card-footer {
        margin-top: 16px;
    }
    .button-01.yonego,
    .button-01.tottori,
    .button-01.matsue,
    .button-01.izumo {
        font: normal normal bold 14px/32px "Zen Kaku Gothic New";
        letter-spacing: 1.4px;
        min-width: 100px;
        width: 120px;
        height: 40px;
    }
    .area-img {
        margin-top: 0;
    }

    .spot-inner {
        padding: 40px 16px 80px 16px;
    }
    .spot-inner-top {
        display: inline-block;
    }
    .spot-inner-top-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .spot-heading {
        font: normal normal bold 19px/45px "Zen Kaku Gothic New";
        letter-spacing: 0.95px;
    }
    .spot-subheading {
        font: normal normal bold 22px/45px "Zen Kaku Gothic New";
        letter-spacing: 1.1px;
        margin-bottom: 24px;
    }
    .spot-title-text {
        text-align: center;
    }
    .spot-title-text2 {
        font: normal normal bold 23px/45px "Zen Kaku Gothic New";
        font-size: 22px;
    }
    .spot-inner-top-img {
        min-width: 100%;
    }
    .spot-description {
        margin-top: 24px;
        font: normal normal medium 16px/32px "Zen Kaku Gothic New";
        letter-spacing: 1.6px;
    }
    .spot-map-img {
        margin-top: 24px;
        /* 130%でXDと同じになります */
        width: 130%;
        align-self: center;
    }
    .spot-button {
        width: 240px;
        height: 48px;
        margin-top: 24px;
        align-self: center;
    }
    .spot-section{
        margin-top: 60px;
    }


    /* サービス */
    .service-decoration {
        margin-bottom: 32px;
    }
    .item-inner-right {
        padding: 32px 0;
    }

     .item-inner-under {
        display: inline;
    }

    .service-item-en {
        font: normal normal bold 16px/18px "Ubuntu";
        letter-spacing: 0.8px;
    }
    .service-item-title {
        margin-top: 8px;
        font: normal normal bold 24px/35px "Zen Kaku Gothic New";
        letter-spacing: 1.2px;
    }
    .service-item-text {
        font: normal normal 500 16px/32px "Zen Kaku Gothic New";
        letter-spacing: 1.6px;
        margin-bottom: 32px;
        margin-top: 10px;
    }

    /* 会社案内 サービスと共通パーツもこちら */
    .service-section{
    padding: 80px 32px 80px;
    }

    .service-left {
    min-width: 100%;
}
    .company-section {
    padding: 70px 32px 115px;
    }

    .service-item-inner .item-img {
    max-width: 100px;
}
    .service-image {
        max-width: 190px !important;
    }
    .heading-en {
        font: normal normal bold 40px/45px "Ubuntu";
        letter-spacing: 2px;
    }
    .description {
        margin-top: 40px;
        margin-bottom: 24px;
        font: normal normal 500 16px/32px "Zen Kaku Gothic New";
        letter-spacing: 1.6px;
    }
    .button-01 {
        height: 40px;
        float: none;
        font: normal normal bold 14px/32px "Zen Kaku Gothic New";
        letter-spacing: 1.4px;
    }

        .service-item {
        padding: 0px 0px;
    }

    /* コンタクト */
    .company-right{
        display:grid;
    }
    .company-contact {
        width: 100%;
        max-width: 1240px;
        margin: 0 auto;
        background-color: #e85959;
        border: none;
        border-radius: 0;
        box-sizing: border-box;
        padding: 40px 32px 52px;
        align-items: center;
        text-align: center;
    }
    .contact-message {
        font: normal normal bold 20px/36px "Zen Kaku Gothic New";
        letter-spacing: 2px;
        color: #ffffff;
    }

    .contact-phone {
        font: normal normal bold 34px/51px "Ubuntu";
        letter-spacing: 3.4px;
        color: #ffffff;
    }
    .contact-btns {
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap:6%;
    }
    .contact-btn {
        width: 160px;
        height: 48px;
        color: #e85959 !important;
        background-color: #fff !important;

        /* 確認できなかったため適当 */
        font: normal normal bold 16px/32px "Zen Kaku Gothic New" !important;
        letter-spacing: 1.6px;

        --btn-bg: #fff;
        --btn-fg: #e85959;
        --btn-border: transparent;


        --btn-bg-hover: #e85959;
        --btn-fg-hover: #fff;
        --btn-border-hover: #fff;


        --dot-color: #e85959;
    }
    .contact-btn::before {
          display: none;
    }

}

/* トップ画面物件選択モーダル
------------------------------------*/
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    z-index: 9990;
}

/* 背景(疑似要素) */
.modal-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* モーダル本体 */
.modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 95px 16px 118px 16px;
    width: 90%;
    max-width: 1246px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 4px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #2B9B7D;
}

.modal-content-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2.4px;
    line-height: calc(36 / 24);
    margin-bottom: 66px;
}

.modal-content .close-modal-btn {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    right: 27px;
    top: 27px;
    width: 26px;
    height: 26px;
}

.modal-content .close-modal-btn::before,
.modal-content .close-modal-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 1px;
    background: #707070;
    transform-origin: center;
}

/* 1本目（45度） */
.modal-content .close-modal-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* 2本目（-45度） */
.modal-content .close-modal-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.estate-select {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.estate-select__item {
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    width: 255px;
    height: 187px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.estate-select__title {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1.8px;
    margin-bottom: 4px;
}

.estate-select__area {
    font-size: 24px;
    letter-spacing: 2.4px;
}

.estate-select__en {
    font-family: "Ubuntu", sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 28.75px;
}

.estate-select__link {
    width: 144px;
    height: 40px;
    border-radius: 22px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.6px;
}

.estate-select__link::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 21px;
    border-radius: 50%;
}
@media screen and (max-width: 1024px) {
    .modal-content-header {
    font-size: 15px;
    margin-bottom: 30px;
    }
    .estate-select__en {
    margin-bottom: 15px;
    }
    .estate-select__item {
    height: 160px;
    }
}


@media screen and (max-width: 767px) {
  .text-group .top-title{
    font-size: 61px !important;
    line-height: 61px !important;
    max-width: 350px !important;
  }

  .text-group .top-text{
    font-size: 13px !important;
    letter-spacing: 1.3px !important;
    line-height: 20px !important;
    font-weight: 500 !important;
    margin: 10px auto 0 !important;
  }
}

@media screen and (min-width: 1025px) and (max-width: 2000px) {
    .img-wrapper.is-fixed {
        aspect-ratio: 1600 / 1080;
    }
    .bubble-img.sell{ top:53%; left:40%; }
    .bubble-img.search{ top:54%; left:8%; }
    .bubble-img.orderhome{ top:62%; left:62%; }
    .bubble-img.company{ top:92%; left:75%; }
    .bubble-img.reform{ top:50%; left:73%; }
    .bubble-img.spot{ top:44%; left:58.5%; }
}
@media screen and (min-width: 1025px) and (max-width: 1100px) {
        #fv-lottie-title {
            width: 85%;
            margin: 0 auto;
        }
    .bubble-img.sell{ top:56%; left:40%; }
    .bubble-img.search{ top:53%; left:8%; }
    .bubble-img.orderhome{ top:61%; left:62%; }
    .bubble-img.company{ top:91%; left:75%; }
    .bubble-img.reform{ top:50%; left:73%; }
    .bubble-img.spot{ top:43%; left:58.5%; }
}