@charset "utf-8";
/*
Theme Name: OG HOME
Theme URI: /wp-content/themes/citystage-unuma
Author:LIT WORKS
Author URI:https://litworks.co.jp/
*/

/***********************************************
    
      cssスタイル

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

/*------------------------------------*
    トップページの読み込み完了設定
*------------------------------------*/

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #E5002D;
	text-align: center;
	z-index: 9999;
	display: none;
}
.spinner {
	width: 150px;
	height: 150px;
	position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    margin-top: -75px;
	perspective:500px;
}
.spinner img{
	-webkit-animation: sk-rotateplane 1.2s 0s infinite ease-in-out;
	animation: sk-rotateplane 1.2s 0s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(500px) rotateX(0deg) rotateY(0deg);
	}
	50% {
		-webkit-transform: perspective(500px) rotateX(-180.1deg) rotateY(0deg);
	}
	100% {
		-webkit-transform: perspective(500px) rotateX(-180deg) rotateY(-179.9deg);
	}
}
@keyframes sk-rotateplane {
  0% { 
	  -webkit-transform: perspective(500px) rotateX(0deg) rotateY(0deg);
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
  } 50% { 
	  -webkit-transform: perspective(500px) rotateX(-180.1deg) rotateY(0deg); 
    transform: perspective(500px) rotateX(-180.1deg) rotateY(0deg);
  } 100% { 
	  -webkit-transform: perspective(500px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(500px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
#content.hidden {
	display: none;
}

/*------------------------------------*
    ヘッダー
*------------------------------------*/
header{
	width: 100%;
	height: 120px;
    position: fixed;
	top: 0;
	left: 0;
    z-index: 2000;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
header .header-inner{
	height: 120px;
	-webkit-transition: height 0.4s ease-in-out;
	-moz-transition:height 0.4s ease-in-out;
	transition: height 0.4s ease-in-out;
}
header .h-logo{
	width: 100px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	background-color: #fff;
}
header .h-logo a{
    display: block;
}

/*  ナビゲーション  */
nav#gnav{
	width: 100%;
	width: calc(100% - 100px);
    position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
nav#gnav ul{
	position: relative;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
    justify-content: space-between;
}
nav#gnav li{
	font-size: 16px;
	font-weight: bold;
	webkit-flex-grow:1;
    -ms-flex-positive:1;
    flex-grow:1;
	text-align: center;
}
nav#gnav li + li{
	border-left: 1px solid #fff;
}
nav#gnav li a{
    color: #fff;
}
/**
nav#gnav li.current a{
	border-bottom: 1px solid white;
}
**/


/*  スマホナビゲーション  */
.sp-menubt{
	width: 46px;
    height: 46px;
    opacity: 1;
    position: absolute;
    z-index: 1000;
    cursor: pointer;
	right: 0;
	-webkit-transition: top 0.4s ease-in-out;
	-moz-transition: top 0.4s ease-in-out;
	transition: top 0.4s ease-in-out;
}
.sp-menubt span{
	display: block;
    background: #E5002D;
    width: 36px;
    height: 3px;
    position: absolute;
	left: 4px;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.sp-menubt span:first-child {
	top: 12px;
}
.sp-menubt span:nth-child(2) {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
}
.sp-menubt span:last-child {
	bottom: 12px;
}

/*  スマホナビゲーション（トップページのみ）  */
body.home header .sp-menubt{
	border: 1px solid #fff;
}
body.home header .sp-menubt span{
	background: white;
}
body.home header.move .sp-menubt{
	border: 1px solid transparent;
}
body.home header.move .sp-menubt span{
	background: #E5002D;
}
body.home header .sp-menubt.active{
	border: 1px solid transparent;
}
/*  スマホナビゲーション開閉  */
.sp-menubt.active span{
	background: white !important;
}
.sp-menubt.active span:first-child {
	-webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
	top: 50%;
}
.sp-menubt.active span:nth-child(2) {
	opacity: 0;
}
.sp-menubt.active span:last-child {
	-webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    transform: translateY(50%) rotate(-45deg);
	bottom: 50%;
}
	
/*  スマホメニュー  */
nav.sp-nav{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
	background-color: #E5002D;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);	
}
nav.sp-nav .sp-cont{
	    padding: 80px 0;		
}
nav.sp-nav .sp-logo{
	width: 120px;
	margin: 0 auto;
}
nav.sp-nav .sp-tel{
	font-size: 30px;
	font-weight: bold;
	margin: 20px 0;
	color: #fff;
}
nav.sp-nav .sp-tel a{
	color: #fff;
}
nav.sp-nav .sp-tel:before{
	content: "";
	display: inline-block;
	width: 35px;
	height: 35px;
	background: url(./image/common/tel_icon_wh.svg) no-repeat;
	margin-right: 5px;
}
nav.sp-nav .sp-menu li{
	float: left;
	width: 50%;
	border: 1px solid white;
	margin-top: -1px;
	font-family:'Barlow', sans-serif;
}
nav.sp-nav .sp-menu li:nth-child(odd){
    border-right: none;
}
nav.sp-nav .sp-menu li a{
	display: block;
	position: relative;
	padding: 0 5px;
	color: #fff;
	font-size: 14px;
    font-weight: 600;
    line-height: 80px;
}
nav.sp-nav .sp-menu li a:after{
	content: ">";
    position: absolute;
    right: 5px;
    top: 50%;
    font-size: 18px;
	margin-top: -2px;
	font-weight: normal;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
nav.sp-nav .sp-menu li span{
	font-size: 10px;
	margin-left: 3px;
	font-weight: normal;
}
nav.sp-nav .sp-contact .more{
	width: 50%;
}
nav.sp-nav .sp-contact .more.more-red{
	border: 2px solid #fff;
}
nav.sp-nav .sp-contact .more span{
	font-size: 14px;
}
nav.sp-nav .sp-contact .more.sq-more p:before{
	width: 20px;
	height: 20px;
	left: 10px;
}
nav.sp-nav .sp-contact .more.sq-more p:after{
	width: 10px;
	height: 20px;
	right: 10px;
}
nav.sp-nav .sp-sns{
	width: 250px;
	margin: 30px auto;
}
nav.sp-nav .sp-sns li{
    width: 50px;
	height: 50px;
	margin: 0 2%;
}
nav.sp-nav p.sp-nav-copy{
	color: #fff;
	margin-top: 50px;
	text-align: center;
	font-size: 12px;
}
nav.sp-nav p.sp-nav-copy a{
	display: inline-block;
	color: #fff;
}
/*------------------------------------*
    ヘッダースクロール後
*------------------------------------*/
header.move{
	height: 80px;
	background-color: rgba(255, 255, 255, 0.9);
}
header.move .header-inner{
	height: 80px;
}
header.move .h-logo{
	width: 60px;
    margin-right: 90px;
	background-color: transparent;
}
header.move nav#gnav li a{
    color: #000;
}
/**
header.move nav#gnav li.current a{
	border-bottom: 1px solid #262626;
}
**/
header.move nav#gnav li + li{
	border-left: 1px solid #262626;
}
header.move .sp-menubt{
	top: 17px;
}

/*------------------------------------*
    共通設定
*------------------------------------*/

.more{
	width: 350px;
	text-align: center;
	position: relative;
	overflow:hidden;
	border-radius: 20px;
	margin: 0 auto;
}
.more a{
	display: block;
    position: relative;
	padding: 10px 0;
	width: 100%;
    height: 100%;
	opacity:1;
}
.more a:before{
	content: '';
    width: 400px;
    height: 400px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -200px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: 50%;
}
.more a:hover:before{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
.more.more-red{
	background-color: #E5002D;
}
.more.more-bk{
	background-color: #262626;
}
.more.more-red a:before{
	background-color: #262626;
}
.more.more-bk a:before{
	background-color: #E5002D;
}
.more p {
    color: #fff;
    font-weight: bold;
	position: relative;
}
.more-btn{
	width: 180px;
}
.more-btn a{
	text-align: center;
	border: 1px solid #fff;
	font-size: 16px;
    padding: 3px 1%;
	color: #fff;
}
.more-btn a:after{
	content: '>';
    display: inline-block;
    font-size: 18px;
    margin-left: 16px;
}
.more-btn a:hover{
	color: #000;
	background-color: #fff;
	opacity: 1;
}


.more-btn.more-bk a{
	border: 1px solid #262626;
	background-color: #262626;
}
.more-btn.more-bk a:hover{
	border: 1px solid #fff;
	color: #000;
	background-color: #fff;
}

.more.sq-more {
    border-radius: 0;
	height: 70px;
}
.more.sq-more a{
	padding: 0;
}
.more.sq-more p{
	height: 100%;
}
.more.sq-more p:before{
	content: "";
	display: block;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 50%;
	left: 14px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.more.sq-more.more-cont p:before{
	background: url(./image/common/contact_icon.svg) no-repeat;
}
.more.sq-more.more-visit p:before{
	background: url(./image/common/visit_icon.svg) no-repeat;
}
.more.sq-more p:after{
	content: "";
	display: block;
	background: url(./image/common/arrow_wh.svg) no-repeat;
	width: 20px;
	height: 40px;
	 position: absolute;
	top: 50%;
	right: 14px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.more.sq-more span{
	display: block;
	font-size: 16px;
}
.tx-c{
	text-align: center;
}
.indent{
	text-indent: -16px;
	padding-left: 16px;
}
.br-sp{
	display: none;
}
.fixed{
	width: 100%;
	position: fixed;
	top: 0;
    left: 0;
}

.mob-show{
	display: none;
}
.sp-show{
	display: none;
}


/***********************************************
      トップ共通
************************************************/
article.bg-wh{
	background-color: #fff;
}
.top-ttl{
	position: relative;
	text-align: center;
}
.top-ttl.col-wh{
	color: #fff;
}
.top-ttl h2{
    font-size: 45px;
}
.top-ttl h2.f-ltr:first-letter{
	color: #E5002D;
}
.top-ttl p{
	font-size: 18px;
	margin-top: 10px;
}

/***********************************************
      トップメインビジュアル
************************************************/
#main-visual {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}
#youtube-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #262626;
    height: calc(100% + 200px);
    top: -200px;
}
.youtube-load {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
    margin: 100px auto;
}
.mb_YTPBar.visible, .mb_YTPBar:hover{
	opacity: 0.5s !important;
} 
.mb_YTPBar:hover{
	opacity: 1 !important;
}
#main-visual .main-text{
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: 20%;
	opacity: 0;
}
#main-visual h1{
	font-size: 30px;
	color: #fff;
	text-shadow: 2px 2px 5px #262626;
}
#main-visual .sp-main-visual {
    	height: 100%;
    	background-image: url(./image/top/main-bg.png);
    	z-index: -1;
    }
    #main-visual .sp-main-text .sp-main-logo {
		position: absolute;
    	width: 130px;
    	height: 130px;
		top: 50%;
    	left: 50%;
    	-webkit-transform: translate(-50%, -50%);
    	transform: translate(-50%, -50%);
    	
    }
    #main-visual .sp-main-text .tx-inner {
    	position: absolute;
    	width: 100%;
		z-index: 10;
    }
