@charset "UTF-8";
.c-main *,
.c-main *::before,
.c-main *::after {
  /* 上書き用＆打ち消し用スタイル */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}

.c-main a:hover {
  color: #dd0000;
  text-decoration: none;
}

/* c-section
   ========================================================================== */
#ditail-top {
  /* width: 100%; */
  max-width: 960px;
  margin: -60px auto 0;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #ditail-top {
    width: 100%;
    margin: -150px auto 0;
    padding: 150px 12px 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  #ditail-top {
    margin: 0 auto;
    padding: 0 12px;
  }
}

.m-mainTtl-ttl {
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .m-mainTtl-ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .m-mainTtl-ttl {
    font-size: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .m-mainTtl-lead {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .m-mainTtl-lead {
    width: calc(100% - 20px);
    margin: 20px auto 0;
    font-size: 15px;
    order: -1;
  }
}

.m-nav-list-wrapper {
  background-color: white;
  width: 100%;
  top: 0;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .m-nav-list-wrapper {
    display: none;
  }
}
.m-nav-list-wrapper .m-nav-list {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  justify-content: center;
}

.m-nav-list .m-nav-item {
  z-index: 30;
}

.toc {
  margin: 12px auto 0;
  display: flex;
  justify-content: center;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 0;
  z-index: 11;
}
@media screen and (max-width: 768px) {
  .toc {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .toc {
    display: none;
  }
}
.toc li {
  box-sizing: border-box;
  width: 25%;
  max-width: 196px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .toc li {
    width: 50%;
    max-width: 100%;
    border: 1px solid #ccc;
  }
  .toc li:nth-child(5) {
    width: 100%;
  }
}
.toc li .toc-border-right {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: #ccc;
  position: absolute;
  right: 0;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .toc li .toc-border-right {
    display: none;
  }
}
.toc li .toc-border-left {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .toc li .toc-border-left {
    display: none;
  }
}
.toc li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .toc li a {
    font-size: 12px;
    padding: 5px 0;
  }
}
.toc li a .arrow {
  margin-left: 10px;
  width: 14px;
  height: 14px;
  stroke: #000;
}
.toc li a:hover {
  color: #d00;
}
.toc li a:hover .arrow {
  stroke: #d00;
}

.fixed-menu {
  background-color: rgba(163, 163, 163, 0.8);
  position: sticky;
  bottom: 0;
  padding: 10px;
  z-index: 11;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .fixed-menu {
    display: flex;
    flex-direction: row-reverse;
  }
}
.fixed-menu .fixed-menu-flex {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 3px;
  column-gap: 10px;
}
@media screen and (max-width: 768px) {
  .fixed-menu .fixed-menu-flex {
    column-gap: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .fixed-menu .fixed-menu-flex {
    width: 100%;
    column-gap: 10px;
  }
}
.fixed-menu .fixed-menu-flex a {
  margin: 0;
  width: 50%;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  background-color: #d00;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 5px 0;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.18);
  border: 3px solid #d00;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .fixed-menu .fixed-menu-flex a {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .fixed-menu .fixed-menu-flex a {
    width: 100%;
    font-size: 15px;
    column-gap: 10px;
  }
}
.fixed-menu .fixed-menu-flex a:nth-child(1)::after {
  content: "お問い合わせフォームはこちら";
}
@media screen and (max-width: 768px) {
  .fixed-menu .fixed-menu-flex a:nth-child(1)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .fixed-menu .fixed-menu-flex a:nth-child(1)::after {
    display: block;
    content: "メールはこちら";
  }
}
.fixed-menu .fixed-menu-flex a:nth-child(2)::after {
  content: "0120-001-475";
}
@media screen and (max-width: 768px) {
  .fixed-menu .fixed-menu-flex a:nth-child(2)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .fixed-menu .fixed-menu-flex a:nth-child(2)::after {
    display: block;
    content: "お電話はこちら";
  }
}
.fixed-menu .fixed-menu-flex a svg {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .fixed-menu .fixed-menu-flex a svg {
    margin: 0;
  }
}
.fixed-menu .fixed-menu-flex a svg .st0 {
  fill: #fff;
}
.fixed-menu .fixed-menu-flex a:nth-child(2) {
  background-color: white;
  color: #d00 !important;
}
.fixed-menu .fixed-menu-flex a:nth-child(2) .st0 {
  fill: #d00;
}
.fixed-menu .fixed-menu-flex a:hover {
  background-color: white;
  color: #d00 !important;
}
.fixed-menu .fixed-menu-flex a:hover .st0 {
  fill: #d00;
}
.fixed-menu p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .fixed-menu p {
    width: 65%;
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .fixed-menu p {
    display: none;
  }
}
.fixed-menu p .red {
  color: #d00;
}

@media screen and (max-width: 768px) {
  .c-footer-pagetop {
    left: -79px;
  }
  .c-footer-btmCnts {
    width: 100%;
  }
  .c-footer-btmCnts .c-footer-btmList {
    float: none;
    text-align: center;
  }
  .c-footer-btmCnts .c-footer-copy {
    float: none;
    text-align: center;
  }
}
/* 最近見た物件/近隣物件 */
@media screen and (max-width: 480px) {
  .c-otherInfoContainer {
    padding: 30px 0 40px;
  }
  .c-otherInfoContainer .c-section + .c-section {
    margin-top: 30px;
  }
}
.c-otherInfoContainer .c-section .p-headingL2.-underLine::after {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-otherInfoContainer .c-section .m-slider .m-slider-list {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 480px) {
  .c-otherInfoContainer .c-section .m-slider .m-slider-list {
    flex-wrap: nowrap;
  }
}

.m-breadcrumb {
  display: block !important;
}
@media screen and (max-width: 480px) {
  .m-breadcrumb {
    margin-top: 50px;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 480px) {
  .pc-none {
    display: block;
  }
  .pc-none .image41pdfview {
    margin: 0 auto 30px;
    padding: 0;
  }
}

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

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

.sp-price {
  margin-top: 10px;
  font-size: 15px;
  padding: 0 15px;
}
@media screen and (max-width: 480px) {
  .sp-price {
    margin-top: 5px;
  }
}
.sp-price .-price {
  margin-bottom: 10px;
  color: #d00;
}
@media screen and (max-width: 480px) {
  .sp-price .-price {
    margin-bottom: 5px;
  }
}
.sp-price .-price #price {
  font-weight: bold;
  font-size: 32px;
}
@media screen and (max-width: 480px) {
  .sp-price .-price #price {
    font-size: 20px;
  }
}
.sp-price .msMonthly {
  color: #000;
  font-size: 15px;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
  .sp-price .msMonthly {
    font-size: 12px;
  }
}

#tit01 {
  display: none;
}

@media screen and (max-width: 480px) {
  p,
  dd,
  dt {
    font-size: 12px !important;
    font-weight: 400;
    line-height: 1.5 !important;
  }
  .m-mainTtl,
  .sp-price-ul {
    order: -1;
  }
  .m-breadcrumb-list {
    width: calc(100% - 30px);
  }
  .c-mainInfo {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) and (max-width: 480px) {
  .c-mainInfo {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .c-mainInfo .p-headingL2 > span,
  .c-mainInfo .m-mainPoints dt span {
    font-size: 16px !important;
  }
  .c-mainInfo #tit01 {
    display: block;
    margin-bottom: 30px;
  }
  .c-mainInfo #tit01 a {
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 10px 20px;
    width: fit-content;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0px -10px 10px #ccc;
  }
  .c-mainInfo #tit01 .clearfsize {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-mainInfo #tit01 .clearfsize::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-left: 3px;
  }
  .c-mainInfo #tit01 .clearfsize img {
    display: none;
  }
  .c-mainInfo .c-mainInfo {
    margin: 0;
    font-family: "Noto Sans JP", "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "Osaka", "メイリオ", "MS Pゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  }
  .c-mainInfo .c-mainInfo #ditail-top {
    margin-top: 20px;
    padding-top: 0;
  }
  .c-mainInfo .c-mainInfo-detail > li:first-of-type {
    margin: 0 auto 30px;
  }
  .c-mainInfo .c-mainInfo-table {
    margin: 30px auto 0;
    width: calc(100% - 20px);
    order: -1;
  }
  .m-mainReform {
    margin: 15px auto 0;
    width: calc(100% - 20px);
    order: -1;
  }
  .c-detailMaps-floorMap {
    display: none;
  }
  .c-detailMaps {
    margin: 30px 0;
    padding: 0;
  }
  .c-detailMaps .c-detailMaps-accessMap {
    padding: 0;
  }
  .c-detailMaps #map_canvas {
    width: 90% !important;
    max-height: 400px;
    margin: 0 auto !important;
  }
  .c-mainInfo-points {
    margin: 0;
  }
  .c-detailPhotoGallery {
    margin: 20px 0 0;
    padding: 0;
    order: -1;
  }
  .c-detailPhotoGallery .p-headingL2 {
    display: none;
  }
  .c-detailPhotoGallery .m-photoGallery {
    margin: 0 !important;
    padding: 10px 10px 40px;
  }
  .c-detailPhotoGallery .m-photoGallery .m-photoGallery-mainSlide {
    height: 250px;
  }
  .p-headingL2-staff {
    background: none;
    padding: 0;
    margin: 30px 0;
  }
  .c-overview {
    padding: 0;
    width: calc(100% - 30px);
    margin: 0 auto 30px;
  }
  .c-contactBnr {
    margin: 0;
  }
  #cboxTitle {
    text-align: left;
    position: absolute;
    top: 250px;
  }
  .m-commonTable li > dl dt {
    padding: 12px 8px;
  }
}
@media screen and (max-width: 480px) {
  .m-mainTtl-tag {
    line-height: 0.5;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .bunner-flex {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .c-overview-table {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .pano-btn {
    margin: 0 auto !important;
  }
}

/*2024.05.17追加*/
/*2024.05.17追加*/
.m-commonTable.c-mainInfo-table li dl dt {
  display: flex;
  align-items: center;
}
.m-commonTable.c-mainInfo-table li dl dd div {
  height: 100%;
  display: flex;
  align-items: center;
}

.m-commonTable.-overview li dl dt {
  display: flex;
  align-items: center;
}
.m-commonTable.-overview li dl dd div {
  height: 100%;
  display: flex;
  align-items: center;
}
.m-commonTable.-overview li .t-and-b dd {
  display: flex;
  align-items: center;
}
.m-commonTable.-overview li .t-and-b dd div {
  height: auto;
  display: block;
}
.m-commonTable.-overview li.col2-1 {
  width: calc((100% - 8px) / 2 * 1 + 0px);
}

@media screen and (max-width: 480px) {
  .m-commonTable.-overview li.col2-1 {
    width: 100%;
  }
  .m-slider {
    margin-bottom: 15px;
    overflow-y: hidden;
  }
  .m-slider .m-slider-list .m-slider-more {
    bottom: 22px;
  }
  .m-slider-num li:nth-last-child(2) {
    margin-right: 0;
  }
}
/* 2024.06.11 追記*/
.cap {
  margin: 7px 0 0;
  font-feature-settings: "palt";
  font-size: 11px;
}

.m-slider-num :nth-last-of-type(2) {
  margin-right: 0;
}

.each_detail_block .each_detail_block_finish {
  width: 90%;
  max-width: 960px;
  margin: 150px auto;
  font-size: 16px;
  text-align: center;
  line-height: 3.5;
}
@media screen and (max-width: 480px) {
  .each_detail_block .each_detail_block_finish {
    margin: 75px auto;
    font-size: 14px;
    line-height: 2;
  }
  .each_detail_block .each_detail_block_finish a {
    line-height: 2;
  }
  .each_detail_block .each_detail_block_finish > div {
    margin-top: 10px;
  }
}/*# sourceMappingURL=detail-test.css.map */