@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Zen Old Mincho", serif;
  color: #1c1a18;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

body {
  background: #1c1a18;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default type */
ul,
ol {
  list-style: none;
}

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

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-inner--narrow {
  max-width: 1080px;
  max-width: 67.5rem;
}

/* breadcrumb */
.breadcrumb__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 28px;
  margin-left: 1.75rem;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 1px;
  margin-left: -28px;
  margin-left: -1.75rem;
  background: currentColor;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  padding: 8px;
  padding: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  min-height: 46px;
  min-height: 2.875rem;
  padding: 10px 18px;
  padding: 0.625rem 1.125rem;
  border-radius: 0.125rem;
  color: #1c1a18;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(18%, #c7b299), color-stop(92%, #947e72));
  background: linear-gradient(180deg, #c7b299 18%, #947e72 92%);
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
}
.btn::after {
  position: absolute;
  content: "";
  width: 16px;
  width: 1rem;
  height: 10px;
  height: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  right: 1.125rem;
  background: url(../img/common/icon-arrow.svg) no-repeat center/contain;
}

.btn:is(a, button) {
  cursor: pointer;
}
.btn:is(a, button):hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn:is(a, button):hover {
    opacity: 1;
  }
}

.btn--contact {
  width: 142px;
  width: 8.875rem;
  gap: 16px;
  gap: 1rem;
  border-radius: 0.25rem;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.btn--search {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 54px;
  min-height: 3.375rem;
  padding-block: 16px;
  padding-block: 1rem;
}

.btn--submit {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 240px;
  width: 15rem;
  min-height: 54px;
  min-height: 3.375rem;
  padding: 0 18px;
  padding: 0 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .btn--submit {
    width: min(100%, 15rem);
  }
}

.btn--more {
  width: 162px;
  width: 10.125rem;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

/* cv */
.cv {
  min-height: 632px;
  min-height: 39.5rem;
  padding: 166px 0 160px;
  padding: 10.375rem 0 10rem;
  color: #f2f8ff;
  background: #c7b299;
}
@media screen and (max-width: 767px) {
  .cv {
    min-height: 0;
    padding: 5rem 0;
  }
}

.cv__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 306px;
  min-height: 19.125rem;
  padding: 98px 40px 56px;
  padding: 6.125rem 2.5rem 3.5rem;
  background: rgba(112, 112, 112, .2);
}
@media screen and (max-width: 767px) {
  .cv__content {
    min-height: 0;
    padding: 4rem 1.25rem 8rem;
  }
}
.cv__content .heading {
  margin-top: -144px;
  margin-top: -9rem;
  color: #1c1a18;
}
@media screen and (max-width: 767px) {
  .cv__content .heading {
    margin-top: -5.3125rem;
  }
}
.cv__content::before, .cv__content::after {
  position: absolute;
  left: 50%;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cv__content::before {
  bottom: 56px;
  bottom: 3.5rem;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.cv__content::after {
  bottom: 74px;
  bottom: 4.625rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 21px;
  width: 1.3125rem;
  height: 12px;
  height: 0.75rem;
  background-color: currentColor;
  -webkit-mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
          mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .cv__content::before {
    bottom: 2.5rem;
  }
  .cv__content::after {
    bottom: 3.625rem;
  }
}

.cv__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  text-align: center;
  padding-top: 100px;
  padding-top: 6.25rem;
  color: #f2f8ff;
  background: #1c1a18;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item a {
  padding: 18px 0;
  padding: 1.125rem 0;
  display: block;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  letter-spacing: 0.1em;
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.fnav__item a {
  display: block;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  line-height: 1.575;
  letter-spacing: 0.105em;
  opacity: 0.82;
}

/* footer */
.footer {
  min-height: 386px;
  min-height: 24.125rem;
  padding: 80px;
  padding: 5rem;
  color: #1c1a18;
  background: #f2ede5;
}
@media screen and (max-width: 767px) {
  .footer {
    min-height: 0;
    padding: 2.5rem 1.25rem 1.25rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.footer__logo {
  width: 110px;
  width: 6.875rem;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 1.25rem;
  }
}

.footer__privacy,
.footer__copyright {
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.footer__copyright {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    display: block;
    text-align: center;
    font-size: 0.625rem;
    margin-top: 2.5rem;
  }
}

/* form */
.form {
  color: #f2f8ff;
}

.form--light {
  color: #1c1a18;
}

.form--light .form__control,
.form--light .form__privacy-text,
.form--light .form__checkbox[type=checkbox] {
  background-color: #fff;
}

.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px;
  gap: 0.5rem;
}

.form__item--radio {
  min-width: 0;
  padding: 0;
  border: 0;
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.form__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 10px;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  color: #1c1a18;
  background-color: #aa9b92;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.form__badge--optional {
  color: #666;
  background-color: #d4d4d4;
}

.form__control {
  width: 100%;
  min-height: 53px;
  min-height: 3.3125rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  border: 1px solid #a7a7a7;
  border-radius: 0.25rem;
  color: #333;
  background-color: #f2f8ff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.form__control::-webkit-input-placeholder {
  color: #a9a8a7;
  opacity: 1;
}
.form__control::-moz-placeholder {
  color: #a9a8a7;
  opacity: 1;
}
.form__control::-ms-input-placeholder {
  color: #a9a8a7;
  opacity: 1;
}
.form__control::placeholder {
  color: #a9a8a7;
  opacity: 1;
}
.form__control:focus-visible {
  outline: 1px solid #c7b299;
  outline-offset: 2px;
}

.form__radio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 24px;
  gap: 0.75rem 1.5rem;
}

.form__radio-list .wpcf7-list-item {
  margin: 0;
}

.form__radio-list .wpcf7-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  cursor: pointer;
}

.form__radio-list input[type=radio] {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  border: 2px solid #858585;
  border-radius: 50%;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__radio-list input[type=radio]:checked {
  border-color: #aa9b92;
  background-image: radial-gradient(circle, #aa9b92 0 0.375rem, transparent 0.4375rem);
}
.form__radio-list input[type=radio]:focus-visible {
  outline: 2px solid #c7b299;
  outline-offset: 2px;
}

.form__radio-list .wpcf7-list-item-label {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.form__textarea {
  height: 240px;
  height: 15rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  resize: vertical;
}

.form__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.form__privacy-note {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
.form__privacy-note a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .form__privacy-note {
    font-size: 0.875rem;
  }
}

.form__privacy-text {
  width: min(100%, 466px);
  width: min(100%, 29.125rem);
  height: 130px;
  height: 8.125rem;
  padding: 12px 16px;
  padding: 0.75rem 1rem;
  overflow-y: auto;
  border: 1px solid #a7a7a7;
  border-radius: 0.25rem;
  color: #333;
  background-color: #f2f8ff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.form__privacy-text p + p {
  margin-top: 1em;
}

.form__agreement {
  min-width: 0;
}

.form__checkbox[type=checkbox] {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border: 1px solid #a7a7a7;
  border-radius: 0.125rem;
  background-color: #f2f8ff;
}
.form__checkbox[type=checkbox]:checked {
  background-color: #c7b299;
  background-image: linear-gradient(45deg, transparent 44%, #1c1a18 44% 56%, transparent 56%), linear-gradient(-45deg, transparent 44%, #1c1a18 44% 56%, transparent 56%);
  background-position: 3px 7px, 6px 5px;
  background-position: 0.1875rem 0.4375rem, 0.375rem 0.3125rem;
  background-size: 0.375rem 0.25rem, 0.5rem 0.3125rem;
  background-repeat: no-repeat;
}
.form__checkbox[type=checkbox]:focus-visible {
  outline: 2px solid #c7b299;
  outline-offset: 2px;
}

.form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .form__submit {
    margin-top: 3rem;
  }
}

/* gnav */
.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 34px;
  gap: 2.125rem;
}

.gnav__item .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 142px;
  width: 8.875rem;
}

.gnav__link {
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.575;
  letter-spacing: 0.105em;
  display: inline-block;
  padding: 10px 0;
  padding: 0.625rem 0;
  opacity: 0.82;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 44px;
  top: 2.75rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
  text-align: center;
}
.hamburger.active .hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  left: 0;
  background: #f2f8ff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 10px;
  top: 0.625rem;
}
.hamburger__border:nth-child(3) {
  top: 20px;
  top: 1.25rem;
}

/* header */
.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  height: 7.5rem;
  color: #f2f8ff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding: 16px 80px;
  padding: 1rem 5rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 1rem 1.25rem;
  }
}

