/*
	Theme Name: diver_child
	Template: diver
	Description:  Diverの子テーマです。
	Theme URI: http://tan-taka.com/diver/
	Author: Takato Takagi
 */
/* カスタマイズする場合にはこれより下に追記してください  */
/*-----------------------------------------------
 基本設定
-----------------------------------------------*/ :root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme2: #70b8f1;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-hover2: 0rem 1rem 2.5rem rgba(0, 0, 0, 0.3);
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);
}
html {
  font-size: 62.5%;
}
body {
  font-family: Satoshi, sans-serif;
  overflow-x: hidden;
}
.home #main-wrap {
  margin: 0 auto;
}
.post-template-default #main-wrap, .rent-template-default #main-wrap, .buy-template-default #main-wrap, .page-template-default #main-wrap, .page-template-template-aurapage #main-wrap, .post-type-archive-rent #main-wrap, .post-type-archive-buy #main-wrap, .blog #main-wrap, .archive #main-wrap {
  margin: 10px auto 20px;
}
#main {
  padding: 0 !important;
}
#nav_fixed.fixed {
  z-index: 30;
}
.firstview_content {
  position: relative;
  z-index: 2;
}
.diver_firstview_image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.3);
}
.widget ul:first-child > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.single_title a {
  color: var(--color-theme);
}
.single-post-category a {
  color: #fff;
}
a.page-numbers:hover {
  background: var(--color-theme);
}
#page-main {
  margin-bottom: 0;
}
.pagination {
  padding-bottom: 80px;
}
/*-----------------------------------------------
 header area width:100%でDIVERを利用する際に必要
-----------------------------------------------*/
.header-wrap .header-logo, .header_small_content, .bigfooter_wrap, .footer_content {
  width: 90% !important;
  max-width: 2000px;
}
#breadcrumb, .hentry .post-meta, .article_footer {
  padding-right: 0;
  padding-left: 0;
}
#content_area header, section.single-post-main, footer.article_footer {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
#breadcrumb ul {
  max-width: 2000px;
  width: 90%;
  margin: 0 auto;
}
.single-rent section.single-post-main, .single-buy section.single-post-main {
  padding: 0;
}
section.single-post-main {
  padding: 0 0 80px;
}
@media(max-width:1200px) {
  .header-wrap .header-logo, .header_small_content, .bigfooter_wrap, .footer_content {
    width: 96% !important;
  }
  #breadcrumb ul, #content_area header, section.single-post-main, footer.article_footer {
    width: 96%;
  }
}
@media(max-width:959px) {
  .header_small_content {
    display: block;
  }
}
/*-----------------------------------------------
 部品css
-----------------------------------------------*/
.flex {
  display: flex;
  align-items: center;
}
.justify-start {
  justify-content: start;
}
.justify-between {
  justify-content: space-between;
}
/* シンプルなボタン
---------------------------*/
a.btn_base {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: auto;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #333;
  color: #333;
  border-radius: 100vh;
  transition: 0.5s;
}
a.btn_base:hover {
  color: #fff;
  background: #333;
  opacity: inherit;
}
@media only screen and (max-width:600px) {
  a.btn_base {
    padding: 0.3rem 1.5rem;
    font-size: 1.2rem;
  }
}
/* 背景が伸びる矢印ボタン
---------------------------*/
.arrow-extend {
  padding: 20px;
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.arrow-extend::before {
  content: '';
  width: 6.4rem;
  height: 6.4rem;
  background-color: #333;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s;
  z-index: -1;
}
.arrow-extend::after {
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.arrow-extend:hover::before {
  width: 100%;
}
span.button-text {
  padding: 0 50px;
  transition: .4s;
}
.arrow-extend:hover span.button-text {
  color: #fff;
}
/* 矢印が伸びるボタン
---------------------------*/
.button-link {
  margin: 30px auto 10px;
  width: 60%;
  text-align: center;
  line-height: 6.4rem;
}
.button-link .button {
  position: relative;
  display: inline-block;
  padding: 15px 15px 11px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 10px;
  border: 1px solid #333;
  border-radius: 4px;
  box-shadow: 0 4px 3px 0 rgb(0 0 0 / 11%);
  color: inherit;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  transition: background-color .5s ease, color .5s ease;
}
.button-link:hover {
  opacity: inherit;
}
.button-link .button:hover {
  background: #000;
  color: #fff;
  border: 1px solid #333;
}
.icon-arrow:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0px;
  right: 30px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  transition: 0.5s ease-out;
}
.icon-arrow:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 17px;
  height: 1px;
  background: #000;
  transition: 0.5s ease-out;
}
.button-link .button:hover > .icon-arrow:before {
  right: 17px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.button-link .button:hover > .icon-arrow:after {
  right: 17px;
  width: 30px;
  background: #fff;
}
@media only screen and (max-width:425px) {
  .button-link {
    width: 80%;
  }
}
/* ----------------------------------------------------------------------
 font-color - フォントカラー
---------------------------------------------------------------------- */
.color-theme {
  color: var(--color-theme);
}
.red {
  color: red
} /* 赤色 */
.blue {
  color: #2ca9e1
} /* 青色 */
.green {
  color: #82ae46
} /* 緑色 */
.orange {
  color: #ff7d00
} /* 橙色 */
.yellow {
  color: #fff000
} /* 黄色 */
.pink {
  color: #ff0084
} /* ピンク */
.gray {
  color: #999999
} /* グレー */
/* ----------------------------------------------------------------------
 font-decoration - フォントスタイル
---------------------------------------------------------------------- */
.b {
  font-weight: 700
} /* 太字 */
.u {
  text-decoration: underline
} /* 下線 */
.del {
  text-decoration: line-throug
} /* 打ち消し線 */
/* ----------------------------------------------------------------------
 text-align - 配置
---------------------------------------------------------------------- */
.align1 {
  text-align: center !important
} /* 中央寄せ */
.align2 {
  text-align: right !important
} /* 右寄せ */
.align3 {
  text-align: left !important
} /* 左寄せ */
/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.m0 {
  margin: 0 !important
}
.mt0 {
  margin-top: 0 !important
}
.mr0 {
  margin-right: 0 !important
}
.mb0 {
  margin-bottom: 0 !important
}
.ml0 {
  margin-left: 0 !important
}
.m0a {
  margin: 0 auto !important
}
.m5 {
  margin: 5px !important
}
.mt5 {
  margin-top: 5px !important
}
.mr5 {
  margin-right: 5px !important
}
.mb5 {
  margin-bottom: 5px !important
}
.ml5 {
  margin-left: 5px !important
}
.m10 {
  margin: 10px !important
}
.mt10 {
  margin-top: 10px !important
}
.mr10 {
  margin-right: 10px !important
}
.mb10 {
  margin-bottom: 10px !important
}
.ml10 {
  margin-left: 10px !important
}
.m15 {
  margin: 15px !important
}
.mt15 {
  margin-top: 15px !important
}
.mr15 {
  margin-right: 15px !important
}
.mb15 {
  margin-bottom: 15px !important
}
.ml15 {
  margin-left: 15px !important
}
.m20 {
  margin: 20px !important
}
.mt20 {
  margin-top: 20px !important
}
.mr20 {
  margin-right: 20px !important
}
.mb20 {
  margin-bottom: 20px !important
}
.ml20 {
  margin-left: 20px !important
}
.m25 {
  margin: 25px !important
}
.mt25 {
  margin-top: 25px !important
}
.mr25 {
  margin-right: 25px !important
}
.mb25 {
  margin-bottom: 25px !important
}
.ml25 {
  margin-left: 25px !important
}
.m30 {
  margin: 30px !important
}
.mt30 {
  margin-top: 30px !important
}
.mr30 {
  margin-right: 30px !important
}
.mb30 {
  margin-bottom: 30px !important
}
.ml30 {
  margin-left: 30px !important
}
.m35 {
  margin: 35px !important
}
.mt35 {
  margin-top: 35px !important
}
.mr35 {
  margin-right: 35px !important
}
.mb35 {
  margin-bottom: 35px !important
}
.ml35 {
  margin-left: 35px !important
}
.m40 {
  margin: 40px !important
}
.mt40 {
  margin-top: 40px !important
}
.mr40 {
  margin-right: 40px !important
}
.mb40 {
  margin-bottom: 40px !important
}
.ml40 {
  margin-left: 40px !important
}
.m45 {
  margin: 45px !important
}
.mt45 {
  margin-top: 45px !important
}
.mr45 {
  margin-right: 45px !important
}
.mb45 {
  margin-bottom: 45px !important
}
.ml45 {
  margin-left: 45px !important
}
.m50 {
  margin: 50px !important
}
.mt50 {
  margin-top: 50px !important
}
.mr50 {
  margin-right: 50px !important
}
.mb50 {
  margin-bottom: 50px !important
}
.ml50 {
  margin-left: 50px !important
}
.m55 {
  margin: 55px !important
}
.mt55 {
  margin-top: 55px !important
}
.mr55 {
  margin-right: 55px !important
}
.mb55 {
  margin-bottom: 55px !important
}
.ml55 {
  margin-left: 55px !important
}
.m60 {
  margin: 60px !important
}
.mt60 {
  margin-top: 60px !important
}
.mr60 {
  margin-right: 60px !important
}
.mb60 {
  margin-bottom: 60px !important
}
.ml60 {
  margin-left: 60px !important
}
.m65 {
  margin: 65px !important
}
.mt65 {
  margin-top: 65px !important
}
.mr65 {
  margin-right: 65px !important
}
.mb65 {
  margin-bottom: 65px !important
}
.ml65 {
  margin-left: 65px !important
}
.m70 {
  margin: 70px !important
}
.mr70 {
  margin-right: 70px !important
}
.mb70 {
  margin-bottom: 70px !important
}
.ml70 {
  margin-left: 70px !important
}
.m75 {
  margin: 75px !important
}
.mt75 {
  margin-top: 75px !important
}
.mr75 {
  margin-right: 75px !important
}
.mb75 {
  margin-bottom: 75px !important
}
.ml75 {
  margin-left: 75px !important
}
.m80 {
  margin: 80px !important
}
.mt80 {
  margin-top: 80px !important
}
.mr80 {
  margin-right: 80px !important
}
.mb80 {
  margin-bottom: 80px !important
}
.ml80 {
  margin-left: 80px !important
}
/* ----------------------------------------------------------------------
 padding
---------------------------------------------------------------------- */
.p0 {
  padding: 0 !important
}
.pt0 {
  padding-top: 0 !important
}
.pr0 {
  padding-right: 0 !important
}
.pb0 {
  padding-bottom: 0 !important
}
.pl0 {
  padding-left: 0 !important
}
.p5 {
  padding: 5px !important
}
.pt5 {
  padding-top: 5px !important
}
.pr5 {
  padding-right: 5px !important
}
.pb5 {
  padding-bottom: 5px !important
}
.pl5 {
  padding-left: 5px !important
}
.p10 {
  padding: 10px !important
}
.pt10 {
  padding-top: 10px !important
}
.pr10 {
  padding-right: 10px !important
}
.pb10 {
  padding-bottom: 10px !important
}
.pl10 {
  padding-left: 10px !important
}
.p20 {
  padding: 20px !important
}
.pt20 {
  padding-top: 20px !important
}
.pr20 {
  padding-right: 20px !important
}
.pb20 {
  padding-bottom: 20px !important
}
.pl20 {
  padding-left: 20px !important
}
.p30 {
  padding: 30px !important
}
.pt30 {
  padding-top: 30px !important
}
.pr30 {
  padding-right: 30px !important
}
.pb30 {
  padding-bottom: 30px !important
}
.pl30 {
  padding-left: 30px !important
}
.p40 {
  padding: 40px !important
}
.pt40 {
  padding-top: 40px !important
}
.pr40 {
  padding-right: 40px !important
}
.pb40 {
  padding-bottom: 40px !important
}
.pl40 {
  padding-left: 40px !important
}
.p50 {
  padding: 50px !important
}
.pt50 {
  padding-top: 50px !important
}
.pr50 {
  padding-right: 50px !important
}
.pb50 {
  padding-bottom: 50px !important
}
.pl50 {
  padding-left: 50px !important
}
.p80 {
  padding: 80px !important
}
.pt80 {
  padding-top: 80px !important
}
.pr80 {
  padding-right: 80px !important
}
.pb80 {
  padding-bottom: 80px !important
}
.pl80 {
  padding-left: 80px !important
}
/*-----------------------------------------------
 物件情報表示リストスタイル
-----------------------------------------------*/
.post-type-archive-rent h1.page_title.custom, .post-type-archive-buy h1.page_title.custom, .tax-rent_category h1.page_title.custom, .tax-rent_tag h1.page_title.custom, .tax-buy_category h1.page_title.custom, .tax-buy_tag h1.page_title.custom {
  background: linear-gradient(to bottom, #ffffff, #f3f4f6);
}
section.rentals-wrapper {
  overflow: hidden;
}
.title-area {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 10rem 0;
}
.title-area h2 {
  margin: 0;
  padding: 0;
  font-size: 3.6rem;
  line-height: 3.6rem;
}
@media only screen and (max-width:1024px) {
  .title-area {
    padding: 80px 4rem 0;
  }
}
@media only screen and (max-width:600px) {
  .title-area h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
}
section.rentals-wrapper .rentals-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 10rem;
}
section.rentals-wrapper .rent-swiper {
  overflow: visible;
}
.rent-swiper .swiper-slide {
  height: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.property_list .swiper-slide {
  height: auto;
}
.property_list {
  margin: 20px auto;
  overflow: visible;
}
.swiper .property {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  transition: var(--transition);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.home .swiper .property {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.swiper.property_list .swiper-slide:not(.swiper-slide-visible) .slide.property {
  pointer-events: none;
  opacity: .3;
}
.media-swiper .swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
}
.archive .media-swiper .swiper-slide img {
  height: 200px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.single .media-swiper .swiper-slide img {
  height: 165px;
}
.property-content {
  padding: 4px 15px 20px;
}
.archive .property-content {
  padding: 4px 0 0;
}
.property-content .rent {
  font-size: 2rem;
  line-height: 2rem;
}
.single .property-content .rent {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.property-content .rent span {
  font-size: 1.5rem;
}
.single .property-content .rent span {
  font-size: 1.2rem;
}
.property-content .address {
  margin-top: 1.0rem;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.single .property-content .address {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.property-content ul.property-data {
  margin-top: 2rem;
  margin-left: 0;
  display: flex;
  gap: 1rem;
}
.property-content ul.property-data li {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.single .property-content ul.property-data li, .archive .property-content ul.property-data li {
  font-size: 1.2rem;
}
.property-content .property-data li::before {
  content: "";
  font-size: 2.0rem;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
}
.single .property-content .property-data li::before {
  width: 12px;
  height: 12px;
}
.property-content .property-data li.layout::before {
  background-image: url("/images/ico_layout.svg");
}
.property-content .property-data li.square::before {
  background-image: url("/images/ico_square.svg");
}
.property-content .property-data li.bedrooms::before {
  background-image: url("/images/ico_bedrooms.svg");
}
@media only screen and (max-width:1024px) {
  section.rentals-wrapper .rentals-inner {
    padding: 3rem 4rem;
  }
}
.property-controller.swiper-controller {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 3.2rem;
}
.property-controller .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 auto 0 0;
  text-align: center;
  bottom: inherit;
}
.property-controller .swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
  margin: 0 !important;
  border-radius: inherit;
  opacity: inherit;
}
.property-controller .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}
.property-controller .swiper-button-prev, .property-controller .swiper-button-next {
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  left: inherit;
  right: inherit;
}
.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #333;
}
.swiper-button-prev::after, .swiper-button-next::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 1.2rem;
  height: 1.2rem;
  content: '';
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.media .swiper-pagination {
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
}
.media .swiper-pagination-bullet-active {
  background: var(--color-theme);
}
.media .swiper-button-prev, .media .swiper-button-next {
  display: none;
  width: 3.0rem;
  height: 3.0rem;
}
.media .swiper-button-prev::after, .media .swiper-button-next::after {
  margin-left: 2px;
  width: 0.8rem;
  height: 0.8rem;
  border-width: 2px 2px 0 0;
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.media .swiper-button-next::after {
  margin-left: 0;
  margin-right: 2px;
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.rent-swiper a:hover, .property_list a:hover {
  opacity: inherit;
  color: inherit;
}
@media only screen and (min-width: 1024px) {
  .rent-swiper .slide, .property_list .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .rent-swiper .slide:hover, .property_list .slide:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    -webkit-box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem rgba(0, 0, 0, .08);
    box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem rgba(0, 0, 0, .08);
  }
  .swiper .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper .slide:hover img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .property-controller .swiper-button-prev::before, .property-controller .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .property-controller .swiper-button-prev:hover::before, .property-controller .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .property:hover .media .swiper-button-prev, .property:hover .media .swiper-button-next {
    display: grid;
  }
}
/*-----------------------------------------------
 賃貸物件カテゴリリストスタイル
-----------------------------------------------*/
section#rent-cat ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 3rem 10rem;
  max-width: 1200px;
  box-sizing: content-box;
}
section#rent-cat ul li {
  padding: 10px 15px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ccc;
  transition: var(--transition);
}
section#rent-cat ul li:hover {
  box-shadow: var(--box-shadow-hover2);
}
section#rent-cat ul li a:hover {
  opacity: inherit;
}
section#rent-cat ul li a img {
  width: 70px;
  margin-right: 10px
}
section#rent-cat ul li a .title {
  font-weight: bold;
}
section#rent-cat ul li a .desc {
  font-size: 1.8rem;
}
@media only screen and (max-width:1439px) {
  section#rent-cat ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (max-width:1024px) {
  section#rent-cat ul {
    padding: 3rem 4rem;
  }
  section#rent-cat ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width:640px) {
  section#rent-cat ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/*-----------------------------------------------
 賃貸物件アーカイブページスタイル
