@charset "UTF-8";
/* ======================================
   【個人用】CTAボタン（マクロコピー付）
   ====================================== */
.cv-btn-wrap * {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.cv-btn-wrap {
  /* 全体の背景色 */
  background: #f7f7f7;
  padding: 1.5em !important;
  margin: 0 0 2em !important;
  font-size: 1.0em;
  line-height: 1.8;
}

.cv-btn-wrap ul,
.cv-btn-wrap a,
.cv-note {
  max-width: 350px;
  margin: auto !important;
  border: none;
}

.cv-btn-wrap ul li {
  font-weight: 500;
  list-style: none;
  font-size: 0.9em;
  position: relative;
  margin-left: 1.5em !important;
}

.cv-btn-wrap ul li::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: -1.2em;
  width: 10px;
  height: 5px;
  border-left: 2px solid #1d89b5;
  border-bottom: 2px solid #1d89b5;
  transform: rotate(-45deg);
}

.cv-btn {
  max-width: 350px;
  position: relative;
  color: #fff;
  text-decoration: none !important;
  /* ボタンメインの背景色 */
  background: #ef5350;
/*
  background: #00FF00;
*/
  border-bottom: solid 4px #b61b17;
  padding: 0.5em 1em !important;
  border-radius: 7px;
  margin: 0.3em auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.cv-btn:hover {
  opacity: 0.9;
}

.cv-btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}

.cv-btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 100) 81%, rgba(255, 255, 255, 0) 100%);
  animation: shine 3s infinite;
}

@keyframes shine {
  33% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.cv-btn:after {
  content: '»';
  display: block;
  position: absolute;
  right: 1em;
}

.cv-btn a {
  color: #fff !important;
  text-decoration: none !important;
}

.cv-btn .cv-em {
  font-size: 0.9em;
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  display: block;
/* 文字の色 */
  color: #ef5350;
/*
  color: #0000ff;
*/
  background: #fff;
  padding: 5px 10px !important;
  margin: 2px 10px 0px 0 !important;
  border-radius: 30px;
  min-width: 55px;
  max-width: 80px;
}

.cv-btn .cv-text {
  font-size: 0.9em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  border-left: 1px solid #fff;
  line-height: 25px;
  margin: 0.6em auto 0.6em 0 !important;
  padding: 0 0.6em 0 1em !important;
}

.cv-btn svg {
  color: #fff;
  min-width: 22px;
}

.cv-url-wrap {
  font-size: 0.8em !important;
  max-width: 350px;
  margin: 0 auto 0.5em !important;
  display: block;
}

.cv-url-wrap span {
  color: #1a0dab !important;
  text-decoration: none !important;
}

.cv-btn-wrap .cv-note {
  font-size: 0.8em;
  font-weight: bold;
  border: 1px solid #ef5350;
  margin-top: 0.5em !important;
  padding: 0.5em 1em !important;
}

.sidebar .cv-btn-wrap {
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

/*320px以下*/
@media screen and (max-width: 320px) {
  .cv-btn-wrap {
    padding: 1em !important;
  }
}



/* solid015 */
.button_solid015 {
    text-align: center;
}
.button_solid015 p {
    margin-bottom: 5px;
    font-weight: 600;
    color: #6bb6ff;
    letter-spacing: 0.04rem;
    display: inline-block;
    position: relative;
}
.button_solid015 p:before, .button_solid015 p:after {
    display: inline-block;
    position: absolute;
    top: 45%;
    width: 20px;
    height: 3px;
    border-radius: 5px;
    background-color: #6bb6ff;
    content: "";
}
.button_solid015 p:before {
    left: -30px;
    -webkit-transform: rotate( 50deg );
    transform: rotate( 50deg );
}
.button_solid015 p:after {
    right: -30px;
    -webkit-transform: rotate( -50deg );
    transform: rotate( -50deg );
}
.button_solid015 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #6bb6ff;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
}
.button_solid015 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
.button_solid015 a:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-54%);
}