#main-visual .sp-main-text .tx-inner.tx-top{
	top: 20%;
}
#main-visual .sp-main-text .tx-inner.tx-bottom{
	bottom: 20%;
}
    #main-visual .sp-main-text .tx-inner h1 {
    	font-size: 22px;
		line-height: 1.8;
    	color: #fff;
    	text-align: center;
    }
	#main-visual .sp-main-text .tx-inner .tx-catch {
    	font-size: 22px;
		line-height: 1.8;
    	color: #fff;
    	text-align: center;
		font-weight: bold;
		text-shadow: 2px 2px 5px #262626;
    }

@-webkit-keyframes slideUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
#main-visual .main-text.is-show{
    -webkit-animation: slideUp 1.5s 15s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	animation: slideUp 1.5s 15s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
/**
#main-visual .sp-main-text .tx-inner.is-show{
    -webkit-animation: slideUp 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
	animation: slideUp 1.5s 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
**/


p.scroll {
	position: absolute;
	bottom: 30px;
	width: 40px;
	margin: 0 auto;
	left: 50%;
    z-index: 10;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

/***********************************************
      トップお知らせ表示
************************************************/
section#scroll-pos{
	padding: 50px 0;
}
.front-catch{
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}

.villax-bnr{
	width: 47%;
}
.villax-bnr a{
	border: 1px solid #262626;
}
.villax-bnr figcaption{
	font-size: 18px;
	text-align: center;
	line-height: 1.6;
	font-weight: bold;
	margin-top: 10px;
}
.villax-bnr figcaption strong{
	display: block;
	font-size: 26px;
}
	
.infobox{
	margin-top: 40px;
	padding: 30px 0;
	text-align: center;
	border: 1px solid #262626;
}
.infobox h2{
	font-size: 24px;
	margin-bottom: 20px;
	text-align: left;
    display: inline-block;
}
.infobox .more p:after{
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
    display: inline-block;
    font-size: 24px;
    vertical-align: middle;
    margin-left: 20px;
}





/***********************************************
      トップイベント
************************************************/
.top-event-list{
	margin: 0 -3px;
}
.top-event-list .box {
    width: 33.333333%;
	width: calc(100%/3);
	padding: 0 3px;
	position: relative;
}
.top-event-list .box a.box-inner{
	height: 100%;
	background-color: #F5F5F5;
}
.top-event-list .top-ttl{
	height: 100%;
	background-color: #E5002D;
	background-image: url(./image/top/event_bk.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50%;
}
.top-event-list .top-ttl .more-btn{
	margin-top: 20px;
}
.top-event-list .list-text{
	padding: 30px 20px;
}
.top-event-list .list-text h3 {
    font-size: 20px;
}
.top-event-list .list-text .event-ex{
	margin-top: 20px;
}
.event-image.list-image{
	position: relative;
}
.event-image.list-image .sp-info{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	font-size: 14px;
	background-color: rgba(0, 0, 0, 0.5);
}
.event-image.list-image .sp-info .inner{
	height: 100%;
}
/***********************************************
      youtube
************************************************/
/** 上２つ下３つ **/
.top-youtube{
    margin: 50px auto;
}
.top-youtube .movies{
	width: 98%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.top-youtube .tp-youtube.movie-tp {
	position: relative;
	width: 48%;
	padding-top: 27%;
	margin-bottom: 4%;
}
.top-youtube .tp-youtube.movie-tp:first-of-type {
	margin-right: 4%;
}
.top-youtube .tp-youtube.movie-bt {
	position: relative;
	width: calc(92% / 3);
	padding-top: 17%;
	margin-right: 4%;
}
.top-youtube .tp-youtube.movie-bt:last-of-type {
	margin-right: 0;
}
.tp-youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/** 上２つ下２つ **/
/**
.top-youtube{
    margin: 50px auto;
}
.top-youtube .movies{
	width: 98%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.top-youtube .tp-youtube {
	position: relative;
	width: 48%;
	padding-top: 27%;
	margin-right: 4%;
}
.top-youtube .tp-youtube.movie-tp{
	margin-bottom: 4%;
}
.top-youtube .tp-youtube:nth-child(even){
	margin-right: 0;
}
.tp-youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
**/
/***********************************************
      トップ制作事例
************************************************/
.top-works .works-ttl{
	width: 100%;
	text-align: center;
	background-color: #262626;
	padding: 20px 0;
}
.top-works .works-ttl .more-btn{
	position: absolute;
	bottom: 0;
	right: 0;
}
.top-works-list{
	margin: 0 -3px;
}
.top-works-list .box{
	width: 25%;
	padding: 0 3px;
}
.top-works-list .box a.box-inner{
	height: 100%;
}
.top-works-list .box:nth-child(3n+1) a.box-inner{
	background-color: #F5F5F5;
}
.top-works-list .box:nth-child(3n+2) a.box-inner{
	background-color: #F9F5EE;
}
.top-works-list .box:nth-child(3n+3) a.box-inner{
	background-color: #EDF5F7;
}
.top-works-list .box .list-text{
	padding: 30px 20px;
}
.top-works-list .box .list-text h3{
	font-size: 20px;
	margin-bottom: 30px; 
}

/***********************************************
      トップ売物件情報
************************************************/
.top-real{
	padding-top: 110px;
}
.top-real .top-ttl{
	margin-bottom: 40px;
}
.top-real .top-ttl .more-btn{
	position: absolute;
	right: 0;
	bottom: 0;
}
.top-real .top-ttl .more-btn a,
.top-real .more-btn.mob-show a{
    text-align: center;
    border: 1px solid #000;
    font-size: 16px;
    padding: 3px 1%;
    color: #000;
	background: #fff;
}
.top-real .top-ttl .more-btn a:hover,
.top-real .more-btn.mob-show a:hover{
	color: #fff;
	background: #000;
	opacity: 1;
}
.top-real .real-list{
	margin-bottom: 0;
}
.top-real .real-list .box{
	margin-bottom: 0;
}
.top-real .real-list .list-image{
	border:1px solid #262626;
}
.top-real .real-list .list-info{
	font-size: 16px;
    margin: 10px 0 50px 0;
}
.top-real .real-list .more-btn{
	right: 0;
	left: 50%;
	-webkit-transform:translateX(-50%);
	transform: translateX(-50%);
}
.top-real .more-btn.mob-show{
	width: 150px !important;
	position: relative;
	margin: 30px auto 0 auto;
}
.top-real .more-btn.mob-show a{
	padding: 5px 1%;
}
/***********************************************
      トップブログ
************************************************/
section#blog{
	background-image: url(./image/top/blog_bk.png);
}
.top-blog .blog-ttl {
	width: 280px;
    text-align: left;
}
.top-blog .blog-ttl .more-btn{
	margin-top: 30px;
}
.post-table {
	width: 70%;
	width: -webkit-calc(100% - 280px);
	width: calc(100% - 280px);
	overflow-y: scroll;
    height: 276px;
}
.post-table .post-list {
	padding: 18px 20px;
    border-bottom: 1px dashed #fff;
}
.post-table p.post-time{
	width: 90px;
	display: table;
	color: #fff;
	margin-right: 20px;
}
.post-table p.post-ttl a{
	color: #fff;
	margin-left: 20px;
}
.post-table p.post-cat a {
	width: 100px;
    text-align: center;
    padding: 4px 0;
    background-color: #262626;
    color: #fff;
}
.post-table p.post-cat a:nth-child(2){
	margin-top: 5px;
}

/***********************************************
      トップインスタ
************************************************/

.insta .top-ttl img{
	width: 200px;
}
.insta .insta-table{
	margin: 50px 0;
}
.insta .follow{
	width: 98%;
	max-width: 600px;
	margin: 0 auto;
}
.insta .follow img{
	width: 250px;
}
#sb_instagram .sbi_link{
	background: transparent;
}
#sb_instagram .sbi_item:not(.sbi_transition) .sbi_photo{
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#sb_instagram:not(.sbi_moderation_mode) .sbi_photo_wrap:hover .sbi_photo {
    -webkit-transform:scale(1.1); /* Safari and Chrome */
    -moz-transform:scale(1.1); /* Firefox */
    -ms-transform:scale(1.1); /* IE 9 */
    -o-transform:scale(1.1); /* Opera */
    transform:scale(1.1);
}

