@charset "UTF-8";
.place-card {
  position: relative;
  min-width: 0;
}

.place-card > a {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 78px minmax(0, 1fr);
  grid-template-columns: 78px minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.place-card img {
  grid-column: 1/-1;
  width: 100%;
  aspect-ratio: 420/315;
  -o-object-fit: cover;
     object-fit: cover;
}

.place-card--coming-soon {
  color: var(--blue);
}

.place-card__coming-thumb {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 420/315;
  background: #b8b8b8;
  color: var(--white);
  font-family: var(--latin);
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.place-card__label {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  min-width: 73px;
  height: auto;
  padding: 5px 11px 6px;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  border-radius: 0 0 15px;
  background: #748184;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.place-card__label--house {
  min-width: 85px;
  background: #a45b59;
}

.place-card__new {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: clamp(40px, 3.6111111111vw, 52px);
  height: clamp(40px, 3.6111111111vw, 52px);
  background: #F7B82A;
  color: var(--white);
  font-family: var(--mincho);
  font-size: clamp(11px, 0.8vw, 17px);
  font-weight: 700;
}

.place-card__status {
  grid-column: 1/-1;
  margin-top: 18px;
  padding: 10px 0px 11px;
  border: 1px dashed currentColor;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1.4;
}

.place-card h3 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
  margin: 26px 0 0;
  font-family: var(--latin);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.109em;
}

.place-card__price {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 5;
  grid-row: 5;
  margin: -2px 0 10px;
  font-family: var(--latin);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.place-card p:not(.place-card__price) {
  grid-column: 1/-1;
  -ms-grid-row: 6;
  grid-row: 6;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
}

.place-card__info-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.place-card__info-label,
.place-card__info-text {
  min-width: 0;
}

.place-card__badge {
  position: relative;
  left: auto;
  top: auto;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  grid-row: 4/span 2;
  -ms-grid-row-align: start;
      align-self: start;
  margin-top: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 780px) {
  .place-card__price {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .place-card__badge {
    top: auto;
    bottom: initial;
    margin-top: 15px;
  }
  .place-card h3 {
    font-size: 18px;
  }
  .place-card p:not(.place-card__price) {
    font-size: 13px;
  }
}
.works-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 92px;
  font-family: var(--latin);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.works-pager a {
  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;
  min-width: 28px;
  height: 28px;
  opacity: 1;
}

.works-pager .is-current {
  opacity: 0.55;
}

.works-pager__next {
  margin-left: 16px;
}

@media (max-width: 780px) {
  .works-pager {
    margin-top: 54px;
  }
}
.place-nav {
  background: #F8F0DD;
}

.place-nav__menu {
  margin-top: 124px;
}

.place-nav__menu a {
  position: relative;
  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;
  width: 180px;
  height: 50px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.place-nav__menu > a:nth-child(1) {
  background: #747f82;
}

.place-nav__menu > a:nth-child(2) {
  background: #a45b59;
}

.place-nav__menu dl {
  margin: 0;
}

.place-nav__menu dl dt {
  margin: 0;
}

.place-nav__menu dl dt button {
  position: relative;
  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;
  width: 180px;
  height: 50px;
  margin-bottom: 14px;
  padding: 0 12px;
  border: 0;
  background: var(--white);
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.place-nav__menu dl dt button::after,
.place-nav__menu dl dt button::before {
  content: "";
  position: absolute;
  top: 50%;
  background: currentColor;
  -webkit-transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.place-nav__menu dl dt button::after {
  right: 20px;
  width: 13px;
  height: 1px;
}

.place-nav__menu dl dt button::before {
  right: 26px;
  width: 1px;
  height: 13px;
  margin-top: -6.5px;
}

.place-nav__menu dl.is-open dt button {
  background: var(--blue);
  color: var(--white);
}

.place-nav__menu dl.is-open dt button::before {
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.place-nav__menu dl dd {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
  width: 180px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.place-nav__menu dl dd a {
  width: auto;
  height: 38px;
  margin: 0;
  padding: 0 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-color: var(--blue);
  border-radius: 4px;
  background: var(--white);
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.place-nav__menu dl dd a:first-child {
  grid-column: 1/-1;
  /*justify-content: flex-start;*/
  width: auto;
  text-align: center;
}

.place-nav__menu dl dd a::after {
  content: none;
}

.place-nav__menu > a:nth-child(1)::after {
  content: "";
  width: 39px;
  height: 34px;
  background: url("../assets/figma/bunjou-icon.png") center/contain no-repeat;
}

.place-nav__menu > a:nth-child(2)::after {
  content: "";
  width: 41px;
  height: 36px;
  background: url("../assets/figma/todate-icon.png") center/contain no-repeat;
}

.estate-contact__grid .icon {
  display: block;
}

.estate-contact__grid .tel_icon {
  margin-top: -30px;
  padding-top: 40px;
}

.estate-contact__grid .icon img {
  display: block;
  /*width: min(64px, 100%);*/
  margin: 0 auto;
}

/* Lower page headings
   Page-specific files should control position/margins only. */
.lower-main .lower-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 7.78vw, 112px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

.lower-heading p {
  margin: 10px 0 0 6px;
  font-family: var(--mincho);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.company-about h2,
.company-qa h2,
.contact-line .lower-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

/* Line buttons */
.button {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 22px;
  min-width: 212px;
  min-height: 49px;
  padding: 0 24px;
  border-bottom: 2px solid currentColor;
  font-family: var(--latin);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.076em;
}

.button::after {
  content: "→";
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}

.button--light {
  background: var(--white);
  color: var(--blue);
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
}

.button--light:hover {
  background: var(--blue);
  color: var(--white);
}

.button--line {
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  border-bottom: 2px solid currentColor;
}

.guide-block__button {
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
}

.guide-block__button:hover {
  background: #FFF;
  color: var(--blue);
}

.estate-contact__grid a, .estate-floating-nav a {
  -webkit-transition: opacity 0.4s 0s ease-in-out;
  transition: opacity 0.4s 0s ease-in-out;
}

a, a img {
  -webkit-transition: opacity 0.4s 0s ease-in-out;
  transition: opacity 0.4s 0s ease-in-out;
}

a:hover {
  opacity: 0.6;
}

a img:hover {
  opacity: 0.6;
}

.estate-contact__grid a:hover {
  opacity: 0.3;
}

.estate-floating-nav a:hover {
  opacity: 0.3s;
}

.qa-item h3 {
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
}

.qa-item h3:hover {
  background: var(--blue);
  color: #FFF;
}

.works-detail__back {
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
}

.works-detail__back:hover {
  background: #FFF;
  color: var(--blue);
}

.button--line:hover {
  background: var(--white);
  color: var(--blue);
}

.studio-block__button {
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
}

.studio-block__button:hover {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}

.button--blue {
  background: var(--blue);
  color: var(--white);
  -webkit-transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
  transition: color 0.4s 0s ease-in-out, background 0.4s 0s ease-in-out;
}

.button--blue:hover {
  background: var(--white);
  color: var(--blue);
}

/* Key-value tables */
.company-table div,
.estate-summary div {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  background: rgba(255, 255, 255, 0.1);
}

.company-table dt,
.company-table dd,
.estate-summary dt,
.estate-summary dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.company-table div.bgnone,
.estate-page--house .estate-summary div:nth-child(even) {
  background: transparent;
}

.estate-page--land .estate-summary div:nth-child(even) {
  background: transparent;
}

/* Band headings */
.guide-band,
.estate-docs figcaption {
  padding: 22px 18px;
  background: rgba(55, 97, 119, 0.08);
  font-family: var(--mincho);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-align: center;
}

.guide-band--blue {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

@media (max-width: 780px) {
  .lower-main .lower-heading h1 {
    font-size: clamp(60px, 15vw, 72px);
  }
  .lower-heading p {
    margin-top: 0;
    font-size: 13px;
  }
  .company-about h2,
  .company-qa h2,
  .contact-line .lower-heading h2 {
    font-size: clamp(42px, 13vw, 52px);
  }
  .guide-band,
  .estate-docs figcaption {
    padding: 16px 12px;
    font-size: 18px;
  }
  .button {
    min-width: 157px;
    min-height: 44px;
    font-size: 16px;
  }
  .place-nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4%;
    margin-top: 35px;
  }
  .place-nav__menu a,
  .place-nav__menu dl dt button {
    width: 48%;
    height: 42px;
    margin: 0;
    font-size: 14px;
  }
  .place-nav__menu dl {
    width: 100%;
  }
  .place-nav__menu dl dd {
    width: 100%;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .place-nav__menu dl dt button {
    width: 100%;
    margin-top: 15px;
  }
  .place-nav__menu dl dd {
    margin-top: 10px;
  }
}