@charset "UTF-8";
.linkbutton {
  --linkbutton-width: 18rem;
  --linkbutton-height: 3.4rem;
  --linkbutton-shadow: 0.4rem;
}
.linkbutton.-large {
  --linkbutton-width: 28rem;
  --linkbutton-height: 6rem;
}
.linkbutton.-small {
  --linkbutton-width: 15rem;
  --linkbutton-height: 3rem;
  --linkbutton-shadow: 0.3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .linkbutton {
    --linkbutton-width: 16rem;
    --linkbutton-height: 3rem;
    --linkbutton-shadow: 0.3rem;
  }
  .linkbutton.-large {
    --linkbutton-width: 24rem;
    --linkbutton-height: 5rem;
  }
  .linkbutton.-small {
    --linkbutton-width: 12rem;
    --linkbutton-height: 2.4rem;
    --linkbutton-shadow: 0.2rem;
    font-size: 1.4rem;
  }
}
.linkbutton a {
  position: relative;
  z-index: 10;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--linkbutton-width);
  height: var(--linkbutton-height);
  max-width: 100%;
  text-align: center;
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: 0.5s ease;
}
.linkbutton a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid;
}
.linkbutton a::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  transform: translate(var(--linkbutton-shadow), var(--linkbutton-shadow));
  width: 100%;
  height: 100%;
  border: 1px solid;
  opacity: 0.5;
  transition: 0.5s ease;
  pointer-events: none;
}
.linkbutton a:hover {
  opacity: 1;
  transition: 0.5s ease, color 1s ease;
}
.linkbutton a:hover::after {
  transform: translate(0, 0);
}
.linkbutton.-blue a {
  background: #115fab;
  color: #ffffff;
}
.linkbutton.-blue a::before {
  border-color: #115fab;
}
.linkbutton.-blue a::after {
  border-color: #115fab;
}

.linkbanner {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.4;
}
.linkbanner a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #115fab;
  color: #ffffff;
  max-width: 44rem;
  height: min(3em, 7rem);
  margin: auto;
  padding: min(0.8em, 1.8rem);
  text-decoration: none;
}
.linkbanner.-white a {
  background: #ffffff;
  color: #115fab;
}
@media screen and (max-width: 1023px) {
  .linkbanner {
    font-size: 2rem;
  }
}

.blueLink {
  display: inline-block;
  background: #115fab;
  color: #ffffff;
  font-size: 0.8em;
  line-height: 1.5;
  padding: 0.2em 0.5em;
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
  will-change: opacity, transform;
}
.fade-in.-active {
  opacity: 1;
  transform: inherit;
}

.sectionH2 {
  font-size: 2rem;
  margin-bottom: 2em;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}
.sectionH2.-left {
  text-align: left;
}
.sectionH2__sub {
  margin-bottom: 0.5em;
}
.sectionH2__sub.-gap {
  margin-bottom: 2.2em;
}
.sectionH2__main {
  font-size: clamp(2.4rem, 3.5vw, 4.8rem);
  line-height: inherit;
  margin: 0;
  color: #115fab;
}
.sectionH2__main.-black {
  color: #000000;
}