.header__logo {
  width: 110px;
  width: 6.875rem;
}
.header__logo a {
  display: block;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

/* heading */
.heading {
  color: #f2f8ff;
  text-align: center;
}

.heading__en {
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 2.375rem;
  }
}

.heading__ja {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .heading__ja {
    font-size: 0.8125rem;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* mv */
.mv {
  position: relative;
  height: 400px;
  height: 25rem;
  padding-top: 184px;
  padding-top: 11.5rem;
  overflow: hidden;
  color: #f2f8ff;
  background-color: #1c1a18;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 20.625rem;
    padding-top: 8.125rem;
  }
}

.mv__title {
  margin-top: 16px;
  margin-top: 1rem;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2.875rem;
  }
}

.mv__subtitle {
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #f2f8ff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .mv__subtitle {
    font-size: 0.875rem;
  }
}

/* news */
/* operation-control */
.operation-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  gap: 0.75rem;
  padding: 0 28px 8px 0;
  padding: 0 1.75rem 0.5rem 0;
  border-bottom: 1px solid #33322e;
  font-size: 16px;
  font-size: 1rem;
}
.operation-control::after {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  width: 1rem;
  height: 10px;
  height: 0.625rem;
  color: #c7b299;
  background-color: currentColor;
  content: "";
  -webkit-mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
          mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
}

/* property-showcase */
.property-showcase {
  padding: 120px 0 160px;
  padding: 7.5rem 0 10rem;
  color: #f2f8ff;
  background-color: #1a1b1f;
}
@media screen and (max-width: 767px) {
  .property-showcase {
    padding: 5rem 1.25rem;
  }
}

