@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

/* ----- トップ：ローディングオーバーレイ ----- */
#loading {
    width: 100vw;
    height: 100vh;
    transition: opacity 1s ease, visibility 1s ease;
    background: #ffffff url(../images/top/loading__bg.webp) center / cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    contain: layout style paint;
    transform: translateZ(0);
    backface-visibility: hidden;
}

#loading.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#loading .logo_fadein__revealer {
    clip-path: inset(0 100% 0 0);
    animation: logo-fadein-reveal 2.1s cubic-bezier(0.45, 0, 0.2, 1) 0.12s forwards;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: paint;
    will-change: clip-path;
}

#loading .logo_fadein__logo {
    display: block;
    width: 600px;
    max-width: min(78vw, 860px);
    height: auto;
}

@keyframes logo-fadein-reveal {
    to {
        clip-path: inset(0 0 0 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    #loading .logo_fadein__revealer {
        animation: none;
        clip-path: none;
        will-change: auto;
    }

    #loading {
        transition: opacity 0.2s ease, visibility 0.2s ease;
        contain: none;
        transform: none;
        backface-visibility: visible;
    }
}
.icon-arrow {
  width: 17px;
  height: 8px;
  fill: #FFF;
  stroke: none;
}

/* ----- hero MV（Figma: node 13229-337）PCのみ px ----- */
/* 親（.l-contents 等）の max-width 内でもビューポート幅いっぱいに広げる */
.hero {
    position: relative;
    z-index: 2;
    width: 100vw;
    max-width: 100vw;
    /* margin-left: calc(50% - 50vw); */
    /* margin-right: calc(50% - 50vw); */
    box-sizing: border-box;
}
.mainview__inner {
  width: 1140px;
  margin: 0 auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.mainview__inner::after {
  content: '';
  background: url(/images/top/img_mainview-deco1.svg) no-repeat center / cover;
  display: block;
  width: 1920px;
  height: 959px;
  position: absolute;
  bottom: -626px;
  right: -382px;
  z-index: -1;
  pointer-events: none;
}
.hero__inner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    /* 親の height が無くても高さが決まる（img width/height 1920×920 に合わせた比率） */
    height: auto;
    aspect-ratio: 1920 / 812;
    /* 高さの上限だけ付けたい場合は下を有効化（全体比率は維持されず余白が出る場合あり） */
    max-height: 812px;
    margin-top: 110px;
    min-width: 1200px;
}

/* 装飾・ベール・グラデーション用の疑似要素（中身はデザインに合わせて追記） */
.hero__inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.hero__swiper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.hero__swiper.is-crossfading::before {
    opacity: 0.22;
}

/* Swiper フェードのイージング（GPU） */
.hero__swiper.swiper-fade .swiper-slide {
    will-change: opacity;
    transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.l-main * {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

.l-main {
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#gradient-top-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #f3fcf9;
    --gradient-color-2: #ecfffe;
    --gradient-color-3: #f4fded;
    --gradient-color-4: #e9f6fc;
    --gradient-color-5: #FFF;
    z-index: 0;
    pointer-events: none;
}
#gradient-second-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #EEFDEB;
    --gradient-color-2: #EEFDEA;
    --gradient-color-3: #E3F8E2;
    --gradient-color-4: #EFFDEC;
    z-index: -1;
    pointer-events: none;
}
#gradient-third-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #F1FDF3;
    --gradient-color-2: #F5FFF4;
    --gradient-color-3: #F0FFF9;
    --gradient-color-4: #F9FFFB;
    z-index: 0;
    pointer-events: none;
}
#gradient-four-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #E2FFFD;
    --gradient-color-2: #DFFFF3;
    --gradient-color-3: #EDFFFE;
    --gradient-color-4: #F0FFF9;
    z-index: 0;
    pointer-events: none;
}
#gradient-fifth-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #EEFFF7;
    --gradient-color-2: #FFFFFF;
    --gradient-color-3: #FFFFF3;
    --gradient-color-4: #FAFFFD;
    z-index: 0;
    pointer-events: none;
}
#gradient-six-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #F0FFF9;
    --gradient-color-2: #F6FFF5;
    --gradient-color-3: #F9FFF2;
    --gradient-color-4: #F7FFFE;
    z-index: 0;
    pointer-events: none;
}
#gradient-seven-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #E9FFE5;
    --gradient-color-2: #F0FFE7;
    --gradient-color-3: #DFFBED;
    --gradient-color-4: #FBFFFB;
    z-index: 0;
    pointer-events: none;
}
#gradient-eight-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #E2FBF3;
    --gradient-color-2: #FAFEFD;
    --gradient-color-3: #F1FFF7;
    --gradient-color-4: #FBFFFE;
    z-index: 0;
    pointer-events: none;
}
#gradient-nine-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #B2FDEF;
    --gradient-color-2: #D3FFE0;
    --gradient-color-3: #DFF5FE;
    --gradient-color-4: #F0FEF9;
    z-index: 0;
    pointer-events: none;
}
#gradient-ten-canvas {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    --gradient-color-1: #F1FDF3;
    --gradient-color-2: #F5FFF4;
    --gradient-color-3: #F0FFF9;
    --gradient-color-4: #F9FFFB;
    z-index: 0;
    pointer-events: none;
}
.gradient__warp {
    position: relative;
}
[class*="gradient__cover--"] {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    height: 220px;
    padding: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.72) 28%, rgba(255, 255, 255, 0.35) 56%, rgba(255, 255, 255, 0.08) 82%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(180deg);
    z-index: 0;
}
.gradient__cover--bottom {
    transform: rotate(0deg);
    bottom: 0px;
    top: inherit;
}

.hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__media {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
}

/* ズームアップ（等倍→やや拡大）。0% は .hero__img の scale(1) と一致 */
.hero__img--zoom {
    /* animation: hero-mv-zoom-in 7s cubic-bezier(0.33, 0.02, 0.2, 1) both; */
}

@keyframes hero-mv-zoom-in {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

.hero__gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 3;
    pointer-events: none;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61%, rgba(0, 0, 0, 1) 100%); */
}

.hero__copy {
    position: relative;
    left: 0;
    right: 0;
    bottom: 12.5vw;
    margin: auto;
    z-index: 4;
    width: 100%;
    width: 59.5vw;
    height: fit-content;
}

.hero__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Old Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.448;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1);
}

.hero__lead {
    margin: 15px 0 0;
    padding: 0 0 0 12px;
    font-family: 'Zen Old Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 1);
}

.hero__pagination {
    position: absolute;
    right: 40px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    width: auto;
    margin: 0;
    pointer-events: auto;
}

.hero__pagination .hero__bullet {
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
    cursor: pointer;
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero__pagination .hero__bullet--active {
    background-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.05);
}

