@charset "UTF-8";

html {
	font-size: 62.5%;
}
body{
	background:#FFFFFF !important;
}
body #content {
	color:#000000;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "游ゴシック", "Yu Gothic", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	background:rgba(225,225,225,0);	
}

main a,
main a:hover{
	text-decoration:underline;
}
img{
	image-rendering: -webkit-optimize-contrast;
	-webkit-backface-visibility: hidden;
	vertical-align:bottom;
}
a:hover img {
  transition: .7s;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter:"alpha(opacity=70)";
}

.wrap {
	width:100% !important;
	max-width: 1200px !important;
}
@media screen and (max-width: 1200px) {
.wrap {
	width:auto !important;
}
}
main{
	background:#FFFFFF;
}
p, dl, dt, dd, ol, ul, li{
	font-size:16px;
	line-height:1.8;
}

h1,h2,h3,h4,h5{
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight:bold;
}


h1{
    font-size: 32px;
    font-size: calc(3.2rem + ((1vw - 0.64rem) * 2.1429));
    line-height: 1.3;
}

h2, .TitleL {
    font-size: 30px;
    font-size: calc(3.0rem + ((1vw - 0.64rem) * 0.7143));
    line-height: 1.3;
}
h3, .TitleS {
    font-size: 26px;
    font-size: calc(2.6rem + ((1vw - 0.64rem) * 0.7143));
    line-height: 1.3;
}
h4, .captions {
    font-size: 18px;
    font-size: calc(1.8rem + ((1vw - 0.64rem) * 0.7143));
    line-height: 1.3;
}
h5 {
    font-size: 16px;
    font-size: calc(1.4rem + ((1vw - 0.64rem) * 0.7143));
    line-height: 1.3;
}

@media (min-width:1200px) {
h1 {
	font-size: 4.6rem;
}
h2, .TitleL {
	font-size: 3.8rem;
}
h3, .TitleS {
	font-size: 2.6rem;
}
h4, .captions {
	font-size: 1.8rem;
}
h5 {
    font-size: 1.6rem;
}
}
@media screen and (max-width:640px) {
h1{
	font-size: 2.6rem;
}
h2, .TitleL {
	font-size: 2.2rem;
}
h3, .TitleS {
	font-size: 2.0rem;
}
h4, .captions {
	font-size: 1.8rem;
}
h5 {
    font-size: 1.4rem;
}
}

.richfont{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	transform: rotate(.03deg);
	font-weight:900;
}
.blockfont{
	display:block;
}
.inblockfont{
	display: inline-block;
}
.txtOrange{
	color:#ff6c25;
}
.txtRed{
	color:#ff6600;
}
.txtGreen{
	color:#4eadb2;
}
.color-orn{
	color:#f7683d;
}
.no-line {
	text-decoration:none;
}
/*ボタン
------------------------------------------------------------*/
.btn{width:100%;}

/*ボタン本体*/
.btn__link{
	position: relative;
	display: inline-block;
	cursor: pointer;
	transition: .15s;
}
.btn__link,
.btn__link-normal:hover {
	text-decoration:none !important;
}
.btn__link::before{
	content: "";
	position: absolute;
	top: 0;
	bottom:0;
	right: 10px;
	width: 5px;
	height: 5px;
	margin: auto;
	border-top: 1px solid;
	border-right: 1px solid;
	transform: rotate(45deg);
}
/*ボタン80%*/
.btn__link-wide{ width:80%}

/*ボタン：基本*/
.btn__link-normal{
	font-size:1.6rem;
	padding: 8px 20px;
	border-radius: 5px;
	color:#1c1e84;
	border: 1px solid;
}
.btn__link-normal:hover {
	color: #ffffff;
	background: #a83f3f;
	border-color:transparent;
}

/*ボタン：ビッグ*/
.btn__link-primary{
	padding: 8px 40px 6px;
	border-radius: 5px;
	background:#1c1e84;
	border:none;
	border-bottom: solid 3px rgba(0,0,0,0.25);
	font-size:1.6rem;
	font-weight:bold;
	color:#ffffff;
	overflow: hidden;
	line-height:normal;
}

.btn__link-primary::before{
	border-top: 2px solid;
	border-right: 2px solid;
}
.btn__link-primary::after {
	content: "";
	position: absolute;
	top: -50px;
	left: -100px;
	background: #fff;
	width: 50px;
	height: calc(100% + 100px);
	opacity: 0.1;
	transform: rotate(45deg);
	transition: .3s;
}
.btn__link-primary:hover::after {left: calc(100% + 50px);}
.btn__link-primary:active {
	transform: translateY(3px);
	border-bottom: solid 3px transparent;
}

/*ボタン：ミニ*/
.btn__link-secondary{
	padding: 5px 25px  5px 15px;
	border-radius: 5px;
	background: #a83f3f;
	border:none;
	border-bottom: solid 3px rgba(0,0,0,0.25);
	font-size:1.2rem;
	font-weight:bold;
	color:#ffffff;
	overflow: hidden;
	line-height:normal;
}
.btn__link-secondary:active {
	transform: translateY(3px);
	border-bottom: solid 3px transparent;
}

/*base*/
.btn_base{
	width:auto;
	display:inline-block;
	font-size:18px;
	font-weight:bold;
	margin:0;
	padding: 5px 25px;
	color: #FFFFFF;
	background:#485970;
	border-radius:3px; 
    -webkit-border-radius:3px; 
    -moz-border-radius:3px;
	text-decoration:none;
	text-align:center;
	transition: 0.9s;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.btn_base:hover {
	color: #FFFFFF;
	background:#48386a;
	text-decoration:none;
}
.btn_lightblue{
	background:#B6E7F8;
	color:#000000;
}
.btn_lightblue:hover {
	background:#00CCFF;
	color:#000000;
}
.txtLink,
.txtLink:hover{
	text-decoration:underline;
}
/* ----------------------------------------
* header
---------------------------------------- */
#header {
  background-color: #ffffff !important;
  padding:10px 0;
  border-bottom: 1px solid #efefef;
}
@media screen and (max-width: 414px) { /*固定*/
#header {
  position: fixed !important;
  top: 0px;
  width: 100vw;
  z-index:999;
}
#content{
	margin-top:50px !important;
	padding-bottom:0;
}
}
#header #logo {
  float:none;
  font-size: 24px;
}
#header #logo a {
  color: #383838;
  text-decoration:none;
}
#header #logo a;hover {
  text-decoration:none;
}
#header #logo img {
	width:100%;
	max-width:280px;
	height:auto;
	vertical-align:middle;
}
#header #logo span{
	display:block;
	font-size:14px;
	font-weight:700;
	margin-left:15px;
}
@media screen and (max-width: 991px) {
#header{
	height:80px;
	height:50px !important; 
	padding:0;
	margin:0;
}
#header #logo img {
	max-width:200px;
}
#header #logo span{
	display:block;
	font-size:12px;	
	margin-left:10px;
}
/*#content{
	margin-top:0;
}*/
}
@media screen and (min-width: 991px) {
#gnav {
    margin:0;
    border: none;
    padding: 0 10px;
	font-weight:bold;
	font-size:16px;
}
#gnav .wrap {
	margin-right:0;
}
#gnav ul {
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	justify-content: flex-end;
}
#gnav ul li{
	float:none;
}
#gnav ul li a {
    /*padding: 10px 8px;*/
	padding: 0.4em 1.5em;
    color: #595959;
}
#gnav ul li a:hover {
    color: #f7683d;
	border-top: 1px #bb2322 solid;
}
}

#header-menu-tog i{
	color: #333333;
}

#gnav li.current-menu-item a {
    border: none;
	color:#f7683d;
}

/***headerBox Orign***/
@media screen and ( min-width: 991px ) {
#header{
	background:rgba(255,255,255,0);
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.headerBox{
	width:100%;
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;	
}
.headerBox .Box1{
	width:25%;
	box-sizing:border-box;
	padding:0;
}
.headerBox .Box2{
	width:68%;
	box-sizing:border-box;
	padding:0;
	position:relative;
}
.headerBox .Box3{
	width:7%;
	box-sizing:border-box;
	padding:0;
	position:relative;
}
.headerBox .Box3_inner {
	text-align:right;
}

#gnav {
	background:rgba(255,255,255,0);
	padding:0;
	margin:0;
}
#gnav ul{
	margin:0;
	padding:0;
}
#gnav ul li{
	margin:0;
	padding:0;
}
#gnav ul li a,
#gnav ul li a:hover {
	background:rgba(255,255,255,0);
	border:none;
}
#gnav ul li a:hover {
	opacity:0.8;
	/*text-decoration:underline;*/
}

/*↓underbar*/
#gnav ul li a::after {
	margin:auto;
	position: absolute;
	left: 0;
	right:0;
	content: '';
	width: 80%;
	height: 2px;
	background: #f7683d;
	bottom: 1px; 
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
}

#gnav ul li a:hover::after {
	transform: scale(1, 1); 
}
/*↑underbar*/