.property-showcase__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 600px;
  height: 37.5rem;
  margin-top: 80px;
  margin-top: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .property-showcase__cards {
    height: 30rem;
    margin-top: 3.75rem;
  }
}
.property-showcase__cards.slick-initialized {
  display: block;
  overflow: visible;
}
.property-showcase__cards .slick-list {
  height: 100%;
  max-width: 1400px;
  max-width: 87.5rem;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .property-showcase__cards .slick-list {
    max-width: none;
  }
}
.property-showcase__cards .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.property-showcase__cards .slick-slide {
  height: 500px;
  height: 31.25rem;
}
@media screen and (max-width: 767px) {
  .property-showcase__cards .slick-slide {
    height: 30rem;
  }
}

.property-showcase__card {
  position: relative;
  width: 400px;
  width: 25rem;
  height: 500px;
  height: 31.25rem;
  overflow: hidden;
  border-radius: 0.25rem;
  opacity: 0.8;
  -webkit-transition: height 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: height 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.slick-initialized .property-showcase__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.property-showcase__card.slick-center {
  height: 600px;
  height: 37.5rem;
  opacity: 1;
}
.property-showcase__card.slick-center::after {
  right: 0;
  left: 0;
}
.property-showcase__card.slick-center .property-showcase__img-wrap {
  inset: 0;
  width: 100%;
}
.property-showcase__card::after {
  position: absolute;
  inset: 45% 33px 0;
  inset: 45% 2.0625rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 12, 16, 0)), to(#0b0c10));
  background: linear-gradient(180deg, rgba(11, 12, 16, 0), #0b0c10);
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .property-showcase__card {
    width: 100%;
    height: 30rem;
    opacity: 1;
  }
  .property-showcase__card::after {
    right: 0;
    left: 0;
  }
}

.property-showcase__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 24px;
  padding: 1.5rem;
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
.property-showcase__link:hover {
  opacity: 1;
}
.property-showcase__link:hover .property-showcase__img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.property-showcase__card--featured:not(.slick-slide) {
  width: 480px;
  width: 30rem;
  height: 600px;
  height: 37.5rem;
  opacity: 1;
}

.property-showcase__img-wrap {
  position: absolute;
  inset: 0 33px;
  inset: 0 2.0625rem;
  width: calc(100% - 4.125rem);
  height: 100%;
  overflow: hidden;
  -webkit-transition: inset 700ms cubic-bezier(0.22, 1, 0.36, 1), width 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: inset 700ms cubic-bezier(0.22, 1, 0.36, 1), width 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .property-showcase__img-wrap {
    inset: 0;
    width: 100%;
  }
}

.property-showcase__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.property-showcase__area,
.property-showcase__body {
  position: relative;
  z-index: 1;
  margin-right: 33px;
  margin-right: 2.0625rem;
  margin-left: 33px;
  margin-left: 2.0625rem;
  -webkit-transition: margin 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: margin 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.slick-center .property-showcase__area,
.slick-center .property-showcase__body {
  margin-right: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .property-showcase__area,
  .property-showcase__body {
    margin-right: 0;
    margin-left: 0;
  }
}

.property-showcase__area {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 3px 8px 4px;
  padding: 0.1875rem 0.5rem 0.25rem;
  background-color: #1a1b1f;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.property-showcase__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.property-showcase__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.property-showcase__meta li + li {
  padding-left: 10px;
  padding-left: 0.625rem;
  border-left: 1px solid rgba(255, 255, 255, .6);
}

.property-showcase__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  gap: 1.125rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.property-showcase__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}
.property-showcase__arrow::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16px;
  width: 1rem;
  height: 10px;
  height: 0.625rem;
  background-color: currentColor;
  content: "";
  -webkit-mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
          mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
}

.property-showcase__arrow--prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.property-showcase__more {
  margin: 32px auto 0;
  margin: 2rem auto 0;
}

@media (prefers-reduced-motion: reduce) {
  .property-showcase__card,
  .property-showcase__img-wrap,
  .property-showcase__img,
  .property-showcase__area,
  .property-showcase__body {
    -webkit-transition: none;
    transition: none;
  }
}
/* scroll reveal */
.fade-text-mask {
  overflow: hidden;
}