/***********************************************
      店舗情報
************************************************/
section#company{
	background-image: url(./image/top/company_bk.png);
}
.br-list{
	margin-top: 40px;
}
.br-list li{
	width: 48%;
	text-align: center;
	color: #fff;
	font-size: 20px;
}

.br-list li .box{
	background-color: #262626;
	margin-bottom: 10px;
}

/***********************************************
      ミドルナビ
************************************************/
/**
.bg-line{
	background: -webkit-repeating-linear-gradient(-45deg,#ecef65 0,#ecef65 3px,#fff 3px,#fff 6px);
    background: -o-repeating-linear-gradient(-45deg,#ecef65 0,#ecef65 3px,#fff 3px,#fff 6px);
    background: repeating-linear-gradient(-45deg,#ecef65 0,#ecef65 3px,#fff 3px,#fff 6px);
}
**/
section#mid-nav{
	background-color: #F5F5F5;
	padding: 70px 0;
}
.mid-nav-list .mid-menu{
	width: 33.333333%;
	width: calc(100%/3);
	text-align: center;
}
.mid-nav-list .mid-menu a{
	border-left: 1px solid #262626;
}
.mid-nav-list .mid-menu:last-child a{
	border-right: 1px solid #262626;
}
.mid-nav-list .mid-menu img.icon{
	width: 50px;
    height: 50px;
	margin-bottom: 10px;
}
.mid-nav-list .mid-menu h3{
	font-size: 30px;
}
/***********************************************
      ミドルナビ（サブページ）
************************************************/
.mid-nav-list.sub-mid-nav .mid-menu{
	width: 25%;
	padding: 5px 0;
}
.mid-nav-list.sub-mid-nav .mid-menu img.arrow{
	width: 30px;
    height: 30px;
	margin-top: 20px;
}


/***********************************************
      ページ共通お問い合わせ
************************************************/
.ccwp .col{
	width: 50%;
	position: relative;
}
.ccwp .col-l{
	background-image: url(./image/common/contact_bk.png);
}
.ccwp .col-l .top-ttl{
	height: 100%;
}
.ccwp .col-l .top-ttl img.icon{
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
}
.ccwp .col-r{
	padding: 3%;
}
.ccwp .col-r .inner{
	width: 400px;
}
.ccwp .col-r .top-ttl{
	display: none;
}
.ccwp .col-r .inner h4{
	font-size: 20px;
}
.ccwp .col-r p.cont-tel{
	font-size: 34px;
	font-weight: bold;
	padding-left: 14px;
	margin: 20px 0;
}
.ccwp .col-r p.cont-tel:before{
	content: "";
	display: inline-block;
	width: 35px;
	height: 35px;
	background: url(./image/common/tel_icon.svg) no-repeat;
	margin-right: 15px;
    vertical-align: middle;
}
.ccwp .col-r .more {
    margin: 20px 0;
}
.ccwp .col-r .more a{
	font-size: 20px;
}


/***********************************************
      サブページ共通設定
************************************************/
body:not(.home) header{
	background-color: #fff;
}
body:not(.home) header.move{
	background-color: rgba(255, 255, 255, 0.9);
}
body:not(.home) header nav#gnav li a{
    color: #000;
}
body:not(.home) header nav#gnav li + li{
    border-left: 1px solid #262626;
}
#main-content{
	position: relative;
	background-color: #fff;
}
.sub-visual{
    width: 100%;
    height: 360px;
}
.sub-visual > div{
	position: fixed !important;
}
.sub-visual .sub-ttl{
	width: 100%;
	height: 360px;
	position: relative !important;
}

.sub-visual .sub-ttl .top-ttl{
	position: fixed;
	top: 180px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	max-width: 480px;
	height: 120px;
	background-color: rgba(0, 0, 0, 0.8);
}
#content.sub-content .com-contact{
	border-top: 1px solid #262626; 
}




/***********************************************
      モーダル設定
************************************************/
.modal {
	position: absolute;
	width: 100%;
	height: 150%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 10;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
}
.modal-list {
	position: absolute;
	width: 80%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 50;
}
.modal-list li {
	width:32%;
	background: #000;
}
.modal .modal-btn {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	right: 10px;
	z-index: 50;
	cursor: pointer;
}
.modal .modal-btn span {
	display: block;
	position: absolute;
	top: 50%;
	background: white;
	width: 30px;
	height: 2px;
}
.modal .modal-btn span:first-of-type {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.modal .modal-btn span:last-of-type {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.event-bnr{
	width: 98%;
	max-width: 600px;
	margin: 0 auto 110px auto;
	opacity: 1;
	cursor: pointer;
	-webkit-transition: all .2s ease-out;
	transition:all .2s ease-out;
}
.event-bnr:hover{
	opacity: 0.7;
}

/***********************************************
      パンくずリスト
************************************************/
#bread {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #E6E6E6;
}
.breadcrumbs {
	white-space: nowrap;
	color: #666;
	font-size: 14px;
	padding: 12px 0;
}
.breadcrumbs span {
	display: inline-block;
}
.breadcrumbs span a {
	display: inline-block;
	vertical-align: middle;
	color: #666;
}
.breadcrumbs span a.home {
	padding-right: 5px;
}
.breadcrumbs span a.post {
	padding: 0 5px;
}
.breadcrumbs span:nth-child(3) span{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 35%;
	width: calc(100% - 295px);
	padding-left: 5px;
	vertical-align: middle;
}

/***********************************************
      OGHOMEの家づくり
************************************************/
section.concept{
	background-image: url(./image/concept/concept_bk2.png);
	background-size: 100%;
	padding: 110px 0 0;
}
.concept-price{
	text-align: center;
}
.concept-price h3{
	font-size: 40px;
	margin-bottom: 60px;
}
.concept-price .bg-wh{
	background-color: rgba(255, 255, 255, 0.5);
	padding: 60px 10px;
	box-shadow: 0px 0px 5px 3px #999999;
}
.concept-price .bg-wh p{
	display: inline-block;
	text-align: left;
	line-height: 2.5;
	font-size: 18px;
}
.concept-price .bg-wh p span{
	display: block;
	margin-bottom: 40px;
}

.concept-reason h3 {
	position: relative;
	font-size: 34px;
	color: #fff;
	text-align: center;
	padding: 14px 0;
	background-color: #E5002D;
	margin-bottom: 60px;
}

.concept-reason h3:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border: 24px solid transparent;
	border-top: 24px solid #E5002D;
	width: 0;
	height: 0;
}

