@charset "UTF-8";
/* ===================================================================

style style

=================================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 1.7;
  color: #222;
  background: #fff;
}

a {
  text-decoration: underline;
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #333;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

select, input, textarea, button {
  vertical-align: middle;
}

#wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1600px;
  color: #333;
  overflow-x: hidden;
}

p {
  font-size: 1.4rem;
  text-align: left;
}

header {
  text-align: center;
  margin: 0 auto;
}

#main {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
}

.circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: #f5e7ea;
  transform-origin: right 50%;
  z-index: 2;
}
.circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #f5e7ea;
  transform-origin: left 50%;
  z-index: 3;
}
.circle.on::before {
  animation: rotate-circle-left 1.8s ease-out forwards;
}
.circle.on::after {
  animation: rotate-circle-right 1.8s ease-in forwards;
}
.circle .circleInner {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  padding-top: calc(50% - 25px);
  box-sizing: border-box;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
}

@keyframes rotate-circle-right {
  0% {
    transform: rotate(0deg);
    background: #999;
  }
  50% {
    transform: rotate(180deg);
    background: #999;
  }
  50.01% {
    transform: rotate(360deg);
    background: #333;
  }
  100% {
    transform: rotate(360deg);
    background: #333;
  }
}
@keyframes rotate-circle-right1 {
  0% {
    transform: rotate(0deg);
    background: #f5e7ea;
  }
  50% {
    transform: rotate(180deg);
    background: #f5e7ea;
  }
  50.01% {
    transform: rotate(360deg);
    background: #c32444;
  }
  100% {
    transform: rotate(360deg);
    background: #c32444;
  }
}
@keyframes rotate-circle-right2 {
  0% {
    transform: rotate(0deg);
    background: #f5e7ea;
  }
  50% {
    transform: rotate(180deg);
    background: #f5e7ea;
  }
  50.01% {
    transform: rotate(360deg);
    background: #54c0d0;
  }
  100% {
    transform: rotate(360deg);
    background: #54c0d0;
  }
}
@keyframes rotate-circle-left {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(130deg);
  }
}
@keyframes rotate-circle-left1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(154.8deg);
  }
}
@keyframes rotate-circle-left2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(167.4deg);
  }
}
.sideBnr {
  position: fixed;
  z-index: 999;
  bottom: 30px;
  right: -296px;
  transition: .8s;
}
.sideBnr.on {
  right: -146px;
}
.sideBnr.on:hover {
  right: 0;
}
.sideBnr.on a {
  display: block;
}

h1 {
  background: url(../images/fv_bg.jpg) no-repeat top center;
  margin-bottom: 80px;
}
h1 .fvInner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
h1 .fvInner a {
  position: absolute;
  bottom: 0;
  left: 10px;
  transition: .8s;
  opacity: 0;
}
h1 .fvInner a:hover {
  opacity: 0.8;
}
h1 .fvInner.on a {
  opacity: 1;
}
h1 .fvInner.on a:hover {
  opacity: 0.6;
}

.box01 {
  max-width: 1000px;
  margin: 0 auto;
}
.box01 > div {
  opacity: 0;
}
.box01 .fl {
  width: 50%;
}
.box01 .fr {
  width: 50%;
}
.box01 .graph {
  width: 70%;
  margin: 0 auto;
}
.box01 .graph .circle {
  box-shadow: 3px 3px 19px 0px #aaa;
}
.box01 .graph .circle .circleInner {
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  padding-top: 22%;
  background: url(../images/bg07.png) no-repeat top center/cover;
}
.box01 .graph.graph01 .circle {
  background: #c12242;
}
.box01 .graph.graph01 .circle.on::before {
  animation: rotate-circle-left1 1.8s ease-out forwards;
}
.box01 .graph.graph01 .circle.on::after {
  animation: rotate-circle-right1 1.8s ease-in forwards;
}
.box01 .graph.graph02 .circle {
  background: #54c0d0;
}
.box01 .graph.graph02 .circle.on::before {
  animation: rotate-circle-left2 1.8s ease-out forwards;
}
.box01 .graph.graph02 .circle.on::after {
  animation: rotate-circle-right2 1.8s ease-in forwards;
}

.txt01 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.txt01 p {
  text-align: right;
}

.bg02 {
  background: url(../images/bg02.png) no-repeat top center;
  height: 820px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 100px;
  margin-bottom: 50px;
}

.baTitle {
  margin-bottom: 40px;
}

.ba {
  max-width: 1000px;
  margin: 0 auto 20px auto;
  min-height: 1px;
}
.ba:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.ba p {
  font-size: 1.4rem;
  text-align: right;
  padding-top: 10px;
  clear: both;
}
.ba div:first-child {
  position: relative;
  padding-bottom: 40px;
  opacity: 0;
  transition: 1s .2s;
  float: left;
}
.ba div:first-child:after {
  position: absolute;
  bottom: 0;
  top: 0;
  left: auto;
  right: -30px;
  display: block;
  width: 24px;
  height: 62px;
  margin: auto;
  content: '';
  background: url(../images/ba_arrow_red.png) no-repeat bottom center/100% auto;
  opacity: 0;
  transition: 1s .4s;
}
.ba.blue div:first-child:after {
  background: url(../images/ba_arrow_blue.png) no-repeat bottom center/100% auto;
}
.ba div:nth-child(2) {
  opacity: 0;
  transition: 1s .6s;
  float: right;
}
.ba.on div:first-child {
  opacity: 1;
}
.ba.on div:first-child:after {
  opacity: 1;
}
.ba.on div:nth-child(2) {
  opacity: 1;
}

.blueBg {
  background: #03a0b4;
  padding: 25px 0;
  margin-bottom: 90px;
}

.redBg {
  background: #be2040;
  padding: 25px 0;
  margin-bottom: 60px;
}

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

.txt02 {
  max-width: 1000px;
  margin: 0 auto;
}
.txt02 p {
  font-size: 2.2rem;
  text-align: left;
}

.list01 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 2% 0 2%;
  margin-bottom: 40px;
}
.list01 li {
  opacity: 0;
  margin: 0 9px;
}

.bg04 {
  background: url(../images/bg04.png) no-repeat bottom center;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}

.bg05 {
  position: relative;
  z-index: 0;
  margin: -132px auto 0 auto;
  background: url(../images/bg05.png) no-repeat top center;
  padding: 170px 0 0 0;
}

.box02 {
  padding-bottom: 30px;
  position: relative;
  max-width: 1014px;
  margin: 0 auto;
}
.box02 .magazine01 {
  float: right;
  padding-right: 112px;
  opacity: 0;
}
.box02 .magazine02 {
  position: absolute;
  top: 15px;
  left: 100px;
  opacity: 0;
}
.box02 .magazines {
  clear: both;
  padding-top: 80px;
  margin-bottom: 0px;
  opacity: 0;
  transition: padding-top .4s 1.3s,margin-bottom .4s 1.3s;
}
.box02 .magazines.on {
  padding-top: 60px;
  margin-bottom: 20px;
}

.uv {
  padding-bottom: 50px;
}
.uv .uvBox {
  width: 1000px;
  margin: 0 auto 40px auto;
}
.uv .uvBox .uvImg {
  position: relative;
}
.uv .uvBox .uvImg .uvTitle {
  position: absolute;
  top: 40px;
  left: 40px;
  opacity: 0;
  transition: .8s;
}
.uv .uvBox .uvImg.on .uvTitle {
  top: 0;
  opacity: 1;
}
.uv .uvBox .uvImg .moreBtn {
  cursor: pointer;
  position: absolute;
  bottom: 48px;
  right: 48px;
}
.uv .uvBox .uvTxt {
  padding: 40px;
  display: none;
}
.uv .uvBox .uvTxt p {
  margin-bottom: 20px;
  line-height: 2;
  font-size: 1.8rem;
}

.bg06 {
  padding: 110px 0 50px 0;
  background: url(../images/bg06.jpg) repeat top center;
  margin-bottom: 40px;
}

.box03 {
  width: 1000px;
  margin: 0 auto;
}
.box03 .graph {
  width: 622px;
  margin: 0 auto;
}
.box03 .graph .circle {
  box-shadow: 3px 3px 19px 0px #aaa;
}
.box03 .graph .circle .circleInner {
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  padding-top: 15%;
  background: url(../images/bg07.png) no-repeat center center/cover;
}
.box03 .graph .circle .circleInner img {
  opacity: 0;
  transition: opacity 2s .6s;
}
.box03 .graph.graph01 .circle {
  background: #c12242;
}
.box03 .graph.graph01 .circle.on::before {
  animation: rotate-circle-left1 1.8s ease-out forwards;
}
.box03 .graph.graph01 .circle.on::after {
  animation: rotate-circle-right1 1.8s ease-in forwards;
}
.box03 .graph.graph01 .circle.on .circleInner img {
  opacity: 1;
}
.box03 .graph.graph02 .circle {
  background: #54c0d0;
}
.box03 .graph.graph02 .circle.on::before {
  animation: rotate-circle-left2 1.8s ease-out forwards;
}
.box03 .graph.graph02 .circle.on::after {
  animation: rotate-circle-right2 1.8s ease-in forwards;
}
.box03 .graph.graph02 .circle.on .circleInner img {
  opacity: 1;
}
.box03 .graphTitle {
  margin: 0 auto 50px auto;
}
.box03 .graphBox {
  position: relative;
  padding-bottom: 50px;
}
.box03 .graphBox ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.box03 .graphBox ul li {
  opacity: 0;
  position: absolute;
}
.box03 .graphBox ul li.baloon01 {
  top: -40px;
  right: 0;
}
.box03 .graphBox ul li.baloon02 {
  bottom: -20px;
  right: -40px;
}
.box03 .graphBox ul li.baloon03 {
  top: -20px;
  left: -30px;
}
.box03 .graphBox ul li.baloon04 {
  top: -50px;
  right: 0;
}
.box03 .graphBox ul li.baloon05 {
  bottom: -10px;
  right: -10px;
}
.box03 .graphBox ul li.baloon06 {
  top: -10px;
  left: -20px;
}
.box03 p.caution {
  text-align: right;
  font-size: 1.2rem;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 20px;
}

.bg08 {
  background: url(../images/bg08.png) repeat-x top center;
}

.bg09 {
  background: url(../images/bg09.png) no-repeat top center;
  height: 332px;
  margin-bottom: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.bg09 li {
  margin: 0 60px;
}

.bg10 {
  background: url(../images/bg10.png) no-repeat bottom center;
  padding: 0 0 80px 0;
  position: relative;
  z-index: 2;
}

.bg11 {
  background: url(../images/bg11.png) no-repeat top center;
  margin: -87px auto 0 auto;
  padding-top: 100px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.bg11 .box {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
.bg11 .pos0 {
  position: relative;
  z-index: 1;
}
.bg11 .pos1 {
  position: absolute;
  top: 150px;
  left: 130px;
  z-index: 2;
}
.bg11 .pos2 {
  position: relative;
  z-index: 0;
  margin: -60px auto 80px auto;
}

.bg12 {
  background: url(../images/bg12.png) no-repeat top center;
  height: 109px;
  box-sizing: border-box;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.bg13 {
  background: url(../images/bg13.png) no-repeat top center;
  position: relative;
  z-index: 1;
  margin: -35px auto 0 auto;
  padding-bottom: 66px;
}
.bg13 .box {
  margin: 0 auto;
  width: 1000px;
}
.bg13 .box .caution {
  padding-left: 20px;
  padding-bottom: 50px;
}
.bg13 .box ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 40px 0 20px 0;
}

.bg14 {
  background: url(../images/bg14.png) no-repeat top center;
  position: relative;
  z-index: 0;
  margin: -128px auto 0 auto;
  padding: 200px 0 100px 0;
}
.bg14 .howto {
  position: relative;
  height: 1250px;
  width: 1045px;
  margin: 0 auto 40px auto;
}
.bg14 .howto li {
  opacity: 0;
  position: absolute;
}
.bg14 .howto li.howto01 {
  top: 0;
  left: -20px;
}
.bg14 .howto li.howto02 {
  top: 390px;
  right: -30px;
}
.bg14 .howto li.howto03 {
  top: 790px;
  left: 0px;
}

.bg15 {
  background: url(../images/bg15.png) no-repeat top center;
  padding-top: 30px;
  margin-top: 40px;
  height: 155px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.bg16 {
  background: url(../images/bg16.jpg) no-repeat top center;
  position: relative;
  z-index: 1;
  margin: -35px auto 80px auto;
  height: 1122px;
}

.bg17 {
  background: url(../images/bg17.png) no-repeat top center;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.bg17 .list02 {
  position: relative;
  height: 855px;
  width: 1000px;
  margin: 0 auto 50px auto;
}
.bg17 .list02 .txt {
  position: absolute;
  top: 0;
  left: 0;
}
.bg17 .list02 .img01 {
  position: absolute;
  top: 70px;
  left: 126px;
  opacity: 0;
}
.bg17 .list02 .img02 {
  position: absolute;
  top: 0;
  right: 126px;
  opacity: 0;
}
.bg17 .list02 .utxt {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.bg18 {
  background: url(../images/bg18.png) no-repeat top center;
  padding: 170px 0 140px 0;
  position: relative;
  z-index: 0;
  margin: -116px 0 0 0;
}

.bg19 {
  background: url(../images/bg19.png) no-repeat bottom center;
  padding: 0 0 90px 0;
  position: relative;
  z-index: 2;
}

.bg20 {
  background: url(../images/bg20.jpg) no-repeat top center;
  position: relative;
  z-index: 1;
  margin: -130px auto 0 auto;
}

.point p {
  font-size: 2.2rem;
  width: 490px;
  padding: 20px 40px;
  box-sizing: border-box;
}
.point .point01 {
  background: url(../images/bg21.jpg) no-repeat top center;
  height: 786px;
}
.point .point01 > div {
  width: 1000px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.point .point01 > div p {
  background: url(../images/bg25.png);
  position: absolute;
  bottom: 150px;
  right: 0px;
}
.point .point02 {
  background: url(../images/bg22.jpg) no-repeat top center;
  height: 786px;
}
.point .point02 > div {
  width: 1000px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.point .point02 > div p {
  background: url(../images/bg25.png);
  position: absolute;
  bottom: 150px;
  left: 0px;
}
.point .point03 {
  background: url(../images/bg23.jpg) no-repeat top center;
  height: 866px;
}
.point .point03 > div {
  width: 1000px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.point .point03 > div p {
  background: url(../images/bg25.png);
  position: absolute;
  bottom: 210px;
  right: 0px;
}

.bg24 {
  background: url(../images/bg24.jpg) no-repeat top center;
}

.faq {
  width: 1000px;
  margin: 0 auto 60px auto;
}
.faq dl {
  text-align: left;
}
.faq dl dt {
  background: #f2f2f2;
  box-shadow: 2px 2px 1px 0px #dbdbdb;
  font-family: "游明朝", YuMincho, Yu Mincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.6rem;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 30px 20px 30px;
}
.faq dl dt img {
  margin-bottom: 2px;
  margin-right: 10px;
}
.faq dl dt:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68px;
  background: url(../images/faq_shape.png) no-repeat bottom right/100% auto;
  height: 100%;
}
.faq dl dt:after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  background: url(../images/faq_trigger.png) no-repeat bottom right/100% auto;
  transition: .4s;
}
.faq dl dt.active:after {
  transform: rotate(45deg);
}
.faq dl dd {
  margin-bottom: 10px;
  display: none;
  padding: 40px;
}
.faq dl dd p {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.components {
  padding: 20px 0 0 0;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}
.components dt {
  font-size: 1.8rem;
  border: 1px solid #999;
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  letter-spacing: 0.1rem;
}
.components dd {
  padding-top: 10px;
  display: none;
}

.cv {
  max-width: 1000px;
  margin: 0 auto 80px auto;
}
.cv .bg {
  background: url(../images/cv_bg.png) repeat-y top center;
}
.cv .payback {
  padding: 20px 40px 30px 0;
  font-size: 1.6rem;
  text-align: right;
}
.cv .cvBtn {
  background: url(../images/cv_btn_bg.jpg) repeat-y top center/100% auto;
  padding: 20px 40px 0 40px;
}
.cv .caution {
  padding: 30px;
}
.cv .caution p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.popup {
  display: none;
}

.modaal-content-container {
  padding: 15px;
}

.popup01 p {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.popup01 ul {
  margin-bottom: 20px;
}
.popup01 ul li {
  font-size: 1.6rem;
  text-indent: -1em;
  padding-left: 1em;
}

.sml {
  font-size: 80%;
}

.ybg {
  background: #fff363;
  font-weight: bold;
  color: #d33958;
}

.blue0 {
  color: #43b8e9;
}

.blue02 {
  color: #2e5896;
}

.red {
  color: #ff4141;
}

.big {
  font-size: 2.4rem;
}

.middle {
  font-size: 1.8rem;
}

.pink {
  color: #eb6877;
}

footer {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  background: #fff;
}

footer ul li {
  font-size: 1.6rem;
  margin: 0 10px;
}

footer ul {
  margin-top: 50px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

footer ul li a {
  font-size: 1.6rem;
  text-decoration: none;
}

.copy {
  display: block;
  background: #039db1;
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 1.4rem;
  padding: 10px 0;
}

.uvImg .moreBtn {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 223px;
  transition: .25s linear;
  -webkit-transition: .25s linear;
  -moz-transition: .25s linear;
}
.uvImg .moreBtn:before {
  display: block;
  position: absolute;
  z-index: 3;
  opacity: 0.7;
  left: -30%;
  top: -30%;
  content: "";
  width: 50px;
  height: 140%;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 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%, white), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff white, rgba(255, 255, 255, 0) 100%);
  animation: shiny 3s infinite linear;
  -webkit-animation: shiny 3s infinite linear;
  -moz-animation: shiny 3s infinite linear;
}
.uvImg .moreBtn:hover {
  opacity: 0.7;
}

.cv .btn a,
.cvBtn a {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  transition: .25s linear;
  -webkit-transition: .25s linear;
  -moz-transition: .25s linear;
}
.cv .btn a:before,
.cvBtn a:before {
  display: block;
  position: absolute;
  z-index: 3;
  opacity: 0.7;
  left: -30%;
  top: -20%;
  content: "";
  width: 100px;
  height: 140%;
  transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  background-image: linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 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%, white), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff white, rgba(255, 255, 255, 0) 100%);
  animation: shiny 3s infinite linear;
  -webkit-animation: shiny 3s infinite linear;
  -moz-animation: shiny 3s infinite linear;
}
.cv .btn a:hover,
.cvBtn a: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%;
  }
}
/*--------------------

      popup

--------------------*/
/* ポップアップ css */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  background: #efefef;
  width: 96%;
  margin: 0 2%;
  max-height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  z-index: 101;
  font-size: 1.2rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