#gnav ul li+li{
    position: relative;
}
#gnav ul li+li::before{
    content: "";
    display: block;
    /*height: 1em;*/
	height:70%;
    /*border-left: 1px solid #595959;*/
	border-left: 1px dotted #bcbcbc;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}


#header #logo{
	float:none;
}
#gnav2 {
	background:rgba(255,255,255,0);
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:0;
	margin:0;
	position:absolute;
	top:0;
	right:0;
}
#gnav2 ul{
	margin:0;
	padding:0;
	text-align:right;
}
#gnav2 ul li{
	display:inline-block;
	margin:0 15px 0 0;
	padding:0;
}
#gnav2 ul li a,
#gnav2 ul li a:hover {
	color:#595959;
	font-weight:bold;
	text-decoration:none;
}
}
@media screen and ( max-width: 991px ){
#header{
	position:relative;
	z-index:999;
	padding: 0 !important;
	/*padding: 10px 0 0 !important;*/
}
#header-menu-tog {
    display: block;
	float:none;
	position:absolute;
	top:7px;
	right:10px;
}
#header #logo{
	float:none;	
}
/**sp**/
#gnav {
	margin: 0 -10px 20px 40%;
    border: none;
    padding: 0;
	background:rgba(225,225,225,1);
	border: 1px solid #999999;
	/*border: 1px solid #e5e5e5;*/
	border-radius:15px;
	overflow:hidden;
}
#gnav ul li a {
	background:rgba( 255,255,255,1);
	padding: 10px 8px
}
#gnav ul li a {
    display: block;
    border-top: none;
    padding: 10px 8px;
    color: #2B2D2D;
    background: #fff;
    text-decoration: none;
    -webkit-transition: background .3s ease-in-out;
            transition: background .3s ease-in-out;
	border-bottom: 1px #999999 solid;
    /*border-bottom: 1px #e5e5e5 solid;*/
}
#gnav ul li:last-child a {
	border-bottom: none;
}


#gnav2 {
    display: none;
  }
  #gnav2.active {
    display: block;
  }

  #gnav2 {
    margin: 20px 2% 0;
	margin: 0 2% 0;
    border: none;
    padding: 0 10px 10px;
	background:rgba(0,0,0,0.8);
  }
  #gnav2 .wrap {
    margin: 0;
	padding:0;
  }
  #gnav2 ul li {
	display:block;
    float: none;
    position: relative;
    margin-right: 0;
    margin-bottom: 1px;
    padding: 0;
  }
  #gnav2 ul li:first-child {
	  border:none;
	  margin-bottom:0;
  }
  #gnav2 ul li.current-menu-item a {
    border-top: none;
    background: #f7f7f7;
  }
  #gnav2 ul li a {
    display: block;
    border-top: none;
    padding: 12px 8px;
    color: #2B2D2D;
    background: #fff;
    text-decoration: none;
    -webkit-transition: background .3s ease-in-out;
            transition: background .3s ease-in-out;
	border-bottom: 1px #999999 solid;
    /*border-bottom: 1px #e5e5e5 solid;*/
  }
  #gnav2 ul li:last-child a {
	border-bottom: none;
  }
  #gnav2 ul li a:hover {
    color: #2B2D2D;
    border-top: none;
  }
}



/***home-menu***/
@media screen and ( max-width: 991px ){
#header-menu-home {
	margin-left: auto;
	display: block;
	position: absolute;
    top: 10px;
    right: 55px;
}
}


/****breadcrumb*****/
.breadcrumb {
	margin:0;
}
.breadcrumb span {
	font-size:12px;
}
.breadcrumb li {
	line-height:1.2;
	padding:5px 0;
}

