@charset "UTF-8";
/* CSS Document */

/* Schedule page */

/* ## Rollover set ## */
a:hover.b_btn_lo { 
    opacity: 0.7; 
    filter: alpha(opacity=70); 
    -moz-opacity: 0.7; }


/* ボタン */
.btn,
a.btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
	margin-top: 0.4rem;
  padding: 0.6rem 2.53rem;
  border: 1px solid #CC1B63;
  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;
  border-radius: 0.5rem;
}

/* ボタンLarge */
.btn_large,
a.btn_large {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
	margin-top: 0.4rem;
  padding: 1.2rem 6rem;
  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;
  border-radius: 0.5rem;
}

a.btn_slide {
  overflow: hidden;
  color: #fff;
  background: rgba(39,90,178,0.70);
}
a.btn_slide span { position: relative; }
a.btn_slide:hover { color: #EBEF76; }
a.btn_slide:before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  content: '';
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: rgba(226,27,101,0.85);
}
a.btn_slide:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.btn2 a.btn_slide { /* btn背景 色変え */
  overflow: hidden;
  color: #fff;
  background: rgba(38,151,203,0.85);
}