.popup_inner {
  padding: 20px;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 100;
}

/* ポップアップ css */
.popup h4 {
  background: #2e5795;
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 7px 0;
  margin: 0 0 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

.popup_inner h5 {
  border-left: 3px solid #2e5795;
  padding: 10px 0 10px 20px;
  margin-bottom: 10px;
  background: #fff;
  font-size: 2.0rem;
}

.popup_inner p {
  font-size: 1.6rem;
}

.popup_inner dl, .box {
  overflow: auto;
}

.popup_inner dl {
  border-bottom: 1px solid #CCC;
  background: #ddd;
  font-size: 0;
}

.popup_inner dl dt {
  display: inline-block;
  width: 34%;
  padding: 3%;
  vertical-align: top;
  font-size: 1.4rem;
  clear: both;
  border-top: 1px solid #CCC;
  font-weight: bold;
}

.popup_inner dl dd {
  margin: 0;
  display: inline-block;
  width: 54%;
  padding: 3%;
  border-left: 0;
  border-top: 1px solid #CCC;
  background: #efefef;
  font-size: 1.4rem;
}

.popup_inner {
  padding: 3%;
}
.popup_inner table {
  margin: 10px 0;
  background: #fff;
}
.popup_inner td,
.popup_inner th {
  padding: 10px;
}
.popup_inner th {
  background: #333;
  color: #2e5795;
}
.popup_inner td {
  background: #fff;
  padding: 10px 20px;
}
.popup_inner ol li {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.close {
  display: block;
  text-align: center;
  font-weight: bold;
}
.close a {
  display: inline-block;
  border: 2px solid #fff;
  background: #2e5795;
  color: #fff;
  padding: 5px 10px;
}

#swipebox-bottom-bar {
  display: none;
}

.anim {
  -webkit-animation: anim 3s ease-in infinite;
  animation: anim 3s ease-in infinite;
}

@-webkit-keyframes anim {
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1, 0.9) translate(0px, 20px);
    transform: scale(1.1, 0.9) translate(0px, 20px);
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  85% {
    -webkit-transform: scale(0.9, 1.2) translate(0px, -7px);
    transform: scale(0.9, 1.2) translate(0px, -7px);
  }
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    -webkit-transform: scale(0.95, 1.1) translate(0px, -3px);
    transform: scale(0.95, 1.1) translate(0px, -3px);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes anim {
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1, 0.9) translate(0px, 20px);
    transform: scale(1.1, 0.9) translate(0px, 20px);
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  85% {
    -webkit-transform: scale(0.9, 1.2) translate(0px, -7px);
    transform: scale(0.9, 1.2) translate(0px, -7px);
  }
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    -webkit-transform: scale(0.95, 1.1) translate(0px, -3px);
    transform: scale(0.95, 1.1) translate(0px, -3px);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@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%;
  }
}