.is-reveal-ready .fade-text {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 1250ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 1250ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1250ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1250ms cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-reveal-ready .fade-block {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: opacity 900ms ease-out, -webkit-transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 900ms ease-out, -webkit-transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 900ms ease-out, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 900ms ease-out, transform 900ms cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.is-reveal-ready .fade-image {
  overflow: hidden;
}
.is-reveal-ready .fade-image::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: #1c1a18;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 800ms ease-out;
  transition: -webkit-transform 800ms ease-out;
  transition: transform 800ms ease-out;
  transition: transform 800ms ease-out, -webkit-transform 800ms ease-out;
  content: "";
  pointer-events: none;
}

.is-reveal-ready .fade-image-item::before {
  position: absolute;
  z-index: 3;
  inset: 0;
  background-color: #1c1a18;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 800ms ease-out;
  transition: -webkit-transform 800ms ease-out;
  transition: transform 800ms ease-out;
  transition: transform 800ms ease-out, -webkit-transform 800ms ease-out;
  content: "";
  pointer-events: none;
}

.is-reveal-ready .fade-text.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-reveal-ready .fade-block.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-reveal-ready .fade-image.is-visible::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.is-reveal-ready .fade-image-items.is-visible .fade-image-item::before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

@media (prefers-reduced-motion: reduce) {
  .is-reveal-ready .fade-text,
  .is-reveal-ready .fade-image,
  .is-reveal-ready .fade-block {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
  .is-reveal-ready .fade-image::before {
    display: none;
  }
  .is-reveal-ready .fade-image-item::before {
    display: none;
  }
}
/* about */
.about {
  position: relative;
  overflow: hidden;
  min-height: 1025px;
  min-height: 64.0625rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  color: #f2f8ff;
  background-color: #1c1a18;
}
@media screen and (max-width: 767px) {
  .about {
    min-height: 0;
    padding: 5rem 0;
  }
}

.about__intro {
  margin-top: 80px;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__intro {
    margin-top: 3.75rem;
  }
}

.about__catch {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .about__catch {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.about__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 0.875rem;
  }
  .about__text br {
    display: none;
  }
}

.about__visuals {
  position: absolute;
  z-index: 1;
  top: 314px;
  top: 19.625rem;
  left: 50%;
  width: 1440px;
  width: 90rem;
  height: 711px;
  height: 44.4375rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .about__visuals {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    width: auto;
    height: auto;
    margin-top: 3rem;
    padding: 0 1.25rem;
    -webkit-transform: none;
            transform: none;
  }
}

.about__visual {
  position: absolute;
}
.about__visual img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__visual figcaption {
  position: absolute;
  color: #f2f8ff;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .about__visual {
    position: relative;
    width: 100%;
    height: auto;
  }
  .about__visual img {
    height: auto;
  }
}

.about__visual--development {
  top: 126px;
  top: 7.875rem;
  left: 0;
  width: 356px;
  width: 22.25rem;
  height: 397px;
  height: 24.8125rem;
}
.about__visual--development::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(47deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0) 83%);
  content: "";
  pointer-events: none;
}
.about__visual--development figcaption {
  z-index: 1;
  right: 24px;
  right: 1.5rem;
  bottom: 22px;
  bottom: 1.375rem;
}

.about__visual--brokerage {
  top: 325px;
  top: 20.3125rem;
  left: 434px;
  left: 27.125rem;
  width: 507px;
  width: 31.6875rem;
  height: 386px;
  height: 24.125rem;
}
.about__visual--brokerage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(54deg, rgba(0, 0, 0, .8), rgba(102, 102, 102, 0) 77%);
  content: "";
  pointer-events: none;
}
.about__visual--brokerage figcaption {
  z-index: 1;
  top: 29px;
  top: 1.8125rem;
  right: 32px;
  right: 2rem;
}

.about__visual--purchase {
  top: 0;
  right: 0;
  width: 369px;
  width: 23.0625rem;
  height: 495px;
  height: 30.9375rem;
}
.about__visual--purchase::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(41deg, rgba(0, 0, 0, .8), rgba(102, 102, 102, 0) 69%);
  content: "";
  pointer-events: none;
}
.about__visual--purchase figcaption {
  z-index: 1;
  left: 33px;
  left: 2.0625rem;
  bottom: 22px;
  bottom: 1.375rem;
}

@media screen and (max-width: 767px) {
  .about__visual--development,
  .about__visual--brokerage,
  .about__visual--purchase {
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
  }
}
/* company */
.cv .heading__en {
  letter-spacing: 0.0125px;
}

/* info */
.info {
  min-height: 1136px;
  min-height: 71rem;
  padding: 120px 0 160px;
  padding: 7.5rem 0 10rem;
  background-color: #1c1a18;
  background-position: 265px 0;
  background-position: 16.5625rem 0;
}
@media screen and (max-width: 767px) {
  .info {
    min-height: 0;
    padding: 5rem 0;
  }
}

.info__content {
  display: grid;
  grid-template-columns: 25.125rem minmax(0, 35rem);
  gap: 68px;
  gap: 4.25rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .info__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3.75rem;
  }
}

.info__map-wrap {
  position: relative;
  height: 672px;
  height: 42rem;
}
@media screen and (max-width: 767px) {
  .info__map-wrap {
    height: 26.25rem;
  }
}

