@charset "UTF-8";

/*
Theme Name: infinite-style
*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --blue:#061f70;
  --row-space : 4.427vw;
  --col-space : 11.2vh;
  --flex_hurf : calc(96% / 2);
  --flex_third : calc((100% - 5vw) / 3);
  --flex_third_space : calc((100% - 6%) / 3);
  --flex_fourth : calc((100% - 6%) / 4);
  --flex_five : calc((100% - 5vw) / 5);
  --flex_six : calc(100% / 3);
  }
  
  @media screen and (max-width: 767px) {
  
    :root { 
      --row-space : 4vw;
      --col-space : 5vh;
      --flex_hurf : 100%;
      --flex_third : calc(96% / 2);
      --flex_third_space : calc(100% / 1);
      --flex_fourth : calc((100% - 6%) / 2);
      --flex_five : calc(100% / 1);
      --flex_six : calc(100% / 2);
      --flex_third :100%;
      }
  
  }


  @media screen and (min-width: 768px) {
    .sp{
    display:none;
    }
  }
  
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    overflow-x: hidden;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html *{
  box-sizing: border-box;
}

html, body{
  margin: 0;
}

body {
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #181818;
  background: #fff;
  overflow-x: hidden;
}

html.appear, html.appear02{
  overflow: hidden;
}

body{
  --sb-track-color: #e9e9e9;
  --sb-thumb-color: #000000;
  --sb-size: 10px;
  scrollbar-color: var(--sb-thumb-color) 
                   var(--sb-track-color);
}

body::-webkit-scrollbar {
  width: var(--sb-size) 
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  }
img{
  max-width: 100%;
}
.aligncenter {
    clear: both;
    margin: auto;
    display: block;
}
a{
  transition: 0.4s;
}

a img{
  transition: 0.4s;

}

a:hover img{
  opacity: 0.7;
}

p{
    color:#060606;
    line-height: 2.0;
    font-size: 1.0rem;
  }

picture img, iframe{
  vertical-align: bottom;
}

.mainVisual {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: -2;
}

.mainVisual::before{
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vh;
  top:0;
  left: 0;
  background: rgba(255,255,255,0.9);
}

.mainVisual video{
  width: 120vw;
  height: 120vh;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: -2;
}

/****************スライダー*****************/

.top_slide_main {
  overflow: hidden;
}

.top_slide_main .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_slide_main img{
  width: 100%;
  height: 80vh;
  object-fit: cover;
  padding-bottom: 10vh;
}

@keyframes fadezoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1.1);
  }
}
.slick-animation {
  animation: fadezoom 5s 0s forwards;
}

.slider-dot {
  display: flex;
  justify-content: center;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  bottom:5vh;
  counter-reset: number;
}
.slider-dot button {
    position: relative;
    width: 30px;
	  height: 30px;
	  border: none;
	  background-color: transparent;
	  margin:8px 0;
    padding: 0;
	  cursor: pointer; 
    border-radius: 50%;
    background: rgba(255,255,255,0.37);
}
.thumbnail .slick-track {
transform:unset!important;
}
.slider-inner-dot {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  color:#a5a5a5;
  transition: .3s;
  top:0;
  left:0;
}

.slider-inner-dot:before {
  counter-increment: number;
  content: "0" counter(number) ; 
  color: #ccc;
  font-size: 15px;
  font-family: 'Noto Serif JP', serif;
  font-style: italic;
}