.hero--single .hero__pagination {
    display: none;
}
.hero__inner .swiper-horizontal>.swiper-pagination-bullets,
.hero__inner .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero__inner .swiper-pagination-custom,
.hero__inner .swiper-pagination-fraction {
    bottom: 26px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.mainview__customer-catch {
  position: absolute;
  top: 36.3%;
  left: 45.4%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* --- hero_slide --- */
.hero_slide_wrap {
  width: 40.47vw;
  justify-content: unset;
  gap: 0.54vw;
  transform: translateX(20px);
  transition: opacity .3s cubic-bezier(0, .47, .8, 1),
              transform .3s cubic-bezier(0, .47, .8, 1);
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1.9s;
  position: absolute;
  top: 0;
  right: 7.11vw;
}
.active .hero_slide_wrap {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 1.9s;
}
.hero_slide {
  width: 13.1vw;
  height: 9.9vw;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin: 0 !important;
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero_slide01::before,
#hero_slide03::before,
#hero_slide08::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: .9;
}
.hero_slide li {
  width: 100%;
  height: 100% !important;
}
.hero_slide li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero_slide .slick-list {
  position: relative;
  overflow: hidden;
  height: 100% !important;
}
.slick-track {
  height: 100%;
}
.slick-slide div {
  height: 100%;
}

/* --- hero_news --- */
.hero_news {
  position: relative;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 11;
  transform: translateX(20px);
  opacity: 0;
  transition: opacity .3s cubic-bezier(0, .47, .8, 1),
              transform .3s cubic-bezier(0, .47, .8, 1);
}
.wayshow.hero_news {
  transform: translateX(0);
  opacity: 1;
}
.hero_news--inner {
  width: 46.875vw;
  padding: 10px 20px 10px 35px;
  background: #ffffff;
  border-radius: 50vw 0 0 50vw;
}
.hero_news .post {
  width: 75%;
  height: 38px;
}
.hero_news .post > * {
  line-height: 1;
}
.hero_news .post::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 0;
  height: 1px;
  background-color: #000;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s cubic-bezier(0, .47, .8, 1);
}
.hero_news .post:hover::after {
  transform: scale(1, 1);
}
.hero_news--ttl {
  line-height: 1;
  margin-right: 20px;
}
.hero_news .post--date {
  color: #7C71ED;
  font-size: .875em;
  font-weight: 400;
  margin-right: 20px;
}
.hero_news .post--ttl {
  font-weight: 400;
}
.hero_news .post--ttl a {
  padding: 10px 0;
}
.hero_news--list_link {
  position: relative;
  width: 38px;
  height: 38px;
  background: linear-gradient(-45deg, rgba(9,187,254,1) 0%, rgba(90,66,236,1) 100%);
  border-radius: 50vw;
}
.hero_news--list_link:hover {
  opacity: .7;
}
.hero_news--list_link > span,
.hero_news--list_link > span::before,
.hero_news--list_link > span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 16px;
  height: 1px;
  background: #fff;
}
.hero_news--list_link > span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero_news--list_link > span::before,
.hero_news--list_link > span::after {
  content: "";
}
.hero_news--list_link > span::before {
  top: -6px;
}
.hero_news--list_link > span::after {
  top: 6px;
}

.section__box--bg--aboutus {
    padding: 120px 0 100px;
}

