h1 {
	margin-bottom: 20px;
	padding: 2px 0 2px 5px;
	width: 100%;
	color: #000;
	font-size: 110%;
	font-weight: normal;
	border-left: 6px solid #ff6666;
}


h2 {
  position: relative;
  padding: 1em 0;
}
h2::before,
h2::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  box-sizing: border-box;
}
h2::before {
  top: 0;
  border-top: 2px solid #fff;
  border-bottom: 1px solid #fff;
}
h2::after {
  bottom: 0;
  border-top: 1px solid #fff;
  border-bottom: 2px solid #fff;
}


h3 {
	margin-bottom: 20px;
	padding: 2px 0 2px 5px;
	width: 100%;
	color: #000;
	font-size: 110%;
	font-weight: normal;
	border-left: 6px solid #6666FF;
}



/*ボタン↓*/

a.btn-border {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
}

a.btn-border:hover {
  color: #fff;
  background: #000;
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 30%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  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: #212529;
  border-radius: 0.5rem;
}

/*ボタン↑*/