/* ==========================================
*
*  mfp
*
========================================== */
.mfp-bg {
  background: rgba(0, 0, 0, 0.8) !important;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: 0.5s;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: 0.5s;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* 1rem = 10px */
html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #000;
}
body.naviOpen {
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

section {
  margin-bottom: 10rem;
}
@media screen and (max-width: 1023px) {
  section {
    margin-bottom: 6rem;
  }
}

p, ul, ol, li {
  margin: 0 0 1.5em;
}

p:last-child, li:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a,
.hasLink,
button {
  transition: 0.6s;
  cursor: pointer;
}

a:hover,
.hasLink:hover {
  opacity: 0.6;
}

.block_center {
  margin-left: auto;
  margin-right: auto;
}

.block_left {
  margin-left: 0;
  margin-right: auto;
}

.block_right {
  margin-left: auto;
  margin-right: 0;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.red,
.fc-red {
  color: #ff0000;
}

.org,
.fc-org {
  color: #ff8a00;
}

.iframeWrap {
  position: relative;
  width: 100%;
  padding-top: 65%;
}

.iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bold {
  font-weight: 700;
}

.ibWrap > span,
.ib-wrap > span {
  display: inline-block;
}
.ibWrap__space > span,
.ib-wrap__space > span {
  margin-right: 0.5em;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 1023px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 601px) {
  .sp-only {
    display: none !important;
  }
}

.headerWrap {
  top: 0;
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  z-index: 800;
  inset: 0 0 auto;
  background: #115fab;
  color: #ffffff;
}
.headerWrap a {
  color: inherit;
  text-decoration: inherit;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  height: 10rem;
}
.header__logo {
  line-height: 0;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 4.5rem;
}
.header__menu .telLink {
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .header__btn {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .header {
    height: clamp(4rem, 8vw, 6rem);
  }
  .header__logo {
    width: 35rem;
    max-width: 60%;
  }
  .header__menu {
    position: fixed;
    z-index: 800;
    inset: 0;
    overflow: auto;
    padding: 10rem 2rem;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .header__menu::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #115fab;
    opacity: 0.9;
  }
  body:not(.naviOpen) .header__menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(1rem);
  }
  .header__btn {
    position: relative;
    z-index: 950;
  }
}
.globalnavi {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.2em 1em;
}
@media screen and (max-width: 1023px) {
  .globalnavi {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
}

.telLink {
  display: grid;
  grid-template-columns: 100%;
  text-align: center;
}
.telLink__num {
  font-size: 2.5rem;
}
.telLink__time {
  font-size: 1.4rem;
}

.gNaviBtn {
  position: relative;
  height: clamp(4rem, 8vw, 6rem);
  aspect-ratio: 1/1;
  cursor: pointer;
}
.gNaviBtn__line {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(60%, 43px);
  height: 3px;
  background: #fff;
  transition: 0.3s;
}
.gNaviBtn__line:nth-child(1) {
  transform: translateY(-8px);
}
.gNaviBtn__line:nth-child(3) {
  transform: translateY(8px);
}
body.naviOpen .gNaviBtn__line:nth-child(1) {
  transform: rotate(45deg);
}
body.naviOpen .gNaviBtn__line:nth-child(2) {
  transform: scale(0, 1);
}
body.naviOpen .gNaviBtn__line:nth-child(3) {
  transform: rotate(-45deg);
}

footer {
  margin-top: 8rem;
  overflow: hidden;
}

.footerMap {
  height: 41rem;
}
.footerMap iframe {
  width: 100%;
  height: 100%;
}

.footer {
  background: #115fab;
  color: #fff;
}
.footer__inner {
  max-width: 104rem;
  padding: 12rem 2rem 8rem;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.footer__info {
  line-height: 1.8;
}
.footer__info p {
  margin-bottom: 0;
}
.footer__name {
  font-size: 2.4rem;
}
.footer a {
  color: inherit;
  text-decoration: inherit;
}
@media screen and (max-width: 600px) {
  .footer {
    text-align: center;
  }
  .footer__inner {
    padding: 6rem 1rem 4rem;
    flex-direction: column;
  }
  .footer__logo {
    width: 30rem;
    max-width: 60%;
  }
  .footer__name {
    font-size: 2rem;
  }
}

#scrollTop {
  position: absolute;
  top: 0;
  right: 2rem;
  width: 7.2rem;
  height: 3.6rem;
  overflow: hidden;
  border: none;
  background: inherit;
}
#scrollTop::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 100%;
  background: #ffffff;
  border-radius: 50%;
}
#scrollTop::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
  width: 1.3rem;
  height: 1.3rem;
  line-height: 1;
  border: solid #000000;
  border-width: 2px 0 0 2px;
  transform: rotate(45deg) skew(15deg, 15deg);
}
@media screen and (max-width: 600px) {
  #scrollTop {
    right: 1rem;
    width: 5rem;
    height: 2.5rem;
  }
  #scrollTop::after {
    width: 1rem;
    height: 1rem;
  }
}

.copyright {
  background: #000000;
  font-size: 1.4rem;
  padding: 0.8em;
  text-align: center;
}

.container {
  max-width: 160rem;
  margin: auto;
  padding: 0 2rem;
}
.container.-small {
  max-width: 104rem;
}
@media screen and (max-width: 1023px) {
  .container {
    padding: 0 1rem;
  }
}

.noPost {
  text-align: center;
  max-width: 60rem;
  margin: 1em auto;
  padding: 0.5em 1em;
  background: #ffffff;
  color: #115fab;
  border: 2px solid #115fab;
  border-radius: 0.4em;
}

.sectionH2 {
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 6rem;
}
@media screen and (max-width: 1023px) {
  .sectionH2 {
    font-size: clamp(2.4rem, 4.8vw, 3rem);
    margin-bottom: 1.8em;
  }
}

body.home footer {
  margin-top: 0;
}