.circle-box{
	margin-bottom: 50px;
}
.circle-box .circle{
	width: 30%;
	margin-bottom: 5%;
	position: relative;
    height: 30%;
    padding: 15%;
    border-radius: 50%;
    border: 2px solid #262626;
}
.circle-box .circle .circle-inner{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
   -webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.circle-box .circle .circle-inner img{
	width: 40%;
    margin-bottom: 10%;
}
.circle-box .circle .circle-inner p{
	font-size: 20px;
	line-height: 1.8;
}
.concept-reason p.tx-c{
	font-size: 18px;
	line-height: 2;
}


/***********************************************
      価格
************************************************/

.price .box:not(:last-child){
	margin-bottom: 60px;
}
.price .image{
	width: 60%;
	height: 360px;
}
.price .text{
	width: 40%;
	height: 360px;
    padding: 0 30px;
	border: 20px solid #262626;
}
.price .box:nth-child(1) .image{
	background-image: url(./image/plan/plan_01.png);
}
.price .box:nth-child(2) .image{
	background-image: url(./image/plan/plan_02.png);
}
.price .box:nth-child(3) .image{
	background-image: url(./image/plan/plan_03.png);
}

.price .box .plan{
	width: 100%;
	min-width: 250px;
	text-align: center;
}
.price .box .plan h3{
	font-size: 30px;
	padding: 10px 0;
	background-color: #E5002D;
	color: #fff;
	margin-bottom: 20px;
}
.price .box .plan .plan-type{
	width: 100%;
	font-size: 18px;
}
.price .box .plan p.plan-outline{
    width: 78%;
    padding: 5px 0;
}
.price .box .plan p.plan-tsubo{
	width: 22%;
	padding: 5px;
	background-color: #262626;
	color: #fff;
}
.price .box .plan p.plan-price{
	font-size: 40px;
    margin: 20px 0;
    font-weight: bold;
    word-break: keep-all;
    line-height: 1;
}
.price .box .plan p.plan-price small{
	font-size: 18px;
}
.price .box .plan .more-btn.more-bk{
	float: right;
}
.price .box .plan .more-btn.more-bk a{
	padding: 5px 1%;
}
.price .box .plan .more-btn.more-bk a:hover{
	border: 1px solid #262626;
}

/***********************************************
      プラン
************************************************/
.plan-single h1{
	font-size: 20px;
	color: white;
	text-align: center;
	padding: 25px 1%;
	background-color: #E5002D;
}
.plan-top{
	background-color: #F5F5F5;
	padding: 32px 0;
}
.plan-top h3{
	font-size: 38px;
}
.plan-top h3:first-of-type small{
	margin-left: 10px;
}
.plan-top small{
	font-size: 20px;
	font-weight: normal;
}
.plan-image .image{
	width: 48%;
}
.plan-image .image figcaption{
	text-align: center;
	font-size: 24px;
}
.plan-temp h4{
	font-size: 30px;
    text-align: center;
    width: 400px;
    margin: 60px auto;
    padding: 5px 0;
    border: 1px solid #262626;
}
.plan-details{
	margin-bottom: 60px;
}
.details-table table{
	width: 46%;
}
.details-table table tr:nth-child(odd){
	background-color: #F5F5F5;
}
.details-table table th{
	font-weight: normal;
	text-align: left;
	padding: 15px 0 15px 15px;
}
.details-table table td{
	text-align: right;
	padding: 15px 15px 15px 0;
	white-space: nowrap;
}
.plan-single .paging{
	margin: 60px auto 110px auto;
}


/***********************************************
      会社概要
************************************************/
.company-page h3{
	font-size: 34px;
	text-align: center;
	margin-bottom: 60px;
}
.greet-tx{
	line-height: 2.5;
}
.greet-tx h4{
	font-size: 24px;
	margin: 10px 0;
}
table.out-table{
	border-collapse: separate;
	border-spacing: 0px 5px;
	margin-bottom: 110px;
}	

.out-table th {
    background: #F5F5F5;
    width: 25%;
    padding: 30px 0 30px 30px;
    text-align: left;
	font-weight: normal;
	vertical-align: top;
}	
.out-table td{
	width: 74%;
	padding: 30px 0 30px 3%;
}
.out-table tr.dx th {
    background: #fff;
    width: 25%;
    padding: 0;
	vertical-align: middle;
}	
.gmap{
	margin-bottom: 110px;
}


/***********************************************
      スタッフ紹介
************************************************/
.staff .box:not(:last-child){
	margin-bottom: 60px;
}
.staff .image{
	width: 60%;
	height: 360px;
}
.staff .text{
	width: 40%;
	padding: 0 10px;
	height: 360px;
}
.staff .box:nth-child(1) .image{
	background-image: url(./image/staff/staff_01.png);
}
.staff .box:nth-child(2) .image{
	background-image: url(./image/staff/staff_02.png);
}
.staff .box:nth-child(3) .image{
	background-image: url(./image/staff/staff_03.png);
}
.staff .box:nth-child(1) .text{
	background-color: #F5F5F5;
}
.staff .box:nth-child(2) .text{
	background-color: #F9F5EE;
}
.staff .box:nth-child(3) .text{
	background-color: #EDF5F7;
}
.staff .staff-intro{
	text-align: center;
}
.staff .staff-intro p.staff-post,
.staff .staff-intro p.name-eng{
	color:#666; 
}
.staff .staff-intro h3{
	font-size: 30px;
	margin: 10px 0;
}
.staff .staff-intro p.staff-greet{
	margin-top: 40px;
	text-align: left;
}

/*------------------------------------*
  　プライバシーポリシー
*------------------------------------*/
.privacy p.privacy-top{
	margin-bottom: 50px;
}
.privacy div:not(:last-child){
	margin-bottom: 20px;
}
.privacy h3{
	font-size: 18px;
    border-bottom: 1px solid #E5002D;
    padding: 0 0 5px 10px;
    margin-bottom: 10px;
}
.privacy div p {
    padding-left: 10px;
}

/*------------------------------------*
  　情報セキュリティ基本方針
*------------------------------------*/
.security-sign{
	text-align: right;
}
.security-sign p{
	display: inline-block;
	text-align: left;
}

/***********************************************
      お問い合わせ
************************************************/
.table-tab{
	margin-bottom: 10%;
}
.table-tab li{
	margin: 0 2%;
}
.table-tab li a{
	display: block;
	border: 1px solid #ccc;
	
}

/* フォーム設定 */
.form-table tr{
	border-top: 1px solid #ccc;
    vertical-align: baseline;
}
.form-table tr.message th{
    vertical-align: top;
}
.form-table th{
	width:40%;
	padding: 20px 0 20px 10px;
    text-align: left;
}
.form-table td{
	padding: 20px 20px 20px 0;
	display: block;
	text-align: left;
}
span.haveto{
	color: #E5002D;
    margin-left: 10px;
    vertical-align: top;
    font-size: 14px;
}
.form-table input[type="text"],
.form-table input[type="tel"],
.form-table input[type="email"],
.form-table select{
	width: 100%;
	height: 40px;
	margin: 3px 0px;
}
.form-table select{
    padding: 0 15px;
}
input,textarea,button{
    vertical-align: middle;
    outline: none;
    -webkit-appearance: none;
    border: 0;
    outline: 0;
}
.form-table textarea{
	width: 100%;
	vertical-align: bottom;
	font: 400 13.3333px Arial;
}
.form-table input,.form-table textarea{
	padding: 10px 15px;
    color: #000;
    box-shadow: none;
	-webkit-appearance: none;
	background-color: #F5F5F5;
}
.form-table span.wpcf7-list-item{
	display: block;
	margin: 0;
}
.send{
	color: #fff;
    cursor: pointer;
    font-size: 20px;
	cursor: pointer;
}
.send:after{
	content: '';
    width: 400px;
    height: 400px;
    background-color: #262626;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    margin-top: -200px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-radius: 50%;
}
.send:hover:after{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
#formbtn{
    font-size: 20px;
    color: #fff;
    background-color: transparent;
    position: relative;
    z-index: 10;
    cursor: pointer;
    width: 100%;
    padding: 12px 0;
}
.form .more{
	margin: 20px auto;
	border-radius: 0;
}
div.wpcf7 .ajax-loader,
.wpcf7-spinner{
	display: none;
}


/* チェックボックス設定 */
.check input[type="checkbox"],.accept input[type="checkbox"]{ 
  display: none;
}
.check label,.accept label{
  cursor: pointer;	
}	
.check .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
}	
.check .wpcf7-list-item-label:before{
    width: 16px;
    height: 16px;
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background: white;
    border: 1px solid #8e8e8e;
    border-radius: 50%;
    
}
.check .wpcf7-list-item-label:after{
    width: 16px;
    height: 16px;
    border: 5px solid #00adff;
    content: '';
    position: absolute;
    left: 0px;
    top: 3px;
    opacity: 0;
    
    border-radius: 50%;
    background-color: #fff;
}	
.check input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;			
}
.check input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
    border: none;		
}

/* 送信確認ボタン */	
.accept .wpcf7-list-item-label {
  position: relative;
	padding-left: 30px;
}	
.accept .wpcf7-list-item-label:before{
  width: 20px;
    height: 20px;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    border: 1px solid #8e8e8e;
	
}
.accept .wpcf7-list-item-label:after{
    width: 10px;
    height: 5px;
    border: 2px solid #fff;
    content: '';
    position: absolute;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 5px;
    top: 5px;
    border-top: none;
    border-right: none;
	opacity: 0; 
}	
.accept{
	text-align: center;
	margin-top: 40px;
}
.accept input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;			
}
.accept input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
    background-color: #00adff;	
	border: none;
}


/* エラー設定 */
span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ok{
	font-size: 14px;
    color: #E5002D;
    border: 1px solid #E5002D;
    padding: 5px;
    display: inline-block;
    margin-top: 10px;
    text-align: center;
}
.accept span.wpcf7-not-valid-tip,
div.wpcf7-validation-errors{
    display: block;
}
div.wpcf7-mail-sent-ok{
    border: 1px solid #00adff;
    color: #00adff;
    display: block;
}
.wpcf7 form .wpcf7-response-output {
    margin: 10px 0;
    padding: 5px;
    border: 1px solid #E5002D;
    text-align: center;
    color: #E5002D;
	border-color: #E5002D !important;
    font-size: 14px;
}
/* LINE */
.line-add{
	text-align: center;
	padding: 20px 0;
}
.line-add .add{
	width: 48%;
	font-size: 18px;
	float: left;
}
.line-add .add:first-child{
	margin-right: 4%;
}
.line-add .add p{
	font-size: 18px;
}
.line-add .add .add-id{
	border: 1px solid #ccc;
     
	padding: 3px;
}
.line-add .add a.add-app{
	
	background-color:#f5f500;
	border: 1px solid #f5f500;
	padding: 3px;
	display: block;
}
.line-add .add a.add-app span{
	width: 24px;
    height: 24px;
    display: inline-block;
    background-color: #262626;
    vertical-align: middle;
    border-radius: 50%;
    margin: 0px 0 4px 10px;
}
.line-add .add a.add-app i{
	color: #fff;
    display: block;
    margin: 12px 0 0 3px;
    font-size: 24px;
    line-height: 0;
}
.line-cont h3{
	text-align: center;
    font-size: 28px;
    font-weight: normal;
    margin: 40px 0;
}
.line-cont .tx{
	line-height: 30px;
	text-align: justify;
}
.line-cont .qr{
	width: 250px;
    margin: 60px auto;
}
.line-cont .more{
	margin: 60px auto;
}
.line-cont .more a span {
    width: 26px;
    height: 26px;
    display: inline-block;
    background-color: #fff;
    vertical-align: middle;
    border-radius: 50%;
    margin: 0px 0 4px 5px;
}
.line-cont .more a i {
    color: #E5002D;
    display: block;
    font-size: 32px;
    line-height: 26px;
    margin-left: 4px;
}
.line-cont .more a:hover i{
	color: #262626;
}
.line-cont .more a p{
	font-size: 22px;
}
.line-cont .more a p small {
    font-size: 16px;
}

