@charset "utf-8";

/* #region MARK:CSS変数 */
:root {
  --c-primary: #231815;
  --c-primary-40: #5a5757;
  --c-primary-10: #EFF2F8;
  --c-secondary: #73BCEE;
  --c-text: #393C42;
  --ff-sans: -apple-system, BlinkMacSystemFont, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
  --ff-serif: "YakuHanMP", "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --fw-serif-normal: 400;
  --fw-serif-bold: 600;
  --ff--en: "Outfit", sans-serif;
  --fw-normal: 400;
  --fw-bold: 400;
  --radius: 0.5rem;
  --fz-sm: min(3.2vw, 12px);
  --fz-base: min(4vw, 16px);
  --fz-sub: min(4.8vw, 20px);
  --fz-heading: min(6.5vw, 32px);
  --base-width: 640;
  --responsive-size: min(calc(var(--local-size) / var(--base-width) * 100vw), calc(var(--local-size) * 1px));
}

/* #endregion */
@view-transition {
  navigation: auto;
}

/* #region MARK:リセット・ベース */
* {
  word-break: break-all;
  min-width: 0;
}

html {
  font-size: 62.5%;
  overscroll-behavior: none;
  scroll-padding: 5.4rem 0 5.4rem;
  scrollbar-gutter: stable;
}

body {
  font-size: 1.4rem;
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
}

html,
body {
  overflow-x: hidden;
}

body,
body * {
  -webkit-overflow-scrolling: touch;
}

body {
  background: hsla(0, 0%, 100%, 1);
  font-family: var(--ff-serif);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-weight: var(--fw-normal);
  line-height: 1.75;
  overflow-y: auto;
  padding-top: 8rem;
}

a {
  color: var(--c-primary);
}

a[class] {
  text-decoration: none;
}

:where(a:active),
:where(a:focus),
:where(a:hover) {
  color: var(--c-text);
}

.visible-xs-inline-block {
  display: inline-block;
}

@keyframes brightnessAnimation {
  0% {
    filter: brightness(1.0);
  }

  38.2% {
    filter: brightness(1.2);
  }

  100% {
    filter: brightness(1.0);
  }
}

a:hover {
  animation: brightnessAnimation 0.66s forwards;
}

button {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  -ms-interpolation-mode: bicubic;
  shape-margin: 1em;
  font-style: italic;
  object-fit: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
}

figure {
  display: block;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: var(--fw-bold);
  margin: 0;
  padding: 0;
}

.container-main img {
  max-width: unset;
  width: 100%
}

ol,
ol>li,
ul,
ul>li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* #endregion */

/* #region MARK:Header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  color: var(--c-primary);
  padding: 0;
  background-color: #FFF;
  z-index: 9999;
  display: grid;
}

.header__logo {
  flex: 1 1 0;
  display: grid;
  place-items: center;
  height: 4rem;
}

.header__logo-img {
  width: 30rem;
}
/* #endregion */

/* #region MARK:Header ナビゲーション */
.header__nav {
  padding-block: 0;
  padding-inline: 0;
  background-color: #FFF;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header__nav-link {
  display: grid;
  text-decoration: none;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  padding-block: 1rem;
  gap: 0.4rem;
  background-color: gray;
}

.header__nav-link--kanayamachi {
  background-color: #231815;
}