/* ----------------------------------------
* LP
---------------------------------------- */
.home #content{
	padding-top:0 !important;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.lp-wrapper{
	width:95%;
	max-width:1080px;
	margin:0 auto;
}
main img{
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
@media screen and ( max-width: 414px ) {
.no-br br{
	display:none;
}
.no-sp{
	display:none;
}
}
@media screen and ( min-width: 415px ) {
.no-br-pc br{
	display:none;
}
.no-pc{
	display:none;
}
}
.center{
	text-align:center;
}
.TitImg{
	max-width:180px;
	margin-bottom:15px;
}
@media screen and (max-width:992px) {
.TitImg{
	max-width:130px;
}
}
@media screen and (min-width:413px) {
.imgSP{
	display:none;
}
}
@media screen and (max-width:412px) {
.imgPC{
	display:none;
}
}

p em {
	background-color: #ffd4d1;
	background: linear-gradient(transparent 60%, #ffd4d1 60%);
	font-style: normal;
	font-weight: bold;
	color:#000000;
}
.txtred {
	color:#d9392a;
}

/**table**/
.table-wrap {
  overflow-x:visible;
  white-space:normal;
  margin-bottom:0;
}

.table-grad {
  white-space:normal;
}

.table-grad:after {
  content:none;
}
table {
    width: 100%;
    -webkit-overflow-scrolling: touch;
    white-space:normal;
    margin-bottom: 0;
}
/* ----------------------------------------
* footer
---------------------------------------- */
/*
#footer{
	position: relative;
    z-index: -10;
}*/
.footer{
	background:#eeeeee;
	padding:0 0 30px;
	box-sizing:border-box;
}
.footer_wrap {
	width:95%;
	max-width:1200px;
	margin:0 auto;
}
.footer_box_1 {
	padding:0;
}
.footer_box_2 {
	padding: 20px 0 0;
}
.footer_i_list {
	display: flex;
    align-items: center;
    margin: 0 0 15px;
    padding: 0;
}
.footer_i_list li{
	padding: 0 10px 0 0;
	width:45px;
}
.footer__menu {
	margin:0;
	padding:0;
	list-style:none;
}
.footer__menu li {
	display:inline-block;
	margin:0 20px 0 0;
	padding:0;
	font-size:14px;
	font-weight:700;
}
.footer__menu li a {	
	color:#595959;
}
.footer__menu li a:hover {
	color:#f7683d !important;
	text-decoration:none;
}
.footer_logo {
	margin:0 0 5px;
	line-height:1;
}
.footer_logo img{
	max-width:300px;
}
.footer_logo span{
	display:block;
	font-size:14px;
	font-weight:700;
	padding-right:10px;
}
.footer_copyright {
	font-size:12px;
}
@media screen and (min-width:992px) {
.footer_wrap {
	display:flex;
	align-items: flex-end;
}
.footer_box_1 {
	width:60%;
	padding-right:10px;
	padding-top:30px;
}
.footer_box_2 {
	width:40%;
	text-align:right;
	padding:0 0 0 10px;
}
.footer__menu li {
	font-size:15px;
}
.footer_copyright {
	font-size:13px;
}
}

@media screen and ( max-width: 414px ) {
.footer{
	padding:30px 0 80px;
}
}

/*btn*/
.foot_fix_btn {
    position: fixed;
    bottom: 0;
    left: 0;
	z-index:999;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
}
.foot_fix_active{
	opacity: 1;
	visibility: visible;
}
@media screen and ( min-width: 415px ) {
.foot_fix_btn{
	display:none;
}
}
.foot_fix_btn ul{
	width:100%;
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	margin:0;
	padding:0;
	text-align:center;
}
.foot_fix_btn ul li{
	list-style: none;	
	-webkit-flex-basis:25%;
	-ms-flex-basis:25%;
	flex-basis:25%;
	padding:5px 0 0;
	margin:0;
	background: rgba(255,255,255,0.9);
}

.foot_fix_btn ul li a img{
	display:inline-block;
	width:100%;
	height:auto;
	vertical-align:middle;
	text-align:center;
	margin:auto;
}

/* ----------------------------------------
* pagetop
---------------------------------------- */
.pagetop {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 110px;
  right: 50px;
  color: #fff;
}
.pagetop span {
  display: block;
  border-radius: 25px;
  background: #2b2b2b;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 45px;
  font-size: 36px;
}
.pagetop span i {
  color: #fff;
}
.pagetop.show {
  visibility: visible;
  opacity: .8;
}
@media screen and (max-width: 991px) {
  /* tablet */
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
  /* tablet end */
}
@media screen and (max-width: 414px) {
.pagetop {
    right: 20px;
	bottom:80px;
}
}


/*********
   Home
***********/
.indexLP {
	margin:0 auto;
	padding:0 !important;
}
.index_main_visual {
	background:#efefef;
}
.indexLP .HeadBox a{
	text-decoration:none;
	color:#000;
}
.indexLP .HeadBox{
	margin:0 auto;
	padding:0;
	box-sizing:border-box;
	max-width:1200px;
}
.indexLP .HeadBox .Box1{
	background:#ffe4b0;
	box-sizing:border-box;
	padding:10px;
}
.indexLP .HeadBox .Box2{
	/*background:#e5e5e5;*/
	background:#efefef;
	box-sizing:border-box;
}

@media screen and ( min-width: 813px ) {
.index_main_visual {
	background:#efefef;
	background: linear-gradient(90deg, #ffe4b0 0%, #ffe4b0 50%, #efefef 50%, #efefef 100%);
}
.indexLP .HeadBox{
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	/*-webkit-align-items: center;
	align-items: center;*/	
}
.indexLP .HeadBox .Box1{
	width:50%;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:10px;
}
.indexLP .HeadBox .Box2{
	width:50%;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:0;
}
}

@media screen and (max-width:412px) {
.indexLP .HeadBox .bnrBox{
	display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;	
}
.indexLP .HeadBox .bnrBox .bnr1,
.indexLP .HeadBox .bnrBox .bnr2{
	width:50%;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:8px 5px 0;
}
}


/**slide**/
.indexLP .slidBox{
	/*display:-webkit-box;
  	display:-ms-flexbox;
	display:flex;
	-webkit-justify-content: center;
	justify-content: center;
	/*-webkit-align-items: center;
	align-items: center;*/
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:20px 15px 15px;	
}
.indexLP .slidBox .Item{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:0;
	margin: 0 auto;
}
/**slide banerImg**/
.indexLP .slideBnr{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	margin:0 auto;
	padding:20px 15px 15px;
	/*padding:0;*/
}
.indexLP .slideBnr .Item{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding:0;
	margin: 0 auto;
}
.indexLP .slideBnr img{
	display:block;
	margin:0 auto;
	text-align:center;
	width:100%;
	height:auto;
}
.indexLP .slide_bnr_txt {
	width:80%;
	margin:30px auto;
	text-align:center;
	font-size:1.4rem;
}
@media screen and (min-width:413px) {
.indexLP .slidBox .Item{
	/*width:70%;
	max-width:540px;*/
	/*width:80%;*/
	width:85%;
	max-width:640px;
}
.indexLP .slideBnr .Item{
	width:85%;
	/*max-width:540px;*/
	max-width:640px;
}

}

.indexLP ul.slider01{
	width:100%;
	margin:0 auto;
	/*padding-bottom:10px;*/
	padding:0;
}
.indexLP ul.slider01 li{
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.indexLP ul.slider01 .imgItem img{
	display:block;	
}


ul.slider01 .txtItem_wrap,
ul.slider01 .txtItem_wrap_blog{
	margin:30px auto 0;
	display:flex;
}
ul.slider01 .txtItem_panel_1{
	width:80%;
}
ul.slider01 .txtItem_panel_2{
	width:20%;
	text-align:right;
}


.indexLP ul.slider01 .txtItem{
	/*margin:10px auto 0;*/
	margin:0;
	font-size:14px;
	font-weight:bold;
	line-height:1.5;
}
.indexLP ul.slider01 .txtItem span{
	/*display:inline-block;*/
	display:block;
}
/*
.indexLP ul.slider01 .txtItem .post_category{
	font-size:13px;
	background: #669900;
	color:#FFFFFF;	
	padding:2px 5px;
	margin:0 8px 8px 0;
}*/

/**cat slug color**/
/*.indexLP ul.slider01 .txtItem .cat-test1{
	background: #3366CC;
}
.indexLP ul.slider01 .txtItem .cat-test2{
	background: #669900;
}
.indexLP ul.slider01 .txtItem .sale{
	background: #3366CC;
}
.indexLP ul.slider01 .txtItem .rent{
	background: #FFCC00;
}*/

.indexLP ul.slider01 .txtItem .txt1{
	margin-right:8px;
}


/*flashing*/
.blinking {
	animation: blinking 0.5s ease-in-out infinite alternate;
}
 
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

ul.slider01 .txtItem_i-new {
	display:inline-block;
	color:#fff;
	font-size:15px;
	line-height:15px;
	font-weight:bold;
	background:#ff6238;
	padding:5px 10px;
	margin: 0 0 0 auto;
}

.indexLP ul.slider01 .slick-dots{
	/*position:relative;*/
	/*position:absolute;*/
	/*bottom:5px;*/
	bottom:80px;
}



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

   home info

**************************/
.index_info{
	padding: 30px 0 0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.index_info h2 {
	margin:0 0 5px;
	line-height:1;
	font-family: "Avenir Next", Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, sans-serif;
	font-weight:500;
	font-size:2.0rem;
}
.index_info .lp-wrapper{
	width:95%;
	max-width:1080px;
	margin:0 auto;
}
.index_info_panel_r {
	padding:20px 0 0;
	text-align:center;
}
.index_info_wrapper{
	background:#fff;
	border:1px solid #000;
	padding:10px 15px;
	margin:0 auto;
	box-sizing:border-box;
}
.index_info_list{
	margin:0 auto;
	padding:0;
}
.index_info_list li{
	padding:5px 0;
	font-size:1.4rem;
	line-height:1.5;
}
.index_info_list li .info_date{
	display:block;
	font-size:1.3rem;
	font-weight:bold;
}
.index_info_list li .info_title{
	display:block;
}
.index_info_list li .info_title a{
	color:#000;
	text-decoration:underline;
}
.index_info_list li .info_title a:hover{
	opacity: 0.7;
}

/*schrole*/
.index_info_wrapper{
	height:280px;
	overflow-x: hidden;
	overflow-y: auto;
}
@media screen and ( max-width: 412px ) {
.index_info_wrapper::-webkit-scrollbar{
	width: 5px;
	height: 10px;
	background: #f2f2f2 ;	
}
.index_info_wrapper::-webkit-scrollbar-track {
  background:#f2f2f2;
}
.index_info_wrapper::-webkit-scrollbar-thumb{
	background: #ccc;
}
}

/*
.index_info_wrapper::-webkit-scrollbar {
  width: 12px;
}
.index_info_wrapper::-webkit-scrollbar-track {
  background:#fdfdfd;
  box-shadow:0 0 5px #ff99aa inset ;
}
.index_info_wrapper::-webkit-scrollbar-thumb {
  background:#cccccc;
}
*/

@media screen and ( min-width: 813px ) {
.index_info .lp-wrapper{
	display:flex;
}
.index_info_panel_l,
.index_info_panel_r {
	flex-basis: 50%;	
}
.index_info_panel_l {
	padding-right:10px;
}
.index_info_panel_r {
	padding:0 0 0 10px;
}

.index_info_wrapper{
	height:175px;
}
.index_info_list li .info_date{
	/*display:inline-block;*/
	display:block;
	margin-right:15px;
}
.index_info_list li .info_title{
	display:inline-block;
}
}

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

   home outline

**************************/
.index_outline {
	padding:30px 0 0;
}
.index_outline .lp-wrapper{
	width:95%;
	max-width:1080px;
	margin:0 auto;
}
.index_outline h2{
	padding:10px 10px;
	margin-bottom:15px;
	color:#f7683d;
	background:#f2f2f2;
	background: -moz-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9); 
	background: -webkit-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9);
	background: linear-gradient(to bottom, #ffffff,#f2f2f2 50%,#d9d9d9);
	border:0.5px solid #d9d9d9;
	border-bottom:2px solid #f7683d;
}
.index_outline h3 {
	margin-bottom:8px;
}
.index_outline_panel_1 {
	flex-basis: 50%;
	padding:15px 0;	
}
.index_outline_panel_2 {
	flex-basis: 50%;
	padding:15px 0 0;
}
@media screen and ( min-width: 813px ) {
.index_outline_panel {
	display:flex;
}
.index_outline_panel_1 {
	flex-basis: 50%;
	padding:15px;	
}
.index_outline_panel_2 {
	flex-basis: 50%;
	padding:15px;
}
}
/*************************

   home service

**************************/
.index_service {
	padding:0;
}
.index_service .lp-wrapper{
	width:95%;
	max-width:1080px;
	margin:0 auto;
}
.index_service_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px 5px;
	margin:20px auto 30px;
}
.index_service_list > li {
	flex-basis: 100%;
	background:#fff;
	text-align:center;
	position:relative;
	padding:0;
	margin-bottom:10px;	
}
.index_service_list > li {
	flex-basis: 48%;	
}

@media screen and (min-width: 812px) {
.index_service_list {
	gap: 10px 10px;
}
.index_service_list > li {
	flex-basis: 24%;	
}
}
/*************************

   home about

**************************/
.index_about {
	padding:0 0 30px;
}
.index_about .lp-wrapper{
	width:95%;
	max-width:1080px;
	margin:0 auto;
}
.index_about h2{
	padding:10px 10px;
	margin-bottom:15px;
	color:#f7683d;
	background:#f2f2f2;
	background: -moz-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9); 
	background: -webkit-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9);
	background: linear-gradient(to bottom, #ffffff,#f2f2f2 50%,#d9d9d9);
	border:0.5px solid #d9d9d9;
	border-bottom:2px solid #f7683d;
}

.index_about_table {
  border-collapse: collapse;
  width: 100%;
  max-width:860px;
  margin:30px auto 0;
  border:none;
}
.index_about_table th,
.index_about_table td {
  padding:10px 8px;
  border: none;
  line-height:1.5;
}
.index_about_table th {
  vertical-align: middle;
  text-align: left;
  width: 180px;
  font-weight:bold;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.index_about_map {
	max-width:860px;
	margin: 40px auto 0;
}

@media screen and (max-width: 813px) {
  .index_about_table th {
    display: block;
    width: 100%;
	background: #e5e5e5;
  }
  .index_about_table td {
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 812px) {
	.index_about_table tr:nth-child(odd) {
		background: #e5e5e5;
	 }
}


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

   page common

**************************/
.page_wrapper{
	width:95%;
	max-width:1080px;
	margin:0 auto;
}

.page_title {
	color:#fff;
	text-shadow:1px 1px 3px #333333;
	padding:6px 8px;	
}
.page_title_bg {
	background:#ff6600;
	background: -moz-linear-gradient(top, #f2f2f2 5%, #ff6600 80%);
	background: -webkit-linear-gradient(top, #f2f2f2 5%, #ff6600 80%);
	background: linear-gradient(to bottom, #f2f2f2 5%, #ff6600 80%);	
}

/*tableデフォルト解除*/
.pageBasic .table-wrap {
  overflow-x:visible;
  white-space:normal;
  margin-bottom:0;
}

.pageBasic .table-grad {
  white-space:normal;
}

.pageBasic .table-grad:after {
  content:none;
}

/*arrow*/
.triangle-r::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0.1em 0 0;
  border: 5px solid transparent;
  border-right: 0 solid transparent;
  border-left: 8px solid #000;
}

.color_copy1 {
	color:#f1621f;
}
.color_copy2 {
	color:#ffffff;
}

.tel,
.tel a,
.tel a:hover {
    color: #FF5C3B;
    text-decoration: none;
}

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

   common cta

**************************/
.page_cta {
	width:100%;
	padding:30px 0;
}
.page_cta .lp-wrapper{
	width:95%;
	max-width:980px;
	margin:0 auto;
}
.page_cta_list {
	display: flex;
	justify-content: center;
	margin:0;
	padding:0;
}
.page_cta_list li {
	padding:2px;
}
@media screen and ( min-width: 813px ) {
.page_cta_list li {
	padding:10px;
}
}
@media screen and ( max-width: 414px ) {
.page_cta {
	display:none;
}
}

/**jQuery pop**/
.pop--btn {
  cursor: pointer;
}
.pop--contents {
  width: 240%;
  margin: 0;
  display: none;
}
.page_cta_list li {
	position:relative;
}
.pop--contents {
	position:absolute;
	z-index:1;
	top:-230%;
	left: 50%;
	transform: translateX(-50%);
}
.pop--close {
	position:absolute;
	top:0;
	right:0;
	font-size:24px;
	border:none;
	background: rgba(255,255,255,0.8);
	color:999;
}


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

   common support icon

**************************/
.support_i {
	width:100%;
	padding:0;
}
.support_i .lp-wrapper{
	width:95%;
	max-width:980px;
	margin:0 auto;
	padding:0;
}
.support_i_list {
	display: flex;
	align-items: center;
	margin:0;
	padding:0;
}
.support_i_list li {
	padding:2px;
}
@media screen and ( min-width: 813px ) {
.support_i_list li {
	padding:10px;
}
}

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

   page real estate

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

.realstate_lead_list {
	max-width:640px;
	margin:0;
	padding:0;
}
.realstate_lead_list li {
	margin:0 0 20px;
}

@media screen and (min-width: 812px) {
.realstate_lead_list {
	display: flex;
	gap: 15px 20px;
}
.realstate_lead_list li {
	margin:0;
	padding:0;
}
}

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

   page trading for professionals

**************************/
.trading_header_inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
}

.trading_header_img {
	width:100%;
	height:auto;
}
.trading_header_copy {
	position: absolute;
	z-index:1;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:95%;
}

.trading_header_title {
	font-size:1.8rem;
	font-weight:900;
	line-height:1.2;
	text-align:center;
	color:#fff;
	text-shadow:0 0 5px #000;
	margin:0 auto 15px;
	padding:0;
}
.trading_header_txt {
	font-size:1.4rem;
	font-weight:700;
	line-height:1.5;
	text-align:center;
	color:#fff;
	text-shadow:0 0 5px #000;
	margin:0 auto;
	padding:0;
}

.trading_list {
	margin:0;
	padding:0;	
}
.trading_list_item {
	margin:0;
	padding:10px 0 20px;
	box-sizing:border-box;
}
.trading_list_img img {
	width:100%;
	height:auto;
}
.trading_list_title {
	text-align:center;
}
.trading_list_txt {
	line-height:1.5;
}
.trading_list_txt span {
	color:#f7683d;
}

.trading_service_title {
	border-left: 8px solid #adb9ca;
	background:#f6f6f6;
	padding:8px;
	margin: 50px 0 15px;
}
.trading_service_list {
	margin:0;
	padding:0;
}
.trading_service_list li {
	margin:0 0 10px;
	padding:0;
	text-indent: -0.7em;
	margin-left: 0.7em;
}
.trading_service_list li::before {
	display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 0.2em;
    border-radius: 20px;
    background: #adb9ca;
    content: "";
}


.trading_info_wrap {
	background:#fafafa;
	box-shadow: -2px 2px 4px #CCCCCC;
	padding:25px 15px;
	margin:60px auto 0;
}
.trading_info_title {
	text-align:center;
	margin-bottom:25px;
}



@media screen and (min-width: 812px) {
.trading_header_title {
	font-size:4.0rem;
}
.trading_header_txt {
	font-size:2.0rem;
}
.trading_list {
	display:flex;
	flex-wrap: wrap;	
}
.trading_list_title {
	margin:10px auto;
}
.trading_list_item {
	margin:0;
	padding:10px 10px 40px;
	box-sizing:border-box;
	flex-basis: 33.333%;
}
.trading_info_panel {
    padding: 2em 1.5em;
}
.trading_info_title {
	padding: 0 20px;
    font-size: 3.0rem;
}
.trading_info_wrap {
	padding:40px;
}
}

@media screen and (max-width: 813px) {
.trading_list_header {
	display:flex;
	align-items:center;
	background:#f6f6f6;
	margin-bottom:10px;
}
.trading_list_img {
	flex-basis:50%;
	
}
.trading_list_copy {
	flex-basis:50%;	
}
.trading_list_title {
	margin:0;
	padding:0;
}

}


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

   page inheritance

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

.inheritance_header_inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
}

.inheritance_header_img {
	width:100%;
	height:auto;
}
.inheritance_header_copy {
	position: absolute;
	z-index:1;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:95%;
}

.inheritance_header_title {
	font-size:1.8rem;
	font-weight:900;
	line-height:1.2;
	text-align:center;
	color:#fff;
	text-shadow:0 0 5px #000;
	margin:0 auto 15px;
	padding:0;
}
.inheritance_header_txt {
	font-size:1.4rem;
	font-weight:700;
	line-height:1.5;
	text-align:center;
	color:#fff;
	text-shadow:0 0 5px #000;
	margin:0 auto;
	padding:0;
}


.page_inheritance .page_wrapper {
    width: 95%;
    max-width: 980px;
    margin: 0 auto;
}

.page_wrapper_nav {
	padding:0 0 40px;
}
.page_wrapper_sp_top0 {
	padding:0 0 40px;
}
.page_wrapper_sp_bottom0 {
	padding:40px 0 0;
}
@media screen and (min-width: 812px) {
.page_wrapper_nav {
	padding:0 0 80px;
}
.page_wrapper_sp_top0 {
	padding:40px 0;
}
.page_wrapper_sp_bottom0 {
	padding:40px 0;
}
}

.inheritance_intro_copy {
	padding-top: 25px;	
}

.inheritance_intro_img {
	text-align:center;
}
.inheritance_intro_img img {
	width:85%;
	height:auto;
}

.inheritance_title {
	padding:10px 10px;
	margin-bottom:30px;
	color:#f7683d;
	background:#f5f5f5;
	background: -moz-linear-gradient(top, #fffff 5%, #dbdbdb 80%);
	background: -webkit-linear-gradient(top, #ffffff 5%, #dbdbdb 80%);
	background: linear-gradient(to bottom, #ffffff 5%, #dbdbdb 80%);
	border:1px solid #ebebeb;
	border-bottom:1px solid #f7683d;
}
.inheritance_title_sub {
	padding:10px 10px;
	margin-bottom:30px;
	color:#f7683d;
	background:#f5f5f5;
	background: -moz-linear-gradient(top, #fffff 5%, #dbdbdb 80%);
	background: -webkit-linear-gradient(top, #ffffff 5%, #dbdbdb 80%);
	background: linear-gradient(to bottom, #ffffff 5%, #dbdbdb 80%);
	border:1px solid #ebebeb;
	border-bottom:1px solid #f7683d;
}

.inheritance_flow_table {
	border-collapse: collapse;
	width: 100%;
	margin:0 auto;
	border:none;
}
.inheritance_flow_table th,
.inheritance_flow_table td {
	font-size:1.4rem;
	padding:10px 15px;
	border:1px solid #CCCCCC;
}
.inheritance_flow_table th {
	vertical-align: middle;
	text-align: center;
	width: 30%;
	background:#f6f6f6;
}

.inheritance_flow_table .txt-1 {
	color:#f7683d;
}
.inheritance_flow_table .txt-2 {
	display:block;
	font-size:90%;
	margin-top:5px;
}

.inheritance_nav {
	list-style:none;
	display:flex;
	flex-wrap: wrap;
	align-items: center;
}
.inheritance_nav > li {
	flex-basis: 50%;
	margin:0;
	padding:0;
}

.inheritance_first_title {
	display:flex;
	align-items: center;
	margin:0;
	padding:0;
	color:#f7683d;
}
.inheritance_first_title_img {
	width:60px;
}
.inheritance_first_title_copy {
	flex:1;
}
.inheritance_first_txt {
	padding-left:10px;
}
.inheritance_first_txt strong {
	color:#f7683d;
}

.inheritance_cost_title {
	display:flex;
	align-items: center;
	margin:0 0 10px;
	padding:0;
	color:#f7683d;
}
.inheritance_cost_title_img {
	width:60px;
}
.num_sq {
  height:40px;
  width:40px;
  line-height:40px;
  text-align:center;
  background:#f7683d;
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-left:10px;
}
.inheritance_cost_title_copy {
	flex:1;
}
.inheritance_cost_txt {
	padding-left:10px;
}
.inheritance_cost_txt strong {
	color:#f7683d;
}

.inheritance_cost_info {
	max-width:860px;
	margin:0 auto;
	padding:50px 0 40px;
}
.inheritance_cost_info_panel {
	position: relative;
    margin: 0 auto;
    padding: 2em 1em;
    border: solid 1px #f7683d;
}
.inheritance_cost_info_title {
	position: absolute;
    display: inline-block;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 0 10px;
    line-height: 1;
    font-size: 2.0rem;
    background: #FFF;
    color:#f7683d;
    font-weight: 700;
}
.inheritance_cost_info_txt {
	font-size: 1.4rem;
}
.inheritance_cost_info_point {
	max-width:780px;
	padding:15px;
	margin:15px auto;
	background:#e0e0e0;
}
.inheritance_cost_info_point p {
	text-align:center;
	font-size:1.5rem;
}


.inheritance_announce_title_wrap {
	margin:0 auto;
}

.inheritance_announce_img {
	text-align:center;
}
.inheritance_announce_img img {
	display:none;
}

.inheritance_announce_title_tag {
	display:block;
	background:#f1621f;
	font-size:2.4rem;
	color:#fff;
	padding:5px 10px;
	margin-bottom:10px;
	text-align:center;
}
.inheritance_announce_title_copy {
	display:none;
	font-size:2.0rem;
	text-align:center;
}
.inheritance_announce_title_sp {
	display:flex;
	align-items: center;
	justify-content: center;
	margin:0 auto 20px;
	position:relative;
}
.inheritance_announce_title_sp::before {
	content:"";
	background:#EBF6FF;
	position:absolute;
	bottom:5px;
	width:100%;
	height:80%;
}
.inheritance_announce_title_sp .img {
	flex-basis:30%;
	z-index:1;
}
.inheritance_announce_title_sp .copy {
	flex-basis:65%;
	padding-left:15px;
	z-index:1;
	padding-top:5%;
}
.inheritance_announce_title_sp .copy p {
	font-size:1.6rem;
	line-height:1.3;
	font-weight:700;
}
.inheritance_announce_copy h3 {
	text-align:center;
}

.inheritance_vacant_txt strong {
	color:#f7683d;
}
.inheritance_vacant_title {
	color:#f7683d;
	text-align:center;
	margin: 30px auto;
}
.inheritance_vacant_title_sub {
	color:#f7683d;
	font-size: 2.2rem;
	font-weight:700;
	line-height:1.5;
	text-align:center;
	margin: 0 auto;
}

.inheritance_vacant_list {
	display:flex;
	flex-wrap: wrap;
	margin:0;
	padding:0;
}
.inheritance_vacant_list li {
	flex-basis: 50%;
	margin:0;
	padding:0;
}
.inheritance_vacant_sp {
	
}
.inheritance_vacant_pc {
	display:none;
}
.inheritance_vacant_icon {
	text-align:center;
}
.inheritance_vacant_list_title {
	color:#f7683d;
	font-size:2.2rem;
	font-weight:700;
	margin: 5px 0;
	position: relative;
	padding-left: 35px;
}
.inheritance_vacant_list_title::before {
  position: absolute;
  top:50%;
  left:0;
  margin-top:-12px;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #f7683d;
}
.inheritance_vacant_list_txt {
	font-size:1.3rem;
	line-height:1.5;
}

.inheritance_sale_wrap {
	background:#fafafa;
	box-shadow: -2px 2px 4px #CCCCCC;
	padding:25px 15px;
}
.inheritance_sale_title {
	text-align:center;
	margin-bottom:25px;
}


@media screen and (min-width: 812px) {
.inheritance_header_title {
	font-size:4.0rem;
}
.inheritance_header_txt {
	font-size:2.0rem;
}

.inheritance_intro {
	display:flex;
	align-items: center;
}
.inheritance_intro_img {
	flex-basis: 40%;
	padding-right: 25px;	
}
.inheritance_intro_copy {
	flex-basis: 60%;
	padding-top:0;
	padding-left: 25px;	
}
.inheritance_intro_img img {
	width:100%;
	height:auto;
}
.inheritance_flow_table th,
.inheritance_flow_table td {
	font-size:1.6rem;
}
.inheritance_flow_table th {
  width: 20%;
}
.inheritance_nav {
	justify-content: center;
}
.inheritance_nav > li {
	flex-basis: 25%;
	margin:0;
	padding:0;
}
.inheritance_cost_info_panel {
    padding: 2em 1.5em;
}
.inheritance_cost_info_title {
	padding: 0 20px;
    font-size: 3.0rem;
}
.inheritance_cost_info_txt {
	font-size: 1.5rem;
}
.inheritance_cost_info_point p {
	font-size:2.6rem;
}
.inheritance_announce {
	background:#EBF6FF;
	padding:40px 0;
}

.inheritance_announce_wrap {
	display:flex;
	align-items: center;
}
.inheritance_announce_img {
	flex-basis: 20%;	
}
.inheritance_announce_copy {
	flex-basis: 80%;
	padding-left: 20px;	
}
.inheritance_announce_img img {
	display: block;
}
.inheritance_announce_title_wrap {
	margin:0 auto 25px;
}
.inheritance_announce_title {
	display:flex;
	align-items: center;
	justify-content: center;
}
.inheritance_announce_title_tag {
	font-size:3.0rem;
	margin:0;
}
.inheritance_announce_title_copy {
	display:block;
	font-size:3.0rem;
	padding-left:10px;
}
.inheritance_vacant_pc {
	display:block;
}
.inheritance_announce_title_sp {
	display:none;
}
.inheritance_announce_copy h3 {
	text-align:left;
}
.inheritance_vacant_title_sub {
	font-size: 2.8rem;
}
.inheritance_vacant_list {
	display:flex;
}
.inheritance_vacant_list > li {
	flex-basis: 25%;
	padding:10px 30px;
}
.inheritance_vacant_sp {
	display: none;
}
.inheritance_vacant_list_title {
	font-size:2.4rem;
}
.inheritance_vacant_list_txt {
	font-size:1.4rem;
}
.inheritance_sale_wrap {
	padding:40px;
}
}


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

     page about_us

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

.about_table {
  border-collapse: collapse;
  width: 100%;
  margin:0 auto 50px;
  border:none;
}
.about_table th,
.about_table td {
  padding:15px 20px;
  border: none;
  border-top:1px solid #CCCCCC;
  border-bottom:1px solid #CCCCCC;
}
.about_table th {
	line-height:1.8;
  vertical-align: middle;
  text-align: left;
  width: 20%;
  color:#fff;
  background:#bfbfbf;
}
.about_table td {
	line-height:1.8;
}
.about_table_link {
	display: block;
	margin:0;
}
.about_map {
	margin: 30px auto;
}
.about_privacy h3 {
	margin-top:15px;
}


.about_terms {
	max-width:980px;
	margin:0 auto;
}

.raw_table {
  border-collapse: collapse;
  width: 100%;
  margin:20px auto;
}
.raw_table th,
.raw_table td {
  padding:5px 8px;
}
.raw_table th {
  vertical-align: middle;
  text-align: left;
  width: 25%;
  font-weight:bold;
  background:#f2f2f2;
}

.entry__middle .entry__head {
	display: flex;
	align-items: center;
	cursor:pointer;
	position:relative;
	border-bottom:1px solid #000;
	margin-top:15px;
	padding:2px 8px 2px 5px;
	/*color:#fff;
	text-shadow:1px 1px 3px #333333;
	padding:6px 8px 6px 20px;
	margin-top:15px;
	background:#bfbfbf;
	box-shadow:5px -5px 10px 5px rgba(0, 0, 0, 0.5) inset;	*/
}
.entry__middle .entry__head h2{
	margin:0;
	padding:0;
}

.entry__middle .entry__body {
	display:none;
	padding:8px 8px 20px;
}
.entry__middle .entry__head span {
	display: inline-block;
	
}
.entry__middle .entry__head span::before {
  content:'';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
	transform: translateY(-50%);
  right: 20px;
  width: 18px;
  /*height: 4px;
  margin-top:-2px;*/
  height: 2px;
  margin-top:-1px;
  transform: rotate(90deg);
  background: #000;
  transition: all .3s ease-in-out;
  display:inline-block;
}
.entry__middle .entry__head span::after {
  content:'';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
	transform: translateY(-50%);
  right: 20px;
  width: 18px;
  /*height: 4px;*/
  height:2px;
  background: #000;
  transition: all .2s ease-in-out;
  display:inline-block;
}

.entry__middle .entry__head.active span::before {
  transform: rotate(180deg);
}

.entry__middle .entry__head.active span::after {
  opacity: 0;
}


@media screen and (max-width: 813px) {
  .about_table th {
    display: block;
    width: 100%;
  }
  .about_table td {
    display: block;
    text-align: left;
  }
  .raw_table th {
    display: block;
    width: 100%;
  }
  .raw_table td {
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 812px) {
	.about_table tr:nth-child(odd) {
		background: #f4f4f4;
	 }
	.about_table_link {
		margin-left:8px;
		text-align:right;
	}
.about_table_col {
	display:flex;
}
.about_table_col > div{
	width:50%;
}

/**所在地限定**/
.about_table td.space-top {
  padding-top:25px;
}
}


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

    single sale / rent 

*****************************************/
.estate_slide_container {
    position: relative;
    margin:0 auto 20px auto;
	width:100%;
}
 
.swiper-container{
	width:100%;
	max-width:100%;
	height:auto;
	margin:0 auto;
    text-align: center;
    cursor: grab;
}

.swiper-slide {
	width:100% !important;
}

.swiper-container:active{
    cursor: grabbing;
}

.swiper-container .swiper-slide img {    
    width: 100%;
	max-width: 100%;
    height: auto;
}
/*        
#thumbs {
    height: 10%;
    box-sizing: border-box;
    padding: 10px 0;
}*/

#thumbs .swiper-slide {
    /*width: 16%;
    height: auto;*/
    opacity: 0.3;
    cursor: grab;
}
#thumbs .swiper-slide:active {
    cursor: grabbing;
}
#thumbs .swiper-slide-active {
    opacity: 1;
}
         
 
/*.swiper-blind-left,
.swiper-blind-right {
    position: absolute;
    width: 11.55%;
    height: 100%;
    display: block;
    top: 0;
    background: rgba(255,255,255,.7);
    z-index: 5;
}
.swiper-blind-left {
    left: 0;
}
.swiper-blind-right {
    right: 0;
}
@media (max-width: 600px) {
    .swiper-blind-left,.swiper-blind-right {
    display: none;
    }
}*/

/******/
.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
}
#slider {
    height: 80%;
    width: 100%;
}
#thumbs {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0 0;
}
#thumbs .swiper-slide {
    width: 25% !important;
    height: 100%;
    opacity: 0.4;
}
#thumbs .swiper-wrapper .swiper-slide-thumb-active {
    opacity: 1;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/**サムネイル矢印**/
#thumbs .swiper-button-next::after,
#thumbs .swiper-button-prev::after {
	content:none;
}
#thumbs .swiper-button-next,
#thumbs .swiper-button-prev {
    position: absolute;
    top: 50%;   
    margin-top: -16px;
    z-index: 10;  
}
 
#thumbs .swiper-button-next.swiper-button-disabled,
#thumbs .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}
 
#thumbs .swiper-button-prev::before {
    position: relative;
    content: "\f104";
    font-family: FontAwesome;
    background: rgba(255,255,255,0.5);
    padding: 0 12px;
    opacity: 1;
    border: 1px solid #111;
	color:#000;  
}
#thumbs .swiper-button-next::before {
    position: relative;
    content: "\f105";
    font-family: FontAwesome;
    background: rgba(255,255,255,0.5);
    padding: 0 12px;
    opacity: 1;
    border: 1px solid #111;
	color:#000;
}

