@charset "utf-8";
@import "_variables.scss";


/* ボタンデザイン */
.btn_brown{
    /*ボタンの形状*/
  max-width: 330px;
    width: 100%;
	font-weight: 400;
  letter-spacing: 0.1em;
    display: inline-block;
    color:#fff;
    padding: 10px 30px;
    border-radius:3px;
    text-decoration: none;
    outline: none;
  /*background:#83646A;*/
  /*background: #653a3a;*/
    /*背景の色と形状*/
	background-image: linear-gradient( 135deg, #7B4C4C 10%, #653A3A 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
}
.btn_brown:hover {
    color: #fff;
    background-position: 99% 50%;
    transform: scale(0.95);
}


a.btn_white {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	max-width: 500px;
	margin: auto;
	padding: 30px 150px;
	font-weight: bold;
	border: 3px solid #fff;
	color: #fff;
	/*cursor: pointer;*/
	position: relative;
 	overflow: hidden;
 	z-index: 1;
	border-radius: 10px;
}
a.btn_white::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
a.btn_white:hover::before {
	transform: translateX(0);
}
a.btn_white:hover {
	color: #48281A;
}


@media (max-width: 540px) {
	a.btn_white{
		padding: 20px 60px;
	}

}


.text_link_brown {
	font-size:16px;
	position: relative;
	display: inline-block;
	padding: 0.1em 0.3em;
	text-decoration: none;
	color: #7A4B4B;
}
.text_link_brown:after {
	position: absolute;
	bottom: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	transition: all 0.3s ease;
	opacity: 0;
	border-radius: 3px;
	background-color: #EDE9E6;
}
.text_link_brown:hover:after {
	bottom: 0;
	height: 100%;
	opacity: 0.3;
	  /*cursor: none;*/
}