/***********************************************
      フリースペース
************************************************/
section.frspace{
	background-image: url(./image/freespace/frspace_bk.png);
}
.frspace-about{
	text-align: center;
}
.frspace-about .bg-wh{
	background-color: rgba(255, 255, 255, 0.5);
	padding: 60px 10px;
	box-shadow: 0px 0px 5px 3px #999999;
}
.frspace-about .bg-wh img{
	width: 400px;
	margin: 0 auto 20px auto;
}
.frspace-about p{
	display: inline-block;
	text-align: left;
	font-size: 16px;
}
.frspace-about .bg-wh p{
	line-height: 2.5;
	font-size: 18px;
}
.frspace-image{
	margin: 60px 0;
}
h4.sq-ttl{
	font-size: 30px;
    text-align: center;
    width: 400px;
    margin:  0 auto 60px auto;
    padding: 5px 0;
    border: 1px solid #262626;
	background-color: #fff;
}
.frspace-table caption{
	font-size: 24px;
	margin-bottom: 10px;
}
.frspace-table table.right tr:last-child{
	background-color: #fff;
}
.frspace-table table.right tr:last-child th{
	padding: 15px 0 0 15px;
}
section.frspace-reserv{
	background-color: #F5F5F5;
}
.frspace-calendar{
	margin-top: 60px;
}
.frspace-form h5{
	font-size: 24px;
	text-align: center;
	margin: 20px 0;
}
.frspace-form .terms-area{
	font-size: 14px;
	height: 300px;
    overflow: auto;
    border: 1px solid #262626;
    padding: 5px;
	line-height: 1.8;
}
.frspace-form .terms-area h6{
	font-size: 15px;
}
.frspace-form .terms-area p {
    margin-bottom: 15px;
}

/***********************************************
      来場予約	
************************************************/
.form-visit .more{
	margin: 20px auto 0 auto;
}

/***********************************************
      投稿共通設定
************************************************/

/***********************************************
      イベント一覧
************************************************/
section.archive-event{
	margin: 66px 0 110px 0;
}
.event-list{
	margin-bottom: -66px;
}
.event-list .box{
	width: 32%;
	position: relative;
	margin-right: 2%;
	margin-bottom: 66px;
}

.event-list .box:nth-child(3n){
	margin-right: 0;
}
.event-list .box a.box-inner{
	height: 100%;
}
.event-list .box:nth-child(3n+1) a.box-inner{
	background-color: #F5F5F5;
}
.event-list .box:nth-child(3n+2) a.box-inner{
	background-color: #F9F5EE;
}
.event-list .box:nth-child(3n+3) a.box-inner{
	background-color: #EDF5F7;
}
.event-list .box:nth-child(4) a.box-inner{
	background-color: #EDF5F7;
}
.event-list .box:nth-child(5) a.box-inner{
	background-color: #F5F5F5;
}
.event-list .box:nth-child(6) a.box-inner{
	background-color: #F9F5EE;
}
.event-list .box .list-text{
    padding: 30px 20px;
}
.event-list .box .list-text h3 {
    font-size: 20px;
}
.event-list .box .list-text .event-ex{
	margin: 20px 0 60px 0;
}
.event-list .box .list-text .more-btn{
	position: absolute;
	bottom: 30px;
	right: 20px;
	background-color: #262626;
}
.event-list .box .list-text .more-btn p{
	text-align: center;
    font-size: 16px;
    padding: 10px 1%;
    color: #fff;
    line-height: 1;
}
.event-list .box .list-text .more-btn p:after{
	content: '>';
    display: inline-block;
    font-size: 18px;
    margin-left: 16px;
}

/***********************************************
      イベント詳細
************************************************/
h1.single-title{
	font-size: 30px;
}
.event-single h1.single-title{
	margin-bottom: 110px;
	text-align: center;
}
.event-single iframe{
	width: 100%;
}


/***********************************************
      制作事例一覧
************************************************/
.works-list{
	margin: 0 -3px;
}
.works-list .box{
	width: 25%;
	position: relative;
	padding: 0 3px;
}
.works-list .box:not(:nth-child(-n+4)){
	margin-top: 6px;
}
.works-list .box a.box-inner{
	height: 100%;
}
.works-list .box:nth-child(3n+1) a.box-inner{
	background-color: #F5F5F5;
}
.works-list .box:nth-child(3n+2) a.box-inner{
	background-color: #F9F5EE;
}
.works-list .box:nth-child(3n+3) a.box-inner{
	background-color: #EDF5F7;
}
.works-list .box .list-text{
    padding: 30px 20px;
}
.works-list .box .list-text h3{
	font-size: 20px;
	margin-bottom: 30px; 
}


/*------------------------------------*
	   制作事例中面
*------------------------------------*/
.top-works-info{
	text-align: center;
}
.top-works-info h3{
	font-size: 28px;
	margin: 30px 0 60px 0;
}
.layout {
  width:100%;
  position: relative;
}
.layout.hide{
	max-height: 700px;
	overflow: hidden;
}
.works-slider{
	background-color: #262626;
}
.works-slider li.slick-slide{
	overflow: hidden;
	width: 1000px;
}
.works-slider li.slick-slide img{
	width: auto;
	height: 600px;
	margin: 0 auto;
}

/* 　　　 スライダー矢印設定  　　　*/
.works-slider .slide-arrow{
    width: 25px;
    height: 50px;
    position: absolute;
    top: 300px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	z-index: 10;
    cursor: pointer;
}
.works-slider .slide-arrow.next-arrow{
	right: 12px;
	background: url(./image/common/arrow_wh.svg) no-repeat;
}
.works-slider .slide-arrow.prev-arrow{
	left: 12px;
	background: url(./image/common/arrow_wh_left.svg) no-repeat;
}

/* 　　　 スライダーサムネイル設定  　　　*/
.thum-slider .slide{
  display:none;
}
.thum-slider .slick-initialized {
    display:block;
}
.thum-slider .slick-dots {
   display: -webkit-box;
	display : -ms-flexbox; /*IE10*/
	display : -webkit-flex; /*old webkit browser*/
	display : flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
    padding: 10px;
    background-color: #262626;
	position: relative;
	bottom: 0;
}
.thum-slider .slick-dots li {
    width: auto;
    height: 80px;
	margin:0;
	padding: 4px 2px;
}

.thum-slider .slick-dots li img {
    opacity: 0.6;
    width: auto;
    height: 100%;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity  0.3s ease-out; 
    -webkit-backface-visibility:hidden; 
    backface-visibility:hidden;
    cursor:pointer;
}
.thum-slider .slick-dots li img:hover{
    opacity: 0.4; 
    -webkit-backface-visibility:hidden; 
    backface-visibility:hidden;
} 
.thum-slider .slick-dots li.slick-active img{  
    -webkit-backface-visibility:hidden; 
    backface-visibility:hidden;
    opacity: 1;
}

/* 　　　 ローディング設定 　　　*/
.works-load .works-load-img{
	position: absolute;
	width: 50px;
	height: 50px;
	top: 300px;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	z-index: 100;
}
.works-outline{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.works-outline h4{
	font-size: 16px;
	font-weight: normal;
	margin: 30px 0 60px 0;
}
table.works-table tr{
	border-bottom: 1px solid #262626;
}
table.works-table th{
	width: 30%;
    text-align: left;
    padding: 20px 10px 20px 30px;
}
table.works-table td{
	width: 65%;
	padding: 20px 30px 20px 0 ;
}
.works-outline p.add-field{
	margin-top: 30px;
}
/*------------------------------------*
   ブログ一覧
*------------------------------------*/

.blog-left{
	width: 70%;
	float: left;
}
.blog-right{
	width: 28%;
	float: right;
}
ul.blog-list .list-image{
	width: 35%;
	margin-right: 5%;
}
ul.blog-list .list-text{
	width: 55%;
}
ul.blog-list li{
	padding: 20px 0;
	border-bottom: 1px dotted #ccc;
} 
ul.blog-list li:first-of-type{
	padding: 0 0 20px 0;
}
ul.blog-list .list-text p.blog-time{
	font-size:14px; 
	margin-right: 10px;
}
ul.blog-list .list-text p.blog-cat a{
	padding: 4px 10px;
    font-size: 14px;
    border: 1px solid #E5002D;
    color: #E5002D;
	text-align: center;
	display: inline-block;
	margin-right: 5px;
}
ul.blog-list .list-text h3{
	font-size: 18px;
	color: #666;
	margin: 10px 0 5px 0;
}
/*------------------------------------*
   ブログ中面
*------------------------------------*/
.blog-left h1.main-ttl,.blog-left h1.results{
	font-size: 24px;
	margin-bottom: 30px;
}
/*------------------------------------*
  　サイドバー
*------------------------------------*/
.side-blog h4,h4.kanren-title {
	font-size: 16px;
	color: #E5002D;
    border-bottom: 1px solid;
    border-top: 1px solid;
    margin: 45px 0 20px 0;
    line-height: 34px;
}
.side-blog ul li{
	border-bottom: 1px dotted #ccc;
}
ul.new-post li{
	clear: both;
    width: 100%;
    padding: 15px 0;
}
ul.new-post li:first-of-type{
	padding: 0 0 15px 0;
}
ul.new-post li a{
	display: block;
}
ul.new-post .list-image{
	width: 45%;
	margin-right: 5%;
}
ul.new-post .list-text{
	width: 50%;
}
ul.new-post .item-tx p.blog-time{
	font-size: 12px;
}
ul.new-post .item-tx h5.blog-title{
	font-size: 16px;
	color: #666;
    margin: 10px 0 5px 0;
}
ul.cat-list li,ul.monthly-list li{
	line-height: 40px;
}
ul.cat-list li a, ul.monthly-list li a{
    display: block;
}

/*------------------------------------*
  　関連記事
*------------------------------------*/
ul.blog-list .list-text h5{
	font-size: 16px;
    color: #666;
    margin: 10px 0 5px 0;
}


/*------------------------------------*
   検索ボタン
*------------------------------------*/
.searchform{
	position: relative;
	border: 1px solid #ccc;
    padding: 0 10px;
}
.searchfield{
	width: 90%;
	height: 40px;
}
.searchsubmit{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	cursor: pointer;
}
.searchsubmit:before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f002';
}