.section__inner {
    width: 1140px;
    margin: 0 auto;
    position: relative;
}
.hero__check-list {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin-bottom: 1.6vw;
}
.hero__check-item {
    color: #4C5D56;
    font-size: 0.94vw;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: 0.03vw;
    display: flex;
    align-items: center;
    gap: 0.56vw;
}
.hero__check-item  img {

}
.hero__catch-list {
display: flex;
gap: 20px;
}
.hero__catch-item {

   
}
.hero__catch-link--01:hover {
    background:  linear-gradient(90deg,#59E6DB  0%, #42CEC3 100%);
    opacity: 1;
}
.hero__catch-link--02:hover {
    background: linear-gradient(90deg, #8EE2A5 0%, #6BD587 100%);
    opacity: 1;
}
[class^="hero__catch-link--"] {
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 0.9vw;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 1.5px;
    border-radius: 999999px;
    width: 18.1vw;
    height: 3.6vw;
    display: flex;
    justify-content: end;
    gap: 0.8vw;
    align-items: center;
    padding: 1.8vw 1.2vw;
}
.hero__catch-link--01 {
    background: linear-gradient(90deg, #42CEC3 0%, #59E6DB 100%);
    gap: 2vw;
}
.hero__catch-link--02 {
    background: linear-gradient(90deg, #6BD587 0%, #8EE2A5 100%);
}
.hero__checkbox {
    position: absolute;
    right: 0.1vw;
    padding: 3.2vw 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

body.is-page-loading .hero__checkbox {
    opacity: 0;
    transform: translateY(36px);
}

body.is-page-loading-complete .hero__checkbox {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    .hero__checkbox {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

.scroll_down {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -20.3vw;
  bottom: -12.4vw;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  /* width: 100%; */
  /* height: 80%; */
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
  }

.scroll_down a {
  display: inline-block;
  position: absolute;
  left: 2.4vw;
  bottom: 2.5vw;
  z-index: 2;
  width: 2vw;
  padding: 0.1vw 1vw 12.7vw;
  color: #6FBEA1;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .2em;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
  font-size: 0.8vw;
  font-weight: 500;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16%;
  width: 2px;
  height: 15.4vw;
  background: #6FBEA1;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 71%;
  width: 10px;
  height: 200px;
  border-radius: 999px;
  background: #6FBEA1;
}

.scroll_down a:hover {
  opacity: .5;
}

/* 縦ライン（:before 300px）に沿って丸が上→下へ。開始・終了は opacity で薄く消える */
#type01 a:after {
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
  bottom: 15.4vw;
  left: calc(18% + 0px);
  transform: translateX(-50%);
  opacity: 0;
  animation: type01-ball-fall 3s ease-in-out infinite;
}

@keyframes type01-ball-fall {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(-50%) translateY(300px);
    opacity: 0;
  }
}

/* ----- news（Figma node 13104:1806）PCのみ px ----- */
.news {
  position: relative;
  width: 100%;
  z-index: 2;
}

.news__bg {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -50px;
  width: 1920px;
  height: 804px;
  background: url(../images/top/news-bg.webp) no-repeat center center;
  pointer-events: none;
}

.news__deco {
  position: absolute;
  left: 281px;
  top: 31px;
  margin: 0;
  padding: 0;
  width: 383px;
  height: 200px;
  font-family: 'Ephesis', serif;
  font-weight: 400;
  font-size: 200px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  background-image: linear-gradient(90deg, #24a978 6%, #207e8e 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news__inner {
  position: relative;
  z-index: 1;
  width: 1140px;
  margin: 0 auto;
  padding: 90px 0 100px;
  box-sizing: border-box;
}


.news__headline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 39px;
}

.news__title {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #24a978;
  background-image: linear-gradient(to right, #24a978 0%, #207e8e 100%);
  background-size: 100% 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.news__lead {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0px 0 0;
}

.news__lead-dot {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6fbea1;
}

.news__lead-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #6fbea1;
}

.news__body {
  margin: 0 0 39px;
  padding: 37px 60px 37px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #ffffff;
  width: 1112px;
}

.news__panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 992px;
  flex-shrink: 0;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.news__date time {
  display: block;
  width: 101px;
  height: 29px;
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #91c9a0;
}

.news__text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news__item-title {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4c5d56;
}

.news__item-desc {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #798781;
}
.news__item-desc *{
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #798781;
    }

.news__rule {
  width: 100%;
  height: 1px;
  background-color: #e8e8e8;
}

.news__scroll-bar {
  position: relative;
  flex-shrink: 0;
  width: 3px;
  height: 435px;
  border-radius: 999px;
  background-color: #bbdace;
}

.news__scroll-bar-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 108px;
  border-radius: 999px;
  background-color: #6fbea1;
}

.news__action {
  margin: 0;
  text-align: center;
}

.news__more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  position: relative;
  width: 310px;
  height: 60px;
  margin: 0 auto;
  border-radius: 999px;
  background-color: #6fbea1;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  padding: 0 20px 0 18px;
  gap: 10px;
}

.news__more:hover {
  opacity: 1;
  background: linear-gradient(90deg, #6BD587 0%, #8EE2A5 100%);
}

.news__more-label {
  margin-right: 33px;
}

.news__more-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  margin-top: -10px;
  border-radius: 999px;
  background-color: #4fa384;
}

.news__more-icon-inner {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #ffffff;
}
.simplebar-content {
    padding: 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: start;
    align-items: start;
    padding: 0!important;
}
.simplebar-content:before, .simplebar-content:after {
    content: ' ';
    display: none;
}
/* ----- face_to_face（Figma node 13074:781）PCのみ px ----- */

.face__backdrop-layer--base {
  position: absolute;
  left: 0;
  top: 0;
  width: 1920px;
  height: 934px;
}

.face__backdrop-layer--photo {
  left: 0;
  top: 0;
}

.face__backdrop-layer--fade {
  top: 0;
}

.face__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.face__glow--1 {
  left: 1564px;
  top: 584px;
  width: 459px;
  height: 459px;
  background-color: rgba(252, 255, 205, 0.8);
  filter: blur(300px);
  opacity: 0.5;
}

.face__glow--2 {
  left: 456px;
  top: 763px;
  width: 281px;
  height: 281px;
  background-color: #ffffff;
  filter: blur(300px);
}

.face__glow--3 {
  left: 1346px;
  top: 178px;
  width: 281px;
  height: 281px;
  background-color: rgba(255, 255, 255, 0.9);
  filter: blur(300px);
}

.face__glow--4 {
  left: 61px;
  top: -106px;
  width: 259px;
  height: 259px;
  background-color: rgba(240, 255, 221, 0.9);
  filter: blur(200px);
  opacity: 0.8;
}

.face__inner {
  position: relative;
  z-index: 1;
  width: 1140px;
  margin: 0 auto;
  padding: 151px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.face__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 1140px;
  margin: 0;
  text-align: center;
}

.face__title {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.1em;
  background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.face__lead {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 9px 0 0;
  max-width: 1140px;
}

.face__lead-dot {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background-color: #6fbea1;
}

.face__lead-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
  color: #6fbea1;
}

.face__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
  width: 1140px;
}

.face__caption,
.face__footnote {
  margin: 0;
  width: 1140px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #4c5d56;
}

.face__business {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 33px;
  width: 1140px;
  padding: 0;
  margin-left: 56px;
  margin-bottom: 2px;
}

.face__business-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  min-width: 260px;
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
}
.face__business-item:not(:last-of-type)::after {
    content: '';
    display: block;
    width: 1px;
    height: 46px;
    background-color: #8ED4BA;
    transform: rotate(29deg);
    position: absolute;
    top: 2px;
    right: 11px;
}

.face__business-icon-wrap {
  display: block;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  line-height: 0;
  flex-shrink: 0;
}

.face__business-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.face__business-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  background-image: linear-gradient(90deg, #24c989 0%, #21bebd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.face__business-sep {
  flex-shrink: 0;
  width: 1px;
  height: 46px;
  background-color: #8ED4BA;
  transform: rotate(29deg);
}

.face__strengths {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 1140px;
  margin: 0;
  padding: 0;
}

.face__strength {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  width: 560px;
  margin: 0;
  padding: 0;
}

.face__strength-visual {
  flex: 1 1 233px;
  min-width: 0;
  height: 157px;
  line-height: 0;
}

.face__strength-img {
  display: block;
  width: 100%;
  height: 157px;
  border-radius: 10px;
  object-fit: cover;
}

.face__strength-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 320px;
  height: 157px;
  padding: 0 20px 0;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #91c9a0;
  flex-shrink: 0;
}

.face__strength-panel--mint {
  background-color: #81d2ca;
}

.face__strength-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.face__strength-eyebrow {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  color: #ffffff;
}

.face__strength-value {
  margin: 0;
  padding: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}
.face__strength-number {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.face__strength-note {
  margin: 0;
  width: 251px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}
.scrollbar-content.vertical {
    max-height: 395px;
}
 .simplebar-track.simplebar-vertical{
    background: #C9E5DB;
    width: 3px;
    overflow: visible;
    right: -90px;
    border-radius: 0;
    pointer-events: all;
}
.voice__modal-inner .simplebar-track.simplebar-vertical{
    right: -45px;
 
}
 .simplebar-scrollbar.simplebar-visible:before {
    width: 3px;
    background-color: #539A93;
    opacity: 1;
    left: 0px;
    border-radius: 0 !important;
    z-index: 2;
    top: 0 !important;
    bottom: 0 !important;
    border-radius: 30px;
    cursor: pointer;
}
.green__bgbox {
    padding-bottom: 121px;
    position: relative;
    z-index: 1;
}
.contents__inner {
  width: 1140px;
  margin: 0 auto;
  position: relative;
}
.customer__headline {/* color: #FFF; *//* font-weight: 500; */margin-bottom: 40px;position: relative;z-index: 1;}
.customer__title {color: #FFF;font-weight: 500;font-size: 38px;letter-spacing: 3.7px;}
.customer__lead {
  color: #FFF;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 9px 0 0;
  max-width: 1140px;
}
.customer__lead-dot {
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background-color: #fff;
}
.customer__lead-text {line-height: 1.7;letter-spacing: 0.04em;}
.customer__box {
  padding: 140px 0px 59px;
}

.property-card {
  overflow: hidden;
  transition: all 0.3s ease;
}
.property-card a:hover {
  opacity: 1;
}
.property-card:hover img {
  transform: scale(1.08);
}
.property-card:hover {
  opacity: 1;
}
.property-card__image {
  position: relative;
  overflow: hidden;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
}
.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease-in-out;
  background: rgba(250,250,250,1);
  border-radius: 0;
}
/* Swiper 〇件以下で発火させない場合のレイアウト */
.noslide .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.noslide .swiper-option__wrap {
  display: none;
}
.contents__area{margin: 0 auto;width: 360px;}
.contents__img {
  height: 210px;
}
.contents__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-card__content {
  margin-top: 13px;
}
.property-card__ttl {
  color: #4C5D56;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-align: center;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.6;
}
.property-card__text {
  color: #798781;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1.78;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.customer__box .contents__inner:after {
  content: '';
  display: block;
  width: 1725px;
  height: 517px;
  background: url(../images/top/customer__bg.webp) center / cover no-repeat;
  position: absolute;
  top: -140px;
  left: -390px;
  z-index: 0;
}

/* ----- 取り扱い実績 achievements（Figma node 15219:21798）PCのみ px ----- */
.achievements__section {
    position: relative;
    padding: 138px 0 150px;
    overflow: hidden;
}

.achievements__section .achievements__inner::after {
    content: '';
    display: block;
    width: 1720px;
    height: 492px;
    background: url(../images/top/achievements__bg.webp) center / cover no-repeat;
    position: absolute;
    top: -140px;
    left: -188px;
    z-index: 0;
    pointer-events: none;
}

.achievements__headline {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.achievements__title {
    color: #FFF;
    font-weight: 500;
    font-size: 38px;
    letter-spacing: 3.8px;
}

.achievements__lead {
    color: #FFF;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 8px 0 0;
    max-width: 1140px;
}

.achievements__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background-color: #fff;
}

.achievements__lead-text {
    line-height: 1.8;
    letter-spacing: 0.7px;
    font-size: 14px;
}

.achievements__annotation-text {
    line-height: 1.8;
    letter-spacing: 0.7px;
    font-size: 11px;
    color: #fff;
    padding: 3px 17px 0;
    display: block;
}

.achievements__block {
    position: relative;
    z-index: 1;
}

.achievements__block .slide_wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.achievements__block .contents__area {
    width: 100%;
}

.achievements__block .contents__item {
    width: 360px;
}

.achievement-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    cursor: default;
}



.achievement-card__image {
    position: relative;
    width: 360px;
    height: 270px;
    overflow: hidden;
    border-radius: 18px;
}

.achievement-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-card:hover .achievement-card__image img {
    transform: scale(1);
}

.achievement-card__badge,
.achievement-card__area {
    position: absolute;
    top: 14px;
    left: 13px;
    padding: 10px 15px;
    background: #91C9A0;
    border-radius: 6px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 1;
}
.achievement-card__area {
    top: 52px;
    background: #81B7B1;
}

.achievement-card__address {
    width: 100%;
    margin: 0;
    color: #797979;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bnr__contact a {
  width: 1140px;
  display: block;
  margin: 0 auto;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.bnr__contact a:hover {
  transform: translateY(-7px);
  opacity: 1;
}

.bnr__contact a img {
    width: 100%;
}

/* ----- to_guide（Figma node 13112:2999）PCのみ px ----- */
.to-guide {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.to-guide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.to-guide__glow {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.45;
}

.to-guide__glow--1 {
    left: 65%;
    top: 120px;
    width: 420px;
    height: 420px;
    background-color: rgba(252, 255, 205, 0.75);
}

.to-guide__glow--2 {
    left: -8%;
    top: 380px;
    width: 360px;
    height: 360px;
    background-color: #ffffff;
}

.to-guide__glow--3 {
    left: 48%;
    top: 900px;
    width: 320px;
    height: 320px;
    background-color: rgba(111, 190, 161, 0.25);
}

.to-guide__deco {
    position: absolute;
    right: -63px;
    top: 914px;
    width: 600px;
    margin: 0;
    padding: 0;
    font-family: 'Ephesis', serif;
    font-weight: 400;
    font-size: 200px;
    line-height: 1.5;
    white-space: nowrap;
    opacity: 0.1;
    pointer-events: none;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    background-image: linear-gradient(90deg, #24a978 6%, #207e8e 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.to-guide__inner {
    position: relative;
    z-index: 1;
    width: 1140px;
    margin: 0 auto;
    padding: 150px 0 130px;
    box-sizing: border-box;
}

.to-guide__headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
    margin: 0;
}

.to-guide__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.1em;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.to-guide__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.to-guide__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.to-guide__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.to-guide__body {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 1140px;
    max-width: 100%;
    margin-top: 39px;
}

.to-guide__rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.to-guide__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
}

.to-guide__row + .to-guide__row {
    margin-top: 0;
}

.to-guide__card-shift {
    flex-shrink: 0;
}

.to-guide__card-shift--20 {
    padding-top: 20px;
}

.to-guide__card-shift--40 {
    padding-top: 40px;
}

.to-guide__card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 360px;
    min-height: 441px;
    box-sizing: border-box;
    padding: 207px 20px 20px;
}

.to-guide__badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background-color: rgba(111, 190, 161, 0.8);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.to-guide__card-visual {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 360px;
    height: 441px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

.to-guide__card-img {
    display: block;
    width: 360px;
    height: 232px;
    object-fit: cover;
    object-position: center center;
}

.to-guide__card-img--bottom {
    object-position: center bottom;
}

.to-guide__card-grad {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
    height: 441px;
    border-radius: 10px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 26.18%,
        rgba(255, 255, 255, 0.59) 37.14%,
        #ffffff 50.11%
    );
}

.to-guide__card-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 320px;
    max-width: 100%;
}

