@charset "UTF-8";
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/* # =================================================================
	 # Global selectors
	 # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

.all {
  overflow: hidden;
  position: relative;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-family: 'Lato', 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "メイリオ",Osaka, sans-serif;
  color: #3e3a39;
  line-height: 1.7;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
# General elements
# ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* Heading design */
.heading-img {
    font-size: 2.07em;
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 2em;
}
.heading-img span {
    color: #f3ec44;
}
.heading-img:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 45px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3e3a39;
}
.heading-img img {
    display: block;
    pointer-events: none;
    margin: 0 auto 25px;
}

.heading_b-left {
    font-size: 1.33em;
    font-weight: 700;
    margin: 50px 0 15px;
    padding: .2em 0 .2em .75em;
    border-left: 7px solid #f54961;
    line-height: 1.5;
}

#twitter .heading_b-left {
  border-left: 7px solid #1da1f2 !important;
}

@media only screen and (max-width: 480px) {
.heading-img,
footer h2 {
    font-size: 1.3em !important;
}

.heading_b-left,
.heading-box .box-title {
    font-size: 1.1em;
}
}

/* # =================================================================
	 # Specify media element style
	 # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* # =================================================================
	 # add
	 # ================================================================= */
a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

ol,
ul {
  list-style: none;
}

/* # =================================================================
	 # disp
	 # ================================================================= */
@media only screen and (min-width: 769px) {
.pc { display: block !important; }
.tab { display: none !important; }
.sp { display: none !important; }

header .pc { display: inline-block !important; }

.pc-tab-table { display: table !important; }
.sp-table { display: none !important; }
}

@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.tab { display: block !important; }
.sp { display: none !important; }

.pc-tab-table { display: table !important; }
.sp-table { display: none !important; }
}

@media only screen and (max-width: 480px) {
.sp { display: block !important; }

.pc-tab-table { display: none !important; }
.sp-table { display: table !important; }
}



/*
# =================================================================
# COMMON
# =================================================================
*/
/*  flex -----------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex.jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex.jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
    
/*  other -----------------*/
.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}
footer .indent {
    margin: 5px 0;
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.fs-18 {
    font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}

.fw-700 {
    font-weight: 700;
}

.c-red {
    color: #c30d23;
}
.c-blue {
    color: #25b6c4;
}

.mb-30 {
    margin-bottom: 30px;
}

.border-t {
    border-top: 1px solid #cfdce0;
}

.cashback-txt {
    color: #c01920;
    font-weight: bold;
    font-size: 1.2em;
}

.mb-txt {
  margin-bottom: 3rem;
}
.mb-txt_2 {
  margin-bottom: 4rem;
}

.cashback {
  margin: 8% 0 0 0;
}
.cashback .heading-img {
  margin-bottom: 0;
}
.cashback .heading-img:before {
  height: 0;
}
.cashback .title {
  color: rgb(229, 0, 1);
  background: -webkit-linear-gradient(0deg, #e60000, #fff001);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 215%;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 2px #e40001;
  text-stroke: 2px #e40001;
}


.period-s {
  padding: 150px 0 !important   ;
}

#report .title {
  color: rgb(255, 40, 40);
  /* background: -webkit-linear-gradient(0deg, #8FDCF2, #CA78F2); */
  background: url(../images/top/report_title.jpg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 215%;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 2px #FFF;
  text-stroke: 2px #FFF;
}

#twitter .title {
  font-size: 150%;
  line-height: 5.5rem;
}

#report .heading-img:before, #twitter .heading-img:before {
  height: 0;
}

@media screen and (max-width: 480px) {
  .cashback {
    margin: 20% 0 0 0;
  }
  .period-s {
    padding: 110px 0 !important   ;
  }
  #twitter .title {
    line-height: 3.5rem;
  }
  #report {
    padding-top: 90px;
  }
}

@media all and (-ms-high-contrast:none) {
  #report .title {
    background: none !important; /* IE10 */
  }
}

/*
# =================================================================
# LAYOUT
# =================================================================
*/
/*  container -----------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}

/*  bg & box -----------------*/
.block_bg-wh {
  padding: 110px 0;
}

.block_bg-grid {
    background: url(../images/top/bg_grid.png) no-repeat center center;
}

.block_bg-point {
    background: url(../images/top/bg_point.png) no-repeat center center/cover;
}

