@charset "utf-8";

/* 003 */
.button003 a {
    background: #DFDFDF;
    border-radius: 50px;
    position: relative;
    display: flex;
    /*justify-content: space-around;*/
    align-items: center;
    /*margin: 0 auto;*/
	max-width: 18em;
    padding: 5px 25px 7px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration: none;
	line-height: 1.2em;
}
.button003 a:hover {
    background: #313131;
    color: #FFF;
}
.button003 a:after {
    content: '';
    width: 9px;
    height: 9px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 48%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button003 a:hover:after {
    border-color: #FFF;
}


/* ボタン019 */
.button019 a {
    background-color: #1553E3;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    padding: 10px 30px 10px 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration: none;
	font-size: 1.3em;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.5rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
	background-color: #007CFF;
  color: #FFFD00;
}
.button019 a:hover:after {
  right: 1rem;
}
/* ボタン020 */
.button020 a {
    background-color: #FFAE00;
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 360px;
    padding: 10px 30px 10px 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration: none;
	font-size: 1.3em;
}
.button020 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.5rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button020 a:hover {
	background-color: #FF8E00;
  color: #FFFD00;
}
.button020 a:hover:after {
  right: 1rem;
}


.btn-gradient {
    position: relative;
    cursor: pointer;
    max-width: 280px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    background-image: linear-gradient(135deg, #245FFF 10%, #00FBFF 100%);
    box-shadow: 0 0 15px #bbb;
    color: white;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
	font-size: 1.3em;
}
.btn-gradient:hover {
    background-image: linear-gradient(135deg, #245FFF 10%, #00FBFF 100%);
}
.btn-gradient span {
    padding-right: 50px;
}
.btn-gradient a {
    color: #fff;
	text-decoration: none;
}
.btn-gradient a:hover {
    color: #FFFD00;
	text-decoration: none;
}
.btn-gradient i {
    position: absolute;
    line-height: 50px;
    right: 1em;
    transition: 0.5s;
}
.btn-gradient:hover i {
    right: 0.8em;
}

/*== グラデーション線から塗に変化する */
.gradient4 a{
    display: inline-block;/*ボタンの形状*/
    padding: 10px 50px;  
    border-radius:30px;
    text-decoration: none;
    border:1px solid #2F74FF;
    color: #2F74FF;
    outline: none;
    transition: all 0.4s ease-out;/*アニメーションの指定*/
}
/*hoverした際、グラデーションと影を付ける*/
.gradient4 a:hover{
    border-color:transparent;/*ボタンの形状*/
    color: #fff !important;
    background: linear-gradient(90deg, #69EACB, #334AFF, #69EACB);/*背景の色と形状*/
    background-size: 200% auto;
    background-position: right center;
    box-shadow: 0 5px 10px rgb(250,108,159,0.4);/*ボックスの影*/
}
@media screen and (max-width: 400px) {
.gradient4 a{
    padding: 10px 20px;  
    border-radius:30px;
}
}