/*------------------------------------*
   次の記事へ　前の記事へ
*------------------------------------*/
.paging {
	background: #F5F5F5;
    position: relative;
    font-size: 14px;
    margin-top: 110px;
    height: 60px;
}
.paging p{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.paging .center{
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
}
.paging .center a{
	background-color: #262626;
    padding: 5px 35px;
    border-radius: 30px;
	color: #fff;
}
.paging .next {
	right: 30px;
}
.paging .prev {
	left: 30px;
}


/*------------------------------------*
   ページナビゲーション
*------------------------------------*/
.wp-pagenavi{
	font-size: 14px;
	text-align: center;
	margin-top: 110px;
}
.wp-pagenavi a, .wp-pagenavi span{
	display: inline-block;
    line-height: 30px;
    
    width: 30px;
    text-align: center;
	padding: 0;
	border: 1px solid #262626;
    background-color: #fff;
}
.wp-pagenavi span.pages{
	width: 60px;
}
.wp-pagenavi span.current {
    background-color: #262626;
    color: #fff;
}
.wp-pagenavi a:hover{
	border: 1px solid #262626;
}


/*------------------------------------*
   404 Not Found
*------------------------------------*/
.not-page{
	text-align: center;
}
.not-page h1{
	font-size: 30px;
	margin-bottom: 50px;
}
.not-page .more{
	margin: 50px auto 0 auto;
}

/*------------------------------------*
    プライスポリシー
*------------------------------------*/
#pricepolicy article{
	padding: 180px 0;
}
#pricepolicy section{
	padding: 0 0 200px 0;
}
#pricepolicy section:first-child{
	padding: 0 0 180px 0;
}
#pricepolicy section:last-child{
	padding: 0;
}
.price-title{
    text-align: center;
}
.price-title h3{
    font-size: 60px;
    margin: 10px 0 30px 0;
}
.price-title h3.top-title{
    margin: 30px 0 80px 0;
}
.price-title h3:nth-of-type(2){
	font-size: 30px;
	margin: 10px 0 60px 0;
}
.price-title h3 span{
    color: #E5002D;
}
.price-col .image{
    width: 50%; 
}
.price-col .tx{
    width: 50%;
	position: relative;
}
.price-col.col .tx{
	width: 46%;
   padding: 0 2%;
}
.price-col.col-top .tx{
	 white-space: nowrap;
}
.price-col .tx .tx-inner{
	text-align: center;
}
.price-col .tx .tx-inner p{
	text-align: justify;
	display: inline-block;
	line-height: 40px;
}
.price-col .tx .tx-inner p.list{
	margin: 20px 0;
}
.price-col .more-wrap{
	-webkit-justify-content:space-around;
	-ms-justify-content: space-around;
	justify-content: space-around;
	margin-top: 100px;
}
.price-col .more-wrap .more{
	width: 42%;
	margin: 0;
}
.price-col .more-wrap .more a{
	padding: 10px 0;
}
.price-col .more-wrap .more a p{
	font-size: 30px;
	line-height: 24px;
	padding-bottom: 0;
}
.price-col .more-wrap .more a span{
	position: absolute;
	top: 50%;
    margin-top: -12px;
	left: 75%;
}

/*------------------------------------*
	   施工事例一覧
*------------------------------------*/

/* 　　　 NEWマーク  　　　*/
span.new-text{
	position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #E5002D;
    text-align: center;
    line-height: 50px;
    color: #fff;
	z-index: 10;
}
.post-text .works-ex{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




/*------------------------------------*
	   売地募集・不動産査定
*------------------------------------*/
.real-tab{
	margin-bottom: 110px
}
.real-tab li{
	width: 23.5%;
	float: left;
	margin-right: 2%;
}
.real-tab li:last-child{
	margin-right: 0;
}
.real-tab li a{
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	padding: 0 20px;
	color: #fff;
	background: #fff;
	border: 1px solid #262626;
}
.real-tab li a{
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	padding: 14px 3px;
	color: #000;
	background: #fff;
	border: 1px solid #262626;
}
.real-tab li a.select{
	color: #fff;
	background: #000;
}
.real-tab li a:hover{
	color: #fff;
	background: #000;
	opacity: 1;
}

.real-list p.list-price{
	font-size: 20px;
	font-weight: bold;
}
.real-list .list-info{
	font-size: 15px;
	margin: 20px 0 60px 0;
}

table.sale-table{
	margin-top: 110px;
}
table.sale-table tr:first-child{
	border-bottom: 10px solid #fff;
}
table.sale-table th{
	width: 30%;
	background: #F9F5EE;
	text-align: center;
	font-weight: normal;
	vertical-align: middle;
	border-right: 10px solid #fff;
	padding: 50px 0;
}
table.sale-table td{
	width: 70%;
	background: #F5F5F5;
	padding: 50px 20px;
}


/*------------------------------------*
	   売地募集・不動産査定詳細ページ
*------------------------------------*/
section.realestate{
	background-image: url(./image/realestate/realestate_bk.png);
}
.real-single-title span{
	font-size: 20px;
    color: #fff;
    text-align: center;
    padding: 2px 15px;
    border-radius: 20px;
    background: #E5002D;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}
.real-ttl-bt{
	margin: 30px 0 60px 0;
}
.real-ttl-bt p{
	font-size: 18px;
}
.real-ttl-bt p:first-child{
	margin-right: 5%;
}
.real-ttl-bt p span{
	color: #fff;
    text-align: center;
    padding: 0px 15px;
    background: #E5002D;
    margin-right: 5px;
    display: inline-block;
    vertical-align: super;
}
.real-ttl-bt p large{
	font-size: 40px;
	font-weight: bold;
}
.real-ttl-bt-right{
	text-align: left;
}
.real-ttl-bt-right dd{
	display: inline-block;
    vertical-align: top;
}
.real-ttl-bt-right dd.tx-item{
	
}
.real-table{
	margin-top: 60px;
}
.real-table tr:first-child{
	border-top: 1px solid #262626;
	border-bottom: none;
}
.real-table tr.gmap-field td{
	width: 100%;
    padding: 0;
}
.real-table tr.gmap-field td iframe{
	padding: 0 10px 20px 10px;
}
.real-table td.real-indent p{
	text-indent: -16px;
	padding-left: 16px;
}









/*------------------------------------*
	   フッター
*------------------------------------*/

footer{
	padding: 60px 0 80px 0;
	background-color: #262626;
	color: #fff;
	font-size: 14px;
	position: relative;
}
footer a{
	color: #fff;
}
.f-wrapper .f-left{
	width: 30%;
	margin-right: 5%;
}
.f-wrapper .f-right{
	width: 65%;
}
.f-left h1{
	font-size: 14px;
	font-weight: normal;
	text-align: center;
}
.f-left .f-catch{
	font-size: 14px;
	font-weight: normal;
	text-align: center;
}
.f-left .f-logo{
	width: 150px;
    height: 150px;
    margin: 20px auto;
}
.f-left .f-info p:not(:last-child){
	margin-bottom: 3px;
}

.f-right .f-nav{
	width: 70%;
}
.f-right h4{
	font-size: 20px;
	margin-bottom: 10px;
}
.f-right .f-nav .f-menu{
	margin-bottom: 30px;
}
.f-right .f-nav ul{
	padding: 0 1%;
}
.f-right .f-nav ul li:not(:last-of-type){
	margin-bottom: 5px;
}
.f-right .f-sns{
	width: 30%;
}
.f-right .f-sns li{
	width: 21%;
}
.f-right .f-r-bt .pt-bnr li{
	width: 32%;
}
footer p.copy{
	text-align: center;
	margin-top: 30px;
}
footer p.copy a{
	display: inline-block;
	color: #fff;
}
/*------------------------------------*
    フローティングフッター
*------------------------------------*/
.float-f{
    position: fixed;
    bottom: -210px;
    right: 0;
    width: 385px;
	z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.float-f.show{
	bottom: 0;
}
.float-f a.fr-float{
	width: 120px;
	height: 120px;
    position: absolute;
    bottom: 70px;
	right: 10px;
}
.float-wp .float-mail{
	width: 160px;
	height: 60px;
	background-color: #E5002D;
} 
.float-wp .float-mail:before{
	position: relative;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background: url(./image/common/contact_icon.svg) no-repeat; 
}

.float-wp .float-visit{
	width: 160px;
	height: 60px;
	background-color: #262626;
} 
.float-wp .float-visit:before{
	position: relative;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background: url(./image/common/visit_icon.svg) no-repeat; 
}
.float-wp .float-top{
	width: 60px;
	height: 60px;
	margin-left: 5px;
	background-color: #262626;
}
.float-wp .float-top img{
	width: 35px;
	height: 35px;
}

.sp-float-f{
    position: fixed;
    bottom: -190px;
    left: 0;
    width: 100%;
	z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
	display: none;
	background-color: #262626;
	padding: 5px;
	color: #fff;
	text-align: center;
	font-size: 14px;
}
.sp-float-f.show{
	bottom: 0;
}
.sp-float-f a.fr-float{
	width: 80px;
	height: 80px;
    position: absolute;
    bottom: 90px;
	right: 5px;
}
.sp-float-wp .float-box{
	width: 32%;
}
.sp-float-wp .float-box a{
    padding: 2px 0;
}
.sp-float-wp .float-tel{
	background-color: #E5002D;
}
.sp-float-wp .float-mail{
	background-color: #656565;
}
.sp-float-wp .float-visit{
	background-color: #848484;
}
.sp-float-wp img{
	 width: 30px;
	height: 30px;
}
.sp-float-f p{
    margin-top: 2px;
}
.sp-float-f p.flaot-time{
	margin-top: 5px;
    line-height: 1;
}



/*------------------------------------*
	   メンテナンス中
*------------------------------------*/
.com-wp{
    padding: 200px 0;
}
.com-wp p{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.com-wp p span{
    color: #E5002D;
}


/*------------------------------------*
    メディアクエリ
*------------------------------------*/

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

@media screen and (max-width:768px){
	/*------------------------------------*
    ヘッダー
*------------------------------------*/
	header{
		height: 90px;
	}
	header .header-inner{
		height: 90px;
	}
	header .h-logo{
		width: 70px;
	}
	/*  スマホナビゲーション  */
	.sp-menubt{
		top: 22px;
	}
	body.home header .sp-menubt{
		top: 10px;
	}
	body.home header.move .sp-menubt,
	header.move .sp-menubt{
		top: 17px;
	}
	/*------------------------------------*
    共通設定
*------------------------------------*/
	.mob-show{
	display: block;
}
	nav#gnav{
		display: none;
	}
	.more{
		width: 300px;
	}
	/***********************************************
      トップ共通
************************************************/
	.top-ttl h2{
    font-size: 30px;
}
	.top-ttl p {
    font-size: 16px;
    margin-top: 5px;
}
	main#home .more-btn{
		width: 105px;
	}
	main#home .more-btn a{
		font-size: 14px;
	}
	main#home .more-btn a:after{
		margin-left: 5px;
		font-size: 14px;
	}
	
	
	
    /***********************************************
      トップメインビジュアル
************************************************/
    #main-visual h1 {
    	font-size: 20px;
    }
    
	
	
	/***********************************************
      トップお知らせ表示
************************************************/
	.infobox {
		width: 100%;
	}
	.villax-bnr {
		width: 100%;
	}
	.villax-bnr:first-child{
		margin-bottom: 30px;
	}
	
	
	/***********************************************
      トップイベント
************************************************/
	
	.top-event-list .box{
		width: 50%;
	}
	.top-event-list .event-ttl{
		width: 100%;
		-webkit-box-align:baseline;
    -webkit-align-items:baseline;
    -ms-flex-align:baseline;
    align-items:baseline;
	}
	.top-event-list .top-ttl{
		padding: 20px 0;
		background-position: left top 10px;
	}
	.top-event-list .list-text{
	padding: 20px 10px;
}
	.top-event-list .top-ttl .more-btn {
    margin-top: 0;
    position: absolute;
    right: 1%;
    top: 20px;
}
	.top-event-list .list-text h3{
		font-size: 16px;
	}
    
	/***********************************************
      youtube
	************************************************/
	/** 上２つ下３つ **/
	.top-youtube .tp-youtube.movie-tp {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		margin-right: 0;
	}
	.top-youtube .tp-youtube.movie-tp:first-of-type {
		margin-right: 0;
	}
	.top-youtube .tp-youtube.movie-bt {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
		margin-right: 0;
		margin-bottom: 4%;
	}
	.top-youtube .tp-youtube.movie-bt:last-child{
		margin-bottom: 0;
	}
	/** 上２つ下２つ **/
	/**
	.top-youtube .tp-youtube{
		width: 100%;
		padding-top: 56%;
		margin-bottom: 4%;
		margin-right: 0;
	}
	.top-youtube .tp-youtube:last-child{
		margin-bottom: 0;
	}
    **/
    /***********************************************
      トップ制作事例
************************************************/
	.top-works .works-ttl .more-btn{
		top: 0;
	}
    .top-works-list .box{
        width: 50%;
    }
    .top-works-list .box:nth-child(-n+2){
        margin-bottom: 6px;
    }
	.top-works-list .box .list-text{
		padding: 20px 10px;
	}
    .top-works-list .box .list-text h3{
	font-size: 16px; 
		margin-bottom: 20px;
}
	/***********************************************
      トップ売物件情報
************************************************/
	.top-real{
		padding-top: 50px;
	}
	.top-real .top-ttl .more-btn{
		display: none;
	}	
	.top-real .real-list{
		margin: 0 -3px;
	}
	.top-real .event-list .box{
		width: 50%;
		padding: 0 3px;
	}
	.top-real .event-list .box:last-child{
		display: none;
	}

    
    /***********************************************
      トップブログ
************************************************/
section#blog{
	background-image: url(./image/top/blog_bk.png);
    padding: 0 0 60px 0;
}
    .top-blog{
        display: block;
    }