.to-guide__card-title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #539a93;
}

.to-guide__card-desc {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.78;
    letter-spacing: 0.05em;
    color: #798781;
}

.to-guide__closing {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-align: center;
    color: #6fbea1;
}

.to-guide__closing-line {
    display: block;
}

/* ----- reason（Figma node 13115:9081）PCのみ px ----- */
.reason {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reason__bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.reason__bg-img {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 2947px;
    max-width: none;
    height: auto;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center top;
}

.reason__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 39px;
    width: 1140px;
    margin: 0 auto;
    padding: 147px 0 140px;
    box-sizing: border-box;
}

.reason__headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.reason__title {
    margin: 0;
    padding: 0;
    max-width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-align: center;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reason__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    max-width: 1140px;
}

.reason__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.reason__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: left;
    color: #6fbea1;
}

.reason__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 59px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.reason__contents::before {
    content: '';
    background: url(/images/top/img_reason-deco.svg) no-repeat center / cover;
    display: block;
    width: 1920px;
    height: 2457px;
    position: absolute;
    top: -125px;
    right: -391px;
    z-index: -1;
    pointer-events: none;
}

.reason__intro {
    position: relative;
    width: 1140px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.reason__intro-card {
    width: 100%;
    margin: 0;
    padding: 60px 96px 70px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 20px;
}

.reason__intro-title {
    margin: 0 0 31px;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #4c5d56;
}

.reason__intro-title-accent {
    color: #539a93;
    font-weight: 500;
}

.reason__intro-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    width: 100%;
}