.header__nav-link--bunkyo {
  background: linear-gradient(135deg, #1a3a2a 0%, #1b6b5a 50%, #1a8a6e 100%);
}

.header__nav-name {
  display: block;
  white-space: nowrap;
  color: #FFF;
}

.header__nav-label {
  display: block;
  white-space: nowrap;
  color: #FFF;
}
/* #endregion */

/* #region MARK:コンテナ */
.container-main {
  padding-inline: 0;
  padding-bottom: 0rem;
}
/* #endregion */

/* #region MARK:lp-hero */
.lp-hero {
  position: relative;
}

.lp-hero__bg {
  aspect-ratio: 1082 / 1146;
  object-fit: cover;
  width: 100%;
}

.lp-hero__title {
  position: absolute;
  top: 5%;
  left: 13%;
  width: 74%;
}

.lp-hero__nav {
  container-type: inline-size;
  top: 50%;
  position: absolute;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 0;
  height: 50%;
}

.lp-hero__nav-link {
  display: grid;
  place-items: center;
  align-content: center;
}

.lp-hero__nav-logo {
  width: 88% !important;
  display: block;
}

.lp-hero__nav-price {
	width: 84% !important;
	margin-top: 1rem;
}

.lp-hero__nav-arrow {
  display: block;
  margin-top: 1cqw;
  color: #FFF;
  mix-blend-mode: difference;
}
/* #endregion */

/* #region MARK:property */
.property__body {
  position: relative;
  container-type: inline-size;
}

.property__cta {
  position: absolute;
  top: 19%;
  width: 89%;
  left: 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2cqw;
}

.property__cta-link {
  display: block;
}

.property__cta-link:last-child {
  grid-column: 1 / -1;
}

.property__access {
  position: relative;
}

.property__contact {
  position: absolute;
  width: 70%;
  left: 14%;
  top: 82%;
}

.property__contact-link+.property__contact-link {
  margin-top: 5%;
  display: block;
}
/* #endregion */

/* #region MARK:footer-notes */
.footer-notes {
  padding: min(18vw, 3rem) min(5vw, 6rem);
}

*>.footer-notes__title:first-child {
  margin-top: 0 !important
}

.footer-notes__title {
  font-size: var(--fz-sm);
  font-weight: 600;
}

.footer-notes__list {
  list-style: none;
  font-size: var(--fz-sm);
  margin-top: 0;
}

.footer-notes__item {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.footer-notes__item::before {
  content: "※";
}
/* #endregion */

/* #region MARK:footer-company */
.footer-company__label {
  text-align: center;
  font-size: clamp(11px, 3.2vw, 14px);
}

.footer-company__logo {
  margin-top: 1.5rem;
}

.footer-company__logo-img {
  margin-inline: auto;
  width: 22rem;
}

.footer-company__info {
  font-size: var(--fz-sm);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.8;
}
/* #endregion */

/* #region MARK:footer-properties */
.footer-properties__item {
  margin-top: 11vw;
  display: grid;
  gap: 1.5rem;
  justify-content: center;
}

.footer-properties__logo-img {
  width: 11rem;
  margin-inline: auto;
}

.footer-properties__btn-img {
  width: 19rem;
  margin-inline: auto;
}

.footer-properties__name {
  color: #FFF;
  font-size: var(--fz-sm);
  margin-top: 1.1rem;
  display: block;
  white-space: nowrap;
}

@container (min-width: 600px) {
  .footer-properties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 6rem;
  }

  .footer-properties__item {
    margin-top: 0;
  }
}
/* #endregion */

/* #region MARK:Footer */
.footer {
  padding-block: min(18vw, 6rem);
  padding-inline: min(5vw, 6rem);
  background-color: #5a5757;
  color: hsl(0deg 0% 100% / 87%);
  container-type: inline-size;
}

#footer a {
  text-decoration: none;
  color: var(--c-text);
}
/* #endregion */

/* #region MARK:PC用1025px以上 */
@media (min-width: 1025px) {
  body {
    padding-top: 5.2rem;
  }

  html {
    scroll-padding: 9.9rem 0 0;
  }

  .visible-xs-inline-block {
    display: none !important;
  }

  /* #region MARK:lp-hero - PC */
  .lp-hero__title {
    width: 64%;
    left: 18%;
    top: 5%;
  }

  .lp-hero__nav {
    top: 57%;
    height: 37%;
  }

  .lp-hero__nav-logo {
    width: 80% !important;
  }

  .lp-hero__nav-price {
	margin-top: 3rem;
	width: 75% !important;
}

  .lp-hero__nav-arrow {
    display: none;
  }

  .lp-hero__bg {
    aspect-ratio: 407 / 366;
  }
  /* #endregion */

  /* #region MARK:lp-properties - PC */
  .lp-properties {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  /* #endregion */

  /* #region MARK:footer-notes - PC */
  .footer-notes__inner {
    max-width: 120rem;
    margin-inline: auto;
  }

  .footer-notes__title {
    margin-top: 2rem;
  }
  /* #endregion */

  /* #region MARK:footer-company - PC */
  .footer-company {
    text-align: left;
  }

  .footer-company__label {
    text-align: start;
  }

  .footer-company__logo {
    text-align: left;
  }

  .footer-company__logo-img {
    margin-inline: 0;
    width: 39rem;
  }

  .footer-company__info {
    text-align: left;
  }
  /* #endregion */

  /* #region MARK:footer-properties - PC */
  .footer-properties {
    margin-top: 0;
    max-width: 51rem;
    margin-left: auto;
    gap: 4rem;
  }
  /* #endregion */

  /* #region MARK:footer - PC */
  .footer__inner {
    max-width: 120rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  /* #endregion */

  /* #region MARK:Header - PC */
  .header {
    grid-template-columns: 1fr 1fr;
  }

  .header__logo {
    display: grid;
    place-items: start;
    align-items: center;
    padding-left: 2rem;
    height: auto;
    margin-top: 0;
  }

  .header__nav-link {
    font-size: 1.4rem;
  }
  /* #endregion */

  /* MARK:コンテナ - PC */
  .container-main {
    padding-inline: 0;
    padding-bottom: 0;
    background: #000;
  }
}
/* #endregion */

/* #region MARK:スクロールトップボタン */
.scroll-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 900;
  width: 4.4rem;
  height: 4.4rem;
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  backdrop-filter: blur(4px);
}

.scroll-top[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
/* #endregion */

/* #region MARK:フェードインアニメーション */
.js .property>section {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.js .property>section.is-visible {
  opacity: 1;
}
/* #endregion */

/* #region MARK:印刷用 */
@media print {
  @page {
    size: 210mm 297mm;
  }

  body {
    font-size: 12pt;
  }

  a[href]:after {
    content: "" !important;
  }

  abbr[title]:after {
    content: "" !important;
  }
}
/* #endregion */