.slider-dot-box{
  position: absolute;
  left: -4.427vw;
  bottom: 20.5vh;
  z-index: 5;
}
.c-line {
  position: absolute;
  background-color: #707070;
  height: 1px;
  left: 0;
  top: 0;
  animation: indicator 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
@keyframes indicator {
  from {
      left: 0;
      transform-origin: left top;
      width: 10px
  }

  20% {
      width: 30px
  }

  80% {
      width: 30px
  }

  to {
      transform-origin: left top;
      left: 100%;
      width: 0px
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .slider-dot-box{
    display:none;
  }
}
.top_slide_main .slick-dots{
  bottom: 0;
  display: flex;
  justify-content: space-between;
  max-width: 200px;
}
.top_slide_main .slick-dots li{
width: calc(100% / 3 - 5px);
  height: 3px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: #252525;
  overflow: hidden;
}
.top_slide_main .slick-dots li:not(:last-child){
margin-right:10px;
}
.top_slide_main .slick-dots li.slick-active button::after{
content: "";
position:absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background-color: #fff;
animation: progress 5s linear 0s forwards;
z-index:1;
}
@keyframes progress {
0%{
  width:0;
}
100% {
  width:100%;
}
}
@media screen and (max-width: 767px) {

  .slick-dots{
    display: none !important;
  }


.top_slide_main .slick-dots{
  bottom:10vh;
}

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top_slide_main .slick-dots{
    display: none !important;
  }
}

/****************　ハンバーガーメニュー　*****************/

.menu_btn {
	position: fixed;
	background: none;
  top:50px;
  right:calc(var(--row-space) / 4);
	border: none;
	appearance: none;
	cursor: pointer;
	width: 105px;
	transition: all 1s;
  font-family: "Zen Old Mincho", serif;
  z-index: 6;
  opacity: 0;
  border: 1px solid #1d1919;
  border-radius: 4.46em;
  display: flex;
  padding:.75em;
  background: rgba(255,255,255,0.95);
}

.estate_btn {
	position: fixed;
	background: none;
  top:150px;
  right:calc(var(--row-space) / 4);
	border: none;
	appearance: none;
	cursor: pointer;
	width: 105px;
	transition: all 1s;
  font-family: "Zen Old Mincho", serif;
  z-index: 6;
  opacity: 0;
  border: 1px solid #f0a82d;
  border-radius: 4.46em;
  display: flex;
  padding:.75em;
  background: rgba(255,255,255,0.95);
}
@media screen and (min-width: 768px) {
  .menu_btn, .estate_btn{
    right:-150px;   
    opacity:0;
  }
  .menu_btn.isActive{
    right:calc(var(--row-space) / 4);
  }
}

.menu_btn .Inner, .estate_btn .Inner{
  max-height: 95%;
  position: relative;
  display: flex;
  column-gap: 10px;
  justify-content: space-between;
}


.menu_btn .Inner .border__wrap, .estate_btn .Inner .border__wrap{
  width: 65px;
  position: relative;
}

.menu_btn.isActive, .estate_btn.isActive{
  opacity: 1;
}

body.is-in .menu_btn span{
  background: #1a1919;
}

body.is-in .menu_btn:before{
  color: #1a1919;
}

.logo-wrap img{
  display: block;
  width: 100%;
}

.logo-wrap{
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .logo-wrap{
    max-width: 160px;
  }
}

.menu_btn .Inner:before{
  content: 'MENU';
  display: block;
  position: relative;
  font-size: 10px;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  color:#1a1919;
}
.estate_btn .Inner:before{
  content: 'SEARCH';
  display: block;
  position: relative;
  font-size: 9px;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  color:#f0a82d;
}
.menu_btn.active .Inner:before{
  content:'CLOSE';
  color:#1a1919;
}
.estate_btn.active .Inner:before{
  color:#f0a82d;

}
.menu_btn span, .estate_btn span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #1a1919;
  max-width: 25px;
	transition: all .4s;
}
.estate_btn span{
  background: #f0a82d;
}

.menu_btn span:nth-of-type(1), .estate_btn span:nth-of-type(1) {
	top: 2px;
}
.menu_btn span:nth-of-type(2), .estate_btn span:nth-of-type(2) {
  display: none;
}
.menu_btn span:nth-of-type(3), .estate_btn span:nth-of-type(3){
	bottom:2px;
}

.menu_btn.active span:nth-of-type(1), .estate_btn.active span:nth-of-type(1) {
	animation: anime3-1 .75s forwards;
}
.menu_btn.active span{background: #000;}
.estate_btn.active span{background: #f0a82d;}
@keyframes anime3-1 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(20px) rotate(0);
	}
	100% {
		transform: translateY(10px) rotate(45deg);
	}
}
.menu_btn.active span:nth-of-type(2) {
	display: none;
}
.menu_btn.active span:nth-of-type(3) {
	animation: anime3-3 .75s forwards;
}
.menu_btn.active span:nth-of-type(1){
  top: -2px;
}
.menu_btn.active span:nth-of-type(3){
  bottom: -2px;
}

.estate_btn.active span:nth-of-type(2) {
	display: none;
}
.estate_btn.active span:nth-of-type(3) {
	animation: animeestate .75s forwards;
}
.estate_btn.active span:nth-of-type(1){
  top: -2px;
}
.estate_btn.active span:nth-of-type(3){
  bottom: -2px;
}


@keyframes anime3-3 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-20px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
@keyframes animeestate {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-20px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
.menu_btn.completed span:nth-of-type(1) {
  animation: completed-move-1 .75s forwards;
}
.estate_btn.completed span:nth-of-type(1) {
  animation: completed-move-2 .75s forwards;
}
@keyframes completed-move-1 {
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  0% {
    transform: translateY(20px) rotate(45deg);
    top: -10px;
  }
}
@keyframes completed-move-2 {
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  0% {
    transform: translateY(20px) rotate(45deg);
    top: -10px;
  }
}
.menu_btn.completed span:nth-of-type(3) {
  animation: completed-move-3 .75s forwards;
  
}
.estate_btn.completed span:nth-of-type(3) {
  animation: completed-move-3 .75s forwards;
  
}
@keyframes completed-move-3 {
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  0% {
    transform: translateY(-20px) rotate(-45deg);
    bottom: -11px;
  }
}

html.appear .overlay{
  width: 100vw;
  height:0;
  opacity:0;
  animation: drawer .75s forwards;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  display: block;
  z-index: 5;
}

html.appear02 .overlay02{
  width: 100vw;
  height:0;
  opacity:1;
  animation: drawerestate .75s forwards;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  display: block;
  z-index: 5;
  top:0;
  left:0;
}

@keyframes drawer {
  100% {
    height:100%;
    opacity:1;
  }
  50% {
  }
  0% {
      height:0;
      opacity:0;
  }
}

@keyframes drawerestate {
  100% {
    height:100%;
    opacity:1;
  }
  50% {
  }
  0% {
      height:0;
      opacity:0;
  }
}

.overlay .menu__wrap{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.overlay .menu__wrap::before{
background:#202020;
width: 0;
height: 2.5vw;
content: '';
position: absolute;
bottom:0;
left:0;
animation: drawerborder02 .5s forwards;
animation-delay: 1s;
}

.overlay .menu__wrap::after{
  background:#454545;
  width: 2.5vw;
  height: 0;
  content: '';
  position: absolute;
  top:0;
  left:0;    
  animation: drawerborder .5s forwards;
  animation-delay: 1s;
  }

  .overlay .menu__wrap .Left ul.drawer__bottom{
    display: flex;
    column-gap: 2%;
    justify-content: space-between;
flex-direction: row;
    margin: 2em auto;
  }

  .overlay .menu__wrap .Left ul.drawer__bottom li a{
    display: flex;
    justify-content: center;
    background: #1d1919;
    text-align: center;
    color:#fff;
    font-size: 1.0rem;
    text-decoration: none;
    border: 1px solid #1d1919;
    padding: .5em;
    width: 100%;
  }
  .overlay .menu__wrap .Left ul.drawer__bottom li {
    width: calc(98% / 2);
  }
  .overlay .menu__wrap .Left ul.drawer__other{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: .5em;
    margin-top: 2em;
    margin-bottom: 0;
  }
  .overlay .menu__wrap .Left ul.drawer__other li{
    font-size: 0.9rem;
    display: flex;
    column-gap: .5em;
    align-items: center;
  }

  .overlay .menu__wrap .Left ul.drawer__other li:after{
    content: '/';
    color:#1d1919;
  }

@keyframes drawerborder {
  100% {
    height:100vh;
    opacity:1;
  }
  50% {
  }
  0% {
      height:0;
      opacity:0;
  }
}

@keyframes drawerborder02 {
  100% {
    width:100vw;
    opacity:1;
  }
  50% {
  }
  0% {
    width:0;
      opacity:0;
  }
}
@keyframes drawerborder03 {
  100% {
    height:100vh;
    opacity:1;
  }
  50% {
  }
  0% {
      height:0;
      opacity:0;
  }
}

@keyframes drawerborder04 {
  100% {
    width:100vw;
    opacity:1;
  }
  50% {
  }
  0% {
    width:0;
      opacity:0;
  }
}
.overlay .menu__wrap .Left ul li{
  opacity:0;
  animation: drawernav .5s forwards;
}
.overlay02 .menu__wrap .Left ul li{
  opacity:0;
  animation: drawernav02 .5s forwards;
}

.overlay .menu__wrap .Left ul li:first-of-type{
  animation-delay: .8s;
}

.overlay .menu__wrap .Left ul li:nth-of-type(2){
  animation-delay: 1s;
}
.overlay .menu__wrap .Left ul li:nth-of-type(3){
  animation-delay: 1.2s;
}
.overlay .menu__wrap .Left ul li:nth-of-type(4){
  animation-delay: 1.4s;
}
.overlay .menu__wrap .Left ul li:nth-of-type(5){
  animation-delay: 1.6s;
}
.overlay .menu__wrap .Left ul li:nth-of-type(6){
  animation-delay: 1.8s;
}
.overlay .menu__wrap .Left ul li:nth-of-type(7){
  animation-delay: 2.0s;
}
.overlay .menu__wrap .Left ul li:nth-of-type(8){
  animation-delay: 2.2s;
}
.overlay .menu__wrap .Left ul.drawer__bottom li:first-of-type{
  animation-delay: 1.8s;
}
.overlay .menu__wrap .Left ul.drawer__bottom li:nth-of-type(2){
  animation-delay: 2.0s;
}

.overlay02 .estate__wrap .Left ul.drawer__other li:first-of-type{
  animation-delay: 2.2s;
}

.overlay02 .estate__wrap .Left ul.drawer__other li:nth-of-type(2){
  animation-delay: 2.4s;
}

@keyframes drawernav {
  100% {
    opacity:1;
    filter: blur(0px);
  }
  50% {
  }
  0% {
      opacity:0;
      filter: blur(6px);
  }
}
@keyframes drawernav02 {
  100% {
    opacity:1;
    filter: blur(0px);
  }
  50% {
  }
  0% {
      opacity:0;
      filter: blur(6px);
  }
}

.overlay .menu__wrap .Left{
   width:30%;
   height: 100vh;
   display: flex;
   justify-content: center;
   flex-direction: column;
   padding-left: 4vw;
   padding-right: 4vw;
   overflow-y: auto;
}

.overlay .menu__wrap .Left ul{
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0;
  margin: 0 auto 2em;
  gap:1.546vw;
  list-style: none;
  align-items: flex-start;
}

.overlay .menu__wrap .Left ul li{
  font-size: clamp(18px,1.24vw,20px);
  font-family: "Zen Old Mincho", serif;
}

.overlay .menu__wrap .Left .logo a{
  max-width: 150px;
  margin: 0 auto 1.546vw;
  display: block;
}

.overlay .menu__wrap .Left .menu-global-nav-right-container{
  margin-top: 1.546vw;
}

.overlay .menu__wrap .Left ul li a{
  color:#181818;
  text-decoration: none;
}

.overlay .menu__wrap .Right{
  width: 70%;
  background: url(../images/drawer__bg.webp)no-repeat;
  background-size: cover;
}


@media screen and (max-width: 767px) {

  nav.drawer{
    display: none;
  }

  .overlay02 .menu__wrap{
    overflow-y: auto;
    height: 100vh;
    padding-top: 15vh;
  }

  .menu_btn, .estate_btn{
    opacity:1;
  }

  .overlay .menu__wrap .Left .logo a{
    margin-bottom: 2em;
  }

  .overlay .menu__wrap .Left{
    width:100vw;
    position: relative;
  }
  .overlay .menu__wrap .Right{
    display: none;
  }

  .menu_btn{
    max-width: 95px;
    top:18px;
  }
  .estate_btn{
    max-width: 95px;
    top:75px;
  }
  .estate_btn .Inner{
    column-gap: 5px;
  }
  .menu_btn:before, .estate_btn:before{
    font-size: 10px;

  }

  .menu_btn span:nth-of-type(2){
    display: none;
  }

  .menu_btn.active span:nth-of-type(3){
    bottom:0;
  }
  .estate_btn span:nth-of-type(2){
    display: none;
  }

  .estate_btn.active span:nth-of-type(3){
    bottom:-3px;
  }
  .estate_btn.active span:nth-of-type(1) {
    top: -3px;
}
}

html .overlay{
  display: none;
  opacity: 0;
}
html .overlay02{
  display: none;
  opacity: 0;
}

/****************** ヘッダー ***********************/

header#kv__wrap{
  padding:clamp(20px,1.3458333333333335vw,25px) var(--row-space) calc(var(--row-space) / 2);
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff
}

.top_slide_main{
  width:100%;
  margin-bottom: 0;
}

.top_slide_main_wrap{
width: 100%;
margin: auto;
position: relative;
z-index: 1;
}
picture.page__header{
  margin-top: -4vh;
  display: block;
}

.scroll_down{
  position:absolute;
  bottom: 5vh;
  right: calc(var(--row-space) * 2);
}

.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 27px;
  color: #fff;
  font-size: 11px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:#fff;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:110px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:.5px;
  height: 110px;
  background:#666;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  header#kv__wrap{
    min-height: auto;
  }
  picture.page__header{
    margin-top: 0;
  }
}