.reason__intro-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.reason__intro-text {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 2.1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #798781;
}

.reason__intro-line {
    width: 100%;
    height: 1px;
    margin: 0;
    background-color: #d3eae1;
}

.reason__intro-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.reason__intro-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.reason__intro-check {
    display: flex;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
}

.reason__intro-check img {
    display: block;
    width: 28px;
    height: 28px;
}

.reason__intro-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: #4c5d56;
}

.reason__appeal {
    position: absolute;
    left: 883px;
    top: -17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0;
    padding: 33px 13px;
    box-sizing: border-box;
    border-radius: 50%;
    text-align: center;
    background: #8FDBC0 ;
}

.reason__appeal-line {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
}

.reason__list {
    display: flex;
    flex-direction: column;
    gap: 57.5px;
    width: 1140px;
    max-width: 100%;
}

.reason__item {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 1140px;
    max-width: 100%;
}

.reason__item--reverse {
    flex-direction: row-reverse;
}

.reason__item-media {
    position: relative;
    flex-shrink: 0;
    width: 423px;
    height: 341px;
    overflow: hidden;
    border-radius: 20px;
}

.reason__item-media--veil::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.reason__item-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}

.reason__item-img--bottom {
    object-position: center bottom;
}

.reason__item-body {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 19px;
    width: 677px;
}

.reason__item-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.reason__item-heading {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    width: 100%;
}

.reason__item-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 7px 15px 8px;
    border-radius: 4px;
    background-image: linear-gradient(90deg, #42cec3 0%, #59e6db 100%);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

.reason__item-tag-label {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.reason__item-tag-num {
    font-size: 20px;
    letter-spacing: 0.05em;
}

.reason__item-title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.reason__item-text {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.87;
    letter-spacing: 0.05em;
    color: #798781;
}

.reason__item-diff {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin: 0;
    padding: 19px 25px 18px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 10px;
}

.reason__item-diff-head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 7px;
}

.reason__item-diff-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.reason__item-diff-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.reason__item-diff-text {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #798781;
}

/* ----- professional（Figma node 13123:1533）PCのみ px ----- */
.professional {
    position: relative;
    width: 100%;
}

.professional__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 37px;
    width: 1140px;
    margin: 0 auto;
    padding: 177px 0 150px;
    box-sizing: border-box;
}
.professional__inner::before {
    content: '';
    background: url(/images/top/img_professional-deco.svg) no-repeat center / cover;
    display: block;
    width: 1920px;
    height: 1237px;
    position: absolute;
    top: -668px;
    left: -391px;
    z-index: -1;
    pointer-events: none;
}
.professional__inner::after {
    content: '';
    background: url(/images/top/img_professional-deco2.svg) no-repeat center / cover;
    display: block;
    width: 1920px;
    height: 1597px;
    position: absolute;
    bottom: -963px;
    left: -390px;
    z-index: -1;
    pointer-events: none;
}

.professional__headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    width: 100%;
    margin: 0;
}

.professional__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.professional__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.professional__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.professional__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.professional__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 1140px;
    max-width: 100%;
}

.professional__row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    width: 1140px;
    max-width: 100%;
}

.professional__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 539px;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
}

.professional__item-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.professional__icon-wrap {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background-color: #e0fffd;
}

.professional__icon-wrap--photo {
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}

.professional__icon-img {
    display: block;
    width: 100%;
    height: 100%;
}

.professional__icon-img--photo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 999px;
}

.professional__ttl {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    min-width: 0;
    max-width: 413px;
}

.professional__license-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 7px;
    border-radius: 4px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(90deg, #69d59f 0%, #72d0da 100%);
}