.block_bg-report {
  background: url(../images/top/bg_05.jpg) no-repeat center center/cover;
}

.block_bg-twitter {
  background-color: #e2f4ff;
}

.block_bg-gray {
  padding: 110px 0;
  background-color: #f7f8f8;
}

.block_bg-pink {
  padding: 110px 0 60px;
  background-color: #d8395f;
}
.block_bg-pink .heading-img {
  color: #fff;
}
.block_bg-pink .heading-img:before {
  background-color: #fff;
}
.block_bg-pink .box {
  margin-bottom: 50px;
  padding: 33px 40px 20px;
  background: #fff;
}
.block_bg-pink .box p {
  margin: 20px 0;
}
.block_bg-pink .heading_b-left {
  border-left: 7px solid #d8395f;
  margin-top: 0;
}

.block_bg-point .box p {
  margin: 20px 0;
}

.bgDivide_right,
.bgDivide_left {
    width: 100%;
    position: relative;
}
.bgDivide_right {
    height: 700px;
    background: linear-gradient(60deg, #cb5d55, #bf1a20);
}
.bgDivide_left {
    height: 1000px;
    background: linear-gradient(60deg, #70589e, #68418e);
}
.bgDivide_right:before {
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    content: '';
    position: absolute;
    background: url(../images/top/bg_target.png) no-repeat center center/cover;
}
.bgDivide_left:before {
    top: 0;
    right: 50%;
    width: 50%;
    height: 100%;
    content: '';
    position: absolute;
    background: url(../images/top/bg_conditions.png) no-repeat center center/cover;
}

.bgDivide_right .wrap,
.bgDivide_left .wrap {
    position: absolute;
    width: 820px;
    background: #fff;
    box-shadow: 0 0 5px gray;
}
.bgDivide_right .wrap {
    height: 90%;
    top: 50%;
    left: 35%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.bgDivide_left .wrap {
    height: 90%;
    top: 50%;
    right: 35%;
    -ms-transform: translate(50%,-50%);
    -webkit-transform: translate(50%,-50%);
    transform: translate(50%,-50%);
}

.bgDivide_right .inner,
.bgDivide_left .inner {
    position: absolute;
    padding: 40px;
    width: 100%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.heading-box {
    margin: 2em 0;
    background: #fff;
    border: 1px solid #cfdce0;
}
.heading-box .box-title {
    font-size: 1.33em;
    background: #f39800;
    padding: 15px 45px;
    color: #fff;
    font-weight: 700;
}
.heading-box .box-content {
    padding: 30px 50px;
    margin: 0;
}

.box_shadow {
    margin: 50px 0 15px;
    padding: 33px 40px 20px;
    background: #fff;
    box-shadow: 0 0 5px gray;
}
.box_shadow h3 {
    margin-top: 0;
}

.block_bg-point .box_shadow {
    background: rgba(255,255,255, 0.9);
}

.report_mv_box a:hover img {
  opacity: 0.7;
}

.mv_attention {
  text-align: center;
  font-size: 18px;
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .bgDivide_right .wrap,
  .bgDivide_left .wrap {
     position: relative;
     display: block;
     margin: 0 auto;
  }
  .bgDivide_right .wrap {
    left: 40%;
  }
  .bgDivide_left .wrap {
    right: 40%;
  }
}

@media screen and (max-width: 812px) {
  .bgDivide_right .wrap {
    left: 50%;
  }
  .bgDivide_left .wrap {
    right: 51%;
  }
}

@media screen and (max-width: 768px) {
  header .flex.ai-c {
    padding: 0 0 10px;
  }
  
  .bgDivide_right,
  .bgDivide_left {
    padding-left: 15px;
    padding-right: 15px;
  }
  .bgDivide_left .wrap {
    right: 50%;
  }
  .bgDivide_right .wrap {
    left: 50%;
  }
  .bgDivide_right .wrap,
  .bgDivide_left .wrap {
    width: 100%;
  }
  .bgDivide_right .inner,
  .bgDivide_left .inner {
    padding: 15px;
  }
  
  .block_bg-pink .box {
    padding: 25px 15px 20px;
  }
  
  .heading-box .box-content {
    padding: 30px 15px;
  }
  
  .block_bg-wh,
  .block_bg-gray,
  .block_bg-pink {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  .bgDivide_left {
    height: 1300px;
  }
  .box_shadow {
    padding: 33px 20px 20px;
  }
  .mv_attention {
    text-align: left;
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  .bgDivide_left {
    height: 1450px;
  }
}

/*  header -----------------*/
header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header .container {
  padding: 0 15px;
  max-width: 1440px;
}

header .logo {
    margin-top: -9px;
}

header .logo img {
  width: 200px;
}

@media screen and (max-width: 1025px) {
  header .logo {
      margin-top: 0 !important;
  }
}

@media screen and (max-width: 480px) {
  header .logo {
    margin-top: -5px !important;
  }
  header .logo img {
    width: 150px;
  }
}

/*  footer -----------------*/
.btn_application  {
  font-size: 1.47em;
  font-weight: 700;
  width: 370px;
  height: 80px;
  background: #37b165;
  border: 1px solid #37b165;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  line-height: 3.5;
  transition: .4s;
}
.btn_application:hover {
  background: #fff;
  color: #37b165;
}


.btn-pagetop {
    text-align: center;
    width: 80px;
    height: 80px;
    padding: 15px 13px 10px;
    background: #3e3a39;
    display: block;
    float: right;
    margin-left: 15px;
    border-radius: 50%;
}
footer {
    background: #f7f8f8;
    padding: 35px 0 50px;
}
footer h2 {
    font-size: 2.07em;
    font-weight: 700;
    text-align: center;
    margin: 50px auto;
}

footer a.risk {
    display: inline-block;
    color: #3e3a39;
    border-bottom: 1px solid #3e3a39;
    margin-top: 20px;
}

.ft-copyright {
	font-size: .9em;
	margin-top: 150px;
}
.ft-copyright a {
	color: #3e3a39;
}

.floating-btn {
    display: inline-flex;
}

@media (max-width: 768px) {
.floating-btn {
    display: flex;
    /* width: 100%; */
}
.btn_application  {
  font-size: 1.2em;
  width: 100%;
  line-height: 4.5;
}
.btn-pagetop {
    margin-top: 0;
    width: 65px;
    height: 65px;
}
.btn-pagetop img {
  width: 30px;
}
}

@media (max-width: 320px) {
.btn_application  {
    font-size: 1em;
    line-height: 5.4;
}
}

/*  gnav -----------------*/
.gnav {
  padding: 18px 0;
}

.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.gnav ul li {
  position: relative;
  margin-right: 45px;
}
.gnav ul li:last-child {
  margin-right: 0;
}

.gnav ul li a {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.gnav ul li:hover a {
  border-bottom: 1px solid #fff;
}

.gnav.sp-nav {
  margin-top: 0;
}

.gnav.sp-nav ul {
  display: block;
}

.gnav.sp-nav ul li {
  position: relative;
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}

.gnav.sp-nav ul li:after {
  display: none;
}

.gnav.sp-nav ul li:before {
  display: none;
}

.gnav.sp-nav ul li:first-child a {
  border-left: 0;
}

.gnav.sp-nav ul li.current:after, .gnav.sp-nav ul li.current:before, .gnav.sp-nav ul li:hover:after, .gnav.sp-nav ul li:hover:before {
  opacity: 1;
}

.gnav.sp-nav ul li.current a, .gnav.sp-nav ul li:hover a {
  color: #fff;
}

.gnav.sp-nav ul li a {
  border-right: 0;
  display: block;
  width: 100%;
  padding: 1.3rem 0;
  color: #fff;
  text-align: left;
}

.gnav.sp-nav ul li.btn01 a {
  width: 100%;
  max-width: 100%;
  border: 0;
}

.gnav.sp-nav ul li.sp {
  display: block;
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .gnav ul li a {
    font-size: 1.15rem;
  }
}

@media (max-width: 1024px) {
  .gnav ul li a span {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .blog-nav a {
    display: block;
    width: 33.3333%;
    float: left;
    padding: 10px 0;
    line-height: 1.25;
    font-size: 11px;
  }
}

/*  breadcrumbs -----------------*/
.breadcrumbs {
  margin: 0 auto;
  padding: 0;
}
.breadcrumbs ul {
  display: table;
  margin: 0 auto;
  padding: 50px 0 20px;
}
.breadcrumbs ul li {
  margin: 0 10px 0 0;
  float: left;
}
.breadcrumbs ul li:nth-child(n+2)::before {
  padding: 0 10px 0 0;
  content: "\f105";
  font-family: FontAwesome;
}

/*  table -----------------*/
table {
  /* font-size: .93em; */
  font-size: 1.2em;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 15px auto;
}

table th {
  font-weight: 700;
  text-align: center;
  background: #f7f8f8;
  border-left: 1px solid #cfdce0;
  border-top: 1px solid #cfdce0;
  border-bottom: 1px solid #cfdce0;
  padding: 10px 0;
}
table th:last-child {
  border-right: 1px solid #cfdce0;
}

table td {
  text-align: center;
  border-left: 1px solid #cfdce0;
  border-bottom: 1px solid #cfdce0;
  border-top:none;
  padding: 10px 0;
}

table td:last-child {
  border-right: 1px solid #cfdce0;
}

@media only screen and (max-width: 480px) {
.table-scroll {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 30px;
}
.table-scroll::-webkit-scrollbar {
    height: 5px;
}
.table-scroll::-webkit-scrollbar-track{
    background: #F1F1F1;
}
.table-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
}

table th,
table td {
    padding: 15px;
}
}

/* ---------------------------
	FV
--------------------------- */
.fv {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 960px;
  /* background: url(../images/top/fv.png) no-repeat center center; */
  background: url(../images/top/fv.jpg) no-repeat center center;
	background-size: cover;
	overflow: hidden;
}

.scroll-down {
  position: absolute;
  bottom: -15px;
  left: 50%;
  padding-top: 50px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll-down span {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #ffffff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 1580px) {
  .fv {
    height: 750px;
  }
}
@media only screen and (max-width: 1200px) {
  .fv {
    height: 700px;
  }
}
@media only screen and (max-width: 1024px) {
  .fv {
    height: 700px;
  }
}
@media only screen and (max-width: 980px) {
  .fv {
    height: 550px;
  }
}

@media only screen and (max-width: 768px) {
.scroll-down {
  display: none;
}
}

/*# sourceMappingURL=maps/style.css.map */


.container .large-txt {
  font-size: 2rem;
}
.bg-01 {
  background: linear-gradient(60deg, #fa0001, #ffffff);
  height: 500px !important;
}
.bg-01:before {
  background: url(../images/top/bg_01.jpg) no-repeat center center/cover !important;
}
.bg-02 {
  background: linear-gradient(60deg, #ffffff, #fa0001);
  height: 700px !important;
}
.bg-02:before {
  background: url(../images/top/bg_02.jpg) no-repeat center center/cover !important;
}
.bg-03 {
  background: linear-gradient(60deg, #fa0001, #ffffff);
}
.bg-03:before {
  background: url(../images/top/bg_03.jpg) no-repeat center center/cover !important;
}
.bg-04 {
  background: linear-gradient(60deg, #ffffff, #fa0001);
  height: 800px !important;
}
.bg-04:before {
  background: url(../images/top/bg_04.jpg) no-repeat center center/cover !important;
}
.bg-05 {
  background: linear-gradient(60deg, #888888, #ffffff);
  height: 650px !important;
}
.bg-05:before {
  
}

.ss-box {
  text-align: center;
  /* padding-top: 2rem; */
  margin-bottom: 5rem;
}
.ss-box img {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .container .large-txt {
    font-size: 1.5rem;
  }
  .bg-01 {
    height: 410px !important;
  }
  .bg-02 {
    height: 770px !important;
  }
  .bg-03 {
    height: 600px !important;
  }
  .bg-04 {
    height: 900px !important;
  }
  .bg-05 {
    height: 900px !important;
  }
  .bg-04 .wrap {
    height: 80% !important;
  }
  .ss-box img {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {

}



/* add */
.btn_grad {
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 5% auto 5% auto;
  padding: .8em 1em;
  text-decoration: none;
  width: 100%;
  height: 130px;
  max-width: 800px;
  border-radius: 5px;
  background-image: linear-gradient(45deg, #03d800 0%, #03b300 100%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #2b9024;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  letter-spacing: 5px;
}
.btn_grad:active {
-webkit-transform: translateY(4px);
transform: translateY(4px);
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
border-bottom: none;
}
.btn_grad:before {
  display: block;
  position: absolute;
  left: -30%;
  top: -50%;
  content: "";
  width: 30px;
  height: 300px;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
  background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));
  background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,1),rgba(255,255,255,0) 100%);
  animation: shiny 3s infinite linear;
  -webkit-animation: shiny 3s infinite linear;
  -moz-animation: shiny 3s infinite linear;
}
.btn_grad:hover {
  opacity: 0.7;
}
@keyframes shiny {
  0% {
      left: -30%;
  }
  20% {
      left: 120%;
  }
  100% {
      left: 120%;
  }
}
@-webkit-keyframes shiny {
  0% {
      left: -30%;
  }
  20% {
      left: 120%;
  }
  100% {
      left: 120%;
  }
}
@-moz-keyframes shiny {
  0% {
      left: -30%;
  }
  20% {
      left: 120%;
  }
  100% {
      left: 120%;
  }
}

@media only screen and (max-width: 1024px) {
  
}

@media only screen and (max-width: 812px) {
  .btn_grad {
      line-height: 1.9;
      width: 90%;
      letter-spacing: 1px;
  }
}

@media only screen and (max-width: 480px) {
  
  .btn_grad {
      font-size: 1.4em;
      width: 92%;
      height: 75px;
      letter-spacing: 0;
      margin: 40px auto 40px;
      padding: .8em 0.5em;
      line-height: 2;
  }

}





/* ボタン */
.cv_btn_box {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.cv_btn_box p{
  width: 50%;
}
.cv_btn_box p:first-child {
  padding-right: 15px;
}
.cv_btn_box p:last-child {
  padding-left: 15px;
}


.cv__btn a {
cursor: pointer;
display: block;
position: relative;
background: #03b300;
width: 100%;
max-width: 800px;
height: 110px;
margin: 2em auto;
border-radius: 5px;
box-sizing: border-box;
color: #fff;
font-size: 2.0em;
font-weight: bold;
letter-spacing: .05em;
text-align: center;
line-height: 35px;
box-shadow: 0 6px 2px rgba(0, 0, 0, .3);
overflow: hidden;
  transition: all .16s;
  padding-top: 0.3rem;
}
.cv__btn a::after {
overflow: hidden;
position: absolute;
top: -180px;
left: 0;
background: #fff;
width: 30px;
height: 100%;
content: "";
opacity: 0;
transform: rotate(45deg);
animation: shine 3s ease-in-out infinite;
}
.cv__btn a:hover {
background: #009e5f;
box-shadow: none;
transform: translateY(4px);
}

.cv__btn a .sub_txt {
  font-size: 1.6rem;
}

.cv__btn.regi_btn a {
  background: #ff6c00;
}
.cv__btn.regi_btn a:hover {
background: #ff5100;
box-shadow: none;
transform: translateY(4px);
}


@keyframes shine {
0% {
  transform: scale(0) rotate(45deg);
  opacity: 0;
}
80% {
  transform: scale(0) rotate(45deg);
  opacity: 0.5;
}
81% {
  transform: scale(4) rotate(45deg);
  opacity: 1;
}
100% {
  transform: scale(50) rotate(45deg);
  opacity: 0;
}
}

@media (max-width: 1250px) {
  .cv_btn_box {
    width: 90%;
  }
  .cv__btn a {
      font-size: 1.8em;
  }
}
@media (max-width: 990px) {
  .cv_btn_box {
    width: 95%;
  }
  .cv__btn a .sub_txt {
      font-size: 1.4rem;
  }
  .cv__btn a {
      font-size: 1.4em;
  }
}
@media (max-width: 768px) {
.cv__btn a {
  height: 80px;
  margin: 1.8em auto 1em;
  padding: 0 8px;
  font-size: 1.7em;
  letter-spacing: 0;
  line-height: 27px;
}
.cv__btn a::after {
  top: -130px;
  width: 18px;
  }
  .cv_btn_box {
      display: block;
  }
  .cv_btn_box p{
      width: 100%;
  }
  .cv_btn_box p:first-child {
      padding-right: 0;
  }
  .cv_btn_box p:last-child {
      padding-left: 0;
  }
}
@media (max-width: 576px) {
  .cv__btn a {
      font-size: 1.5em;
  }
}
@media (max-width: 440px) {
  .cv__btn a {
      font-size: 1.4em;
  }
}
@media (max-width: 320px) {
  .cv__btn a {
      font-size: 1.2em;
  }
}