#nav-wrap{
  margin-left: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 4;
  padding: 2vh 0 2vh 0;
}

#nav-wrap .RIght{
  width: calc((100vw - var(--row-space)) - 120px);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 1em;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 500;
  padding-bottom: 1em;
}

#nav-wrap .RIght .global-menu ul{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#nav-wrap .RIght .global-menu ul{
  padding-left: 0;
  margin: 0;
}

#nav-wrap .RIght .global-menu a{
  color:#202020;
  text-decoration: none;
  transition: all .3s;
}

#nav-wrap .RIght .global-menu a:hover{
  color:var(--blue);
}

#nav-wrap .RIght .global-menu li{
  margin-right:clamp(30px,3.125vw,3.125vw) ;
}

#nav-wrap .RIght ul{
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
}
#nav-wrap .RIght .global-menu li.contact{
  margin-right: 1px;
}

#nav-wrap .RIght .global-menu li.contact a{
background:var(--blue);
padding:10px 20px;
text-align: center;
text-decoration: none;
color:#fff;
margin-right: 1px;
max-width: 150px;
min-width: 149px;
display: block;
transition: all .3s;
}

#nav-wrap .RIght .global-menu li.contact a:hover{
  background: #f0a82d;
}

header .caption{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin-bottom: 0;
  padding: var(--row-space);
  font-family: "Libre Baskerville", serif;
  width: 100%;
}

