@charset "utf-8";

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
.btn,
a.btn,
button.btn {
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #000;
	border-radius: 0.5rem;
	margin: 40px 0px;
}

/*ボタンデザイン*/

a.btn-border {
	border-radius: 0;
	font-size: 1rem;
}

a.btn-border:before,
a.btn-border:after {
	position: absolute;
	
	width: 100%;
	height: 1px;
	
	content: '';
	-webkit-transition: all .3s;
	transition: all .3s;
	
	background: #000;
}

a.btn-border:before {
	top: 0;
	left: 0;
}

a.btn-border:after {
	right: 0;
	bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
	width: 0;
}

/*----------------
ボタン位置調整
-----------------*/

.btn_box{
	display:flex !important;;
	flex-direction: column;
	align-items: flex-end;	
}

/*左*/

.btn_box_left{
	display:flex;
	flex-direction: row-reverse;
}

/*中央*/

.btn_box_center{
    display: flex !important;
    justify-content: center !important;
}

 /*右*/

.btn_box_right{
	display:flex;
	flex-direction: row;
}

/*ボタンシンプル*/

a.btn-simple {
    border-radius: 0;
    background: #000;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
	padding: 10px 15px;
    margin: 10px 5px;
	font-size: .7rem;
}

a.btn-simple:hover { 
  color: #fff;
  background: #333;
}

/*物件情報*/

a.btn-info01{
	border-radius: 0;
    background: #000;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 5px 10px;
    margin: 10px 0px;
    font-size: .7rem;
}

a.btn-info01:hover { 
  color: #fff;
  background: #333;
}

a.btn-info02{
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 3px 7px;
    font-size: .6rem;
    border-top: 1px solid;
    border-bottom: 1px solid;
	position: absolute;
    bottom: 20%;
    right: 5%;
}

a.btn-info02:hover { 
  opacity: 0.9 ;
}

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

a.btn-border {
    font-size: .9em;
}
	
a.btn-simple {	
	font-size: .7em;
}

.btn_box_left {
	display:flex;
	justify-content:center !important;
}
	
.btn_box_center{
	display:flex;
	justify-content:center !important;
}
}
