@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1600 / var(--inner-scale));
  --inner: 1260;
  --inner-1600: 1600px;
}
@media screen and (max-width: 767px) {
  :root {
    --vw-base: 375;
    --inner-scale: 1;
    --inner: 315;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #3e3a39;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
}
/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
main {
  margin-top: calc(140 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  main {
    margin-top: calc(20 * 100vw / var(--vw-base));
  }
}

.home main {
  margin-top: 0;
}

/* コンテンツ幅
------------------------------*/
.inner {
  width: calc(var(--inner) / var(--vw-base) * 100%);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: calc(var(--inner) / var(--vw-base) * 100%);
  }
}

.u-width-1600 {
  width: calc(var(--inner-1600) / var(--vw-base) * 100%);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .u-width-1600 {
    width: calc(var(--inner-1600) / var(--vw-base) * 100%);
  }
}

/* セクションタイトル
------------------------------*/
.c-section-title__en {
  display: block;
  font-size: calc(60 * 100vw / var(--vw-base));
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: calc(31 * 100vw / var(--vw-base));
  }
}

.c-section-title__ja {
  display: block;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
}

/* 下層ページタイトル
------------------------------*/
.c-page-header {
  padding: calc(75 * 100vw / var(--vw-base)) 0 calc(30 * 100vw / var(--vw-base));
}

.c-page-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .c-page-header__wrapper {
    display: block;
    position: relative;
  }
}

.c-page-title__en {
  display: block;
  font-size: calc(80 * 100vw / var(--vw-base));
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: calc(40 * 100vw / var(--vw-base));
  }
}

.c-page-title__ja {
  display: block;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
}