header .tel__number{
  color:#35311f;
  font-size: clamp(20px,23px,23px);
  font-family: "Libre Baskerville", serif;
  padding-right: var(--row-space);
  margin-bottom: .5em;
  display: flex;
  column-gap: 10px;
  align-items: center;
}

header .tel__number span.min{
  font-size: 0.75rem;
}

#nav-wrap nav *{
  color:#fff;
  text-decoration: none;
  font-size:0.9375vw;
  font-family: "Zen Old Mincho", serif;
}
#nav-wrap nav a, .overlay .menu__wrap .Left ul li a{
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}

#nav-wrap nav a, .overlay .menu__wrap .Left ul li:first-of-type a{
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}

.overlay .menu__wrap .Left ul li a:hover{
  color: #f0a82d;
}

#nav-wrap nav a, .overlay .menu__wrap .Left ul li a::before {
  content: attr(data-desc);
  font-size: 10px;
  color:#aaa;
}

#nav-wrap nav a::after, .overlay .menu__wrap .Left ul li a::after{
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #f0a82d;
  bottom: -6px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  }
  
  #nav-wrap nav a:hover::after, .overlay .menu__wrap .Left ul li a:hover::after{
  transform: scale(1, 1);
  }

#nav-wrap nav a:hover, .overlay .menu__wrap .Left ul li a:hover{
  text-shadow: white 0px 0px 10px;
}

.drawer__bottom a:hover::after{
  display: none;
}

.overlay .menu__wrap .Left ul.drawer__bottom li a:hover{
  background: #f0a82d;
  color:#fff;
}

.overlay .Logo{
  display: block;
  max-width: 200px;
  margin:0 auto 2em;
}

.menu-drawer-nav-container li a{
  font-size: 0.95rem;
}

#nav-wrap nav ul{
  display: flex;
  column-gap: 2.56vw;
  padding-left: 0;
  flex-direction: row;
  list-style: none;
  justify-content: flex-end;
}

.sitename__wrap{
  color:#fff;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  margin-bottom: 0;
  font-weight: 700;
}

.sitename__wrap span{
  display: block;
  font-size: clamp(20px,2.759375vw,47px);
  line-height: 1.65;
  text-shadow: 
	#222 2px 0px 7px;
}

.caption picture{
  display:block;
  position: relative;
}

.caption picture::before{
    content: '';
    background: #fff;
    width:100%;
    height: .5px;
    position: absolute;
    left: 0;
    bottom:92px;
}

.sitemain__name {
  position: absolute;
  bottom: 2%;
  left: 22%;
  z-index: 2;
}


.top_slide_main_wrap .thumbnail{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -15vh;
  margin-bottom: 0;
}
.top_slide_main_wrap .thumbnail .slick-slide{
  margin: 0;
}
.top_slide_main_wrap .thumbnail img{
  min-height: 130px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .top_slide_main_wrap{
    margin: 0 auto;
  }

  .scroll_down{
    bottom:15vh;
    right:calc( var(--row-space) * 3);
  }

  span.he--bottom{
    font-size: 0;
  }
  header .caption{
    left: 50%;
    transform:translateX(-50%);
    width: calc(100% - (var(--row-space) * 2.5));
    bottom:0;
    padding: 0;
  }

  .caption picture::before{
    bottom: 2.2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {

  #nav-wrap nav *{
    font-size: 1.0rem;
  }
  .caption picture::before{
    bottom: 42px;
  }
}
/****************** philophy ***********************/

section#philosophy{
  width: 100%;
  background: url(../images/message__bg.jpg)no-repeat center;
  background-size: cover;
  padding: var(--row-space);
  display: flex;
  flex-direction: row;
  justify-content: center;
  min-height: 70vh;
}
section#philosophy.message {
background: url(../images/philosophy__bg.jpg)no-repeat center;
background-size: cover;
}
section#philosophy.message .Text_wrap{
  width: 100%;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 2.6vw;
}

section#philosophy.message  .Text_wrap p.Center{
  text-align: center;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 400;
  font-size: clamp(17px,1.25rem,1.35rem);
}

section#philosophy .Inner__wrap{
  max-width: 1260px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section#philosophy .Inner__wrap .Image{
  width: 35%;
}
section#philosophy .Inner__wrap .Image p{
  margin-top: 0;
}

section#philosophy .Inner__wrap .Text_wrap{
  width: 60%;
  padding: clamp(1em,2.5vw,3vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  align-items: center;
}

section#philosophy .Inner__wrap p{
  color:#202020;
  line-height: 2.55;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 400;
}

section#philosophy .Inner__wrap .Item{
  width:100%;
  max-width: 100%;
}
section#philosophy h2.jan{
  margin-bottom: 1em;
}