.fv {
  position: relative;
  margin: 0 0 7rem;
}
.fv__bg {
  position: relative;
  z-index: 1;
  line-height: 0;
  overflow: hidden;
}
.fv__copy {
  position: absolute;
  z-index: 10;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 4rem;
  line-height: 1.75;
  filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 2px #000) drop-shadow(0 0 2px #000) drop-shadow(0 0 2px #000);
  color: #fff;
  text-align: center;
  transition: 1s;
}
.fv__copy span {
  display: inline-block;
}
.fv__copy-symbol {
  max-width: 5em;
  margin: auto auto 0.5em;
}
.fv__scroll {
  position: absolute;
  z-index: 10;
  inset: auto 0 min(115px, 10vw);
  margin: auto;
  text-align: center;
  max-width: 15vw;
}
@media screen and (max-width: 1023px) {
  .fv {
    margin-bottom: 70px;
  }
  .fv__copy {
    font-size: min(6vw, 3rem);
  }
}

.top-news {
  border-bottom: 1px solid #115fab;
  padding-bottom: 6rem;
}

.info-list-area {
  display: grid;
}
.info-list-area + .info-list-area {
  margin-top: 5rem;
}
.info-list-area__head {
  margin: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}
.info-list-area__link {
  margin-top: 3.4rem;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .info-list-area {
    grid-template: auto auto/13rem 1fr;
  }
  .info-list-area__head {
    border-right: 2px solid #808080;
  }
  .info-list-area__body {
    padding-left: 3.4rem;
  }
  .info-list-area__link {
    grid-column: 2 span;
  }
}
@media screen and (max-width: 1023px) {
  .info-list-area__head {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1em;
}
.info-list > a {
  display: grid;
  grid-template-columns: 12.4rem 1fr;
  color: inherit;
  text-decoration: inherit;
}
.info-list__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .info-list {
    gap: 0.5em;
  }
  .info-list > a {
    grid-template-columns: 100%;
  }
  .info-list__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.top-company {
  display: grid;
  grid-template-columns: 1fr min(10vw, 17rem) 10rem min(35vw, 48rem);
  gap: 3rem;
}
.top-company__head {
  grid-area: 1/1/2/3;
  padding-top: 5rem;
}
.top-company__head h2 {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 5rem;
  margin: 0;
}
.top-company__body {
  grid-area: 2/1/3/2;
  line-height: 2;
}
.top-company__link {
  grid-area: 3/1/4/2;
}
.top-company__img-01 {
  grid-area: 1/3/4/5;
  max-width: 45vw;
  line-height: 0;
}
.top-company__img-02 {
  grid-area: 2/2/4/4;
  max-width: 20vw;
  line-height: 0;
}
@media screen and (max-width: 1023px) {
  .top-company {
    grid-template-columns: 25% 15% 60%;
    gap: 2rem 0;
  }
  .top-company__head {
    grid-column-end: -1;
    padding-top: 0;
  }
  .top-company__head h2 {
    font-size: 2.4rem;
    line-height: 1.8;
  }
  .top-company__body {
    grid-column-end: -1;
  }
  .top-company__link {
    grid-column-end: -1;
  }
  .top-company__img-01 {
    grid-area: 4/2/5/-1;
    max-width: 100%;
    text-align: center;
    padding-bottom: 4rem;
  }
  .top-company__img-02 {
    grid-area: 4/1/5/3;
    max-width: 100%;
    align-self: flex-end;
    text-align: center;
  }
}

.top-property {
  background: #115fab;
  color: #ffffff;
  padding: 8rem 0;
  margin-bottom: 0;
}

.property-area {
  margin-bottom: 7rem;
}
.property-area__link {
  margin-top: 5rem;
  text-align: center;
}

.propertyList {
  display: grid;
  grid-template-columns: repeat(auto-fill, 30rem);
  gap: 4.5rem 1.5rem;
}
.propertyList__item {
  display: grid;
  gap: 1rem;
  grid-row: 3 span;
  grid-template-rows: subgrid;
}
.propertyList__img {
  grid-row-start: 1;
  line-height: 0;
}
.propertyList__spec {
  grid-row-start: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  margin: 0;
}
.propertyList__spec > dd {
  margin: 0;
  text-align: right;
}
.propertyList__link {
  grid-row-start: 3;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .propertyList {
    grid-template-columns: repeat(3, calc((100% - 2rem) / 3));
    margin: auto;
    gap: 3rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .propertyList {
    grid-template-columns: repeat(2, calc((100% - 1rem) / 2));
  }
}
@media screen and (max-width: 450px) {
  .propertyList__spec {
    grid-template-columns: 100%;
  }
}

/*
   TOP
======================== */
.cont-mainimg {
  width: 100%;
  aspect-ratio: 192/55;
}
.cont-mainimg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont-header {
  text-align: center;
  font-size: min(6vw, 4.4rem);
  line-height: 1.4;
  font-weight: 900;
  margin: min(2.5em, 11rem) 0 min(2.5em, 10rem);
}
.cont-header__sub {
  display: block;
  font-size: 1.6rem;
  color: #115fab;
}

.noncontent {
  padding: 7rem 0 20rem;
  text-align: center;
}

/*
   COMPANY
======================== */
.infoList {
  display: grid;
  grid-template-columns: 22rem 1fr;
  line-height: 4.6rem;
  padding-bottom: 1px;
  background: linear-gradient(to bottom, #808080 1px, transparent 1px) top center/100% 4.6rem repeat;
}
.infoList > dt,
.infoList > dd {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .infoList {
    grid-template-columns: 100%;
    line-height: 4.6rem;
    padding-bottom: 1px;
    background: linear-gradient(to bottom, #808080 1px, transparent 1px) top center/100% 4.6rem repeat;
  }
  .infoList > dt {
    font-weight: 700;
  }
}

/*
   BUSINESS
======================== */
.businessList {
  display: grid;
  grid-template-columns: 100%;
  gap: 6.4rem;
  text-align: center;
}
.businessList > dt,
.businessList > dd {
  margin: 0;
}
.businessList > dt {
  font-size: 2.8rem;
  font-weight: 700;
  color: #115fab;
}
@media screen and (max-width: 1023px) {
  .businessList {
    gap: 4rem;
  }
  .businessList > dt {
    font-size: 2.4rem;
  }
}

/*
   湯島・上野の街
======================== */
.yushimaueno-map {
  text-align: center;
}

/*
   Links
======================== */
.linksBlock {
  margin-top: 4rem;
}
.linksBlock__head h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #115fab;
}
.linksBlock__body {
  margin-top: 0.2em;
}

.linkList {
  line-height: 4.6rem;
  background: linear-gradient(to bottom, #808080 1px, transparent 1px) top center/100% 4.6rem repeat;
  margin: 0;
  padding: 0 0 1px;
  list-style: none;
}
.linkList > li {
  margin: 0;
}
.linkList a {
  display: block;
  color: inherit;
  text-decoration: inherit;
}
.linkList a:hover {
  text-decoration: underline;
}

/*
  物件詳細
======================== */
.property {
  max-width: 120rem;
  margin: auto;
}
.property h3 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 1.5em 0 1.8em;
  text-align: center;
}

.property-info {
  display: grid;
  grid-template-columns: min(50rem, 40%) 1fr;
  gap: 2rem;
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.property-gallery__screen {
  grid-area: 1/1/2/-1;
}
.property-gallery__list {
  display: grid;
  grid-column: 3 span;
  grid-template-columns: subgrid;
}
.property-gallery__img {
  aspect-ratio: 1/1;
  background: #dcdcdc;
  border: 1px solid #c5c5c5;
}
.property-gallery__img img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.property-floor__head {
  margin: 1em 0 0.6em;
  font-size: 2.2rem;
  line-height: 1.4;
}
.property-floor__img {
  aspect-ratio: 1/1;
  border: 1px solid #c5c5c5;
}
.property-floor__img img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.property-text {
  display: grid;
  grid-template-columns: 1fr auto;
}
.property-text__name h3 {
  text-align: left;
  margin: 0;
}
.property-text__address {
  font-size: 2.2rem;
  font-weight: 500;
}
.property-text__contact {
  grid-area: 1/2/3/3;
  display: flex;
  gap: 0.8rem;
}

.property-spec {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
  margin-top: 2rem;
}
.property-spec dl {
  margin: 0;
  display: grid;
  grid-template-columns: 15rem 1fr;
  border: solid #808080;
  border-width: 1px 0 0;
  line-height: min(1.8em, 3rem);
  padding: 0.8rem 0.2rem;
}
.property-spec dl > dd {
  margin: 0;
}
.property-spec dl:nth-child(2n-1) {
  background: #cfdfee;
}
.property-spec .-uline {
  border-bottom: 1px solid #808080;
}
.property-spec .-dlwhite > dl {
  background: #cfdfee;
}
.property-spec .-dlwhite > dl:nth-child(2n-1) {
  background: #fff;
}
.property-spec__col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.5rem;
}
.property-spec__col2 > .-col2 {
  grid-column: 2 span;
}

.property-store {
  margin-top: 3rem;
}

.property-qr {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.property-qr img {
  border: 1px solid #000000;
}

.property-3d__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.property-3d__gallery > iframe {
  width: calc(50% - 1rem);
  aspect-ratio: 59/40;
}

.property-map iframe {
  width: 100%;
  height: 50rem;
  max-height: 50vw;
}
/*# sourceMappingURL=style.css.map */