.top-blog .blog-ttl {
	width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #fff;
}
.top-blog .blog-ttl .more-btn{
    position: absolute;
    right: 0;
    top: 20px;
	margin-top: 0;
	
}
.post-table {
	width: 100%;
	overflow-y: scroll;
    height: 276px;
}
	.post-table .post-list{
		padding: 18px 10px;
	}
	.post-table p.post-time{
		margin-right: 5%;
	}
    /***********************************************
      トップインスタ
************************************************/
section#instagram{
    padding: 50px 0;
}
.insta .top-ttl img{
	width: 150px;
}
	.insta .insta-table{
		margin: 30px 0;
	}
    .insta .follow a{
        display: block;
        text-align: center;
    }
    .insta .follow p{
        text-align: center;
        margin-top: 10px;
    }
    #sb_instagram.sbi_col_10 #sbi_images .sbi_item, #sb_instagram.sbi_col_3 #sbi_images .sbi_item, #sb_instagram.sbi_col_4 #sbi_images .sbi_item, #sb_instagram.sbi_col_5 #sbi_images .sbi_item, #sb_instagram.sbi_col_6 #sbi_images .sbi_item, #sb_instagram.sbi_col_7 #sbi_images .sbi_item, #sb_instagram.sbi_col_8 #sbi_images .sbi_item, #sb_instagram.sbi_col_9 #sbi_images .sbi_item{
		width: 50% !important;
	}
    
	/***********************************************
      サブページ共通設定
************************************************/
	.sub-visual .sub-ttl .top-ttl{
		top: 165px;
	}
	
	
	/***********************************************
      モーダル設定
	************************************************/
	.modal-list {
		width: 90%;
	}
	
	
	
	
    /***********************************************
      OGHOMEの家づくり
************************************************/
    section.concept{
	background-image: url(./image/concept/concept_bk_sp.png);
    }
	.concept-price h3{
		font-size: 28px;
	}
	.concept-price .bg-wh p{
		font-size: 16px;
	}
	.concept-reason h3 {
		font-size: 24px;
	}
    .circle-box .circle{
        width: 48%;
        height: 48%;
    padding: 24%;
    }
	.circle-box .circle .circle-inner p{
		font-size: 18x;
	}
     .concept-reason p.tx-c{
	font-size: 16px;
}   
    /***********************************************
      価格
************************************************/
    .price-page .box{
        display: block;
    }
.price .box:not(:last-child){
	margin-bottom: 30px;
}
.price .image{
	width: 100%;
	height: 0;
	padding-top: 62.5%;
}
.price .text{
	width: 100%;
	height: auto;
	padding: 30px 10px;
}
	
	.price .box .plan h3 {
    width: 70%;
    min-width: 250px;
    margin: 0 auto 20px auto;
}
	.price .box .plan .plan-type{
		display: block;
	}
	.price .box .plan .plan-type p{
		display: inline-block;
	}
    .price .box .plan p.plan-outline{
    width: auto;
}
.price .box .plan p.plan-tsubo{
	width: auto;
	padding: 5px 10px;
}
	.price .box .plan p.plan-price{
		font-size: 34px;
	}
	.price .box .plan .more-btn.more-bk{
	float: none;
		margin: 0 auto;
}
    
    /***********************************************
      プラン
************************************************/
    .plan-top h3{
        width: 100%;
    }
	.plan-wrap.wp11{
		width: 100%;
	}
    .plan-image .image{
	width: 100%;
}
    .details-table table{
	width: 100%;
}
    
    
    /***********************************************
      スタッフ紹介
************************************************/
    .staff-page .box{
        display: block;
    }
.staff .box:not(:last-child){
	margin-bottom: 30px;
}
.staff .image{
	width: 100%;
	height: 0;
	padding-top: 62.5%;
}
.staff .text{
	width: 100%;
	height: auto;
	padding: 20px 10px;
}
    
      
    /***********************************************
      店舗情報
************************************************/
section#company{
	padding: 20px 0 60px 0;
}

.br-list li{
	font-size: 16px;
}
/***********************************************
      ミドルナビ
************************************************/
    
        section#mid-nav{
            display: none;
    }
    
    /***********************************************
      ページ共通お問い合わせ
************************************************/
    .ccwp{
        display: block;
    }
.ccwp .col-l{
	display: none;
}
.ccwp .col-r{
    width: 100%;
	padding: 30px 1%;
}
.ccwp .col-r .inner{
	width: 100%;
    padding: 20px 0 0;
    border: 1px solid #262626;
    
}
   .ccwp .col-r .top-ttl{
	display: -webkit-box;
	display : -ms-flexbox; /*IE10*/
	display : -webkit-flex; /*old webkit browser*/
	display : flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	   margin-bottom: 10px;
} 
	.ccwp .col-r .top-ttl img.icon{
		width: 35px;
    height: 35px;
    margin-right: 5px;
	}