section#profile .Inner__wrap .Item:first-of-type img{
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  section#profile .Inner__wrap{
      flex-direction: column;
  }
  section#profile .Inner__wrap .Item{
    width: calc(100% / 1);
  }
  .bg__bk h3{
    margin: 0 0 !important;
  }
  section#philosophy.message .Text_wrap p.Center{
    font-size: 15px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {

section#philosophy .Inner__wrap{
  max-width: 65%;
}

}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  section#philosophy .Inner__wrap{
    margin-left: 25vw;
  }

  section#profile .Inner__wrap{
    flex-direction: row;
    justify-content: center;
    padding-left: var(--row-space);
    padding-right: var(--row-space);
  }
  section#profile .Inner__wrap .Item:first-of-type{
    width: 30%;
    margin:var(--col-space) auto 0;
  }

  section.pr-page .Inner__wrap .Item:first-of-type{
    margin-top: calc(var(--col-space) / 2) !important;
  }

  section#profile .Inner__wrap .Item:last-of-type{
    width: 68%;
    padding: 0;
  }
  section#profile .Inner__wrap .Item:first-of-type img{
    height: auto;
  }
  section#concert02{
    margin-top: -60vh !important;
  }
  .concert__top__wrap + .concert__top__wrap .Item:last-child{
    justify-content: flex-end !important;
  }

}

/****************物件一覧*****************/

ul.estate-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  gap: 2%;
}

ul.estate-list li{
  width: calc(94% / 4);
  position: relative;
  margin-bottom: var(--row-space);
}
dl.search__wrap__btn select{
  border-radius: .46em;
  padding:1em .75em;
  line-height: 1.1;
  border:1px solid #eee;
  background: #fff;
  width: 100%;
  font-size: 1.0rem;
  display: block;
  cursor: pointer;
}

.search__wrap__btn ul{
  width: 100%;
}

/*ul.estate-list li:nth-of-type(even){
  margin-top: var(--row-space);
}*/


ul.estate-list li .title{
  font-size: clamp(16px,0.8854166666666666vw,1vw);
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  color:#000;
}

.terms{
  font-size: 0.85rem;
  display: flex;
  column-gap: .5em;
}

.terms:after{
  content: '─';
  color:#f0a82d;
}

ul.estate-list img{
  width: 100%;
  height: auto;
  min-height: 242px;
  max-height: 242px;
  overflow: hidden;
  object-fit: cover;
}

