@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 330px;
	height: 145px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/


hr{
	margin-bottom: 50px;
}

a{
	margin-left: 100px;
	margin-top: 50px;
}


/*===ボタン===*/

.button {
    display: block;
    width: 160px;
    height: 68px;
    line-height: 68px;
    font-size: 24px;
    text-decoration: none;
    background-color: #9AE165;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 10px 0 #48631D;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 0 #48631D;
}

.button:hover {
	transform: translateY(5px);/**/
	box-shadow: 0 5px 0 #9AE165;
}




/*===リンク===*/

.link {
  position: relative;
  display: block;
  width: 200px;
  height: 78px;
  line-height: 78px;
  font-size: 24px;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #666;
  color: #0C55AA;
  text-align: center;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.link:hover {
  color: #fff;
}

.link::after,
.link::before {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.link:hover::after {
    top: 0;
    left: 0;
    background-color: #0C55AA;
}

.link::after {
  top: 0;
  left: -200px;
  width: 100%;
  height: 100%;
}




/*===こちらをクリック===*/

.click {
    display: block;
    width: 200px;
    height: 78px;
    line-height: 78px;
    font-size: 24px;
    text-decoration: none;
    background-color: #E4CB15;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}

.click:hover {
  background-color: #fff;
  border: 2px solid #E4CB15;
  color: #E4CB15;
}