.info__map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.info__list {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.info .heading__en {
  letter-spacing: 0.075px;
}

.info__row {
  display: grid;
  grid-template-columns: 11.8125rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  min-height: 72px;
  min-height: 4.5rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(242, 248, 255, .5);
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .info__row {
    min-height: 0;
    padding: 0 0 1.1630859375rem;
    border-top: 0;
    border-bottom: 1px solid rgba(242, 248, 255, .5);
  }
  .info__row:first-child {
    padding: 1.25rem 0 1.1015625rem;
    border-top: 1px solid rgba(242, 248, 255, .5);
  }
  .info__row:nth-child(2) {
    padding-bottom: 1.1875rem;
  }
  .info__row dd {
    padding-top: 0.125rem;
  }
}
.info__row:last-child {
  border-bottom: 1px solid rgba(242, 248, 255, .5);
}
.info__row dt {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .info__row {
    grid-template-columns: 6.875rem 1fr;
    gap: 1rem;
    font-size: 0.8125rem;
  }
  .info__row dt {
    font-size: 0.9375rem;
  }
}

/* message */
.message {
  min-height: 824px;
  min-height: 51.5rem;
  padding-top: 120px;
  padding-top: 7.5rem;
  color: #f2f8ff;
  background-color: #1c1a18;
}
@media screen and (max-width: 767px) {
  .message {
    min-height: 0;
    padding: 5rem 0;
  }
}

.message__content {
  display: grid;
  grid-template-columns: 22.5rem minmax(0, 39rem);
  gap: 50px;
  gap: 3.125rem;
  max-width: 1034px;
  max-width: 64.625rem;
  margin: 80px auto 0;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .message__content {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 3.75rem;
    padding: 0 1.25rem;
  }
}

.message .l-inner--narrow {
  max-width: 1084px;
  max-width: 67.75rem;
}

.message__img-wrap {
  position: relative;
  width: 360px;
  width: 22.5rem;
  height: 400px;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .message__img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 360/400;
  }
}

.message__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__body {
  padding-top: 0;
}

.message__catch {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .message__catch {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.message__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 0.875rem;
  }
  .message__text br {
    display: none;
  }
}

/* contact-form */
.contact-form {
  padding: 120px 0;
  padding: 7.5rem 0;
  background-color: #1c1a18;
}
.contact-form .l-inner--narrow {
  max-width: 1066px;
  max-width: 66.625rem;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 5rem 0;
  }
}

/* CF7の画面切り替えと標準ラッパーによる差分のみ調整 */
.contact-form [hidden] {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
}

.contact-form .wpcf7-form {
  width: min(100%, 800px);
  width: min(100%, 50rem);
  margin-inline: auto;
}

.contact-form .form__item > p:not(.form__label),
.contact-form .form__submit > p,
.contact-form .contact-confirm__buttons > p {
  display: contents;
}

.contact-form .form__item > p > br,
.contact-form .contact-confirm__buttons > p > br {
  display: none;
}

.contact-form .wpcf7-list-item {
  margin: 0;
}

.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #ffb6b6;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-form .wpcf7-response-output {
  margin: 32px 0 0;
  margin: 2rem 0 0;
  color: #f2f8ff;
  line-height: 1.8;
}

.contact-form__agreement .wpcf7-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.contact-form__agreement .wpcf7-list-item-label {
  color: #f2f8ff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .contact-form__agreement .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}

.contact-form__agreement-link {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-confirm__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 53px;
  min-height: 3.3125rem;
  height: auto;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  color: #f2f8ff;
  white-space: pre-wrap;
  word-wrap: anywhere;
}

.contact-confirm__value.form__textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 240px;
  min-height: 15rem;
}

.contact-confirm__buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contact-confirm__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3rem;
  }
}

.contact-confirm__buttons .wpcf7-spinner {
  position: absolute;
  bottom: -40px;
  bottom: -2.5rem;
}

.contact-confirm__back,
.contact-confirm__submit {
  border: 0;
  cursor: pointer;
}

.contact-confirm__submit {
  border: 0;
}

/* news-archive */
/* news-single */
/* notfound */
.notfound {
  padding: 200px 0;
  padding: 12.5rem 0;
}

/* property-archive */
.property-archive {
  padding: 77px 0 160px;
  padding: 4.8125rem 0 10rem;
  color: #f2f8ff;
  background: #1c1a18;
}
@media screen and (max-width: 767px) {
  .property-archive {
    padding: 1.5rem 0 5rem;
  }
}

.property-archive__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 55px;
  min-height: 3.4375rem;
}

.property-archive__count {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.property-archive__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.property-archive__sort label {
  color: #827872;
  line-height: 20px;
  line-height: 1.25rem;
}

.property-archive__sort-control {
  position: relative;
  width: 160px;
  width: 10rem;
}
.property-archive__sort-control::after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  width: 1rem;
  height: 9.333px;
  height: 0.5833125rem;
  background-color: #c7b299;
  content: "";
  -webkit-mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
          mask: url("../img/common/icon-arrow.svg") center/contain no-repeat;
  pointer-events: none;
}

.property-archive__sort-value {
  display: block;
  width: 100%;
  height: 31px;
  height: 1.9375rem;
  padding: 0 28px 0 0;
  padding: 0 1.75rem 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: #f2f8ff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #33322e;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 31px;
  line-height: 1.9375rem;
}

.property-archive__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  margin-top: 2.5rem;
  gap: 24px;
  gap: 1.5rem;
}

