@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/icon?family=Material+Icons);


@font-face {
  font-family: 'Noto Sans JP';
  src: url('NotoSansJP-Regular.woff2') format('woff2');
  font-display: swap;
}
/*PCでは無効（改行しない）*/
.sma{
    display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}


/* top pc1686/1157 sp536/700
--------------------------------------------------------- */
#top {
  width: 100%;
  height: 100vh;
  background-color: #464646;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/top_pc.webp"); /*背景画像のアドレスを入れる*/
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
}
#top h1 {
  position: relative;
}
#top h1.title {
  position: absolute;
  font-size: 3.24rem;
  letter-spacing: 0.5rem;
  color: #fff;
  font-weight: bold;
  display: flex;
  margin: 0;
  z-index: 3;
  right: 32%;	
  top: 50%;
background-color: rgba(128, 128, 128, 0.7); /* グレーで透過 */
  padding: 10px; /* 内側の余白 */
}
.h1_margin{
padding-inline-start:20px;
}
#top a.scroll {
  display: inline-block;
  padding: 10px 10px 140px;
  position: absolute;
  right: 49%;
  top: 83vh;
  z-index: 2;
  transform: translateX(50%);
  overflow: hidden;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  writing-mode: vertical-lr;
}
#top a.scroll::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 1px;
  height: 220px;
  background: #fff;
}
#top a.scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 1px;
  height: 220px;
  background: rgba(255, 255, 255, .4);
}
#top a.scroll::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*スマホ表示*/
@media screen and (max-width: 639px) {
  #top {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/top_sp.webp"); /*背景画像のアドレスを入れる*/
    background-attachment: scroll;
  }
  #top h1.title{
     font-size: 2.6rem;
	   
  }
  #top a.scroll::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 1px;
    height: 220px;
    background: #fff;
  }
  #top a.scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 1px;
    height: 220px;
    background: rgba(255, 255, 255, .4);
  }
}

/* lead
--------------------------------------------------------- */
section#lead {
  margin-block-start: 100px;
}

/* plan
--------------------------------------------------------- */
section#plan {
}
section#plan img{
padding: 0 1%;
}
/* img */
@media screen and (min-width: 768px) {
	.sp-only {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
}

/* gallery
--------------------------------------------------------- */
section#gallery{
  max-width: 960px;
  margin: 0 auto;
  padding-block-end: 120px;
  font-size: 1.65rem;
  letter-spacing: 0.1rem;
}
.photo_box_start{
margin-block-start:50px;
padding-block-end:6px;
}
.photo_box img{
padding: 6px 0;
}
.wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.item {
  padding: 20px 0;
  width: 44%;
  background-color: #fff;
}

@media not all and (min-width: 768px) {
  .item {
    width: 100%;
  }

  .item:not(:last-child) {
    margin-bottom: 30px;
  }
}


/* map
--------------------------------------------------------- */
section#map {}

/* deg360
--------------------------------------------------------- */
section#deg360 {
	width: 100%;
	background-color: #f0f0f0;
	padding-block-start:80px;
	margin-block-end:100px;
}
section#deg360 .innerWrap{
	padding-block-end:100px;
}
section#deg360 p {
	text-align: center;
	margin-block-end: 20px;
	font-size: 1.55rem;
	letter-spacing: 0.05rem;
	line-height: 1.8;
}
section#deg360 .camera_box {
	max-width: 1080px;
	margin-inline-start: auto;
	margin-inline-end: auto;
}
section#deg360 p {
	text-align: center;
	margin-block-end: 20px;
	font-size: 1.6rem;
}

/* inquiry
--------------------------------------------------------- */
section#inquiry {
max-width: 350px;
margin: 0 auto;
}

.shadow_btn02 {
  display: inline-block;
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  border: 2px solid #445069; /* 線幅・種類・色 */
  border-radius: 0;
  color: #445069; /* 文字色 */
  background: #fff; /* 背景色 */
  -webkit-box-shadow: 4px 4px 0 #445069; /* 影の距離・色 */
  box-shadow: 4px 4px 0 #445069; /* 影の距離・色 */
  padding: 1em 2em;
  font-weight: bold; /*文字の太さ*/
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

/* マウスオーバーした際のデザイン */
.shadow_btn02:hover {
  -webkit-box-shadow: -4px -4px 0 #445069; /* 影の距離・色 */
  box-shadow: -4px -4px 0 #445069; /* 影の距離・色 */
}


/* details　物件概要
---------------------------------------------------------------*/
section#details {}
dl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-top: none;
}
dt {
	width: 18%;
	padding: 14px 8px 8px 8px;
	box-sizing: border-box;
	border-block-end: 1px solid #5e5e5e;
	font-weight: 600;
}
dd {
	padding: 14px 8px 8px 8px;
	margin: 0;
	border-block-end: 1px solid #5e5e5e;
	width: 82%;
	box-sizing: border-box;
}
.producer:after {
	content: "\0bb";
}

/* Google Map
--------------------------------------------------------- */
section#gmap {
	position: relative;
	max-width: 960px;
	height: 600px;
	margin: 0 auto;
	filter: grayscale(100%);
  margin-block-end:120px;
}
#gmap iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}


/* pagetop */
.pagetop {
  position: fixed;
  bottom: 5px;
  right: 10px;
  display: none;
  z-index: 150;
  cursor: pointer;
}



/*===========================================================*/
/* sp*/
/*===========================================================*/
@media screen and (max-width: 767px) {
	/* deg360 */
	section#deg360 {
		width: 94%;
		margin: 0 auto;
	}
	section#deg360 .camera_box iframe {
		height: 440px;
	}
	/* details */
	section#details dt, dd {
		display: block;
		width: 100%;
		border: none;
	}
	dt {
		background-color: #eee;
	}
}