@media screen and (min-width: 768px) and (max-width: 1400px) {

  ul.estate-list img{
    width: 100%;
    height: auto;
    min-height: 170px;
    max-height: 170px;
    overflow: hidden;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  ul.estate-list img{
    width: 100%;
    height: auto;
    min-height: 110px;
    max-height: 110px;
    overflow: hidden;
    object-fit: cover;
  }
}

.more__btn{
  max-width: 300px;
  margin-left: auto;
  margin-top: calc(var(--row-space) / 2);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  transition: all .5s;
}

.more__btn a{
  color:#282828;
  font-size: clamp(17px,1.1979166666666667vw,23px);
  font-family: "Zen Old Mincho", serif;
  display: block;
  padding-bottom: .75em;
  padding-top: 1em;
  border-bottom: 1px solid #202020;
  text-decoration: none;
  margin-bottom: .75em;
  width: 100%;
  transition: all .5s;
}

.more__btn a:hover{
  background: #000;
  color: #fff;
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .more__btn{
    margin-top: 1em;
  }
}
/**********************物件詳細**********************/

.comm__Inner__wrap.single{
  max-width: 1100px;
  margin: auto;
}

.single figure img{
  max-width: 600px;
  max-height: 600px;
  object-fit: scale-down;
  display: block;
  margin: 0 auto 0;
  background: #fff;
}

.single__wrap{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}

picture.eyecatch{
  display: block;
  margin: 0 auto 2em;
}

picture.eyecatch img{
  max-width: max-content;
  display: block;
  margin: auto;
}

h1.estate-title{
  font-size: clamp(1.45rem,1.75rem,2.0rem);
  padding-bottom: .25em;
  padding-left: .1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #000;
  color: #1d1919;
  margin-top: 0;
}

.estate__detail__wrap{
  display: flex;
  column-gap: 2%;
}
.estate__detail__wrap .Left{
  flex: 2;
}
.estate__detail__wrap .Right{
  flex: 1;
}

.border_table{
  margin-bottom: 2em;
}

.border_table dl{
  display: flex;
  margin: 0;
  border-bottom: 1px solid #aaa;
  padding-bottom: .75em;
  padding-top: .75em;
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

}

.border_table dl dt{
  width: 30%;
  margin: 0;
  font-weight: bold;
}

.border_table dl dd{
  width: 70%;
  margin: 0;
}

ul.estate-image{
  max-width: 95%;
  margin:5vh auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 5vh;
}
ul.estate-image li{
  text-align: center;
  width: 100%;
}

ul.estate-image li:nth-of-type(2), ul.estate-image li:nth-of-type(3){
  width: calc(95% / 2);
}
ul.estate-image li:nth-of-type(5), ul.estate-image li:nth-of-type(6){
  width: calc(95% / 2);
}
ul.estate-image li:nth-of-type(8), ul.estate-image li:nth-of-type(9){
  width: calc(95% / 2);
}

ul.estate-image li:last-of-type{
  width: 100%;
}

.price__wrap{
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(36px,48px,50px);
  justify-content: space-between;
  margin: 0 auto 1em;
}

.price__wrap__item{
  width: calc(99% / 2);
  padding: 1em;
  background: #fbfaf6;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 1.0;
  color:#1d1919;
  column-gap: .25em;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.price__wrap span.min{
  font-size: clamp(17px,24px,26px);
}

.Image{
  width: 100%;
}

.Text{
  width: 100%;
}

.detail-text{
  margin-bottom: calc(var(--col-space) / 2);
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.0rem;
}

.detail-text:last-of-type{
  margin-bottom: 0;
}

.slider-photo img{
  max-height: 400px;
  object-fit: cover;
}

.thumbnail img{
  width: 100%;
  max-height: 95px;
  object-fit: cover;
}

.detail-text ul{
  list-style: none;
  list-style-position: inside;
  display: flex;
  column-gap: 2%;
  row-gap: 2%;
  margin-bottom: 2em;
}

.detail-text ul li{
  padding: .5em;
  background: #f2f2f2;
  width: calc(94% / 4);
  text-align: center;
}

.page_navi{
  background: rgba(255,255,255,0.355);
  margin-bottom: 1em;
}

.page_navi a{
  color:#000;
}

.products-page picture img{
	    max-width: 800px;
    max-height: 800px;
    object-fit: scale-down;
    display: block;
    margin: 0 auto 0;
    background: #fff;
}

.wpcf7 {
  margin-bottom: var(--col-space);
}
.wpcf7:last-of-type{
  margin-bottom: 0;
}
.bg.mb__none{
  margin-bottom: 0;
}

.wpcf7-spinner{
  display: none !important;
}

@media screen and (max-width: 767px) {
  .single figure img{
    max-width: 300px;
    max-height: 300px;
    object-fit: scale-down;
    display: block;
    margin: 0 auto 0;
    background: #fff;
  }

}


/************************* 見出し ********************************/

h2{
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: clamp(32px,3.0208333333333335vw,56px);
  margin: 0 auto 1em 0;
  color:#202020;
}

h2 span.kana{
  margin-bottom: .5em;
  position: relative;
  display: flex;
  column-gap: 5px;
  color:#202020;
  font-weight: 300;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: clamp(14px,16px,17px);
  align-items: center;
}

h2 span.kana::before{
  content: '';
  background: #f0a82d;
  width: 20px;
  height: 1px;
}

h2.jan{
  color:#202020;
  font-size: clamp(26px,1.875vw,32px);
}

h2.bg{
  background: #202020;
  color:#fff;
  position: relative;
  padding: 1em 1em 1em 40px;
  box-shadow: 0px 9px 4px -8px #aaa;
}

h2.bg::before{
  content: '';
  background: #fff;
  width: 10px;
  border-radius: 1.46em;
  height: 50%;
  position: absolute;
  left:15px;
  top: 50%;
  transform: translateY(-50%) ;
}

span.concert{
  width: 40%;
  display: inline-block;
  position: relative;
  margin-top: -3em;
  margin-right: -4em;
}

.bg__bk{
  background: rgba(40,39,39,0.9);
  padding: clamp(1em,2em,2.6vw);
}

.bg__bk p{
  text-align: justify;
  text-justify: inter-ideograph;
}
.bg__bk p:last-of-type{
  margin-bottom: 0;
}

.bg__bk *{
  color:#fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
}

.bg__bk h3{
  font-size: clamp(40px,2.604166666666667vw,50px);
  letter-spacing: 0.096em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  h2{
    font-weight: 300;
  }
  .bg__bk p{
    font-size: 0.9rem;
  }
  span.concert{
    margin-top: -2em;
    margin-right: 5em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {

  h2{
    font-size: clamp(38px, 4.75vw, 42px);
  }

  .bg__bk h3{
    font-size: 1.65rem;
  }
  .bg__bk p{
    font-size: 0.9rem;
  }
  span.concert{
    width: 70%;
    margin-top: -2em;
    margin-right: -3em;
  }
}

/************************* 矢印 ****************************************/

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 2em;
  height: 0.05em;
  background: currentColor;
  right: 0;
  transition: all .3s;
}

.dli-arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.05em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

ul.news__flex li:hover .dli-arrow-right, ul.topics li:hover .dli-arrow-right{
  right: 20px;
}

.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 2px;
	bottom: 0;
	left: 1px;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.arrow-right::before{
	width: 18px;
	height: 18px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #202020;
}
.arrow-right::after{
	left: 6px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #202020 !important;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.175em 0.34952em;
  border-left-color: currentColor;
  border-right: 0;
  margin-left: 1em;
  position: relative;
  right:0;
  transition: all .3s;
}

/****************ニュース*****************/

section#news {
  padding: var(--col-space) var(--row-space);
}

section#news .comm__Inner{
  max-width: 1260px;
  margin: auto;
  display: flex;
  column-gap:calc(27.3015873015873vw / 2);
}
section#news .comm__Inner .Title{
  width:calc(27.3015873015873vw / 2);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  section#news .comm__Inner .Title{
    width:calc(37.3015873015873vw / 2);
  }
}

section#news .comm__Inner .Text{
  width:100%;
}

a.text__link{
  font-size: 14px;
  margin: 1em 0 0;
  text-decoration: none;
  display: flex;
  column-gap: 1em;
  align-items: center;
  color:#000;
  border-bottom: 1px solid #000;
  padding-bottom: .5em;
  max-width: max-content;
}

a.text__link i{
  color: #000;
}

ul.news{
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.news li{
  margin: 0;
}

ul.news li a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
  font-weight: 400;
  text-decoration: none;
  color:#202020;
  transition: all .5s;
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

ul.news li a i, ul.news li h3{
  transition: all .5s;

}

ul.news li a:hover h3{
  text-decoration: underline;
  color:#999;
}

ul.news li a:hover i{
  margin-right: -5px;
}

ul.news li .contents{
  display: flex;
  align-items: center;
  width: 95%;
}

ul.news li a h3{
  font-weight: 400;
  margin: 0;
}

ul.news li a i{
  color:#666;
  font-size: 1.15rem;
}

ul.news li a .date{
  font-size: 0.9rem;
  color:#999;
  width: 20%;
}

/****************サーチ*****************/

section#search{
  padding:0 var(--row-space);
  position: relative;

}

section.page-sec{
  padding: var(--col-space) var(--row-space) 0 !important;
}

section.page-sec .comm__Inner , section.page .comm__Inner {
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
}

section#search .search__top__wrap{
  background: #eee;
}

.result__wrap{
  padding: .5em;
  background: #fbfaf6;
}