.property-archive__card {
  position: relative;
  aspect-ratio: 327/500;
  overflow: hidden;
  border-radius: 0.25rem;
}
.property-archive__card::after {
  position: absolute;
  inset: 45% 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 26, 24, 0)), to(#1c1a18));
  background: linear-gradient(180deg, rgba(28, 26, 24, 0), #1c1a18);
  content: "";
  pointer-events: none;
}

.property-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 32px;
  padding: 2rem;
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
.property-archive__link:hover {
  opacity: 1;
}
.property-archive__link:hover .property-archive__img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.property-archive__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.property-archive__area,
.property-archive__body {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .property-archive__img {
    -webkit-transition: none;
    transition: none;
  }
}
.property-archive__area {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  background: #1c1a18;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.property-archive__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.35;
}

.property-archive__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
  margin-top: 0.75rem;
  gap: 10px;
  gap: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.property-archive__meta li + li {
  padding-left: 10px;
  padding-left: 0.625rem;
  border-left: 1px solid rgba(255, 255, 255, .6);
}

.property-archive__meta--price-only {
  color: #aa9b92;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .property-archive__header {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .property-archive__sort {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .property-archive__sort-value {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .property-archive__sort-control {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .property-archive__cards {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .property-archive__card {
    width: 100%;
    max-width: 25rem;
    margin-right: auto;
    margin-left: auto;
  }
  .property-archive__link {
    padding: 1.5rem;
  }
  .property-archive__title {
    font-size: 1.3125rem;
  }
}
/* property-detail */
.property-detail {
  padding: 200px 0 120px;
  padding: 12.5rem 0 7.5rem;
  color: #f2f8ff;
  background: #1c1a18;
}
@media screen and (max-width: 767px) {
  .property-detail {
    padding: 9rem 0 5rem;
  }
}

.property-detail .l-inner--narrow {
  max-width: 1010px;
  max-width: 63.125rem;
}

.property-detail__breadcrumb {
  padding-block: 16px;
  padding-block: 1rem;
  color: #f2f8ff;
}

.property-detail__breadcrumb .breadcrumb__items {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 8px;
  row-gap: 0.5rem;
}

.property-detail__breadcrumb .breadcrumb__item {
  position: relative;
}

.property-detail__breadcrumb .breadcrumb__item a,
.property-detail__breadcrumb .breadcrumb__item span {
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.property-detail__header {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .property-detail__header {
    margin-top: 2rem;
  }
}

.property-detail__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .property-detail__title {
    font-size: 1.3125rem;
  }
}

.property-detail__location {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.property-primary-inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px;
  padding: 2.5rem;
  color: #1c1a18;
  background: #f2ede5;
  border: 1px solid #d9d9d9;
  border-radius: 0.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .property-primary-inquiry {
    padding: 2rem 1.25rem;
  }
}

.property-primary-inquiry__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
}