.professional__name {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.professional__desc {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.88;
    letter-spacing: 0.05em;
    color: #798781;
}

.professional__vr {
    flex-shrink: 0;
    width: 1px;
    margin: 0;
    padding: 0;
    align-self: stretch;
    background-color: #F0F4F3;
}

.professional__hr {
    flex-shrink: 0;
    width: 1140px;
    max-width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    background-color: #F0F4F3;
}

.professional__item--wide {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 1140px;
    max-width: 100%;
}

.professional__icon-stack {
    flex-shrink: 0;
    width: 142px;
    height: 142px;
}

.professional__icon-stack-img {
    display: block;
    width: 142px;
    height: 142px;
}

.professional__wide-body {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
}

.professional__wide-head {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.professional__name--wide {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.professional__desc--narrow {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.professional__other {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 1140px;
    max-width: 100%;
    margin: 0;
    padding: 44px 40px 33px;
    box-sizing: border-box;
    background-color: #e0fffd;
    border-radius: 20px;
}

.professional__other-title {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.professional__other-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.professional__other-text {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #798781;
}

/* ----- お客様の喜びの声 voice（Figma node 13123:2946）PCのみ px ----- */
.voice {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 70px;
}

.voice__visual {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 0;
    width: 1720px;
    transform: translateX(-50%);
    border-radius: 40px;
    overflow: hidden;
    pointer-events: none;
}

.voice__visual-img {
    display: block;
    width: 100%;
    height: auto;
}

.voice__deco {
    position: absolute;
    left: 581px;
    top: 88px;
    z-index: 1;
    margin: 0;
    padding: 0;
    font-family: Ephesis, serif;
    font-weight: 400;
    font-size: 200px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.voice__shell {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 39px;
    width: 1200px;
    margin: 0 auto;
    padding: 152px 0 0;
    box-sizing: border-box;
}

.voice__headline {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    padding: 0 0 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.voice__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.voice__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 9px 0 0;
}

.voice__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #ffffff;
}

.voice__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.voice__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    position: relative;
}

.voice__mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.voice__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.voice-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 40px 66px 45px;
    border-radius: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.voice-card__photo {
    flex-shrink: 0;
    width: 202px;
    height: 202px;
    overflow: hidden;
    border-radius: 20px;
}

.voice-card__img {
    display: block;
    width: 202px;
    height: 202px;
    object-fit: cover;
}

.voice-card__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1 1 auto;
    width: 825px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.voice-card__header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    gap: 16px;
    width: 100%;
}

.voice-card__heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.voice-card__name-unit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9px;
}

.voice-card__accent {
    display: block;
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.voice-card__name {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.voice-card__tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.voice-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 4px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: #91c9a0;
}

.voice-card__stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-bottom: 3px;
}

.voice-card__star {
    display: block;
    width: 18px;
    height: 17px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #78b19a;
}

.voice-card__text {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.voice-card__checks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.voice-card__check-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.voice-card__check-icon {
    width: 20px;
    height: 20px;
}

.voice-card__check-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.voice-card__check-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #798781;
}

.voice__more-wrap {
    margin: 0;
    padding: 0;
}

.voice__more-btn {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 310px;
    height: 60px;
    margin: 0;
    padding: 25px 70px;
    border-radius: 999px;
    box-sizing: border-box;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #6fbea1;
    text-decoration: none;
}

.voice__more-btn:hover {
  opacity: 1;
  background: linear-gradient(90deg, #6BD587 0%, #8EE2A5 100%);
}

.voice__more-label {
    flex: 1 1 auto;
    text-align: center;
}

.voice__more-icon {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 26px;
    height: 26px;
}

.voice__bnr {
    width: 1140px;
    max-width: 100%;
}

.voice__bnr-link {
    display: block;
    width: 100%;
    transition: transform 0.25s ease;
}

.voice__bnr-link:hover {
    transform: translateY(-7px);
    opacity: 1;
}

.voice__bnr-img {
    display: block;
    width: 100%;
    height: auto;
}

.voice__modal {
    display: none;
    background: rgba(238, 255, 248, 0.80);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
    .voice__modal-inner {
        width: 1200px;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
        .voice__modal-title {
            font-size: 38px;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 3.8px;
            font-family: "Zen Maru Gothic";
            text-align: center;
            background: linear-gradient(90deg, #24A978 0%, #207E8E 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 50px;
        }
        .voice__modal-wrap {
            background: #FFF;
            border-radius: 20px;
            padding: 50px 93px 50px 80px;
            margin-bottom: 30px;
        }
            .voice__modal-list.scrollbar-content.vertical {
                max-height: 454px;
                padding-right: 30px;
            }
                .voice__modal-list .simplebar-content {
                    display: block;
                }
                .voice__modal-item:not(:last-child) {
                    padding-bottom: 25px;
                    margin-bottom: 25px;
                    border-bottom: 1px solid #E8E8E8;
                }
                    .voice__modal-name {
                        display: flex;
                        align-items: center;
                        gap: 13px;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1;
                        letter-spacing: 0.8px;
                        color: #798781;
                        margin-bottom: 10px;
                    } 
                        .voice__modal-name::before {
                            content: '';
                            background: url(../images/top/icon_voice-modal.svg) no-repeat center / cover;
                            display: block;
                            width: 40px;
                            height: 40px;
                        }
                    .voice__modal-text {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.8;
                        letter-spacing: 0.8px;
                        color: #4C5D56;
                    }
            .modal__btn-list {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
            }
                [class*="modal__btn-item--"] a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 310px;
                    height: 60px;
                    border-radius: 999999px;
                    font-size: 18px;
                    font-weight: 500;
                    letter-spacing: 1.8px;
                    position: relative;
                }
                .modal__btn-item--close a {
                    color: #4C5D56;
                    border: 1px solid #4C5D56;
                    background: transparent;
                    font-family: "Zen Maru Gothic";
                }
                .modal__btn-item--close a:hover {
                    opacity: 1; 
                    color: #FFF;
                    background: #4C5D56;
                }
                    .modal__close-deco {
                        display: block;
                        width: 26px;
                        height: 26px;
                        background: #798781;
                        border-radius: 50%;
                        position: absolute;
                        top: 50%;
                        right: 17px;
                        transform: translateY(-50%);
                    }
                    .modal__close-deco::before,
                    .modal__close-deco::after {
                        content: '';
                        display: block;
                        background: #FFF;
                        width: 1px;
                        height: 10px;
                        position: absolute;
                        top: 8px;
                    }
                    .modal__close-deco::before {
                        left: 12px;
                        transform: rotate(45deg);
                    }
                    .modal__close-deco::after {
                        left: 12px;
                        transform: rotate(135deg);
                    }
                .modal__btn-item--contact a {
                    color: #FFF;
                    background: linear-gradient(90deg, #42CEC3 0%, #59E6DB 100%);
                    font-family: "Zen Maru Gothic";
                    padding-right: 35px;
                }
                .modal__btn-item--contact a:hover {
                  opacity: 1;
                  background: linear-gradient(90deg, #59E6DB 0%, #42CEC3 100%);
                }
                    .modal__contact-deco {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: #17C3B6;
                        border-radius: 99999px;
                        width: 42px;
                        height: 20px;
                        position: absolute;
                        top: 50%;
                        right: 20px;
                        transform: translateY(-50%);
                    }

.pickup-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 4px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: #42CEC3;
}

/* ----- pickup 3つのこだわり（Figma node 13123:5430）PCのみ px ----- */
.pickup {
    position: relative;
    width: 100%;
    overflow: visible;
}

.pickup__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 1140px;
    margin: 0 auto;
    padding: 80px 0 150px;
    box-sizing: border-box;
}
.pickup__inner::before {
    content: '';
    background: url(/images/top/img_pickup-deco.svg) no-repeat center / cover;
    display: block;
    width: 1920px;
    height: 846px;
    position: absolute;
    top: -315px;
    left: -390px;
    z-index: -1;
    pointer-events: none;
}

.pickup__headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin: 0;
}

.pickup__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.1em;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pickup__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.pickup__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.pickup__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.pickup__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.pickup-item {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 0;
    padding: 0;
    width: 1140px;
    max-width: 100%;
    box-sizing: border-box;
}

.pickup-item--reverse {
    flex-direction: row-reverse;
}

.pickup-item__visual {
    flex-shrink: 0;
    width: 360px;
}

.pickup-item__photo {
    position: relative;
    width: 360px;
    height: 240px;
    overflow: visible;
    border-radius: 18px;
}

.pickup-item__img {
    display: block;
    width: 360px;
    height: 240px;
    border-radius: 18px;
    object-fit: cover;
}

.pickup-item__caption {
    position: absolute;
    margin: 0;
    padding: 0;
}

.pickup-item__caption--front {
    left: -59px;
    top: 0;
}

.pickup-item__caption--customer {
    left: -59px;
    top: -10px;
}

.pickup-item__caption--side {
    left: -59px;
    top: 5px;
}

.pickup-item__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 auto;
    width: 739px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-top: 38px;
}

.pickup-item__heading-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pickup-item__point-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 7px;
}

.pickup-item__point-dot {
    display: block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #6fbfb9;
}

.pickup-item__point-label {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbfb9;
}

.pickup-item__point-prefix {
    letter-spacing: 0.05em;
}

.pickup-item__point-num {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.05em;
}

.pickup-item__heading {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #17c3b6;
}

.pickup-item__desc {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

/* ----- 相談からご成約までの流れ flow（Figma node 13123:5547）PCのみ px ----- */
.flow {
    position: relative;
    width: 100%;
    overflow: visible;
}

.flow__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(180deg, rgba(241, 255, 250, 1) 0%, rgba(228, 251, 236, 0) 15%);
    opacity: 0.95;
}

.flow__stage {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 160px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 150px;
    box-sizing: border-box;
}

.flow__row {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    width: 1141px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.flow__photos {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 670px;
    height: 1064px;
    overflow: hidden;
}

.flow__photo-cell {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
}

.flow__photo-cell--tl {
    border-radius: 0 40px 0 0;
}

.flow__photo-cell--br {
    border-radius: 0 0 40px 0;
}

.flow__photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow__main {
    display: flex;
    flex-direction: column;
    gap: 39px;
    flex-shrink: 0;
    width: 780px;
    max-width: 100%;
    box-sizing: border-box;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}
.flow__main::before {
    content: '';
    background: url(../images/top/img_flow-left.webp) no-repeat center / cover;
    display: block;
    width: 670px;
    height: 1064px;
    position: absolute;
    top: 0;
    left: -750px;
}
.flow__main::after {
    content: '';
    background: url(../images/top/img_flow-deco.svg) no-repeat center / cover;
    display: block;
    width: 1920px;
    height: 1920px;
    position: absolute;
    top: 503px;
    left: -750px;
    z-index: -1;
    pointer-events: none;
}

.flow__headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin: 0;
}

.flow__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.1em;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.flow__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.flow__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.flow__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.flow__steps-area {
    position: relative;
    width: 100%;
}

.flow__steps-line {
    position: absolute;
    left: 29px;
    top: 70px;
    width: 2px;
    height: 428px;
    background-color: #c6d9bc;
}

.flow__steps {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.flow-step__badge {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.flow-step__num {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #539a93;
}

.flow-step__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.flow-step__top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.flow-step__ttl {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #539a93;
}

.flow-step__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.flow-step__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    border-radius: 4px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: #78b19a;
}

.flow-step__txt {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.flow-faq {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
}

.flow-faq__ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 104px;
    padding: 0px 10px 0;
    border-radius: 5px 0 0 5px;
    background-color: #539a93;
    box-sizing: border-box;
}

.flow-faq__ribbon-text {
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.flow-faq__panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 18px 31px 18px;
    border-radius: 10px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.flow-faq__q {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
}

.flow-faq__mark {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 17px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    padding-bottom: 5px;
}

.flow-faq__mark--q {
    background-color: #6fbea1;
}

.flow-faq__mark--a {
    align-self: flex-start;
    margin-top: 2px;
    background-color: #17c3b6;
}

.flow-faq__question {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 2.1;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.flow-faq__a {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 11px;
}

.flow-faq__answer {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #798781;
}

.flow__bnr {
    width: 1140px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.flow__bnr-link {
    display: block;
    width: 100%;
    transition: transform 0.25s ease;
}

.flow__bnr-link:hover {
    transform: translateY(-7px);
    opacity: 1;
}

.flow__bnr-img {
    display: block;
    width: 100%;
    height: auto;
}

.column__box {
    padding: 140px 0px 151px;
}
.column__box .contents__inner::before {
    content: '';
    display: block;
    width: 1725px;
    height: 492px;
    background: url(../images/top/column__bg.webp) center / cover no-repeat;
    position: absolute;
    top: -140px;
    right: -395px;
    z-index: 0;
}
.column__box .contents__inner:after {
    content: '';
    display: block;
    width: 547px;
    height: 167px;
    background: url(../images/top/img_column-text.webp) center / cover no-repeat;
    position: absolute;
    bottom: -130px;
    left: -60px;
    z-index: 1;
}
    .column__headline {
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }
    .column__block {
        margin-bottom: 40px;
    }
        .column__title {
            color: #FFF;
            font-weight: 500;
            font-size: 38px;
            letter-spacing: 3.7px;
        }
        .column__lead {
            color: #FFF;
            font-weight: 500;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            gap: 10px;
            margin: 0;
            padding: 9px 0 0;
            max-width: 1140px;
        }
        .column__lead-dot {
            display: block;
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            margin-top: 7px;
            border-radius: 50%;
            background-color: #fff;
        }
        .column__lead-text {
            line-height: 1.7;
            letter-spacing: 0.7px;
        }
        .column__block .property-card__ttl {
            text-align: left;
        }
        .column__date time {
            display: block;
            padding: 6px 15px;
            background: #91C9A0;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.7px;
            color: #FFF;
            font-family: "Zen Maru Gothic";
            position: absolute;
            right: 15px;
            bottom: 15px;
        }

/* ----- 代表メッセージ message（Figma node 13123:6026）PCのみ px ----- */
.message {
    position: relative;
    width: 100%;
    overflow: visible;
}

.message__bg {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 1200px;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 563px 563px at 95% 8%, rgba(224, 251, 242, 0.65) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 255, 252, 1) 45%, rgba(255, 255, 255, 1) 100%);
    opacity: 1;
}

.message__inner {
    position: relative;
    z-index: 1;
    width: 1140px;
    margin: 0 auto;
    padding: 180px 0 100px;
    box-sizing: border-box;
}

.message__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-bottom: 40px;
}

.message__text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
    width: 510px;
    box-sizing: border-box;
}

.message__headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.message__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.message__title-line {
    display: block;
    font-weight: 500;
}

.message__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.message__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #6fbea1;
}

.message__lead-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}