section#search .comm__inner{
  width: 100vw;
  padding: var(--row-space) 0;
  margin: 0 calc(50% - 50vw);
  background: #fff;
}
section#search .comm__inner .wrapper{
  max-width: 1260px;
  margin: auto;
}
section#search .comm__inner .wrapper .search__wrap{
background: #1d1919;
padding: clamp(1em,1.6vw,2vw);
}

@media screen and (min-width: 768px) and (max-width: 1300px) {

  section#search .comm__inner .wrapper{
    max-width: 1260px;
    margin: auto;
    padding-left: var(--row-space);
    padding-right: var(--row-space);
  }
}

/****************サービス*****************/

section#service{
  padding: var(--col-space) var(--row-space);
  background: #fff;
}

section#service h2{
  max-width: 1260px;
  margin:0 auto 1em;
}

section#service .comm__Inner{
  display: flex;
  gap: 1.5%;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1260px;
  margin: auto;
  }

section#service .comm__Inner .Left{
  width: calc(98% / 2);
}

section#service .comm__Inner .Left .service__item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

section#service .comm__Inner .Left img{
  height: 100%;
  min-height: 40vh;
}
.service__item {
  position: relative;
}
.service__item a{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height:100%;
}
section#service .comm__Inner .Right{
  width: calc(98% / 2);
  margin-top: 2%;
}

.service__item{
  position: relative;
  transition: all .5s;
}

.service__item:hover{
  opacity: 0.55;
}

.Image__view.show a{
  z-index: 2;
  display: block;
}

section#works{
  position: relative;
  padding: var(--col-space) var(--row-space);
}

section#works::after{
  content: '';
  position: absolute;
  bottom:0;
  left:0;
  width: 100vw;
  height: 50%;
  background: #f8f8f8;
  z-index: -1;
}

section#works .comm__Inner{
  max-width: 1260px;
  margin: auto;
  background: #fff;
  border:#ededed 1px solid;
  padding: clamp(1em,2.6vw,3vw);
}

.service__text{
  background: var(--blue);
  padding: 1em;
  color:#fff;
  font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W6", HiraMinProN-W6, HG明朝E, "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: 400;
  font-size: clamp(22px,
  1.4583333333333333vw,1.5vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service__text .more{
  font-size: 0.9rem;
  padding: 0 .2em .2em;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service__item.estate__banner img{
  width: 100%;
  object-fit: cover;
}

section#topics{
  background: url(../images/topics__bg.jpg)no-repeat;
  background-size: cover;
  padding: var(--row-space);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section#topics .comm__Inner .Item{
  max-width: 900px;
  margin-left: auto;
}

ul.topics{
  padding-left: 0;
}

ul.topics li{
  padding: 1em;
  display: flex;
  flex-direction: column;
  color:#fff;
  font-family: "Zen Old Mincho", serif;
  column-gap: 1em;
  margin: 0 0 1em;
  position: relative;
  background: rgba(40,40,40,0.95);
  transition: all .3s;
}

ul.topics li:hover{
  padding-left: 1.5em;
}

ul.topics li a{
  position: absolute;
  width: 100%;
  height: 100%;
}

ul.topics li *{
  color:#fff;
}

ul.topics li:hover{
  background: rgba(10, 10, 10, 1.0);
}

ul.topics li h3{
  display: flex;
  margin-top: .5em;
  justify-content: space-between;
  margin-bottom: 0;
}

ul.topics .days{
  color:#9b9b9b;
}

@media screen and (max-width: 767px) {
  section#topics {
    background: url(../images/topics__bg.jpg) no-repeat right;
    background-size: cover;
    padding: var(--row-space);
    min-height: 50vh;
  }
  ul.topics{
    padding-left: 0;
  }

}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#topics{
    min-height: 50vh;
  }
}

/****************物件種別*****************/

section#estate{
  position: relative;
  padding: 0 var(--row-space) var(--row-space);
  background: #fff;
}
section#estate.page{
  padding: var(--col-space) var(--row-space);
}

section#estate .comm__Inner{
  position: relative;
  max-width: 1560px;
  margin: auto;
}


/****************コンタクト*****************/

a.arrow__btn{
  border:1px solid #bbbbbb;
  padding:.8em .5em;
  color:#1a1919;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  min-width: 180px;
  max-width:250px;
  margin:5vh auto 0;
  width: 100%;
}

a.arrow__btn span.Text{
  color:#1a1919;
  font-size: 0.85rem;
  padding: 0 1em;
  border-right:1px solid #bbb;
  width: 90%;
  text-align: center;
}
.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #bbbbbb;
  line-height: 1;
  position: relative;
  width: .75em;
  height: 0.1em;
  background: currentColor;
}

.dli-arrow-right::before {
  content: '';
  width: 0.35em;
  height: 0.35em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
a.arrow__btn:hover{
  background: #000;
  color:#fff;
}
a.arrow__btn:hover span.Text{
  color:#fff;
}

/*************お問い合わせcta****************/

section#contact{
  position: relative;
  padding:0 var(--row-space) 0;
  overflow: hidden;
  background: #fff;
}

section#entry{
  padding: 0 var(--row-space);
  background: #f8f8f1;
}

section#entry .comm__Inner{
  background: #fff;
  padding:2.6vw clamp(1em,1.5em,2em);
  max-width: 1240px;
  margin: auto;
}

section#entry h2{
  text-align: center;
}

h2.Center{
  text-align: center;
}

section#contact .comm__Inner{
background: var(--blue);
padding: var(--row-space);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: relative;
max-width: 1260px;
margin: auto;
z-index: 3;
min-height: 40vh;
}

section#contact .comm__Inner .Item{
  width: calc(92% / 2);
  padding: 0 clamp(1em, calc(var(--row-space) / 2), calc(var(--row-space) / 2));
  color:#fff;
  border-right: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.755;
}

section#contact .comm__Inner .Item h3{
  margin-top: 0;
  margin-bottom: 0;
}