.property-detail__section-title {
  color: #c7b299;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.property-details,
.property-information,
.property-access {
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .property-details,
  .property-information,
  .property-access {
    padding: 3.5rem 0;
  }
}

.property-details__list {
  margin-top: 32px;
  margin-top: 2rem;
}

.property-details__item {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  border-bottom: 1px solid #d9d9d9;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .property-details__item {
    grid-template-columns: minmax(6.5rem, 35%) 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.property-details__item[hidden] {
  display: none;
}

.property-details__item dt,
.property-details__item dd {
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .property-details__item dt,
  .property-details__item dd {
    padding: 1rem 0.75rem;
  }
}

.property-details__item dt {
  color: #827872;
  line-height: normal;
}

.property-details__item dd {
  min-width: 0;
  word-wrap: anywhere;
}

.property-details__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  color: #808080;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 1.5rem;
  font-family: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  cursor: pointer;
}

.property-details__toggle[hidden] {
  display: none;
}

.property-details__toggle-icon {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.property-details__toggle.active .property-details__toggle-icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.property-information .property-detail__section-title {
  line-height: normal;
}

.property-information__text {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.property-information__heading {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .property-information__heading {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.property-access__location {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .property-information__text br {
    display: none;
  }
}

.property-access__map-wrap {
  position: relative;
  height: 400px;
  height: 25rem;
  margin-top: 32px;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .property-access__map-wrap {
    height: 15rem;
  }
}

.property-access__map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* property-gallery */
.property-gallery {
  margin-top: 16px;
  margin-top: 1rem;
}

.property-gallery__main {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.property-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.property-gallery__img.is-changing {
  opacity: 0;
}

.property-gallery__arrow {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  padding: 0;
  color: #f2f8ff;
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  backdrop-filter: blur(6px);
}
@media screen and (max-width: 767px) {
  .property-gallery__arrow {
    width: 2.625rem;
    height: 2.625rem;
  }
}

.property-gallery__arrow:focus-visible,
.property-gallery__thumb:focus-visible {
  outline: 2px solid #c7b299;
  outline-offset: 2px;
}

.property-gallery__arrow--prev {
  left: 24px;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .property-gallery__arrow--prev {
    left: 0.75rem;
  }
}

.property-gallery__arrow--next {
  right: 24px;
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .property-gallery__arrow--next {
    right: 0.75rem;
  }
}

.property-gallery__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.property-gallery__thumb {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  height: 60px;
  height: 3.75rem;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0.5;
}

.property-gallery__thumb.active {
  opacity: 1;
}

.property-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .property-gallery__thumbs {
    padding-bottom: 0.5rem;
  }
  .property-gallery__thumb {
    -ms-flex-preferred-size: 5.5rem;
        flex-basis: 5.5rem;
    min-width: 5.5rem;
    height: 3.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .property-gallery__img {
    -webkit-transition: none;
    transition: none;
  }
}
/* property-inquiry */
.property-inquiry {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px;
  padding: 2.5rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.125rem;
  color: #1c1a18;
  background-color: #f2ede5;
}
@media screen and (max-width: 767px) {
  .property-inquiry {
    padding: 2rem 1.25rem;
  }
}

.property-inquiry__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.property-inquiry .wpcf7 {
  width: min(100%, 640px);
  width: min(100%, 40rem);
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
}

.property-inquiry .wpcf7-form-control-wrap {
  display: block;
  min-width: 0;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.form__item--radio {
  margin-left: 0;
}

.property-inquiry .form__item > p {
  display: contents;
}

.property-inquiry .form__item > p > br {
  display: none;
}

.property-inquiry .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #b42318;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.property-inquiry .wpcf7-response-output {
  margin: 24px 0 0;
  margin: 1.5rem 0 0;
  color: #1c1a18;
  line-height: 1.8;
}

.property-inquiry .form__privacy {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.property-inquiry .form__privacy-note {
  color: #1c1a18;
}

.property-inquiry .form__agreement .wpcf7-list-item {
  margin: 0;
}

.property-inquiry .form__agreement .wpcf7-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}

.property-inquiry .form__agreement .wpcf7-list-item-label {
  color: #1c1a18;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .property-inquiry .form__agreement .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}

.property-inquiry .form__submit {
  position: relative;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.property-inquiry .wpcf7-spinner {
  position: absolute;
  right: calc(50% - 6.5rem);
  margin: 0;
}

@media screen and (max-width: 767px) {
  .property-inquiry .form__radio-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* property-mv */
.property-mv {
  height: 480px;
  height: 30rem;
  padding-top: 136px;
  padding-top: 8.5rem;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 26, 24, .86)), color-stop(42%, rgba(28, 26, 24, .44)), to(rgba(28, 26, 24, .08))), -webkit-gradient(linear, left top, left bottom, from(rgba(28, 26, 24, .18)), to(rgba(28, 26, 24, .9))), url("../img/property/property-img01.jpg");
  background-image: linear-gradient(90deg, rgba(28, 26, 24, .86), rgba(28, 26, 24, .44) 42%, rgba(28, 26, 24, .08)), linear-gradient(180deg, rgba(28, 26, 24, .18), rgba(28, 26, 24, .9)), url("../img/property/property-img01.jpg");
  background-position: center;
  background-size: cover;
}
.property-mv::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  height: 11.25rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#1c1a18), to(rgba(28, 26, 24, 0)));
  background: linear-gradient(0deg, #1c1a18, rgba(28, 26, 24, 0));
  content: "";
}
@media screen and (max-width: 767px) {
  .property-mv {
    height: 26.25rem;
    padding-top: 7rem;
    background-position: 62% center;
  }
}

.property-mv .l-inner {
  position: relative;
  z-index: 1;
}

.property-mv__content {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.property-mv__lead {
  margin-top: 18px;
  margin-top: 1.125rem;
  color: #fffaf3;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.065em;
}
@media screen and (max-width: 767px) {
  .property-mv__lead {
    max-width: 19.375rem;
    margin-top: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.property-mv .btn--contact {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .property-mv .btn--contact {
    margin-top: 1.5rem;
  }
}

/* property-search */
.property-search {
  padding: 80px 0 40px;
  padding: 5rem 0 2.5rem;
  color: #f2f8ff;
  background: #1c1a18;
}
@media screen and (max-width: 767px) {
  .property-search {
    padding: 3rem 0 1.5rem;
  }
}

.property-search__panel {
  padding: 60px 0;
  padding: 3.75rem 0;
}

.property-search__primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 15rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.property-search__field {
  position: relative;
}
.property-search__field + .property-search__field::before {
  position: absolute;
  top: 15px;
  top: 0.9375rem;
  bottom: 0;
  left: -20px;
  left: -1.25rem;
  width: 1px;
  background: rgba(51, 50, 46, .5);
  content: "";
}

.property-search__label {
  color: #c7b299;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.property-search__value {
  margin-top: 12px;
  margin-top: 0.75rem;
  color: #fff;
  white-space: nowrap;
}

.property-search__details {
  display: grid;
  grid-template-columns: 19.0625rem 1fr;
  margin-top: 48px;
  margin-top: 3rem;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

.property-search__heading {
  margin-top: 4px;
  margin-top: 0.25rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.property-search__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 1.25rem;
  gap: 8px;
  gap: 0.5rem;
}

.property-search__options li {
  padding: 7px 15px;
  padding: 0.4375rem 0.9375rem;
  border: 1px solid #c7b299;
  border-radius: 0.125rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .property-search__panel {
    padding: 1.5rem 0 2.5rem;
  }
  .property-search__primary {
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
  }
  .property-search__field + .property-search__field::before {
    display: none;
  }
  .property-search__value {
    white-space: normal;
  }
  .property-search__details {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    row-gap: 2.25rem;
  }
  .property-search .btn--search {
    width: 100%;
  }
}
/* top-mv */
.top-mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 800px;
  height: 50rem;
  color: #f2f8ff;
  background-color: #1c1a18;
}
.top-mv::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 26, 24, .86)), color-stop(42%, rgba(28, 26, 24, .44)), to(rgba(28, 26, 24, .08))), -webkit-gradient(linear, left top, left bottom, from(rgba(28, 26, 24, .18)), to(rgba(28, 26, 24, .9))), -webkit-gradient(linear, left bottom, left top, color-stop(0, #1c1a18), color-stop(11.25rem, rgba(28, 26, 24, 0)));
  background-image: linear-gradient(90deg, rgba(28, 26, 24, .86), rgba(28, 26, 24, .44) 42%, rgba(28, 26, 24, .08)), linear-gradient(180deg, rgba(28, 26, 24, .18), rgba(28, 26, 24, .9)), linear-gradient(0deg, #1c1a18 0, rgba(28, 26, 24, 0) 11.25rem);
  content: "";
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-mv {
    height: 40rem;
  }
}

.top-mv__slides,
.top-mv__slide {
  position: absolute;
  inset: 0;
}

.top-mv__slides {
  overflow: hidden;
}

.top-mv__slide {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
.top-mv__slide.is-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__slide {
    -o-object-position: 58% center;
       object-position: 58% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-mv__slide {
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
  }
}
.top-mv__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.top-mv__title {
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 80px;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.625rem;
  }
}

.top-mv__text {
  margin-top: 19px;
  margin-top: 1.1875rem;
  color: #fffaf3;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.065em;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

/* top-service */
.home .main {
  overflow: clip;
}

.top-service {
  color: #f2f8ff;
  background-color: #1c1a18;
}

.top-service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 320px;
  min-height: 20rem;
}
@media screen and (max-width: 767px) {
  .top-service__header {
    min-height: 15rem;
  }
}

.top-service__feature {
  position: relative;
  color: #f2f8ff;
}
.top-service__feature::after {
  display: block;
  height: 210vh;
  content: "";
}
@media screen and (max-width: 767px) {
  .top-service__feature::after {
    height: 180vh;
  }
}

.top-service__slides {
  position: sticky;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 800px;
  height: 50rem;
  background-color: #1c1a18;
}
@media screen and (max-width: 767px) {
  .top-service__slides {
    height: 100vh;
  }
}

.top-service__slide {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.top-service__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .top-service__slide {
    background-position: 62% center;
  }
}

.top-service__slide--01 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 26, 24, .8)), color-stop(82%, rgba(11, 12, 16, 0))), url("../img/top/top-img02.png");
  background-image: linear-gradient(90deg, rgba(28, 26, 24, .8), rgba(11, 12, 16, 0) 82%), url("../img/top/top-img02.png");
}

.top-service__slide--02 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 26, 24, .8)), color-stop(82%, rgba(11, 12, 16, 0))), url("../img/top/top-img03.png");
  background-image: linear-gradient(90deg, rgba(28, 26, 24, .8), rgba(11, 12, 16, 0) 82%), url("../img/top/top-img03.png");
}