.breadcrumbs {
  font-size: calc(15 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.7333333333;
  display: flex;
  align-items: center;
}
.breadcrumbs .sep {
  background: url(../img/icon_arrow5.svg) no-repeat center center/100%;
  aspect-ratio: 210/365;
  width: 0.5em;
  display: inline-block;
  margin: 0 0.6em;
}
@media (max-width: 767px) {
  .breadcrumbs {
    font-size: calc(8 * 100vw / var(--vw-base));
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.c-page-hero {
  width: 100%;
  aspect-ratio: 1600/580;
}
@media (max-width: 767px) {
  .c-page-hero {
    aspect-ratio: 375/215;
  }
  .c-page-hero img {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ボタン・リンク
------------------------------*/
.c-btn {
  display: inline-block;
  width: 16.32em;
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  background: #80b44b;
  border-radius: 2.16em;
  padding: 1.6em 2em;
  position: relative;
  text-align: left;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  background: url(../img/icon_arrow01.svg) no-repeat center center/contain;
  width: 1.6em;
  aspect-ratio: 40/20;
}
@media (max-width: 767px) {
  .c-btn {
    font-size: calc(13 * 100vw / var(--vw-base));
  }
}

.c-link { /* c-link-hov をhoverでアニメーション */
  display: flex;
  align-items: center;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 2.7;
  letter-spacing: 0.06em;
  padding-right: 2em;
  position: relative;
  transition: all 0.3s;
}
.c-link em {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #80b44b;
  width: 1.4em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all 0.3s;
}
.c-link em::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  background: #fff;
  aspect-ratio: 100/70;
  transform: translate(-50%, -50%);
  width: 50%;
  left: 50%;
  top: 50%;
  -webkit-mask: url(../img/icon_arrow02-2.svg) center/100% no-repeat;
          mask: url(../img/icon_arrow02-2.svg) center/100% no-repeat;
}
@media (max-width: 767px) {
  .c-link {
    font-size: calc(12 * 100vw / var(--vw-base));
  }
}

@media (hover: hover) {
  .c-link-hov:hover {
    opacity: 1;
  }
  .c-link-hov:hover a {
    opacity: 1;
  }
  .c-link-hov:hover .c-link:not(.c-link-t1), .c-link-hov:hover.c-link:not(.c-link-t1) {
    color: #ffff00;
    color: #309057;
  }
  .c-link-hov:hover .c-link:not(.c-link-t1) em, .c-link-hov:hover.c-link:not(.c-link-t1) em {
    background: #ffff00;
    background: #309057;
  }
  .c-link-hov:hover .c-link.c-link-t1 {
    opacity: 0.7;
  }
}

.c-link--wh {
  color: #fff;
}
.c-link--wh em {
  background: #fff;
}
.c-link--wh em::after {
  background: #80b44b;
}

.c-link--navy em {
  background: #2b256d;
}
.c-btn-flow {
  position: relative;
  overflow: hidden;
}
.c-btn-flow::before {
  content: "";
  position: absolute;
  background: #2e9559;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  transition: all 0.5s;
}
.c-btn-flow > * {
  position: relative;
  z-index: 10;
}
@media (hover: hover) {
  .c-btn-flow:hover {
    opacity: 1;
  }
  .c-btn-flow:hover::before {
    transform: scaleX(1);
  }
}

.c-btn-flow.c-btn-flow-2::before {
  background: #80b44b;
}

/* テキスト色
------------------------------*/
.u-text-wh {
  color: #fff;
}

/* 投稿デフォルト
------------------------------*/
.c-editor-style h1, .c-editor-style h2, .c-editor-style h3, .c-editor-style h4, .c-editor-style h5, .c-editor-style h6, .c-editor-style strong {
  font-weight: bold;
  margin: 1em 0;
}
.c-editor-style h1 {
  font-size: calc(44 * 100vw / var(--vw-base));
}
.c-editor-style h2 {
  font-size: calc(32 * 100vw / var(--vw-base));
}
.c-editor-style h3 {
  font-size: calc(24 * 100vw / var(--vw-base));
}
.c-editor-style h4 {
  font-size: calc(20 * 100vw / var(--vw-base));
}
.c-editor-style p {
  margin: 2.2em 0; /*  */
}
@media (max-width: 767px) {
  .c-editor-style p {
    margin: 1em 0;
  }
}
.c-editor-style a {
  color: #0073aa;
  text-decoration: underline;
}
.c-editor-style ol {
  margin: calc(16 * 100vw / var(--vw-base)) 0;
  counter-reset: count 0;
}
.c-editor-style ol li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
}
.c-editor-style ol li::before {
  content: counter(count) ".";
  counter-increment: count 1;
}
.c-editor-style ul {
  margin: calc(16 * 100vw / var(--vw-base)) 0;
}
.c-editor-style ul li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
}
.c-editor-style ul li::before {
  content: "・";
}
.c-editor-style img {
  margin: calc(16 * 100vw / var(--vw-base)) 0;
}
.c-editor-style table {
  margin: calc(16 * 100vw / var(--vw-base)) 0;
}

/*------------------------------
CTA
------------------------------*/
.cta {
  padding: calc(80 * 100vw / var(--vw-base)) 0 calc(70 * 100vw / var(--vw-base));
  margin-bottom: calc(78 * 100vw / var(--vw-base));
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #e6e6e6;
  width: 89%;
  height: 100%;
  border-radius: calc(50 * 100vw / var(--vw-base)) 0 0 calc(50 * 100vw / var(--vw-base));
}
@media (max-width: 999px) {
  .cta::before {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .cta {
    padding: calc(35 * 100vw / var(--vw-base)) 0 calc(45 * 100vw / var(--vw-base)); /*  */
    margin-bottom: calc(60 * 100vw / var(--vw-base));
  }
  .cta::before {
    border-radius: calc(25 * 100vw / var(--vw-base)) 0 0 calc(25 * 100vw / var(--vw-base));
    width: calc(345 * 100vw / var(--vw-base));
  }
}

.cta__content {
  position: relative;
  padding-left: calc(65 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .cta__content {
    padding-left: calc(30 / var(--inner) * 100%);
  }
}

.cta__header {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cta__header {
    display: block;
  }
}

.cta__header--en {
  letter-spacing: 0.01em;
}

.cta__message {
  margin-left: 2.5em;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: calc(10 * 100vw / var(--vw-base));
    margin-left: 0;
    white-space: nowrap;
    margin-top: 2.5em;
  }
}

.cta__items {
  margin-top: calc(50 * 100vw / var(--vw-base));
  display: flex;
  gap: 0 calc(65 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .cta__items {
    display: block;
    margin-top: calc(25 * 100vw / var(--vw-base));
  }
}

.cta__item {
  width: calc(50% - (65 * 100vw / var(--vw-base)) / 2);
  background: #fff;
  border-radius: calc(15 * 100vw / var(--vw-base));
  padding: calc(50 * 100vw / var(--vw-base)) calc(30 * 100vw / var(--vw-base)) calc(60 * 100vw / var(--vw-base));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta__item span {
  display: flex;
  align-items: center;
  margin-top: calc(24 * 100vw / var(--vw-base));
  position: relative;
}
.cta__item span em {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  background: #80b44b;
  width: calc(34 * 100vw / var(--vw-base));
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all 0.3s;
}
.cta__item span em::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  background: #fff;
  aspect-ratio: 100/70;
  transform: translate(-50%, -50%);
  width: 50%;
  left: 50%;
  top: 50%;
  -webkit-mask: url(../img/icon_arrow02-2.svg) center/100% no-repeat;
          mask: url(../img/icon_arrow02-2.svg) center/100% no-repeat;
}
.cta__item > * {
  transition: all 0.3s;
}
@media (hover: hover) {
  .cta__item:hover {
    color: #fff;
  }
  .cta__item:hover span em {
    background: #fff;
  }
  .cta__item:hover span em::after {
    background: #80b44b;
  }
  .cta__item:hover a {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .cta__item {
    width: 100%;
    padding: calc(20 * 100vw / var(--vw-base));
    padding-bottom: calc(30 * 100vw / var(--vw-base));
    border-radius: calc(7 * 100vw / var(--vw-base));
  }
  .cta__item:nth-child(2) {
    margin-top: calc(15 * 100vw / var(--vw-base));
  }
  .cta__item span {
    margin-top: 0;
  }
  .cta__item span em {
    width: calc(17 * 100vw / var(--vw-base));
  }
}

.cta__item-label {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
}
@media (max-width: 767px) {
  .cta__item-label {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
}

.cta__item-tel,
.cta__item-form {
  height: calc(53 * 100vw / var(--vw-base));
  display: flex;
  align-items: center;
}

.cta__item-tel {
  font-size: calc(53 * 100vw / var(--vw-base));
  font-weight: 400;
}
.cta__item-tel::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
  width: 0.7em;
  aspect-ratio: 37/41;
  margin-right: 0.55em;
}
@media (max-width: 767px) {
  .cta__item-tel {
    font-size: calc(26 * 100vw / var(--vw-base));
  }
}

.cta__item-form {
  font-size: calc(40 * 100vw / var(--vw-base));
  font-weight: 400;
}
.cta__item-form::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_mail.svg) no-repeat center center/contain;
  width: 1.3em;
  aspect-ratio: 52/38;
  margin-right: 0.625em;
}
@media (max-width: 767px) {
  .cta__item-form {
    font-size: calc(20 * 100vw / var(--vw-base));
  }
}

.cta__hour {
  margin-top: 1.5em;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
}
@media (max-width: 767px) {
  .cta__hour {
    font-size: calc(10 * 100vw / var(--vw-base));
    margin-top: 0.5em;
  }
}

/*------------------------------
お客様の声一覧
------------------------------*/
.c-interview-list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-interview-list {
    display: block;
  }
}

.c-interview-item {
  width: 33.3%;
  position: relative;
}
@media (max-width: 767px) {
  .c-interview-item {
    width: 100%;
  }
  .c-interview-item:nth-child(n+2) {
    margin-top: calc(80 / var(--inner) * 100%);
  }
}

.c-interview-item__number {
  position: absolute;
  top: calc(40 * 100vw / var(--vw-base));
  left: calc(30 * 100vw / var(--vw-base));
  transform: translateY(-100%);
  display: block;
  text-align: center;
  background: url(../img/interview/img_bubble.png) no-repeat center center/100%;
  width: calc(120 * 100vw / var(--vw-base));
  aspect-ratio: 120/130;
  font-size: calc(10 * 100vw / var(--vw-base));
  font-weight: 400;
  color: #fff;
  padding-top: 3em;
}
.c-interview-item__number strong {
  display: block;
  font-size: calc(40 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .c-interview-item__number {
    width: calc(80 * 100vw / var(--vw-base));
    padding-top: 1.5em;
    left: calc(15 * 100vw / var(--vw-base));
  }
  .c-interview-item__number strong {
    font-size: calc(30 * 100vw / var(--vw-base));
  }
}

.c-interview-item__catch {
  position: absolute;
  transform: translateY(-50%);
  top: calc(40 * 100vw / var(--vw-base));
  right: calc(40 * 100vw / var(--vw-base));
  font-size: calc(23 * 100vw / var(--vw-base));
  font-weight: 500;
  letter-spacing: 0.08em;
  display: inline;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 calc(10 * 100vw / var(--vw-base));
}
.c-interview-item__catch p {
  writing-mode: vertical-rl;
  line-height: 1.5;
  width: 1.5em;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  position: relative;
}
.c-interview-item__catch p span {
  position: relative;
  z-index: 10;
  padding: 0.2em 0;
}
.c-interview-item__catch p span::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
}
@media (max-width: 767px) {
  .c-interview-item__catch {
    right: calc(15 * 100vw / var(--vw-base));
    font-size: calc(18 * 100vw / var(--vw-base));
  }
}

.c-interview-item__catch--archive p {
  background: #fff;
}
.c-interview-item__catch--archive p span::before {
  display: none;
}

.c-interview-item__thumbnail img {
  aspect-ratio: 377/368;
}
.c-interview-item__thumbnail img:not(.dummy) {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-interview-item__body {
  padding: calc(20 * 100vw / var(--vw-base)) calc(14 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .c-interview-item__body {
    padding: calc(15 * 100vw / var(--vw-base)) calc(10 * 100vw / var(--vw-base));
  }
}

.c-interview-item__title {
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.c-interview-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-interview-item__category {
  display: flex;
  align-items: center;
}
.c-interview-item__category dt, .c-interview-item__category dd {
  font-size: calc(16 * 100vw / var(--vw-base));
  font-weight: 500;
}
.c-interview-item__category dt {
  background: #80b44b;
  color: #fff;
  padding: 0.25em 0.625em;
  border-radius: 0.25em;
}
.c-interview-item__category dd {
  margin-left: 0.625em;
}

.c-interview-item__link span {
  color: #80b44b;
  margin-top: 2em; /*  */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2.3em;
}
.c-interview-item__link span::after { /*  */
  width: 1.4em;
  margin-left: 0;
}

/* 
------------------------------*/
.c-news-item:nth-child(n+2) {
  margin-top: calc(65 * 100vw / var(--vw-base));
}
.c-news-item a {
  display: flex;
  align-items: flex-start; /*  */
}
@media (max-width: 767px) {
  .c-news-item:nth-child(n+2) {
    margin-top: calc(30 * 100vw / var(--vw-base));
  }
  .c-news-item a {
    justify-content: space-between;
  }
}

.c-news-item__thumbnail {
  width: calc(165 / var(--inner) * 100%);
}
.c-news-item__thumbnail img {
  width: calc(120 * 100vw / var(--vw-base));
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(16 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .c-news-item__thumbnail {
    width: calc(64 * 100vw / var(--vw-base));
  }
  .c-news-item__thumbnail img {
    width: 100%;
  }
}

.c-news-item__body {
  width: calc(100% - (165 / var(--inner) * 100%));
  border-bottom: 1px solid #3e3a39;
  padding: 0 0 calc(30 * 100vw / var(--vw-base));
  position: relative;
}
.c-news-item__body::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_arrow02.svg) no-repeat center center/contain;
  width: calc(34 * 100vw / var(--vw-base));
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .c-news-item__body {
    width: calc(230 * 100vw / var(--vw-base));
    padding: 0;
    align-self: stretch;
  }
  .c-news-item__body::after {
    width: calc(20 * 100vw / var(--vw-base));
  }
}

.c-news-item__meta {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1; /*  */
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-news-item__meta {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
}

.c-news-item__category {
  margin-left: 1.1em;
  position: relative;
}
.c-news-item__category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.7em;
  transform: translate(-50%, -50%);
  background: #3e3a39;
  width: 1px;
  height: 80%;
}

.c-news-item__title {
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.84;
  margin-top: 0.7em;
}
@media (max-width: 767px) {
  .c-news-item__title {
    font-size: calc(12 * 100vw / var(--vw-base));
    margin-top: 1.1em;
  }
}

/*------------------------------
物件一覧
------------------------------*/
.c-property-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(60 * 100vw / var(--vw-base)) calc(60 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .c-property-list {
    display: block;
  }
}

.c-property-item {
  width: calc(33.3% - (60 / var(--inner) * 100%) * 2 / 3);
}
@media (max-width: 767px) {
  .c-property-item {
    width: 100%;
  }
  .c-property-item:nth-child(n+2) {
    margin-top: calc(40 / var(--inner) * 100%);
  }
}

.c-property-item__thumbnail img {
  aspect-ratio: 377/253;
  border-radius: calc(25 * 100vw / var(--vw-base)) calc(25 * 100vw / var(--vw-base)) 0 0;
}
.c-property-item__thumbnail img:not(.dummy) {
  -o-object-fit: cover;
     object-fit: cover;
}

.c-property-item__body {
  background: #ececec;
  padding: calc(20 * 100vw / var(--vw-base));
  border-radius: 0 0 calc(25 * 100vw / var(--vw-base)) calc(25 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .c-property-item__body {
    padding: calc(10 * 100vw / var(--vw-base)) calc(15 * 100vw / var(--vw-base)) calc(20 * 100vw / var(--vw-base));
  }
}

.c-property-item__title {
  font-size: calc(30 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.4666666667;
}
@media (max-width: 767px) {
  .c-property-item__title {
    font-size: calc(18.5 * 100vw / var(--vw-base));
  }
}

.c-property-item__address {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  margin-top: 0.7em;
}
@media (max-width: 767px) {
  .c-property-item__address {
    font-size: calc(12.3 * 100vw / var(--vw-base));
  }
}

.c-property-item__status-wrap {
  margin-top: calc(30 * 100vw / var(--vw-base));
  display: flex;
  flex-wrap: wrap;
  gap: calc(10 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .c-property-item__status-wrap {
    margin-top: calc(20 * 100vw / var(--vw-base));
  }
}

.c-property-item__status {
  display: inline-block;
  min-width: 6.4em;
  font-size: calc(18 * 100vw / var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  background: #80b44b;
  border-radius: 1em;
  padding: 0.5em 1.2em;
  text-align: center;
}
@media (max-width: 767px) {
  .c-property-item__status {
    font-size: calc(12.5 * 100vw / var(--vw-base));
    padding: 0.3em 1em;
    min-width: 5.8em;
  }
}

.c-property-item__status--new {
  background: #ffa900;
}

.c-property-item__status--closed {
  background: #4a5056;
}

.c-property-item__description {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 2;
  margin-top: 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-property-item__description {
    font-size: calc(12.3 * 100vw / var(--vw-base));
  }
}

.c-property-item__link {
  margin-top: calc(60 * 100vw / var(--vw-base));
}

/*------------------------------
banner
------------------------------*/
.banner__list {
  display: flex;
  gap: 0 calc(100 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .banner__list {
    display: block;
  }
}

@media (max-width: 767px) {
  .banner__item:nth-child(2) {
    margin-top: calc(20 / var(--inner) * 100%);
  }
}

/*------------------------------
tenant-menu
------------------------------*/
.tenant-menu {
  padding: calc(85 * 100vw / var(--vw-base)) 0 calc(200 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .tenant-menu {
    padding: calc(40 * 100vw / var(--vw-base)) 0 calc(60 * 100vw / var(--vw-base));
  }
}

.tenant-menu__list {
  display: flex;
  gap: 0 calc(40 / var(--inner) * 100%);
}
.tenant-menu__list li {
  width: calc(33.3% - (40 / var(--inner) * 100%) * 2 / 3);
}
.tenant-menu__list li a {
  display: inline-block;
  width: 100%;
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 500;
  color: #80b44b;
  border: 0.28em solid #80b44b;
  border-radius: 2.16em;
  padding: 1.5em 2.4em;
  position: relative;
  transition: all 0.3s;
}
.tenant-menu__list li a::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6em;
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon_arrow01.svg);
          mask-image: url(../img/icon_arrow01.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #80b44b;
  width: 1.6em;
  aspect-ratio: 40/23;
}
@media (hover: hover) {
  .tenant-menu__list li a:hover {
    opacity: 1;
    color: #fff;
    background: #80b44b;
  }
  .tenant-menu__list li a:hover::after {
    background: #fff;
  }
}
@media (max-width: 767px) {
  .tenant-menu__list {
    display: block;
  }
  .tenant-menu__list li {
    width: 100%;
  }
  .tenant-menu__list li:nth-child(n+2) {
    margin-top: calc(20 / var(--inner) * 100%);
  }
  .tenant-menu__list li a {
    font-size: calc(12.5 * 100vw / var(--vw-base));
    border: 0.3em solid #80b44b;
  }
}

/*------------------------------
swiper
------------------------------*/
.c-swiper-btn {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  height: auto;
  width: auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #80b44b;
  width: 1.4em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all 0.3s;
}
.c-swiper-btn::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  background: #fff;
  aspect-ratio: 100/70;
  transform: translate(-50%, -50%);
  width: 50%;
  left: 50%;
  top: 50%;
  -webkit-mask: url(../img/icon_arrow02-2.svg) center/100% no-repeat;
          mask: url(../img/icon_arrow02-2.svg) center/100% no-repeat;
}

/*------------------------------
infinite 
------------------------------*/
.scrollCon {
  visibility: hidden;
  overflow: hidden;
  aspect-ratio: 1600/217; /* 表示領域 */
  width: 100%;
}
.scrollCon .scrollItem {
  display: flex;
  max-width: unset;
  position: absolute;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}
.scrollCon .scroll-c {
  max-width: unset;
  flex-shrink: 0;
  height: 100%;
  width: auto;
  padding: 0;
}

.vertical .scrollItem { /* no edit */
  flex-direction: column;
} /* 縦並び用 */
.scrollCon--1 .scroll-c {
  aspect-ratio: 1912/217; /* アイテムのサイズ */
}

.scrollCon--2 .scroll-c {
  aspect-ratio: 1300/175; /* アイテムのサイズ */
}

/*------------------------------
loading
------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #fff;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: auto;
}
@media (orientation: landscape) and (max-width: 767px) {
  .loading {
    justify-content: center;
  }
}

.loading img {
  width: calc(440 * 100vw / var(--vw-base));
  transform: translateX(-10%);
  transition: opacity 1.5s;
  position: relative;
  z-index: 200;
  opacity: 0;
  aspect-ratio: 100/111;
}
@media (max-width: 767px) {
  .loading img {
    width: calc(265 * 100vw / var(--vw-base));
    transform: translateX(0%);
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .loading img {
    margin-top: 0;
    width: 13%;
  }
}

.loading-body {
  opacity: 0;
}
.loading-body.active1 {
  opacity: 1;
}
.loading-body.active2 {
  transition: opacity 2s;
}

.loading-bg {
  transition: opacity 2s;
}

.loading.active1 img {
  opacity: 1;
}

.loading.active2 {
  opacity: 0;
}

body.loadingActive {
  position: fixed;
  overflow-y: scroll; /* fixedでもスクロールバーが消えないようにする */
  top: 0;
  left: 0;
  width: 100%;
}

#loadingBg {
  background: #fff;
}

/*------------------------------
float
------------------------------*/
.float-wrap {
  position: fixed;
  z-index: 3000;
  right: 0;
  bottom: 50px;
  font-weight: 500;
  font-size: calc(21 * 100vw / var(--vw-base));
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateX(-20%) scale(0.8);
  transform-origin: right bottom;
}
.float-wrap p {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .float-wrap {
    bottom: 10px;
    transform: translateX(-3.2%) scale(0.4);
    transform-origin: right bottom;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .float-wrap {
    transform: translateX(-3.2%) scale(0.2);
  }
}

@media (hover: hover) {
  .float:hover {
    opacity: 1;
  }
  .float:hover p {
    color: #fff;
  }
}

.float--1 {
  color: #2e9559;
  position: relative;
  background: url(../img/float1.png) no-repeat center center/100%;
  aspect-ratio: 354/316;
  width: calc(180 * 100vw / var(--vw-base));
}
.float--1 p {
  top: 46%;
  left: 43%;
}
@media (hover: hover) {
  .float--1:hover {
    background: url(../img/float1_h.png) no-repeat center center/100%;
  }
}

.float--2 {
  color: #80b44b;
  position: relative;
  background: url(../img/float2.png) no-repeat center center/100%;
  aspect-ratio: 352/362;
  width: calc(180 * 100vw / var(--vw-base));
}
.float--2 p {
  top: 43%;
  left: 48%;
}
@media (hover: hover) {
  .float--2:hover {
    background: url(../img/float2_h.png) no-repeat center center/100%;
  }
}

.float--3 {
  color: #006837;
  position: relative;
  background: url(../img/float3.png) no-repeat center center/100%;
  aspect-ratio: 342/313;
  width: calc(180 * 100vw / var(--vw-base));
}
.float--3 p {
  top: 40%;
  left: 51%;
}
@media (hover: hover) {
  .float--3:hover {
    background: url(../img/float3_h.png) no-repeat center center/100%;
  }
}

/*------------------------------
map-modal
------------------------------*/
/* モーダル全体のコンテナ */
.custom-popup {
  position: absolute;
  cursor: auto;
  width: 240px;
  height: auto;
  /* ピンの真上に表示するための位置調整 */
  transform: translate(-50%, -100%);
  padding-bottom: 20px; /* ピンとの隙間 */
  z-index: 100;
}
.custom-popup h3 {
  font-size: calc(17 * 100vw / var(--vw-base));
  margin-top: 1em;
}
.custom-popup .c-link {
  font-size: calc(11 * 100vw / var(--vw-base));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 1em;
  color: #80b44b;
}
.custom-popup .text {
  padding: 0 5% 10%;
}
.custom-popup .text p {
  height: 2lh;
  overflow: hidden;
  line-height: 2;
  margin-top: 1em;
}
.custom-popup .c-property-item__status {
  font-size: calc(9 * 100vw / var(--vw-base));
  border-radius: calc(20 * 100vw / var(--vw-base));
}

/* 実際に表示されるカード部分 */
.popup-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 0;
  position: relative;
  -webkit-animation: fadeIn 0.3s ease-out;
          animation: fadeIn 0.3s ease-out; /* ふわっと表示 */
}

/* 三角形の吹き出し（必要なら） */
.popup-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* 閉じるボタン */
.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #333;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 固定ボックスのスタイル */
#fixed-info-box {
  position: absolute;
  bottom: 39%;
  right: 2.2%;
  width: 18%;
  filter: drop-shadow(0px 0 15px rgba(0, 0, 0, 0.5));
  z-index: 100; /* マップより上に表示 */
  transition: opacity 0.3s ease;
}
#fixed-info-box::before {
  content: "";
  position: absolute;
  background: #fff;
  aspect-ratio: 300/326;
  transform: translate(-100%, 50%);
  width: 16%;
  left: 1px;
  bottom: 27%;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
#fixed-info-box h3 {
  font-size: calc(17 * 100vw / var(--vw-base));
  padding-top: 1em;
}
#fixed-info-box .c-link {
  font-size: calc(11 * 100vw / var(--vw-base));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-top: 1em;
  color: #80b44b;
  letter-spacing: 0.1em;
}
#fixed-info-box .text {
  padding: 0 5% 10%;
  background: #fff;
  border-radius: 0 0 calc(14 * 100vw / var(--vw-base)) calc(14 * 100vw / var(--vw-base));
}
#fixed-info-box .text p {
  overflow: hidden;
  line-height: 2;
  margin: 0.7em 0;
  font-size: calc(11 * 100vw / var(--vw-base));
}
#fixed-info-box .c-property-item__status {
  font-size: calc(9 * 100vw / var(--vw-base));
  border-radius: calc(20 * 100vw / var(--vw-base));
  padding: 0.5em 2.7em;
}
@media (max-width: 767px) {
  #fixed-info-box {
    width: 50%;
    right: -6%;
  }
  #fixed-info-box h3 {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}