.ccwp .col-r .inner h4{
	font-size: 16px;
    font-weight: normal;
    text-align: center;
}
.ccwp .col-r p.cont-tel{
	font-size: 30px;
	padding-left: 0;
	display: -webkit-box;
	display : -ms-flexbox; /*IE10*/
	display : -webkit-flex; /*old webkit browser*/
	display : flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.ccwp .col-r p.cont-tel:before{
	margin-right: 5px;
}
.ccwp .col-r .more {
    margin: 20px auto;
}

	
/*------------------------------------*
  　お問い合わせ
*------------------------------------*/
	.form-table th{
		width: 90%;
		display: block;
	}
	.form-table td {
		 width: 100%;
    padding: 20px 10px;
}
	
	/* LINE */
	.line-add .add{
		width: 100%;
	}
	.line-add .add:first-child{
	margin-right: 0;
		margin-bottom: 30px;
}
	.line-cont h3{
		font-size: 24px;
	}	
	
	/***********************************************
      フリースペース
************************************************/
	.frspace-form .terms-area {
    width: calc(100% - 20px);
    margin: 0 auto;
}
	.frspace-about .bg-wh p{
		font-size: 16px;
	}
	.frspace-table table.left{
		margin-bottom: 30px;
	}
	
	/***********************************************
      イベント一覧
************************************************/
.event-list{
	margin-bottom: -30px;
}
.event-list .box{
	width: 100%;
	margin-right: 0;
	margin-bottom: 30px;
}
.event-list .box .list-text{
    padding: 20px 10px;
}
    .event-list .box .list-text h3{
        font-size: 16px;
    }
.event-list .box .list-text .event-ex{
	margin: 20px 0 60px 0;
}
.event-list .box .list-text .more-btn{
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
	/***********************************************
      制作事例一覧
************************************************/
.works-list .box{
	width: 50%;
    }
    .works-list .box:nth-child(n+3){
	margin-top: 6px;
}
    .works-list .box .list-text {
    padding: 20px 10px;
}
.works-list .box .list-text h3{
	font-size: 16px; 
}
	
	/*------------------------------------*
   ブログ一覧
*------------------------------------*/

.blog-left{
	width: 100%;
	float: none;
}
.blog-right{
	width: 100%;
	float: none;
	margin-top: 120px;
}
ul.blog-list .list-image{
	width: 30%;
	margin-right: 10%;
}
ul.blog-list .list-text{
	width: 60%;
	}
ul.blog-list .list-text p.blog-ex{
	font-size: 14px;
}
ul.blog-list .list-text h3{
	font-size: 16px;
}
	/*------------------------------------*
  　サイドバー
*------------------------------------*/
	ul.new-post .list-image{
	width: 30%;
	margin-right: 10%;
}
ul.new-post .list-text{
	width: 60%;
}
	
	
/*------------------------------------*
	   施工事例中面
    *------------------------------------*/
	.works-slider {
    background-color: #fff;
}
	.works-slider li{
		display: inline-block;
	}
	.works-slider li:not(:last-child){
		margin-bottom: 30px;
	}
	/* 　　　 ローディング設定 　　　*/
	.works-load{
		display: none;
	}
	.structure{
		width: 100%;
	}	
	
	/*------------------------------------*
	   売地募集・不動産査定
*------------------------------------*/
	.real-tab li{
	width: 49%;
		margin-bottom: 2%;
}
.real-tab li:nth-child(even){
	margin-right: 0;
}
	.real-tab li:nth-last-child(-n+2){
	margin-bottom: 0;
}
	.real-list p.list-price{
	font-size: 16px;
	}
	
	
 /***********************************************
      フッター
************************************************/
    
    footer{
	padding: 40px 0 160px 0;
}
	.f-wrapper{
		display: block;
	}
.f-wrapper .f-left{
	width: 100%;
	margin-right: 0;
	padding: 0 1%;
}
.f-wrapper .f-right{
	width: 100%;
}
	.f-wrapper .f-right .f-r-top{
		display: none;
	}
	.f-left h1{
		margin-top: 20px;
	}
	.f-left .f-catch{
		margin-top: 20px;
	}
	.f-left .f-logo{
		margin: 10px auto;
	}
	.f-left .f-info{
		display: none;
	}
.f-left .f-sns{
	width: 250px;
	margin: 0 auto;
}
.f-left .f-sns li{
	width: 50px;
	margin: 0 2%;
}
.f-right .f-r-bt .pt-bnr li{
	width: 49%;
}
.f-right .f-r-bt .pt-bnr li:nth-child(-n+2){
	margin-bottom: 2%;
}
	footer p.copy{
		font-size: 12px;
	}
    
    /*------------------------------------*
    フローティングフッター
*------------------------------------*/
	.float-f{
		display: none;
	}  
}
	
@media screen and (max-width:480px){
	.sp-show{
	display: block;
}
	.pc-show{
		display: none;
	}
	/*------------------------------------*
	   トップページ
*------------------------------------*/
	/***********************************************
      トップお知らせ表示
************************************************/
	.front-catch {
		font-size: 20px;
	}
	.villax-bnr figcaption strong{
		font-size: 24px;
	}
	.infobox h2{
		font-size: 20px;
	}
	
	/***********************************************
      OGHOMEの家づくり
************************************************/
	.concept-price h3 {
    font-size: 24px;
}
	.concept-reason h3 {
    font-size: 20px;
}
    .circle-box .circle{
        width: 90%;
        height: 90%;
    padding: 45%;
        margin: 0 auto 5% auto;
    }
	
	/***********************************************
      価格
************************************************/
	.price .box .plan .plan-type{
	
	font-size: 15px;
}
	.price .box .plan p.plan-tsubo{
		padding: 5px;
	}
	.price .box .plan p.plan-price{
		font-size: 30px;
	}
	/***********************************************
      プラン
************************************************/
	.plan-single h1{
		font-size: 22px;
	}
	
	.plan-top{
	padding: 20px 0;
}
.plan-top h3{
	font-size: 22px;
}
.plan-top small{
	font-size: 15px;
	
}
	.plan-temp h4 {
    font-size: 24px;
    width: 250px;
}
	
	/***********************************************
      フリースペース
************************************************/
	.frspace-about .bg-wh img{
	width: 250px;
}
	h4.sq-ttl{
		font-size: 24px;
		width: 250px;
	}
	.frspace-form h5{
		font-size: 18px;
	}
	
	/*------------------------------------*
   次の記事へ　前の記事へ
*------------------------------------*/
	.paging .center a{
		padding: 5px 15px;
	}
.paging .next {
	right: 10px;
}
.paging .prev {
	left: 10px;
}
	
	/*------------------------------------*
    運営会社
*------------------------------------*/	

	table.out-table{
	border-spacing: 0px 0px;
}	

.out-table th,.out-table td {
    width: 100%;
    display: block;
	padding: 20px 0 20px 10px;
}	
	.out-table tr.dx th {
		width: 100%;
	}
	
	
	/*  トップページの読み込み完了設定  */
    
    #youtube-wrap,.mbYTP_wrapper iframe {
    	display: none;
    }
    

    /* 　　　 FEATURE  　　　*/
    .fea-wp .tx-wp p {
    	font-size: 14px;
    }

    /*------------------------------------*
  　　　関連記事
    *------------------------------------*/
    p.post-ex.sp {
    	display: block;
    }

    p.post-ex.pc {
    	display: none;
    }

	/***********************************************
      イベント詳細
************************************************/
.event-single h1.single-title{
	margin-bottom: 30px;
}
	/*------------------------------------*
	   施工事例中面
    *------------------------------------*/
	h1.single-title{
		font-size: 20px;
	}
	.top-works-info h3{
		font-size: 18px;
	}
	table.works-table th {
		width: 38%;
		padding: 20px 0px 20px 5px;
	}
	table.works-table td {
		width: 62%;
		padding: 20px 5px 20px 0;
	}
	
    /*------------------------------------*
	   施工事例一覧
    *------------------------------------*/

    /* 　　　 NEWマーク  　　　*/
    span.new-text {
    	top: 5px;
    	left: 5px;
    	width: 40px;
    	height: 40px;
    	line-height: 40px;
    	font-size: 14px;
    }
	
	/*------------------------------------*
       ブログ一覧
	*------------------------------------*/
	ul.blog-list .list-text p.blog-cat {
		display: block;
		width: 100%;
		margin-top: 5px;
	}

	/*------------------------------------*
   ブログ中面
*------------------------------------*/
	.blog-left h1.main-ttl,
	.blog-left h1.results {
		font-size: 20px;
	}
	
	/*------------------------------------*
	   売地募集・不動産査定
*------------------------------------*/
	.real-tab li a{
		font-size: 16px;
	}
	table.sale-table tr:first-child{
	border-bottom: 5px solid #fff;
}
table.sale-table th{
	width: 40%;
	border-right: 5px solid #fff;
}
table.sale-table td{
	width: 60%;
	padding: 50px 10px;
}
	
	/*------------------------------------*
	   売地募集・不動産査定詳細ページ
*------------------------------------*/
	.real-single-title span {
		font-size: 16px;
		padding: 0px 10px;
		margin-right: 0px;
		display: table;
		margin-bottom: 5px;
	}
	.real-ttl-bt p {
		display: block;
	}
	.real-ttl-bt p:first-child {
		margin-right: 0;
	}
	
	.real-table th {
		width: 30% !important;
	}
	.real-table td {
		width: 70% !important;
	}
	.real-table tr.gmap-field td iframe{
		padding: 0 10px 20px 10px;
	}
}