.top-service__slide--03 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 26, 24, .8)), color-stop(82%, rgba(11, 12, 16, 0))), url("../img/top/top-img04.png");
  background-image: linear-gradient(90deg, rgba(28, 26, 24, .8), rgba(11, 12, 16, 0) 82%), url("../img/top/top-img04.png");
}

.top-service__slide--04 {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(28, 26, 24, .8)), color-stop(82%, rgba(11, 12, 16, 0))), url("../img/top/top-service-img04.jpg");
  background-image: linear-gradient(90deg, rgba(28, 26, 24, .8), rgba(11, 12, 16, 0) 82%), url("../img/top/top-service-img04.jpg");
}

.top-service__body {
  position: absolute;
  top: 50%;
  left: max(20px, (100% - 1030px) / 2);
  left: max(1.25rem, (100% - 64.375rem) / 2);
  z-index: 1;
  width: 515px;
  width: 32.1875rem;
  max-width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top-service__body {
    width: calc(100% - 2.5rem);
  }
}

.top-service__number {
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.032em;
}

.top-service__title {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-service__title {
    font-size: 1.75rem;
  }
}

.top-service__title--nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-service__title--nowrap {
    white-space: unset;
  }
}

.top-service__text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.top-service__sponsor {
  position: absolute;
  right: 68px;
  right: 4.25rem;
  bottom: 60px;
  bottom: 3.75rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  width: 560px;
  width: 35rem;
  min-height: 160px;
  min-height: 10rem;
  padding: 24px 32px;
  padding: 1.5rem 2rem;
  border-radius: 0.25rem;
  color: #1c1a18;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top-service__sponsor {
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    gap: 1rem;
    width: auto;
    min-height: 9.25rem;
    padding: 1.25rem;
  }
}

.top-service__sponsor-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .top-service__sponsor-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}

.top-service__sponsor-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  width: 5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-service__sponsor-logo {
    width: 3.5rem;
  }
}

.top-service__scroll {
  position: absolute;
  top: 40px;
  top: 2.5rem;
  right: 80px;
  right: 5rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  font-family: "Aboreto", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  opacity: 0.62;
}
.top-service__scroll::after {
  width: 58px;
  width: 3.625rem;
  height: 1px;
  background-color: currentColor;
  content: "";
}
@media screen and (max-width: 767px) {
  .top-service__scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-service__slide {
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
  }
}
/*# sourceMappingURL=style.css.map */