@media screen and (min-width: 812px) {
#thumbs .swiper-button-next,
#thumbs .swiper-button-prev {  
    margin-top: -20px;
}
#thumbs .swiper-button-prev::before {
    padding: 15px 12px;
}
#thumbs .swiper-button-next::before {
    padding: 15px 12px;
}
}

 
#thumbs .swiper-button-prev:hover:before{
     animation: arrow_prev .5s ease-out forwards;
    }
@keyframes arrow_prev {
    0% {
      right: 0px;
    }
    50% {
      right: 5px;
    }
    100% {
          right: 0;
    }
}
  
#thumbs .swiper-button-next:hover:before{
    animation: arrow_next .5s ease-out forwards;
        }
    @keyframes arrow_next {
    0% {
      left: 0px;
    }
    50% {
      left: 5px;
    }
    100% {
      left: 0;
    }
}
 
 
#thumbs .swiper-button-prev,
#thumbs .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}
 
#thumbs .swiper-button-next,
#thumbs .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

@media screen and (max-width: 813px) {
#thumbs .swiper-button-next,
#thumbs .swiper-button-prev {
	display:none;
}
}

/***slide in slide***/
.swiper-v-panel {
	background:#fff;
	width:100%;
	height:100%;
	/*padding-top:10px;
	padding-bottom:10px;*/
}
.swiper-v {
	background:#fff;
	width:100%;
	height:100%;
	box-sizing:border-box;
	width: 100%;
    height: 100%;
    /*max-width: 90% !important;*/
    margin: 0 auto !important;
    /*overflow: visible !important;*/
	overflow:hidden !important;
}
.swiper-v swiper-wrapper {
	transition-timing-function: linear;
}
.swiper-v .swiper-slide {
	width:100%;
	height:100%;
	box-sizing:border-box;
}
.swiper-v .swiper-slide img {
	display:block;
	width:100%;
	height:auto;
	object-fit: cover;
}