.info-box-hidden { /* /* 非表示のときのクラス * */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 表示するときのクラス */
.info-box-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#info-box-close {
  display: block;
  display: none;
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
}

.map-modal-img img {
  aspect-ratio: 224/151;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(14 * 100vw / var(--vw-base)) calc(14 * 100vw / var(--vw-base)) 0 0;
}

.map__canvas {
  margin-top: calc(45 / var(--inner) * 100%);
  width: 100%;
  aspect-ratio: 1265/612;
  border-radius: calc(20 * 100vw / var(--vw-base));
  overflow: hidden;
}
@media (max-width: 767px) {
  .map__canvas {
    aspect-ratio: 1/1;
  }
}

/*------------------------------
fade
------------------------------*/
.fade {
  opacity: 0;
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 6rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 4rem;
  }
  .error-page p {
    font-size: 1.6rem;
  }
}

img.dummy {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-nocta + .cta {
  display: none;
}

.body[class][class] .u-le-unset {
  letter-spacing: unset;
}
.body[class][class] .u-le0_1 {
  letter-spacing: 0.1em;
}
.body[class][class] .u-mt0 {
  margin-top: 0;
}
.body[class][class] .u-mt10 {
  margin-top: calc(10 * 100vw / var(--vw-base));
}
.body[class][class] .u-mt20 {
  margin-top: calc(20 * 100vw / var(--vw-base));
}
.body[class][class] .u-mt75 {
  margin-top: calc(75 * 100vw / var(--vw-base));
}
.body[class][class] .u-mt90 {
  margin-top: calc(90 * 100vw / var(--vw-base));
}
.body[class][class] .u-mt2e {
  margin-top: 2em;
}
@media (max-width: 767px) {
  .body[class][class] .u-fz36-sp {
    font-size: calc(36 * 100vw / var(--vw-base));
  }
  .body[class][class] .u-fz38-sp {
    font-size: calc(38 * 100vw / var(--vw-base));
  }
}
/*# sourceMappingURL=common.css.map */