.message__body {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.message__para {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 2.1;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.message__visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
    width: 570px;
    box-sizing: border-box;
    position: relative;
}

.message__photo-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.message__photo {
    display: block;
    width: 100%;
    height: auto;
}


.message__daihyo {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #4C5D56;
    font-family: "Shippori Mincho", serif;
}
.message__daihyo span {
    font-size: 24px;
    font-weight: 500;
    color: #4C5D56;
    font-family: "Shippori Mincho", serif;
}

.message__sign {
    align-self: flex-end;
}

.message__sign-img {
    display: block;
    width: 200px;
    height: auto;
}

.message__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 100px;
}

.message-btn {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 310px;
    height: 60px;
    padding: 0 29px 0 0;
    border-radius: 999px;
    box-sizing: border-box;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-decoration: none;
}

.message-btn:hover {
    opacity: 0.92;
    opacity: 1;
    background: linear-gradient(90deg, #6BD587 0%, #8EE2A5 100%);
}

.message-btn--primary {
    background-color: #6fbea1;
}

.message-btn--secondary {
    background-color: #539a93;
}

.message-btn__label {
    flex: 1 1 auto;
    text-align: center;
}

.message-btn__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 42px;
    height: 20px;
    border-radius: 99999px;
}
.message-btn__icon--primary {
    background: #4FA384;
}
.message-btn__icon--secondary {
    background: #38827B;
}