.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 5px!important;
  width: 54px;
  height: 5px;
  background: skyblue;
  opacity: 0.19;
}
.swiper-pagination-bullet-active {
  background: skyblue;
  opacity: 1;
}
/*
@media screen and (min-width: 812px) {
.swiper-v-panel {
	padding-top:20px;
	padding-bottom:20px;
}
}*/
@media screen and (max-width: 813px) {
.swiper-pagination-bullet {
	display:none;
}
}

/*swiper size調整*/
.slide-size-90 {
	max-width:90%;
	padding:10px 0;
}
@media screen and (min-width: 812px) {
.slide-size-90 {
	padding:20px 0;
}
}

/**************/
.slide_move_thumb {
	position:relative;
}
.slide_move_thumb::before {
	content:'';
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(../img/move-play.png);
	background-color:rgba(225,225,225,0.8);
	background-size: contain;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
/**********************/
.pop-slide a:hover img {
	opacity:1 !important;
}
/*無効
.pswp__button--zoom {
    display: inline-block;
}*/

/*******modal***************/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #000;
  width: 100%;
  max-width: 1080px;
  padding: 20px 0;
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  z-index: 10;
}


.modal__slider,
.modal__slider2 {
	width:100%;
	height:auto;
	box-sizing:border-box;
    /*max-width: 90% !important;*/
    margin: 0 auto;
    /*overflow: visible;*/
}
/*
.modal__slider swiper-wrapper {
	transition-timing-function: linear;
}
.modal__slider .modal__slide{
	height:550px !important;
	width:auto !important;
}
.modal__slider .modal__slide img {
	width:100%;
	height:auto;
	object-fit: cover;
}
*/
/***************/
.infiniteslide .item,
.infiniteslide2 .item {
	display: none; /*初期非表示*/
	height:auto !important;
	width:80% !important;	
}
.infiniteslide .item img,
.infiniteslide2 .item img {
	width:100%;
	height:auto;
	object-fit: cover;
}