section#contact .comm__Inner .Item p{
  margin: 0;
}

section#contact .comm__Inner .Item:last-of-type{
  border:none;
}

a.tel{
  font-size: clamp(30px,42px,46px);
  text-decoration: none;
}

section#contact::after{
  content: '';
  background: #eee;
  position: absolute;
  bottom:0;
  left:0;
  width: 100vw;
  height: 50%;
  z-index: -1;
}

section.page__topics__wrap + section#contact::after{
  z-index: -1;
}

section#contact *{
  color:#fff;
  font-family: "Zen Old Mincho", serif;
}

section#contact a.contact{
  display: flex;
  background: #fff;
  border-radius: 8px;
  justify-content: center;
  column-gap: .5em;
  font-size: clamp(18px,19px,23px);
  align-items: center;
  color:#1d1919;
  text-decoration: none;
  padding: .85em 1em;
}

section#contact a.contact:hover{
  background: #f0a82d;
}

a.contact::before{
  content: '';
  background: url(../images/mail.svg)no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: .15em;
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 768px) and (max-width: 1400px) {

  section#contact a.contact{
    font-size: 18px;
  }

  a.tel{
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1350px) {

  section#contact .comm__Inner{
    flex-wrap: wrap;
  }
  section#contact .comm__Inner .Item:first-of-type{
    width: 100%;
    border-right: none;
    justify-content: center;
    text-align: center;
  }
  section#contact .comm__Inner .Item:first-of-type h2{
    margin: 0;
  }

  section#contact .comm__Inner .Item{
    width: calc(98% / 2);
  }
  section#contact .comm__Inner .Item:nth-of-type(2) h3{
    margin-bottom: .5em
  }

}
section#contact h2{
  line-height: 1.255;
}

section#contact a.btn{
  display: block;
  max-width: 24.20vw;
  background: rgba(255,255,255,0.9);
  padding:1.6vw 2.6vw;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-size: clamp(22px,2.5vw,48px);
  color:#0e0e0e;
}

section#contact a.btn:hover{
  background: #000;
  color:#fff;
}

section#contact a.btn:hover .dli-caret-right{
  color: #fff !important;
  right:-10px;
  position: relative;
}

p.serif{
  font-size: 1.4rem;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: .5em;
  margin-top: 0;
}

.page_top{
  padding: 2em var(--row-space);
  text-align: center;
  background: #eee;
}

@media screen and (max-width: 767px) {

  section#contact a.btn{
    max-width: 100%;
  }
  section#contact::after{
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#contact .comm__Inner{
    height: auto;
  }
  section#contact::after{
    width: 100%;
  }
}

.searchform li{
  list-style: none;
}

/********************************************/

footer{
  background: #fff;
  padding: var(--col-space) var(--row-space);
}

footer *{
  color:#000;
  font-family: "Zen Old Mincho", serif;

}

footer .Inner__wrap{
  display: flex;
  margin: auto;
  max-width: 1260px;
}

.menu-footer-nav-container li, .menu-footer-nav02-container li{
  margin-bottom: .75em;
}

.menu-footer-nav-container li a, .menu-footer-nav02-container li a{
  text-decoration: none;
}

.menu-footer-nav-container li a:hover, .menu-footer-nav02-container li a:hover{
  text-decoration: underline;
  color:#f0a82d;
}

footer .Inner__wrap .Left{
  display: flex;
  justify-content: flex-start;
  column-gap: 5%;
  font-family: "Zen Old Mincho", serif;
  align-items: flex-start;
  width: 50%;
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 1350px) {

  footer .Inner__wrap .Left{
    width: 60%;
    font-size: 0.9rem;
  }
  footer .Inner__wrap .Left p{
    font-size: 0.85rem;
  }
}


footer .Inner__wrap .Left .link{
  min-width: 40%;
}

footer .Inner__wrap .Left .logo{
  width:250px;
}

footer .Inner__wrap .Left .link ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: column;
  list-style: none;
  column-gap: 2.6vw;
  padding-left: 0;
  list-style: none;
}

.sns{
  display: flex;
  justify-content: flex-start;
  column-gap: .5em;
  font-size: 0.8rem;
  font-family: "Zen Old Mincho", serif;
}
footer .Inner__wrap .Left .link ul{
  row-gap: 1em;
}

footer .Inner__wrap .Left .link a{
  text-decoration: none;
}

footer .Inner__wrap .Left .link a:hover{
  opacity: 0.4;
  color:#f0a82d;
}

.sns li{
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 1.6vw;
  color:#202020;
  align-items: center;
}

.sns i{
  font-size: 30px;
}

footer .Inner__wrap .Right{
  max-width: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

footer .Inner{
  width: 70%;
  display: flex;
  column-gap: 5%;
  justify-content: flex-end;
  margin-left: auto;
}

.copy{
  font-size: 10px;
  text-align: left;
  margin-left: auto;
  color:#868686;
  line-height: 1.4;
  margin-top: 5vh;
  padding-right: 100px;
}

.sns a{
  text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  footer .Inner__wrap .Right{
    padding-left: 1em;
  }
}

@media screen and (max-width: 767px) {
  .page_top img{
    max-width: 90px;
  }
  .copy{
    font-size: 8px;
    line-height: 1.4;
  }
  footer .Inner__wrap .Left{
    flex-direction: column;
    justify-content: center;
  }

  footer .Inner__wrap .Left .link{
    display: none;
  }

  footer .Inner__wrap .Left img{
    max-width: 100%;
  }
  .sns{
    padding-left: 0;
  }
  .sns li img{
    max-width: 30px;
  }
  .copy{
    padding:2.5vh 0 0;
    border-top: 1px solid #eee;
    width: 100%;
    margin-top: 1vh;
    }
}

.flex__wrap{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1260px;
  margin: auto;
  align-items: center;
}

.flex__wrap .Image{
  width: 35%;
}

.flex__wrap .Text{
  width: 60%;
}

picture.Center{
  display: block;
  margin: 0 auto 1em;
  text-align: center;
}