/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	width: 60px;
	height: 60px;
	position: fixed;
	background: #000;
	right: 0;
	top: 0;
	z-index: 100;
	padding: 10px 13px 0;
	box-sizing: border-box;
}
.hamburger:after {
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 0.02em;
	content: 'MENU';
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	text-align: center;
}
.navOpen .hamburger:after {
	content: 'CLOSE';
}
.hamburger-box {
	width: 33px;
	height: 17px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 33px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -8px;
}
.hamburger-inner::after {
	bottom: -8px;
}
/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}




.btn-square-group li {
	width: 46%;
	margin-right: 2%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn_group {
	text-align: center;
}
.btn_group li {
	margin-bottom: 30px;
}
.btn_group .w_full {
	width: 90%;
	margin: 0 auto 30px;
}
.btn_group li a {
	display: block;
	position: relative;
}
.btn_group li a:after {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	content: '\f105';
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	padding-left: 10px;
}
.btn_group .btn-down a:after {
	content: '\f107';
}
.btn_group .btn-l a:after {
	display: none;
}
.btn_group .btn-l a:before {
	content: '\f105';
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	padding-right: 10px;
}
.btn-circle-group {
	text-align: center;
}
.btn-circle-group li {
	display: inline-block;
	margin: 0 5px 20px;
}
.btn-circle-group li a {
	height: 100%;
	padding-top: 20px;
	line-height: 2.5;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-circle-group li a:after {
	display: block;
	position: static;
	top: auto;
	bottom: 15px;
	right: 50%;
	line-height: 1;
	padding: 0;
}
.btn-square {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000;/*ボタン色*/
	color: #FFF;
	border-bottom: solid 4px #717070;
	border-radius: 3px;
}
.btn-square:active {
	/*ボタンを押したとき*/
	-webkit-transform: translateY(4px);
	transform: translateY(4px);/*下に動く*/
	border-bottom: none;/*線を消す*/
}
.btn-square-shadow {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000;/*ボタン色*/
	color: #FFF;
	border-bottom: solid 4px #717070;
	border-radius: 3px;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-square-shadow:active {
	/*ボタンを押したとき*/
	-webkit-transform: translateY(4px);
	transform: translateY(4px);/*下に動く*/
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
	border-bottom: none;
}
.btn-square-emboss {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000;/*ボタン色*/
	color: #fff;/*ボタン色より暗く*/
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #717070;
	border-radius: 3px;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.btn-square-emboss:active {
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
	border-bottom: none;
}
.btn-square-raised {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000;/*ボタン色*/
	color: #000;/*ボタン色と同じに*/
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #717070;
	border-radius: 3px;/*角の丸み*/
	font-weight: bold;
	text-shadow: -1px -1px rgba(255, 255, 255, 0.44), 1px 1px rgba(0, 0, 0, 0.38);
}
.btn-square-raised:active {
	/*ボタンを押したとき*/
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
	border-bottom: none;
}
.btn-square-slant {
	display: inline-block;
	position: relative;
	padding: 0.5em 1.4em;
	text-decoration: none;
	background: #000;/*ボタン色*/
	color: #FFF;
	border-bottom: solid 5px #717070;/*ボタン色より暗めに*/
	border-right: solid 5px #717070;/*ボタン色より暗めに*/
}
.btn-square-slant:before {
	content: " ";
	position: absolute;
	bottom: -5px;
	left: -1px;
	width: 0;
	height: 0;
	border-width: 0 6px 6px 0px;
	border-style: solid;
	border-color: transparent;
	border-bottom-color: #FFF;
}
.btn-square-slant:after {
	content: " ";
	position: absolute;
	top: -1px;
	right: -5px;
	width: 0;
	height: 0;
	border-width: 0px 6px 6px 0px;
	border-style: solid;
	border-color: #FFF;
	border-bottom-color: transparent;
}
.btn-square-slant:active {
	/*ボタンを押したとき*/
	border: none;
	-webkit-transform: translate(6px, 6px);
	transform: translate(6px, 6px);
}
.btn-square-slant:active:after, .btn-square-slant:active:before {
	content: none;/*ボタンを押すと線が消える*/
}
.btn-square-above-look {
	display: inline-block;
	position: relative;
	padding: 0.35em 1em;
	background: #000;/*ボタン色*/
	color: #FFF;
	text-decoration: none;
}
.btn-square-above-look:before {
	content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: -webkit-calc(100% - 16px);
    width: calc(100% - 8px);
    height: 0;
    border: solid 4px transparent;
    border-bottom-color: #717070;
}
.btn-square-above-look:active {
	/*押したとき*/
	padding: 0.32em 0.9em;
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.btn-square-above-look:active:before {
	width: -webkit-calc(100% - 12px);
	width: calc(100% - 12px);
}
.btn-square-above-look:active:before {
	top: -12px;
	border-width: 6px;
}
.btn-square-pop {
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #FFF;
	background: #000;/*背景色*/
	border-bottom: solid 2px #717070;/*少し濃い目の色に*/
	border-radius: 4px;/*角の丸み*/
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
	font-weight: bold;
}
.btn-square-pop:active {
	border-bottom: solid 2px #fd9535;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
.btn-sticky {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000;
	border-left: solid 6px #717070;/*左線*/
	color: #fff;/*文字色*/
	font-weight: bold;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:active {
	box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
	transform: translateY(2px);
}
.btn-square-little-rich {
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #FFF;
	background: #000;/*色*/
	border: solid 1px #717070;/*線色*/
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.btn-square-little-rich:active {
	/*押したとき*/
	border: solid 1px #000;
	box-shadow: none;
	text-shadow: none;
}
.btn-square-soft {
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: #fff;
	width: 120px;
	height: 50px;
	line-height: 50px;
	padding: 0 10px;
	border-radius: 5px;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	font-weight: bold;
	background: linear-gradient(#000 0%, #a7a3a3 100%);
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}
.btn-square-soft:active {
	/*押したとき*/
	-webkit-transform: translateY(2px);
	transform: translateY(2px);/*沈むように*/
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	background-image: linear-gradient(#000 0%, #ffbcbc 100%);/*グラデーションを明るく*/
}
.btn-flat-simple {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #fff;
	background: #000;
	transition: .4s;
}
.btn-flat-simple:hover {
	background: #00bcd4;
	color: white;
}
.btn-flat-border {
	display: inline-block;
	padding: 0.3em 1em;
	text-decoration: none;
	color: #000;
	border: solid 2px #000;
	border-radius: 3px;
	transition: .4s;
}
.btn-flat-border:hover {
	background: #000;
	color: white;
}
.btn-flat-double-border {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	color: #000;
	border: double 4px #000;
	border-radius: 3px;
	transition: .4s;
}
.btn-flat-double-border:hover {
	background: #fffbef;
}
.btn-flat-dashed-border {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	color: #000;
	border: dashed 1px #000;
	border-radius: 3px;
	transition: .4s;
}
.btn-flat-dashed-border:hover {
	border-style: dotted;
	color: #679efd;
}
.btn-flat-dashed-filled {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	color: #000;
	border: dashed 1px #000;
	background: #fff;
	border-radius: 3px;
	transition: .4s;
}
.btn-flat-dashed-filled:hover {
	background: #000;
	color: #FFF;
}
.btn-flat-vertical-border {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0.5em 1em;
	text-decoration: none;
	border-left: solid 4px #717070;
	border-right: solid 4px #717070;
	color: #fff;
	background: #000;
	transition: .4s;
}
.btn-flat-vertical-border:hover {
	background: #668ad8;
	color: #FFF;
}
.btn-border-bottom {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0.25em 0;
	text-decoration: none;
	color: #000;
}
.btn-border-bottom:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 4px;
	top: 100%;
	left: 0;
	border-radius: 3px;
	background: #000;
	transition: .2s;
}
.btn-border-bottom:hover:before {
	top: -webkit-calc(100% - 3px);
	top: calc(100% - 3px);
}
.btn-horizontal-border {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 12px 0 8px;
	text-decoration: none;
	color: #000;
	transition: .4s;
}
.btn-horizontal-border:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 4px;
	top: 100%;
	left: 0;
	border-radius: 3px;
	background: #000;
	transition: .2s;
}
.btn-horizontal-border:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 4px;
	top: 0;
	left: 0;
	border-radius: 3px;
	background: #000;
	transition: .2s;
}
.btn-horizontal-border:hover:before {
	top: -webkit-calc(100% - 3px);
	top: calc(100% - 3px);
}
.btn-horizontal-border:hover:after {
	top: 3px;
}
.btn-flat-bottom-border {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 7px 10px 10px 10px;
	text-decoration: none;
	color: #FFF;
	background: #000;
	transition: .4s;
}
.btn-flat-bottom-border span {
	border-bottom: solid 2px #FFF;
	display: block;
}
.btn-flat-bottom-border:hover {
	background: #000;
}
.btn-flat-horizontal-border {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 1em 0.5em;
	text-decoration: none;
	color: #FFF;
	background: #000;
	transition: .4s;
}
.btn-flat-horizontal-border span {
	border-bottom: solid 2px #FFF;
	border-top: solid 2px #FFF;
	display: block;
}
.btn-flat-horizontal-border:hover span {
	padding: 0.1em 0;
}
.btn-top-radius {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 8px 10px 5px 10px;
	text-decoration: none;
	color: #fff;
	background: #000;
	border-bottom: solid 4px rgba(0,0,0,0.5);
	border-radius: 15px 15px 0 0;
	transition: .4s;
}
.btn-top-radius:hover {
	background: #f94300;
	color: #FFF;
}
.btn-flat-stripe {
	position: relative;
	display: inline-block;
	font-weight: bold;
	text-decoration: none;
	border-left: solid 4px #717070;
	border-right: solid 4px #717070;
	color: #fff;
	text-shadow: 0 0 5px white;
	padding: 0.5em 1em;
	background: repeating-linear-gradient(-45deg, #696260, #5f5856 3px, #000 3px, #000 7px);
	transition: .4s;
}
.btn-flat-stripe:hover {
	background: repeating-linear-gradient(-45deg, #e4a58d, #e4a58d 5px, #e9f4ff 5px, #e9f4ff 9px);
}
.btn-sf-like {
	position: relative;
	display: inline-block;
	font-weight: bold;
	text-decoration: none;
	color: #FFF;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.73);
	padding: 0.3em 0.5em;
	background: #000;
	border-top: solid 3px #717070;
	border-bottom: solid 3px #717070;
	transition: .4s;
}
.btn-sf-like:hover {
	text-shadow: -6px 0px 15px rgba(255, 255, 240, 0.83),  6px 0px 15px rgba(255, 255, 240, 0.83);
}
.btn-stitch {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	background: #000;
	color: #FFF;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 5px #000;
	border: dashed 1px #FFF;
}
.btn-stitch:hover {
	border: dotted 1px #FFF;
}

.btn-corner-right {
    color: #000;	
}
.btn-corner-right a {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
	text-align: left;
	padding: 2px 0 2px 20px;
}
.btn-corner-right a:after {
	right: 20px!important;
}
.btn-circle-flat {
	display: inline-block;
	text-decoration: none;
	background: #000;
	color: #FFF;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	transition: .4s;
}
.btn-circle-flat:hover {
	background: #668ad8;
}
.btn-circle-stitch {
	display: inline-block;
	text-decoration: none;
	background: #000;
	color: #FFF;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	box-shadow: 0px 0px 0px 5px #000;
	border: dashed 1px #FFF;
	transition: .4s;
}
.btn-circle-stitch:hover {
	background: #668ad8;
	box-shadow: 0px 0px 0px 5px #668ad8;
}
.btn-circle-border {
	display: inline-block;
	text-decoration: none;
	background: #000;
	color: rgba(255, 255, 255, 1);
	font-weight: bold;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	box-shadow: 0px 0px 0px 5px #000;
	border: solid 2px rgba(255, 255, 255, 1);
	transition: .4s;
}
.btn-circle-border:hover {
	border-style: dashed;
}
.btn-circle-3d {
	display: inline-block;
	text-decoration: none;
	background: #000;
	color: #FFF;
	width: 80px;
	height: 77px;
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	overflow: hidden;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #a9a4a4;
	transition: .4s;
}
.btn-circle-3d:active {
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
	border-bottom: none;
}
.btn-circle-3d-emboss {
	display: inline-block;
	text-decoration: none;
	background: #000;
	color: #fff;
	width: 80px;
	height: 80px;
	font-size: 14px;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	font-weight: bold;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #a9a4a4;
	text-shadow: -1px -1px rgba(255, 255, 255, 0.43), 1px 1px rgba(0, 0, 0, 0.49);
	transition: .4s;
}
.btn-circle-3d-emboss:active {
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
	border-bottom: none;
}
.btn-circle-3d-dent {
	display: inline-block;
	text-decoration: none;
	background: #000;
	color: #fff;
	width: 83px;
	font-size: 15px;
	height: 80px;
	border-radius: 50%;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	box-shadow: inset 0px 3px 0 rgba(255,255,255,0.3), 0 3px 3px rgba(0, 0, 0, 0.3);
	font-weight: bold;
	border-bottom: solid 3px #a9a4a4;
	text-shadow: 1px 1px 1px rgba(45, 11, 11, 0.65);
	transition: .4s;
}
.btn-circle-3d-dent:active {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
	border-bottom: none;
}

.btn-circle-border-simple {
  display: inline-block;
  text-decoration: none;
  color: #000;
width: 76px;
    height: 76px;
  border-radius: 50%;
  border: solid 2px #000;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  font-weight: bold;
  transition: .4s;
}

.btn-circle-border-simple:hover {

}

.btn-circle-border-double {
  display: inline-block;
  text-decoration: none;
  color: #000;
width: 76px;
    height: 76px;
  border-radius: 50%;
  border: double 4px #000;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: .6s;
}

.btn-circle-border-double:hover {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.btn-social-long-twitter {
	color: #FFF;/*文字・アイコン色*/
	border-radius: 7px;/*角丸に*/
	display: inline-block;
	height: 50px;/*高さ*/
	width: 190px;/*幅*/
	text-align: center;/*中身を中央寄せ*/
	font-size: 18px;/*文字のサイズ*/
	line-height: 50px;/*高さと合わせる*/
	vertical-align: middle;/*垂直中央寄せ*/
	background: #1da1f3;
	overflow: hidden;/*はみ出た部分を隠す*/
	text-decoration: none;/*下線は消す*/
}
.btn-social-long-twitter .fa-twitter {
	text-shadow: 2px 2px 0px #4287d6;
	font-size: 30px;
}
.btn-social-long-twitter span {
	display: inline-block;
	transition: .5s;
}
.btn-social-long-twitter:hover span {
	-webkit-transform: rotateX(360deg);
	transform: rotateX(360deg);
}
.btn-social-long-facebook {
	color: #FFF;/*文字・アイコン色*/
	border-radius: 7px;/*角丸に*/
	display: inline-block;
	height: 50px;/*高さ*/
	width: 190px;/*幅*/
	text-align: center;/*中身を中央寄せ*/
	font-size: 18px;/*文字のサイズ*/
	line-height: 50px;/*高さと合わせる*/
	vertical-align: middle;/*垂直中央寄せ*/
	background: #4966a0;
	overflow: hidden;/*はみ出た部分を隠す*/
	text-decoration: none;/*下線は消す*/
}
.btn-social-long-facebook .fa-facebook {
	text-shadow: 2px 2px 1px #224282;
	font-size: 30px;
}
.btn-social-long-facebook span {
	/*テキスト*/
	display: inline-block;
	transition: .5s;
}
.btn-social-long-facebook:hover span {
	/*ホバーで一周回転*/
	-webkit-transform: rotateX(360deg);
	transform: rotateX(360deg);
}
.btn-social-long-insta {
	/*ボタンの下地*/
	color: #FFF;/*文字・アイコン色*/
	border-radius: 7px;/*角丸に*/
	position: relative;
	display: inline-block;
	height: 50px;/*高さ*/
	width: 190px;/*幅*/
	text-align: center;/*中身を中央寄せ*/
	font-size: 18px;/*文字のサイズ*/
	line-height: 50px;/*高さと合わせる*/
	vertical-align: middle;/*垂直中央寄せ*/
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
	overflow: hidden;/*はみ出た部分を隠す*/
	text-decoration: none;/*下線は消す*/
}
.btn-social-long-insta:before {
	/*グラデーション②*/
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;/*全体を覆う*/
	height: 100%;/*全体を覆う*/
	background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.btn-social-long-insta .fa-instagram {
	/*アイコン*/
	font-size: 35px;/*アイコンサイズ*/
	position: relative;
	top: 4px;/*アイコン位置の微調整*/
}
.btn-social-long-insta span {
	/*テキスト*/
	display: inline-block;
	position: relative;
	transition: .5s
}
.btn-social-long-insta:hover span {
	/*ホバーで一周回転*/
	-webkit-transform: rotateX(360deg);
	transform: rotateX(360deg);
}



.sns-button li {
	margin-bottom: 15px;
}
.sns-button li a {
	display: block;
	width: 100%;
	padding-left: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}
.sns-button li i {
	position: relative;
	z-index: 1;
}