/**** on mouse ****/
.pop-slide a:hover {
	cursor: zoom-in !important;
}
.js-open-modal img:hover,
.js-open-modal2 img:hover {
	cursor: zoom-in !important;
}

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

    single sale / rent

*****************************************/
.single_contents {
	width:100%;
	max-width:1080px;
	margin:0 auto;
}

.single-sale h1,
.single-rent h1,
.single-sale h2,
.single-rent h2,
.single-sale h3,
.single-rent h3 {
	border:none;
	margin:0;
	padding:0;
}

.sr_title_h1 {
	margin-top:20px !important;
	margin-bottom:5px !important;
}

.sr_intro {
	margin-bottom:30px;
}
@media screen and (min-width: 1025px) {
.sr_intro {
	display:flex;
}
.sr_intro_1{
	flex:1;
	/*flex-basis: 60%;*/
	box-sizing:border-box;
}
.sr_intro_2{
	width:400px;
	/*	flex-basis: 40%;*/
	box-sizing:border-box;
	padding-left:30px;
	padding-top:20px;
}
}

.sr_info {
	margin:0;
	padding: 20px 0 50px;
}
.single-sale .table-wrap,
.single-rent .table-wrap {
  overflow-x:visible;
  white-space:normal;
  margin-bottom:0;
}

