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

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


/*全体設定*/
*{
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-decoration: none;
    list-style: none;
}

/*基本ボタン設定*/
.c-btn{
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
 
.c-btn {
    background: #ff701e;
    border: 2px solid #ff701e;
    border-radius: 60px;
    color: #fff;
    display: block;
    font-weight: bold;
    max-width: 200px;
    padding: 15px 40px;
    margin: 30px;
    text-align: center;
}

/*ボタン個別設定*/
#pattern_1.c-btn:hover {
  background: #fff;
  color: #ff701e;
}

#pattern_2.c-btn:hover {
  letter-spacing: 0.2em;
}

#pattern_3.c-btn:hover {
  transform: translateY(-5px);
}

#pattern_4.c-btn {
  background: #fff;
  color: #ff701e;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#pattern_4.c-btn::after {
  background: #ff701e;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
#pattern_4.c-btn:hover {
  color: #fff;
}
#pattern_4.c-btn:hover::after {
  transform: scale(1, 1);
}

#pattern_5.c-btn {
  background: #fff;
  color: #ff701e;
  overflow: hidden;
  position: relative;
  transition-duration: .4s;
  z-index: 2;
}
#pattern_5.c-btn::after {
  background: #ff701e;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}

#pattern_5.c-btn:hover {
  color: #fff;
}
#pattern_5.c-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}