-----------------------------------------------*/
.grid_post-box .post-meta-all {
  padding-bottom: 2rem !important;
}
.newpost_list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
#main-wrap section.wrap-grid-post-box {
  padding: 0 1.25rem 1.25rem;
}
#main-wrap .grid_post-box {
  width: calc(100% / 5);
  padding: 10px;
}
#main-wrap .grid_post-box:hover {
	opacity: inherit;
}
#main-wrap .grid_post-box .post-box-contents {
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width:1439px) {
  #main-wrap .grid_post-box {
    width: calc(100% / 4);
  }
}
@media only screen and (max-width:1231px) {
  #main-wrap .grid_post-box {
    width: calc(100% / 3);
  }
}
@media only screen and (max-width:767px) {
  #main-wrap .grid_post-box {
    width: calc(100% / 2);
  }
}
@media only screen and (max-width:639px) {
  #main-wrap .grid_post-box {
    width: 100% !important;
  }
}
@media only screen and (max-width:599px) {
  #main-wrap .grid_post-box img {
    border-radius: 10px;
  }
}
/*-----------------------------------------------
 インスタグラムスタイル
-----------------------------------------------*/
.instagram-inner {
  margin: 0 auto;
  padding: 3rem 10rem 80px;
  max-width: 1200px;
  box-sizing: content-box;
}
@media only screen and (max-width:1024px) {
  .instagram-inner {
    padding: 3rem 4rem;
  }
}
/*-----------------------------------------------
 物件情報コンテンツスタイル
-----------------------------------------------*/
#gallery-wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .625rem;
}
#gallery-wrap .item:first-child {
  grid-row: span 2;
  grid-column: span 2;
}
#gallery-wrap .item.hidden-image {
  display: none;
}
#gallery-wrap .item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#gallery-wrap img {
  margin: 0;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