.single-sale .table-grad,
.single-rent .table-grad {
  white-space:normal;
}

.single-sale .table-grad:after,
.single-rent .table-grad:after {
  content:none;
}

.single-sale table,
.single-rent table {
    width: 100%;
    -webkit-overflow-scrolling: touch;
    white-space:normal;
    margin: 5px auto 0;
}

.sr_info_table {
  border-collapse: collapse;
  width: 100%;
  border:none !important;
  border-top: 2px solid #ddd !important;
}
.sr_info_table th,
.sr_info_table td {
	font-size:1.4rem;
  padding:5px 8px;
  border:none !important;
  border-bottom: 1px solid #ddd !important;
}
.sr_info_table td p{
	font-size:1.4rem;
}
.sr_info_table th {
  vertical-align: top;
  text-align: left;
  width: 150px;
  font-weight:bold;
  color:#000 !important;
  background:#fff !important;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 813px) {
  .sr_info_table th {
    display: block;
    width: 100%;
	padding:5px 0 0 !important;
	border-bottom:none !important;
  }
  .sr_info_table td {
    display: block;
	padding:5px 0 !important;
  }
}



.sr_intro .post_category{
	font-size:1.8rem;
	line-height:1;
	text-align:center;
	padding:20px 10px;
	margin:0 auto;
	color:#000;
	background:#f2f2f2;
	background: -moz-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9); 
	background: -webkit-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9);
	background: linear-gradient(to bottom, #ffffff,#f2f2f2 50%,#d9d9d9);
	border:2px solid #86caf5;/*#00B0F0*/
}

.sr_intro_data {
	display:flex;
	align-items: flex-end;
	border-bottom:1px solid #565656;
	padding-top:15px;
}

.sr_intro_data_access_wrap {
	border-bottom:1px solid #565656;
	display:flex;
	align-items: flex-end;	
}
.sr_intro_data_access {
	display:flex;
	align-items: center;
	padding-top:15px;
}
.sr_intro_data_title {
	width: 60px;
	padding:0;
}
.sr_intro_data_copy {
	-webkit-box-flex:1;
	-ms-flex:1 1 10%;
	flex: 1;
	padding:0;
}

.sr_intro_data_title h2{
	font-size:1.2rem;
	line-height:1.5;
	color:#000;
	padding:5px;
}
.sr_intro_data_copy p{
	font-size:1.3rem;
	line-height:1.2;
	padding:5px;
	margin:0;
}
.sr_intro_data_copy .txt-name {
	font-size:1.6rem;
}
.sr_intro_data_copy .txt-price{
	font-size:2.6rem;
}
.sr_intro_code_num {
	border: 1px solid #ff6b25;
	text-align:center;
	margin:28px auto 15px;
	padding:20px 8px;
}
.sr_intro_code_num_copy {
	font-size:1.3rem;
	line-height:1.2;
	 color:#ff6b25;
	 margin:0 auto 8px;
}
.sr_intro_code_num_id {
	font-size:1.8rem;
	line-height:1.2;
	 color:#ff6b25;
	 margin:0;
}

.sr_intro_btn_w {
	max-width:800px;
	display:flex;
	margin: 0 auto 10px;
	text-align:center;
}
.sr_intro_btn_w1 {
	flex-basis:50%;
}
.sr_intro_btn_w2 {
	flex-basis:50%;
}

.sr_intro_btn_1 {
	margin:0 auto 10px;
	padding:0;
	text-align:center;
}


.sr_intro_qrcode {
	max-width:800px;
	display:flex;
	align-items: center;
	border:1px solid #000;
	box-sizing:border-box;
	padding:10px;
	margin:20px auto 0 ;
}
.sr_intro_qrcode_copy {
	-webkit-box-flex:1;
	-ms-flex:1 1 10%;
	flex: 1;
	padding:0 5px 0 0;
}
.sr_intro_qrcode_img {
	width: 80px;
	padding:0;
	text-align:right;	
}
.sr_intro_qrcode_copy p{
	font-size:1.6rem;
	line-height:1.3;
	margin:0;
}
.sr_intro_qrcode_copy p span{
	display:block;
	font-size:1.3rem;
	margin-top:5px;
}

.sr_intro_qrcode_box {
	box-sizing:border-box;
	/*border:1px solid #000;
	padding:5px;*/
}
.my_qrcode_box {
	padding:8px;
}
.sr_intro_qrcode_box img{
	width:100%;
	height:auto;
}

@media screen and (min-width: 812px) {
.sr_intro .post_category{
	font-size:2.6rem;
}
.sr_intro_data {
	min-height:90px;
}
.sr_intro_data_access_wrap {
	height:94px;
}
.sr_intro_data_title h2{
	font-size:1.4rem;
}
.sr_intro_data_copy p{
	font-size:1.4rem;
}
.sr_intro_data_copy .txt-name {
	/*font-size:2.0rem;*/
	/*font-size:2.5rem;*/
	font-size:2.1rem;
}
.sr_intro_data_copy .txt-price{
	font-size:3.5rem;
}
.sr_intro_code_num_copy {
	font-size:1.4rem;
}
.sr_intro_code_num_id {
	font-size:2.4rem;
}
}

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

.single_cta {
	padding:30px 0;
	margin:0 auto;
}
.single_cta .lp-wrapper{
	width:95%;
	max-width:980px;
	margin:0 auto;
}
.single_cta_list {
	display: flex;
	justify-content: center;
	margin:0;
	padding:0;
}
.single_cta_list li {
	padding:2px;
}

@media screen and ( min-width: 813px ) {
.single_cta_list li {
	padding:10px;
}
}

/**Theta360**/
.sr_theta {
	margin:0 auto 10px;
}
/***** iframe仕様の場合
.sr_theta {
	margin:0 auto 10px;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.sr_theta iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}****/

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

    entry-archive-slider 未使用

*****************************************//*****
.archive_estate_container {
    margin:0 auto 30px auto;
	width:100%;
	height:100%;
	display:flex;
	flex-wrap: wrap;
}
.archive_estate_main_img{    
    width: 100%;
    height: 80%;
	overflow: hidden;
}
.archive_estate_thumbs {
    width: 100%;
    display: flex;
	gap:5px;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	height: 20%;
    box-sizing: border-box;
    padding: 10px 0 0;
}

.archive_estate_thumbs > div {
    width: 25%;
    height: 100%;
	overflow: hidden;
    opacity: 0.7;
}

.archive_estate_main_img img,
.archive_estate_thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/****************************************

    taxonomy archive 

*****************************************/
.archive_inner {
	width:100%;
	max-width:980px;
	/*max-width:1080px;*/
	margin:0 auto;
}
.archive_intro {
	margin-bottom:80px;
}
.archive_intro_2{
	padding-top:10px;
}
@media screen and (min-width: 813px) {
.archive_intro {
	display:flex;
}
.archive_intro_1{
	flex:1;
	box-sizing:border-box;
}
.archive_intro_2{
	width:400px;
	box-sizing:border-box;
	padding-left:30px;
	padding-top:0;
}
}