.message__bnr {
    width: 1140px;
    max-width: 100%;
}

.message__bnr-link {
    display: block;
    width: 100%;
    transition: transform 0.25s ease;
}

.message__bnr-link:hover {
    transform: translateY(-7px);
    opacity: 1;
}

.message__bnr-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ----- contact（Figma 13487:4490） ----- */


.contact__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 35%, rgba(174, 255, 249, 0.15) 100%),
        linear-gradient(143deg, rgba(184, 250, 226, 0.55) 4%, rgba(174, 255, 249, 0.45) 91%);
}

.contact__bg::before,
.contact__bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
}

.contact__bg::before {
    top: -12%;
    left: -8%;
    width: 420px;
    height: 420px;
    background: #e4ffef;
}

.contact__bg::after {
    bottom: -18%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: #e7ffd4;
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
    padding: 130px 0 150px;
    box-sizing: border-box;
}

.contact__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.contact__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #4c5d56;
}

.contact__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.contact__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background-color: #4C5D56;
}

.contact__lead-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #4c5d56;
}

.contact__stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 18px;
    justify-content: center;
    width: 100%;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    width: 368px;
    max-width: 100%;
    padding: 12px 25px 20px;
    border-radius: 20px;
    background-color: #ffffff;
}

.contact-card__ribbon {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 2;
    margin: 0;
    padding: 15px 10px;
    border-radius: 0 10px 10px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    color: #ffffff;
}

.contact-card__ribbon--form {
    background-color: #cbe9d3;
}

.contact-card__ribbon--reserve {
    background-color: #b5d2cf;
}

.contact-card__ribbon--line {
    background-color: #cbe9d3;
}

.contact-card__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 142px;
    height: 142px;
    margin-top: 8px;
    border-radius: 99999px;
    background-color: #e8fff6;
}

.contact-card__icon svg {
    display: block;
    width: 81px;
    height: 81px;
}

.contact-card__body {
    gap: 17px;
}

.contact-card__ttl {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: #4c5d56;
    margin-bottom: 11px;
}

.contact-card__txt {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-align: center;
    color: #798781;
    margin-bottom: 31px;
}

.contact-card__cta {position: relative;}

.contact-card__badge {
    position: relative;
    z-index: 1;
    margin: 0;
    width: max-content;
    padding: 8px 25px;
    border-radius: 5px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    background-color: #feffe8;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-card__badge--form {
    color: #44d0c5;
}

.contact-card__badge--reserve {
    color: #81c4be;
}

.contact-card__badge--line {
    color: #56d78a;
}

.contact-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 25px 40px;
    width: 318px;
    min-height: 70px;
    box-sizing: border-box;
    border-radius: 999999px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-card__btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.contact-card__btn--form {
    background: linear-gradient(90deg, #42cec3 0%, #59e6db 100%);
}

.contact-card__btn--reserve {
    background: linear-gradient(90deg, #7fc3bc 0%, #a9d9d4 100%);
}

.contact-card__btn--line {
    background: linear-gradient(90deg, #55d589 0%, #65f8a1 100%);
}

.contact-phone {
    position: relative;
    width: 100%;
}

.contact-phone__ribbon {
    position: absolute;
    left: 0;
    top: 29px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 0 10px 10px 0;
    background-color: #d3d3d3;
    box-sizing: border-box;
}

.contact-phone__ribbon-text {
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #ffffff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.contact-phone__sheet {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    width: 100%;
    min-height: 138px;
    padding: 35px 233px 40px 193px;
    border-radius: 20px;
    background-color: #ffffff;
}

.contact-phone__ttl {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: #4c5d56;
}

.contact-phone__divider {
    align-self: stretch;
    flex-shrink: 0;
    width: 1px;
    margin: 4px 0;
    background-color: #cccccc;
}

.contact-phone__meta {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 8px;
}

.contact-phone__tel-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.contact-phone__tel-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}

.contact-phone__tel-num {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 37px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #4c5d56;
}

.contact-phone__hours {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.contact-phone__pair {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.contact-phone__hours-label,
.contact-phone__hours-val {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #8fa39c;
}


/* スクロールインでフェードイン（.js-fadein + JS で .is-fadein-active） */
.js-fadein {
  opacity: 0;
  transform: translateY(15px);
  /* 表示クラス付与後、少し待ってからフェード開始 */
  transition: opacity 0.65s ease 0.25s, transform 0.65s ease 0.25s;
}

.js-fadein.is-fadein-active {
  opacity: 1;
  transform: translateY(0);
}

/* 更新情報など先頭ブロック：発火・ディレイを控えめに */
.js-fadein.js-fadein--fast {
  transition: opacity 0.6s ease 0.08s, transform 0.6s ease 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* 今月の特選物件 */
.newbkn--new .newbkn__inner::before {
    display: none;
}
.newbkn--new .newbkn__inner {
    padding: 0px 0px 151px;
}
.newbkn__inner {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0 auto;
    padding: 140px 0px 151px;
    box-sizing: border-box;
}
.newbkn__inner::before {
    content: '';
    background: url(/images/top/img_professional-deco.svg) no-repeat center / cover;
    display: block;
    width: 1920px;
    height: 1237px;
    position: absolute;
    top: -668px;
    left: -391px;
    z-index: -1;
    pointer-events: none;
}
.newbkn__headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
    margin-bottom: 40px;
}
.newbkn__title {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0.1em;
    background-image: linear-gradient(90deg, #24a978 0%, #207e8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.newbkn__lead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.newbkn__lead-dot {
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 50%;
    background-color: #6fbea1;
}
.newbkn__lead-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #6fbea1;
}
.md-bkn__list {
    display: flex;
    gap: 40px;
    justify-content: center;
    cursor: default;
}
.newbkn--new .md-bkn__list {
    margin-bottom: 40px;
}
.md-bkn__items {
    position: relative;
    width: 360px;
}
.md-bkn__link:hover {
    opacity: 1;
}
.newbkn .md-bkn__img {
    position: relative;
    width: 360px;
    height: 270px;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 0;
}
.newbkn .md-bkn__photo {
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
    background: #fff;
    border-radius: 0;
}
.md-bkn__img:hover .md-bkn__photo {
    transform: scale(1.08);
}
.md-bkn__name {
    color: #4C5D56;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.9px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 1.6;
    margin: 13px 0 0;
}
.md-bkn__detail {
    display: flex;
    gap: 3px;
    align-items: baseline;
}
.gradient__warp .md-bkn__price {
    font-weight: 500;
    color: #798781;
    line-height: 1.78;
}
.gradient__warp .md-bkn__price span {
    font-size: 22px;
    color: #17c3b6;
}
.md-bkn__text {
    color: #798781;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 1.78;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.md-bkn__switch {
    position: absolute;
    top: 230px;
    right: 6px;
    z-index: 1;
}