#gallery-wrap .item .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(35, 35, 35, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  color: #fff;
  font-weight: bold;
}
#gallery-wrap .item .counter {
  display: none;
}
@media only screen and (max-width:1024px) {
  #gallery-wrap .item .overlay {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width:639px) {
  #gallery-wrap {
    display: flex;
    gap: 0;
  }
  #gallery-wrap .item {
    height: 35vh;
  }
  #gallery-wrap .item.hidden-image {
    display: block;
  }
  #gallery-wrap .item .overlay {
    display: none;
  }
  #gallery-wrap .item .counter {
    display: block;
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    background: rgb(35, 35, 35, 0.2);
    border-radius: 9999px;
    padding: 0.3rem 0.7rem;
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12px;
  }
}
.address:hover {
  text-decoration: underline;
}
ul.property-summary {
  list-style: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  max-width: 1000px;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
ul.property-summary li {
  border-right: 1px solid #ccc;
  margin: 0;
  padding: 10px 20px;
}
ul.property-summary li:last-child {
  border: none;
}
ul.property-summary li .title {
  color: #999;
}
@media only screen and (max-width:767px) {
  ul.property-summary {
    border: none;
    background: var(--color-base);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
  ul.property-summary li {
    border: none;
  }
}
@media only screen and (max-width:424px) {
  ul.property-summary li {
    padding: 5px 10px;
  }
}
.property-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  align-items: start;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 20px 0 0;
  padding: 20px;
  max-width: 1000px;
}
.property-info .container {
  display: grid;
  gap: 0.625rem;
}
.property-info .container .item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.property-info .container .item .title {
  color: #999;
}
@media only screen and (max-width:767px) {
  .property-info .container .item {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }
}
iframe#gmap {
  width: 100%;
  height: 350px;
  margin: 20px 0;
  border-radius: 10px;
}
/*-----------------------------------------------
 固定ページスタイル
-----------------------------------------------*/
h1.page_title.custom, .single-title-area h2.title {
  position: relative;
  padding: 80px 0 20px;
  margin: 0 0 80px;
  border: none;
  text-align: center;
  box-shadow: none;
  font-size: 3.6rem;
  line-height: 4.2rem;
  font-weight: bold;
}
h1.page_title.custom:after, .single-title-area h2.title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #f5695f;
}
@media only screen and (max-width:767px) {
  h1.page_title.custom, .single-title-area h2.title {
    padding: 40px 0 20px;
    margin: 0 0 60px;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}
/* About Us Page Style
---------------------------*/
section.about {
  margin: 0 auto;
  padding: 0 0 80px;
}
section.about .img-swiper {
  max-width: 800px;
  margin: 0 auto 50px;
}
section.about .img-swiper img {
  margin: 0;
  border-radius: 10px;
}
section.about .info {
  display: grid;
  grid-template-columns: 30% 70%;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
section.about .info:last-child {
  border-bottom: none;
}
section.about .info .title {
  font-weight: bold;
  white-space: nowrap;
  color: #999;
}
@media only screen and (max-width:767px) {
  section.about .info {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.mvv-wrap {
  display: grid;
  gap: 60px;
  padding: 0;
}
.mvv-wrap .mvv-content {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
}
.mvv-wrap .mvv-content .ico {
  width: 180px;
  margin: 0 auto;
}
.mvv-wrap .mvv-content.rvs {
  direction: rtl;
}
.mvv-content.rvs .desc {
  direction: ltr;
}
.mvv-wrap .mvv-content .statement .title {
  position: relative;
  font-size: 3.0rem;
  font-weight: bold;
  margin: 0 0 20px;
  padding: 0 0 10px;
  width: fit-content;
}
.mvv-wrap .mvv-content .statement .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f4b15d;
}
@media only screen and (max-width:767px) {
  .mvv-wrap .mvv-content {
    display: block;
  }
  .mvv-wrap .mvv-content .ico {
    width: 120px;
  }
  .mvv-wrap .mvv-content .statement .title {
    margin: 0 auto 20px;
    font-size: 2.0rem;
  }
  .mvv-content .statement .desc {
    width: 90%;
    margin: 0 auto;
  }
}
/* Contact Us Page Style
---------------------------*/
section.contact .msg {
  margin: 0 auto 50px;
  padding: 20px 40px;
  background: #f3f4f6;
  border-radius: 20px;
}
section.contact .msg div.domain {
  width: max-content;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px 15px;
}
/*-----------------------------------------------
 フッタースタイル
-----------------------------------------------*/
#footer .about {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
#footer .about .company-info {
  width: calc(50% - 25px);
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 50px 0 30px;
}
#footer .about .company-info div {
  padding: 0 0 10px;
}
#footer .about .company-info .footerlogo {
  padding: 0 0 20px;
}
#footer .about .company-info .tel a {
  font-size: 3.5rem;
}
#footer .about .company-info .email a {
  text-decoration: underline;
}
#footer .about .company-info span {
  font-size: 1.3rem;
}
#footer .about .cta {
  width: calc(50% - 25px);
  margin: 0 auto;
  padding: 50px 0 30px;
}
#footer .footer_content {
  border-top: 1px solid #444;
}
.hide-area {
  display: none;
}
@media only screen and (max-width:1023px) {
  #footer .about {
    gap: 20px;
  }
  #footer .about .company-info, #footer .about .cta {
    width: calc(50% - 10px);
  }
  #footer .about .company-info .tel a {
    font-size: 3.0rem;
  }
}
@media only screen and (max-width:767px) {
  #footer .about {
    padding-bottom: 50px;
  }
  #footer .about .company-info, #footer .about .cta {
    width: 100%;
  }
  #footer .about .company-info {
    padding-bottom: 0;
  }
  #footer .about .cta {
    padding: 0;
  }
}
/*-----------------------------------------------
 モーダルウィンドウスタイル
-----------------------------------------------*/
.modaal-content-container {
  padding: 20px;
}
/* ✕ボタンの位置調整 */
.modaal-close {
  position: absolute;
  top: -60px;
  right: 0;
}
/* ✕ボタンの色 */
.modaal-close:after, .modaal-close:before {
  background: #ccc;
}
.modaal-close:focus, .modaal-close:hover {
  outline: 0;
  background: rgb(0, 0, 0, 0.3);
}
/* ホバーしたときの✕ボタンの色 */
.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #ccc;
}
.modaal-overlay {
  z-index: 8888;
}
/*-----------------------------------------------
 プライバシーポリシースタイル
-----------------------------------------------*/
.privacypolicy-wrap {
  color: #232323;
  padding-bottom: 30px;
}
.privacypolicy-wrap a {
  color: #232323;
}
.privacypolicy-wrap .title {
  color: #333;
  font-size: 2.5rem;
  font-weight: bold;
  padding-top: 2rem;
}
ol.privacypolicy-list {
  list-style-type: decimal;
  margin-left: 3rem;
}
ol.privacypolicy-list .doc p {
  margin-bottom: 0;
}
ol.privacypolicy-list ul {
  list-style-type: disc;
  margin-left: 3.0rem;
}
@media only screen and (max-width:767px) {
  .privacypolicy-wrap .single-title-area h2.title {
    padding: 50px 0 20px;
    margin: 0 0 50px;
    font-size: 3.0rem;
    line-height: 3.0rem;
  }
  .privacypolicy-wrap .title {
    font-size: 2.0rem;
  }
  ol.privacypolicy-list {
    margin-left: 2rem;
  }
  ol.privacypolicy-list ul {
    margin-left: 2rem;
  }
}
/*-----------------------------------------------
 標準投稿スタイル
-----------------------------------------------*/
.home .newlabel, .blog .newlabel, .category .newlabel, .tag .newlabel, .single-rent .newlabel, .single-buy .newlabel {
  left: -8px;
  top: 10px;
  padding: 5px 0;
  width: 70px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.home .newlabel:before, .blog .newlabel:before, .category .newlabel:before, .tag .newlabel:before, .single-rent .newlabel:before, .single-buy .newlabel:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 8px transparent;
  border-right: solid 8px #666;
}
.home .newlabel:after, .blog .newlabel:after, .category .newlabel:after, .tag .newlabel:after, .single-rent .newlabel:after, .single-buy .newlabel:after {
  position: absolute;
  content: '';
  z-index: 999;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 20px;
  border-width: 15px 10px 14px 0px;
  border-color: #f66 transparent #f66 #f66;
  border-style: solid;
}
@media only screen and (max-width:768px) {
  .home .newlabel, .blog .newlabel, .category .newlabel, .tag .newlabel, .single-rent .newlabel, .single-buy .newlabel, .post-box-contents .newlabel {
    top: 10px !important;
    padding: 0px;
    width: 40px;
    left: -4px;
  }
  .home .newlabel:before, .blog .newlabel:before, .category .newlabel:before, .tag .newlabel:before, .single-rent .newlabel:before, .single-buy .newlabel:before {
    border-bottom: solid 4px transparent;
    border-right: solid 4px #666;
  }
  .home .newlabel:after, .blog .newlabel:after, .category .newlabel:after, .tag .newlabel:after, .single-rent .newlabel:after, .single-buy .newlabel:after {
    border-width: 10px 11px 10px 2px;
  }
  .newlabel span {
    vertical-align: middle;
  }
}
section#blog {
  padding-bottom: 80px;
  background: linear-gradient(to bottom, #f3f4f6, #ffffff);
}
section#blog .latest_blog_posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 3rem 10rem;
  max-width: 1200px;
  box-sizing: content-box;
}
@media(max-width:1024px) {
  section#blog .latest_blog_posts {
    padding: 3rem 4rem;
  }
}
@media(max-width:768px) {
  section#blog .latest_blog_posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  figure.post-box-thumbnail__wrap.square {
    width: 100%;
    max-height: 280px;
  }
}
.latest_blog_posts .post-box-thumbnail__wrap.square {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}
.latest_blog_posts .meta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.latest_blog_posts .meta .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.latest_blog_posts .meta .category span {
  margin-right: 8px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media(max-width:767px) {
  .latest_blog_posts .meta .category span {
    font-size: 1.2rem;
  }
}
.latest_blog_posts .meta time.date {
  position: absolute;
  bottom: 45px;
  left: 20px;
  font-size: 1.2rem;
}
.latest_blog_posts .meta .title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 1.6rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 40px);
  display: block;
}
#main-wrap .blogpost_list_wrap {
  background: #fff;
}
.blogpost_list_wrap .category-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0 0;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.category-list a.category-item {
  position: relative;
  padding: 5px 15px;
  display: inline-block;
}
.category-list a.category-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #333;
  font-weight: normal;
}
.category-list a.category-item.active {
  color: var(--color-theme);
  font-weight: 500;
}
@media(max-width:1439px) {
  .blogpost_list_wrap .category-list {
    max-width: 100%;
    margin: 0 20px;
  }
}
#main-wrap.blog #breadcrumb ul, #main-wrap.blog #content_area header, #main-wrap.blog section.single-post-main {
  max-width: 800px;
  width: 100%;
}
#main-wrap.blog footer.article_footer {
  max-width: 1200px;
}
@media(max-width:1200px) {
  #main-wrap.blog #breadcrumb ul, #main-wrap.blog #content_area header, #main-wrap.blog section.single-post-main {
    width: 96%;
  }
}
#main-wrap.blog header img, #main-wrap.blog .single-post-main img {
  max-height: none;
  border-radius: 10px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