.archive_intro .post_category{
	font-size:1.8rem;
	line-height:1;
	text-align:center;
	padding:29px 10px;
	padding:20px 10px;
	/*padding:20px 10px;*/
	margin:0 auto;
	color:#000;
	background:#f2f2f2;
	background: -moz-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9); 
	background: -webkit-linear-gradient(to bottom,#ffffff,#f2f2f2 50%,#d9d9d9);
	background: linear-gradient(to bottom, #ffffff,#f2f2f2 50%,#d9d9d9);
	border:2px solid #86caf5;/*#00B0F0*/
}

.archive_intro_data {
	display:flex;
	align-items: flex-end;
	border-bottom:1px solid #565656;
	padding-top:15px;
}
.archive_intro_data_access_wrap {
	border-bottom:1px solid #565656;
	display:flex;
	align-items: flex-end;	
}
.archive_intro_data_access {
	display:flex;
	align-items: center;
	padding-top:15px;
}
.archive_intro_data_title {
	width: 60px;
	padding:0;
}
.archive_intro_data_copy {
	-webkit-box-flex:1;
	-ms-flex:1 1 10%;
	flex: 1;
	padding:0;
}

.archive_intro_data_title h2{
	font-size:1.2rem;
	line-height:1.5;
	color:#000;
	padding:5px;
}
.archive_intro_data_copy p{
	font-size:1.3rem;
	line-height:1.2;
	padding:5px;
	margin:0;
}
.archive_intro_data_copy .txt-name {
	font-size:1.6rem;
}
.archive_intro_data_copy .txt-price{
	font-size:2.6rem;
}
.archive_intro_btn_1 {
	margin:0 auto 10px;
	padding:0;
	text-align:center;
}

@media screen and (min-width: 812px) {
.archive_intro .post_category{
	font-size:2.6rem;
}
.archive_intro_data {
	min-height:60px;
}
.archive_intro_data_access_wrap {
	height:65px;
}
.archive_intro_data_title h2{
	font-size:1.4rem;
}
.archive_intro_data_copy p{
	font-size:1.4rem;
}
.archive_intro_data_copy .txt-name {
	font-size:2.0rem;
}
.archive_intro_data_copy .txt-price{
	font-size:3.2rem;
}
}


/**
.archive__inner > div:nth-child(odd) {
	background: #4eadb2;
}
.archive__inner > div:nth-child(even) {
	background: #ffda8f;
}

.archive__inner > div {
	padding:15px;
	box-sizing:border-box;
}
.archive__inner .sr_intro_data_title h2 {
	background:#fff;
	color:#000;
}
.archive__inner .sr_intro_data_copy .txtOrange,
.archive__inner .sr_intro_data_copy .txtGreen,
.archive__inner .sr_intro_data_copy .txtRed {
	color:#fff;
}
.archive__inner .sr_intro_code {
	background:#fff;
}


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

    blog single.php  

*****************************************/
.single-post .breadcrumb {
	margin: 0 0 15px;
}
.single-post .post-title {
	margin: 0;
}

/*side*/
.side-widget-area #block-2 {
	margin-bottom:0 !important;
    padding-bottom:0 !important;
}
.side-widget-area h3 {
	font-size: 16px;
}

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

    blog index.php / archive.php 

*****************************************/
.blog #main {
	padding-top:40px;
}
.blog #side {
	padding-top:40px;
}
.post-title {
	margin: 0 0 10px;
}
.post-loop-wrap article {
    margin: 0 0 40px;
}
.post-loop-wrap article .post-title a:hover {
	color:#f7683d;
}

@media screen and (max-width: 991px) {
.post-header {
    padding: 42px 20px 0px;
}
}


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

  form

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

.wpcf7 input {
  border: 1px solid #b5b5b5;
  padding: 1em 1em;
  box-sizing:border-box;
}
.wpcf7 select {
  border: 1px solid #b5b5b5;
  padding: 0.5em 0.5em;
  box-sizing:border-box;
}
.wpcf7 textarea {
	width:100%;
  border: 1px solid #b5b5b5;
  padding: 1em 1em;
  box-sizing:border-box;
}
.wpcf7 textarea[name="textarea-1"] {
	height: 100px !important;
	font-size:14px;
}

.check-request .wpcf7-checkbox .wpcf7-list-item:nth-child(5){
	display:block;
	 margin-top:15px;
}
.check-request .wpcf7-checkbox .wpcf7-list-item:last-child{
	display:block;
	 margin-top:15px;
}
.check-request .wpcf7-checkbox .wpcf7-list-item:first-child::before{
	content:"不動産について";
	display:block;
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.check-request .wpcf7-checkbox .wpcf7-list-item:nth-child(5)::before{
	content:"相続対策について";
	display:block;
	font-size:16px;
	font-weight:bold;
	margin-bottom:5px;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.check-request .wpcf7-checkbox .wpcf7-list-item:nth-child(7){
	display:block;
}
.check-request .wpcf7-checkbox .wpcf7-list-item:nth-child(7)::after{
	content:"※一時対応として、当社相談員が税理士へのご相談内容をお伺いします";
	display:block;
	font-size:13px;
	margin-top:5px;
}

/*物件専用*/
.check-request-property .checkbox-title {
	display:block;
	font-size:16px;
	font-weight:bold;
	margin:0 0 5px 15px;
}
.wpcf7 input[name="your-mei"],
.wpcf7 input[name="your-sei"],
.wpcf7 input[name="your-mei-kana"],
.wpcf7 input[name="your-sei-kana"]{
	width:100% !important;
	box-sizing:border-box;
}
.wpcf7 input[name="zip"]{
	width:100%;
	max-width:150px;
}
.wpcf7 .your-add input{
	width:100%;
}
.wpcf7 ::placeholder {
  color: #ccc;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 11px !important;
    font-weight: normal;
    display: block;
	margin-top:2px;
}

.contactform_btn {
	margin:0 auto;
	text-align:center;
}
.contactform_btn input {
	display:block;
	width:90%;
	max-width:400px;
	margin:0 auto;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
	border:none;
	border-radius: 6px;
	box-shadow: 0 3px 0 #565656;
	transition: .4s;
}
.contactform_btn input:hover {
  opacity: 0.9;
}
@media screen and ( min-width: 813px ) {
.contactform_btn input {
	font-size: 16px;
}
}

form input[type="submit"], form button {
    background:#7c7c7c;
    color: #fff;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.contactform_return_btn {
	margin:0 0 10px;
}
.contactform_return_btn input {
	font-size:14px;
	border: 1px solid #b5b5b5;
    padding: 1em 1em;
    box-sizing: border-box;
}



.postal-search {
	background:#fff;
	color:#ff0000;
	border:2px solid #ff0000;
	border-radius:5px;
	font-size:14px;
	font-weight:bold;
	padding:5px 10px;
	box-sizing:border-box;
	margin-left:10px;
}

/******/
.form_wrapper {
	width:100%;
	margin:0;
	padding:60px 0;
	background:#fdfdfd;
}
.form_inner {
	width:95%;
	max-width:1080px;
	margin:0 auto;
	padding:0;
}
.form_inner p b {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form_title {
	font-size:2.6rem;
	margin:0 auto;
	padding:0;
	text-align:center;
}
.form_title2 {
	font-size:1.8rem;
	margin:0 auto 5px;
	padding:0;
}
.form_txt {
	font-size:14px;
	line-height:1.5;
}
.form_i-required {
	display: inline-block;
	color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
	margin:0 0 0 2px;
    padding: 4px;
	background: #ff0000;
	border-radius:3px;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form_navi{
    max-width:600px;
    margin:20px auto;
}
.form_remarks {
	font-size:13px;
	line-height:1.5;
}

/******/
.contactTable {
	-webkit-overflow-scrolling: auto;
	white-space: normal;
	overflow: visible;
	-ms-overflow-style: none;
    scrollbar-width: none;
	border-collapse: collapse;
	width: 100%;
	margin: 0 auto 50px;
	border:none;
	box-sizing: border-box;
}

.contactTable th,
.contactTable td {
	background: #fff;
	border:none;
    box-sizing:border-box;
	padding: 1em 1.5em;
	vertical-align:middle !important;
}
.contactTable th {
	width:30%;
	background:#f6f6f6;
	font-size:14px;
	font-weight:700;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.contactTable td {
	width:70%;
	background:#fff;
	font-size:14px;
}



.contactTable .table_col_name {
	width:100%;
	max-width:420px;
	display:flex;
	flex-wrap: wrap;
}
.contactTable .table_col_name > div {
	width: 50%;
	padding:5px 5px 5px 0;
	box-sizing:border-box;
}
.contactTable .table_col_name_panel {
	display:flex;
}
.contactTable .table_col_name_panel_1 {
	width:40px;
	padding-right:5px;
	padding-top:6px;
	text-align:center;
	box-sizing:border-box;
}
.contactTable .table_col_name_panel_2 {
	flex: 1;
	box-sizing:border-box;
}

.contactTable .table_col1 {
	margin-top:20px;
}

.contactCheck {
	width:180px;
	background:#F6F6F6;
	text-align:center;
	margin:20px auto;
	padding:6px;
	font-size:14px;
}
.contactCheck .wpcf7-list-item {
	margin:0;
	padding:0;
}

@media screen and ( min-width: 813px ) {
.contactTable {
	border-bottom: 1px solid #ccc;
}
.contactTable th,
.contactTable td {
	border-top: 1px solid #ccc;
}
.contactTable .table_col2 {
	display:flex;
	flex-wrap: wrap;
}
.contactTable .table_col2 > div {
	width: 50%;
	padding:0 10px;
}
.contactTable .table_col1 {
	padding:0 10px;
}

.contactTable-mid {
	border-bottom:none;
}
.contactTable-mid th,
.contactTable-mid td {
	border-top: none;
}
.contactCheck {
	font-size:16px;
}
}
@media screen and ( max-width: 812px ) {
.contactTable,
.contactTable th,
.contactTable td {
	border:none !important;
}
.contactTable th {
	display:block;
	width:100%;
	padding:10px;
}
.contactTable td {
	display:block;
	width:100%;
	padding:10px !important;   
}
.contactTable .table_col_name {
	max-width:100%;
}
}

/*******/
.form_complete {
	padding:30px 0;
}
.form_complete p {
	font-size:1.6rem;
}

/*******/
.table-none {display: none;}

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

     zoom

*****************************************/
.zoom_info .btn {
	width:auto;
}

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

     woo

*****************************************/
.single-product .post-header .post-meta{
	display:none;
}