#main-wrap.blog header img {
  margin-top: 0;
}
#main-wrap.blog .single_title {
  border: none;
  margin: 0 0 50px;
  text-align: center;
  font-size: 3.6rem;
  line-height: 3.6rem;
  font-weight: bold;
}
#main-wrap.blog h1 {
  font-size: 3.6rem;
  line-height: 4.0rem;
}
#main-wrap.blog .content h2 {
  font-size: 3.0rem;
  line-height: 3.6rem;
  color: inherit;
  background-color: inherit;
  padding: 0;
}
#main-wrap.blog .content h3 {
  font-size: 2.5rem;
  line-height: 3rem;
  padding: 0;
  border: none;
  color: inherit;
}
#main-wrap.blog .content h4 {
  font-size: 2.0rem;
  line-height: 2.5rem;
  padding: 0;
  color: inherit;
}
#main-wrap.blog .content h4:before {
  display: none;
}
#main-wrap.blog .content h5 {
  font-size: 1.8rem;
  line-height: 2.3rem;
  color: inherit;
}
@media(max-width:1023px) {
  #main-wrap.blog h1 {
    font-size: 2.6rem;
    line-height: 3.0rem;
  }
  #main-wrap.blog .content h2 {
    font-size: 2.5rem;
    line-height: 3.0rem;
  }
  #main-wrap.blog .content h3 {
    font-size: 2.0rem;
    line-height: 2.5rem;
  }
  #main-wrap.blog .content h4 {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  #main-wrap.blog .content h5 {
    font-size: 1.5rem;
    line-height: 2.0rem;
  }
}
#main-wrap.blog .content a {
  text-decoration: underline;
}
ul.blogpost_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 80px;
  gap: 2.0rem;
}
ul.blogpost_list {
  padding: 20px;
  margin: 0 auto;
  max-width: 1440px;
}
.blog ul.blogpost_list {
  padding-bottom: 80px;
}
ul.blogpost_list img {
  border-radius: 10px;
}
@media(max-width:1023px) {
  #main-wrap.blog footer.article_footer {
    max-width: 768px;
  }
  ul.blogpost_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(max-width:767px) {
  #main-wrap.blog footer.article_footer {
    max-width: 640px;
  }
}
@media(max-width:639px) {
  ul.blogpost_list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
#main-wrap.blog ul.blogpost_list img {
  margin-bottom: 0;
}
ul.blogpost_list .meta {
  margin-top: 1.0rem;
}
ul.blogpost_list .category, ul.blogpost_list .category a {
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: var(--color-theme);
}
ul.blogpost_list .title {
  font-size: 1.6rem;
  line-height: 2.0rem;
  padding: 8px 0;
  font-weight: 500;
}
ul.blogpost_list time {
  display: block;
  color: #999;
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.notfound_message {
    width: fit-content;
    margin: 0 auto;
    padding: 50px;
}