@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tfoot, thead, th, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #00449a;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

ol li, ul li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  color: #333;
  -webkit-text-size-adjust: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.2vw;
  }
}

section {
  padding: 70px 0;
}

section .s_hdr {
  display: flex;
  width: 100%;
  align-items: center;
}

section .inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 50px;
}

section .inner:after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 768px) {
  section {
    padding: 8% 0;
  }
  section .inner {
    padding: 0 5%;
  }
  section > .inner > figure:first-child{
margin-bottom: 1.5em;
  }
}

figure {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 0;
}

figure img {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
}

figure:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  figure {
    margin-bottom: 3%;
  }
}

p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  line-height: 1.65em;
}

p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  p {
    /*font-size: 3.7vw; 14px*/
    font-size: 4.2vw;
    /*16px*/
    /*font-size: 4.8vw; 18px*/
    /*font-size: 5.3vw; 20px*/
  }
}

.box_video {
  position: relative;
  width: 100%;
  height: 56.25%;
  padding: 56.25% 0 0 0;
  text-align: center;
}

.box_video .video_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  margin: 0 auto;
}

.box_video .video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ripple {
  position: relative;
  display: block;
}

.ripple img {
  max-width: 100%;
  margin: 0 auto;
}

.ripple span {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 90%;
  height: 100%;
  margin: auto;
  -webkit-animation-name: rippleAnimation;
  animation-name: rippleAnimation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 100px;
  background-color: #fff072;
  box-shadow: 0 0 5px white;
}

@media screen and (max-width: 768px) {
  span {
    width: 100%;
  }
}

@-webkit-keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: .5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}

@keyframes rippleAnimation {
  0% {
    transform: scale(1, 1);
    opacity: .5;
  }
  100% {
    transform: scale(1.1, 1.1);
    opacity: 0;
  }
}

.ripple2 {
  position: relative;
  display: block;
}

.ripple2 img {
  max-width: 100%;
  margin: 0 auto;
}

.ripple2 span.clr_1, .ripple2 span.clr_2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 70px;
  height: 70px;
  margin: auto;
  -webkit-animation-name: rippleAnimation2;
  animation-name: rippleAnimation2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 100%;
  box-shadow: 0 0 45px 1px #ff004a inset;
}

.ripple2 span.clr_2 {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@media screen and (max-width: 768px) {
  .ripple2 span.clr_1, .ripple2 span.clr_2 {
    width: 30px;
    height: 30px;
  }
}

@-webkit-keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

@keyframes rippleAnimation2 {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  80% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
  100% {
    transform: scale(4.5, 4.5);
    opacity: 0;
  }
}

.bounce {
  position: relative;
}

.bounce::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 50px;
  margin: 0 auto auto;
  content: '';
  background: url(../img/arw_1.png) no-repeat center top;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 768px) {
  .bounce::after {
    width: 40px;
    height: 25px;
    background-size: cover;
  }
}

.faq {
  background-color: #fff;
  padding: 4%;
  line-height: 1.65em;
  margin-top: 5%;
  font-size: 18px;
}

.faq dt {
  font-weight: bold;
  padding: .3em 0 0 3em;
  background: url(../img/icon_q.png) no-repeat left top;
  margin-bottom: 2em;
  min-height: 62px;
  border-bottom: #ccc dashed 1px;
}

.faq dd {
  padding: .3em 0 0 3em;
  background: url(../img/icon_a.png) no-repeat left top;
  margin-bottom: 2em;
  min-height: 42px;
}

.faq dd:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .faq {
    font-size: 4.2vw;
  }
  .faq dt {
    background-size: 35px auto;
    background-position: left 7px;
    padding: .8em 0 .5em 3em;
    margin-bottom: 1.3em;
  }
  .faq dd {
    background-size: 35px auto;
  }
}

.hand {
  position: relative;
}

.hand::after {
  position: absolute;
  display: block;
  content: '';
  width: 132px;
  height: 117px;
  background: url(../img/hand.png) no-repeat;
  top: 0;
  right: 0;
  bottom: -50px;
  left: 0;
  margin: auto 0 0 auto;
  -webkit-animation: shakeY;
  animation: shakeY;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media screen and (max-width: 768px) {
  .hand::after {
    width: 45px;
    height: 42px;
    background-size: 100% auto;
    bottom: -20px;
  }
}

.Fade-In {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.Fade-In.Fade-In-2 {
  transition-delay: 0.2s;
}

.Fade-In.Fade-In-3 {
  transition-delay: 0.4s;
}

.Fade-In.Fade-In-4 {
  transition-delay: 0.6s;
}

.Fade-In-Down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s;
}

.Fade-In-Down.Fade-In-Down-2 {
  transition-delay: 0.2s;
}

.Fade-In-Down.Fade-In-Down-3 {
  transition-delay: 0.4s;
}

.Fade-In-Down.Fade-In-Down-4 {
  transition-delay: 0.6s;
}

.Fade-In-Left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 1s;
}

.Fade-In-Left.Fade-In-Left-2 {
  transition-delay: 0.2s;
}

.Fade-In-Left.Fade-In-Left-3 {
  transition-delay: 0.4s;
}

.Fade-In-Left.Fade-In-Left-4 {
  transition-delay: 0.6s;
}

.Fade-In-Right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
}

.Fade-In-Right.Fade-In-Right-2 {
  transition-delay: 0.2s;
}

.Fade-In-Right.Fade-In-Right-3 {
  transition-delay: 0.4s;
}

.Fade-In-Right.Fade-In-Right-4 {
  transition-delay: 0.6s;
}

.t_1 {
  color: #e00;
}

.t_2 {
  color: #090;
}

.t_3 {
  color: #00e;
}

.t_4 {
  color: #dd0;
}

.t_5 {
  color: #d0d;
}

.t_1_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_2_b {
  padding: .1em;
  color: #000;
  background-color: #ff0;
}

.t_3_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_4_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_5_b {
  padding: .1em;
  color: #c00;
  background-color: #ff0;
}

.t_lrg {
  font-size: 130%;
}

.t_stg {
  font-weight: bold;
}

.t_ul {
  text-decoration: underline;
}

.t_mkr {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.t_c {
  text-align: center;
}

.t_r {
  text-align: right;
}

.t_l {
  text-align: left;
}

.f_l {
  float: left;
  margin: 0 1em 0 0;
  width: auto;
}

.f_r {
  float: right;
  margin: 0 0 0 1em;
  width: auto;
}

@media screen and (max-width: 768px) {
  .f_l, .f_r {
    float: none;
    margin: 0 auto 1em;
    width: 90%;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mb210 {
  margin-bottom: 210px !important;
}

.mb220 {
  margin-bottom: 220px !important;
}

.mb230 {
  margin-bottom: 230px !important;
}

.mb240 {
  margin-bottom: 240px !important;
}

.mb250 {
  margin-bottom: 250px !important;
}

.mb260 {
  margin-bottom: 260px !important;
}

.mb270 {
  margin-bottom: 270px !important;
}

.mb280 {
  margin-bottom: 280px !important;
}

.mb290 {
  margin-bottom: 290px !important;
}

.mb300 {
  margin-bottom: 300px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

.pb210 {
  padding-bottom: 210px !important;
}

.pb220 {
  padding-bottom: 220px !important;
}

.pb230 {
  padding-bottom: 230px !important;
}

.pb240 {
  padding-bottom: 240px !important;
}

.pb250 {
  padding-bottom: 250px !important;
}

.pb260 {
  padding-bottom: 260px !important;
}

.pb270 {
  padding-bottom: 270px !important;
}

.pb280 {
  padding-bottom: 280px !important;
}

.pb290 {
  padding-bottom: 290px !important;
}

.pb300 {
  padding-bottom: 300px !important;
}

.w2 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w3 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w4 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w5 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w6 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w7 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w8 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w9 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w33 {
  width: 33%;
}

.f_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.f_box.gtr .w2 {
  width: 18%;
}

.f_box.gtr .w3 {
  width: 28%;
}

.f_box.gtr .w4 {
  width: 38%;
}

.f_box.gtr .w5 {
  width: 48%;
}

.f_box.gtr .w6 {
  width: 58%;
}

.f_box.gtr .w7 {
  width: 68%;
}

.f_box.gtr .w8 {
  width: 78%;
}

.f_box.gtr .w9 {
  width: 88%;
}

.f_box.gtr .w25 {
  width: 23%;
}

.f_box.gtr .w35 {
  width: 33%;
}

.f_box.gtr .w45 {
  width: 43%;
}

.f_box.gtr .w55 {
  width: 53%;
}

.f_box.gtr .w65 {
  width: 63%;
}

.f_box.gtr .w75 {
  width: 73%;
}

.f_box.gtr .w85 {
  width: 83%;
}

.f_box.gtr .w95 {
  width: 93%;
}

.f_box.gtr .w33 {
  width: 31%;
}

.f_box.flw {
  flex-flow: wrap;
}

.f_box.r_rvs {
  flex-flow: row-reverse;
}

.f_box.w_rvs {
  flex-flow: wrap-reverse;
}

@media screen and (max-width: 767px) {
  .f_box {
    flex-flow: column;
  }
  .f_box.gtr .w2, .f_box.gtr .w3, .f_box.gtr .w4, .f_box.gtr .w5, .f_box.gtr .w6, .f_box.gtr .w7, .f_box.gtr .w8, .f_box.gtr .w9, .f_box.gtr .w25, .f_box.gtr .w35, .f_box.gtr .w45, .f_box.gtr .w55, .f_box.gtr .w65, .f_box.gtr .w75, .f_box.gtr .w85, .f_box.gtr .w95, .f_box.gtr .w33 {
    width: 100%;
    margin-bottom: 30px;
  }
  .f_box.flw {
    flex-flow: wrap;
  }
  .f_box.r_rvs {
    flex-flow: column;
  }
  .f_box.w_rvs {
    flex-flow: column;
  }
  .f_box.sp_2 {
    justify-content: space-between;
    flex-flow: wrap;
  }
  .f_box.sp_2 .w2, .f_box.sp_2 .w3, .f_box.sp_2 .w4, .f_box.sp_2 .w5, .f_box.sp_2 .w6, .f_box.sp_2 .w7, .f_box.sp_2 .w8, .f_box.sp_2 .w9, .f_box.sp_2 .w25, .f_box.sp_2 .w35, .f_box.sp_2 .w45, .f_box.sp_2 .w55, .f_box.sp_2 .w65, .f_box.sp_2 .w75, .f_box.sp_2 .w85, .f_box.sp_2 .w95, .f_box.sp_2 .w33 {
    width: 48%;
    margin-bottom: 20px;
  }
}

footer {
  text-align: center;
  background-color: #c00;
  padding: 1em;
  line-height: 1.65em;
}

/* 既存流用ここから */
.box_2 {
  box-shadow: 0 0 8px #999;
  background-color: #fff;
  padding: 4%;
  max-width: 930px;
  margin: 0 auto;
}

.box_2 figure.ttl {
  margin-bottom: 0;
}

.box_2 .f_box {
  padding: 0;
  margin-bottom: 1em;
}

.box_2 .f_box:last-of-type {
  border: none;
  padding-bottom: 0;
}

.box_2 .inn {
  background-color: #eee4d6;
  padding: 4%;
}

@media screen and (max-width: 767px) {
  .box_2 .f_box {
    padding: 1em 0 0;
    margin-bottom: 1em;
  }
  .box_2 .f_r {
    float: right;
    width: auto;
    margin: 0 0 1em 1em;
    width: 40%;
  }
}

.ex_sec_4 {
  padding-top: 0;
  background: url(../img/se/bg_04.jpg) repeat-y center top;
}

.ex_sec_4 .s_hdr {
  background: url(../img/se/s_hdr_2.jpg) no-repeat center top;
  height: 420px;
  margin-bottom: 50px;
  padding-bottom: 5em;
}

@media screen and (max-width: 768px) {
  .ex_sec_4 .s_hdr {
    height: 200px;
    background-size: auto 100%;
    padding: 0 3% 4em;
  }
}

.box_3 {
  background-color: #00bbaa;
  padding: 4%;
  margin: 10% auto;
  box-shadow: 0 0 8px #ccc;
}

.box_3 figure.ttl img {
  margin-top: -100px;
}

.box_3 .inn {
  background-color: #fff;
  padding: 4%;
  margin-bottom: 5%;
}

.box_3 .inn .f_box {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: #00bbaa dotted 2px;
}

.box_3 .inn .f_box .txt figure {
  text-align: left;
  margin-bottom: 1em;
}

.box_3 .inn .f_box .txt p {
  line-height: 1.2em;
  margin-bottom: 0;
  font-weight: 700;
}

.box_3 .inn .f_box .txt p.txt_1 {
  font-size: 24px;
}

.box_3 .inn .f_box .txt p.txt_2 {
  font-size: 51px;
}

.box_3 .inn .f_box .txt p.txt_2 span {
  font-size: 31px;
}

.box_3 .inn > p {
  font-size: 18px;
}

.box_3.pro {
  background: url(../img/se/bg_02.jpg) repeat-y center;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .box_3 {
    margin-top: 30%;
  }
  .box_3 figure.ttl img {
    margin-top: -14vw;
  }
  .box_3 .inn .f_box .w5.txt div{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
  }
  .box_3 .inn .f_box .w5 {
    width: 100%;
    margin-bottom: 0;
  }
  /* .box_3 .inn .f_box .w5.txt {
    width: 45%;
  } */
  .box_3 .inn .f_box .w5.txt figure img {
    width: 20vw;
  }
  .box_3 .inn .f_box .w5.txt p.txt_1 {
    font-size: 4vw;
  }
  .box_3 .inn .f_box .w5.txt p.txt_2 {
    /* display: flex;
    align-items: flex-end; */
    display:inline-block;
    font-size: 6.4vw;
    margin-bottom: 0;
  }
  .box_3 .inn .f_box .w5.txt p.txt_2 span {
    font-size: 4.2vw;
  }
  .box_3 .inn > p {
    font-size: 4.2vw;
  }
}

.ex_sec_5 {
  padding-top: 0;
}

.ex_sec_5 .s_hdr {
  background: url(../img/se/s_hdr_3.jpg) no-repeat center top;
  height: 337px;
  margin-bottom: 2em;
}

.ex_sec_5 .s_hdr figure {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .ex_sec_5 .s_hdr {
    height: 160px;
    padding: 3%;
    background-size: auto 100%;
  }
}

.ex_sec_lp3 {
  background-color: #695b47;
}

.ex_sec_lp3 .inner {
  overflow: visible;
}

.ex_sec_lp3 ul {
  display: block;
  max-width: 830px;
  margin: 0 auto;
}

.ex_sec_lp3 ul li {
  padding: .5em .4em .5em 2em;
  background: url(../img/lp/icon_chk_1.png) no-repeat 3px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4em;
  border-bottom: #fff dashed 1px;
  color: #fff;
}

.ex_sec_lp3 ul li:last-child {
  border-bottom: none;
}

.ex_sec_lp3 ul li span {
  font-weight: 900;
}

.ex_sec_lp3 figure:last-of-type {
  margin-bottom: 0;
}

.ex_sec_lp3 figure:last-of-type img {
  margin-bottom: -110px;
}

@media screen and (max-width: 767px) {
  .ex_sec_lp3 ul li {
    font-size: 4.2vw;
    background-size: 1.3em auto;
    font-weight: 700;
  }
  .ex_sec_lp3 figure:last-of-type img {
    margin-bottom: -45px;
    width: 50vw;
  }
}

.ex_sec_lp4 {
  padding: 6% 0;
}

@media screen and (max-width: 767px) {
  .ex_sec_lp4 {
    padding: 10% 0;
  }
}

.ex_sec_6 {
  background: #b6062b url(../img/se/bg_05.jpg) no-repeat center top;
}

@media screen and (max-width: 768px) {
  .ex_sec_6 {
    background-size: 140% auto;
  }
}

.box_4 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
  background-color: #e5e5e5;
  padding: 4%;
  border-radius: 10px;
}

.box_4 .inn {
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 50px;
  padding: 0;
}

.box_4 .inn .f_box {
  max-width: 100%;
  width: 100%;
}

.box_4 .inn .f_box figure {
  width: 12%;
  height: auto;
  background-color: #e31d5f;
  display: flex;
  align-items: center;
  margin: 0;
}

.box_4 .inn .f_box h3 {
  padding: 1em .5em;
  word-break: break-all;
  background-color: #eeecd9;
  width: 92%;
  font-size: 26px;
  line-height: 1.4em;
}

.box_4 .inn .f_box h3 span {
  color: #fff100;
}

.box_4 .inn .txt {
  padding-bottom: 25px;
}

.box_4 .inn .txt p {
  font-size: 25px;
  padding: 1em 1em 0;
  line-height: 1.3em;
  margin-bottom: 0;
}

.box_4 .t_c {
  font-size: 23px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .box_4 {
    margin: 0 auto 10vw;
  }
  .box_4 .inn {
    margin-bottom: 10vw;
  }
  .box_4 .inn .f_box {
    padding-top: 0;
    flex-flow: row;
  }
  .box_4 .inn .f_box figure {
    width: 12%;
  }
  .box_4 .inn .f_box figure img {
    width: 60%;
  }
  .box_4 .inn .f_box h3 {
    font-size: 5vw;
  }
  .box_4 .inn .txt {
    padding-bottom: 5vw;
  }
  .box_4 .inn .txt figure {
    width: 40%;
    float: right;
  }
  .box_4 .inn .txt p {
    font-size: 4.2vw;
  }
  .box_4 .t_c {
    font-size: 4.7vw;
  }
  .box_4 .t_c br {
    display: none;
  }
}

.clr {
  margin-bottom: 2em;
}

.clr::after {
  content: "";
  display: block;
  clear: both;
}

/* 既存流用ここまで */
.sec_1 {
  background: url(../img/bg_01_pc.jpg) no-repeat center bottom;
  padding: 0 0 28px;
}
.sec_1 .countdown{
  font-size: .9em;
}
.sec_1 .countdown span{
background: #fff;
color: #000;
font-size: 145%;
display: inline-block;
width: auto;
font-weight: 800;
}

.sec_1 > .inner{
  padding: 0 31px;
}
.sec_1 > .inner figure img{
  margin-left: 0;
}

.sec_1 .s_hdr.s_1 {
  background: #e31d5f;
  height: 80px;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.sec_1 .s_hdr.s_2 {
  background: #000;
  /* background: linear-gradient(120deg, #a66223 0%, #ddad02 50%, #ab6927 100%); */
  height: 140px;
  margin-bottom: 1%;
}

.sec_1 .s_hdr.s_2 p {
  font-size: 32px;
  /* font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
  color: #fff;
  font-weight: 700;
}

.sec_1 .slider div img {
  max-width: 100%;
}
.sec_1 .s_hdr.s_2 .f_box {
  align-items: center;
}
@media screen and (max-width: 1037px) {
  .sec_1 {
    background-size: 203%;
    padding-bottom: 3%;
  }
  section.sec_1 > .inner > figure:first-child{
    margin-bottom: 0;
  }
  .sec_1 .s_hdr.s_2 p {
    font-size: 3.3vw;
    font-weight: 700;
    }
  }
@media screen and (max-width: 768px) {
  .sec_1 {
    background: url(../img/bg_01_sp.jpg) no-repeat center bottom;
    background-size: 100% auto;
  }
  .sec_1 > .inner{
    padding: 0 2%;
      }
  .sec_1 > .inner{
padding: 0 2%;
  }
  .sec_1 .s_hdr.s_1 {
    font-size: 4.7vw;
    height: 10vw;
  }
  .sec_1 .s_hdr.s_2 {
    height: 24vw;
  }
  .sec_1 .s_hdr.s_2 .f_box {
    align-items: center;
    flex-flow: row;
  }
  .sec_1 .s_hdr.s_2 .f_box .w8 {
    width: 70%;
  }
  .sec_1 .s_hdr.s_2 .f_box .w2 {
    width: 41%;
  }
  .sec_1 .s_hdr.s_2 p {
    font-size: 4.2vw;
    line-height: 1.4em;
    font-weight: 700;
  }
}

.sec_2 {
  padding: 0;
}

.sec_2 .s_hdr {
  background: url(../img/s_hdr_2.png) no-repeat center top;
  height: 224px;
}

.sec_2 .slider {
  display: none;
}

.sec_2 .slider.slick-initialized {
  display: block;
}

.sec_2 .slider div img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .sec_2 .s_hdr {
    height: 40vw;
    padding: 0 5%;
  }
}

.sec_3 {
  padding: 2% 0;
  background: url(../img/bg_02.jpg) no-repeat center top;
}


@media screen and (max-width: 768px) {
  .sec_3 {
    background: url(../img/bg_02_sp.jpg) no-repeat center -4vw;
    background-size: 100% auto;
    padding: 3% 0 3%;
  }
  .sec_3 > .inner{
    padding: 0 2%;
      }
}

.sec_4 {
  background: url(../img/bg_03.jpg) no-repeat center top;
  background-attachment: fixed;
}

.sec_4 .ttl {
  margin-bottom: 8%;
}

@media screen and (max-width: 768px) {
  .sec_4 {
    background-attachment: inherit;
    background-repeat: repeat-y;
    background-size: 250% auto;
  }

  .sec_4 .f_r {
    float: right;
    width: 45vw;
  }
}

ul.chk_1 {
  margin-bottom: 2%;
}

ul.chk_1 li {
  font-size: 18px;
  line-height: 1.65em;
  padding: .5em 0 .5em 2em;
  background: url(../img/icon_chk.png) no-repeat left 0.7em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  ul.chk_1 li {
    font-size: 4.7vw;
  }
}

.sec_5 {
  background: #1b1b1b url(../img/bg_04.jpg) no-repeat center top;
  background-attachment: fixed;
}

.sec_5 .ttl {
  margin-bottom: 8%;
}

@media screen and (max-width: 768px) {
  .sec_5 {
    background-attachment: inherit;
    background-size: 100% auto;
  }
}

.box_b {
  box-shadow: 0 0 8px #999;
  background: url(../img/bg_12.jpg) no-repeat center top;
  background-size: cover;
  padding: 4%;
  max-width: 930px;
  margin: 0 auto;
}

.box_b .inn {
  position: relative;
  margin-bottom: 14px;
}

.box_b .inn::before {
  display: block;
  content: '';
  position: absolute;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: #a66223;
  background: linear-gradient(120deg, #a66223 0%, #ddad02 50%, #ab6927 100%);
  top: -4px;
  right: 0;
  bottom: 0;
  left: -4px;
  margin: 0 auto auto 0;
  z-index: 1;
}

.box_b .inn::after {
  display: block;
  content: '';
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background-color: #d71b54;
  top: -3px;
  right: 0;
  bottom: 0;
  left: -3px;
  margin: 0 auto auto 0;
  z-index: 2;
}

.box_b .inn .txt {
  position: relative;
  background: #f7efd9;
  background: linear-gradient(90deg, #f7efd9 0%, white 53%, #edd38a 100%);
  z-index: 3;
  padding: 1.5%;
}

.box_b .inn .txt .f_box {
  flex-flow: wrap;
  align-items: center;
}

.box_b .inn .txt p {
  width: 100%;
}

.box_b .inn .txt figure {
  width: 12%;
  text-align: left;
  margin-bottom: 1%;
  order: 1;
}

.box_b .inn .txt figure.line {
  order: 3;
  width: 100%;
}

.box_b .inn .txt figure.fig {
  width: 40%;
  float: right;
}

.box_b .inn .txt figure.fig + p {
  width: 60%;
}

.box_b .inn .txt h3 {
  width: 88%;
  font-size: 34px;
  line-height: 1.1em;
  font-weight: 900;
  margin-bottom: 1%;
  order: 2;
}

.box_b .inn .txt h3 span {
  color: #e31d5f;
}

@media screen and (max-width: 768px) {
  .box_b {
    padding: 5% 3% 1%;
  }
  .box_b .inn .txt {
    display: block;
  }
  .box_b .inn .txt > figure {
    display: inline-block;
  }
  .box_b .inn .txt h3 {
    display: inline-block;
    width: 85%;
    font-size: 4.8vw;
  }
  .box_b .inn .txt figure.fig {
    width: 45%;
    margin: .5em 0 1em 1em;
  }
  .box_b .inn .txt p {
    padding: .2em;
    font-size: 3.9vw;
    display: inline;
  }
}

.sec_6 {
  background: url(../img/bg_06.jpg) repeat-y center top;
}

.sec_7 {
  background: url(../img/bg_07.jpg) no-repeat center top;
}

.sec_8 {
  background: #1b1b1b url(../img/bg_04.jpg) no-repeat center top;
}

@media screen and (max-width: 768px) {
  .sec_8 {
    background-size: 100% auto;
  }
}

.sec_9 {
  background: #1b1b1b url(../img/bg_07.jpg) no-repeat center top;
}

.sec_10 {
  background: #1b1b1b url(../img/bg_08.jpg) no-repeat center top;
}

.sec_11 {
  background: #000 url(../img/bg_09.jpg) no-repeat center top;
}

@media screen and (max-width: 768px) {
  .sec_11 {
    background-size: 100% auto;
  }
  .sec_11 .box_4 .inn .f_box{
    margin-bottom: 0;
  }
}

.sec_12 {
  background: #fff url(../img/bg_13.jpg) no-repeat center top;
}

@media screen and (max-width: 768px) {
  .sec_12 {
    background-size: 100% auto;
  }
}

.box_c {
  background-color: #4e4133;
  padding: 2% 0;
  margin-top: 7%;
}

.box_c ul {
  display: block;
  width: 96%;
  margin: 0 auto 1em;
}

.box_c ul li {
  background: url(../img/icon_chk_2.png) no-repeat left 0.2em;
  font-size: 28px;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  margin-bottom: .5em;
  padding: .1em 0 .1em 1.5em;
  line-height: 1.3em;
}

.box_c .txt {
  width: 96%;
  margin: 0 auto;
  padding: 3%;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .box_c ul li {
    background-size: 1.1em auto;
    font-size: 3.7vw;
  }
}

.sec_13 {
  background: #1b1b1b url(../img/bg_10.jpg) no-repeat center top;
}

.sec_13 .box_c {
  background: #4e4133 url(../img/bg_11.jpg) no-repeat center top;
  background-size: 100% auto;
}

.sec_13 .box_c figure img {
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  .sec_13 {
    background-size: 100% auto;
  }
  .sec_13 .box_c figure img {
    margin-top: -20px;
  }
}

.sec_14 {
  background: url(../img/bg_14.jpg) no-repeat center top;
}

.sec_14 .box_2 h3 {
  margin-left: auto;
  margin-bottom: .5em;
  background: #e31d5f url(../img/icon_chk_1.png) no-repeat 0.3em;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  padding: .3em .3em .3em 1.8em;
}

.sec_14 .box_2 h3 + figure {
  width: 45%;
  float: right;
  margin: 0 0 1em 1em;
}

@media screen and (max-width: 768px) {
  .sec_14 {
    background-size: 100% auto;
  }
  .sec_14 .box_2 h3 {
    background-size: 1em;
    font-size: 6vw;
    background-position: .4em;
    padding-bottom: .4em;
  }
  .sec_14 .box_2 h3 + figure {
    margin-left: auto;
  }
  .sec_14 .box_2 h3:last-of-type + figure {
    width: 100%;
  }
}

.sec_15 {
  background: #07897d url(../img/bg_07.jpg) no-repeat center top;
}

.sec_15 .box_c {
  background: #03a493;
  margin-top: 10%;
}

.sec_15 .box_c figure img {
  margin-top: -70px;
}

.sec_15 .box_c h3 {
  color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 45px;
  text-align: center;
  line-height: 1.3;
  margin-bottom: .7em;
}
.sec_15 .box_c .txt{
  overflow: hidden;
}
.sec_15 .box_c .txt p span.ttl {
  background-color: #ffffb3;
  color: #03a493;
  font-size: 24px;
  padding: .1em 0;
  font-weight: 700;
  line-height: 2em;
}
.sec_15 .box_2 .f_r img{
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .sec_15 .box_c figure img {
    width: 40vw;
    margin-top: -8vw;
  }
  .sec_15 .box_c h3 {
    font-size: 5.7vw;
  }
  .sec_15 .box_c .txt p span {
    font-size: 4.2vw;
  }
  .sec_15 .box_c .txt p span br {
    display: none;
  }
  .sec_15 .box_c .txt p span.ttl {

    font-size: 4.3vw;
  }
  .sec_15 .box_c .txt p span.ttl br{
    display: block;
  }
  .sec_15 .box_2 .f_r{
    float: none;
    width: 100%;
    margin: 0 0 1em 0;
  }
  .sec_15 .box_2 .f_r img{
    width: 100%;
    margin-top: 0;
  }
  .sec_15 .box_2 .box_c:nth-of-type(4) .f_r{
    float: right;
    width: 40%;
    margin: 0 0 1em 0;
  }
}

.sec_16 {
  background: #b6062b url(../img/bg_15.jpg) no-repeat center top;
}

.tbl_1 th, .tbl_1 td {
  padding: 1em;
  border-bottom: #e31d5f solid 1px;
  text-align: left;
  line-height: 1.6em;
}

.tbl_1 th {
  background-color: #fff5fb;
  font-weight: 700;
  width: 28%;
  vertical-align: middle;
}

.tbl_1 td {
  width: 72%;
}

@media screen and (max-width: 768px) {
  .tbl_1 th, .tbl_1 td {
    font-size: 3.7vw;
    padding: .5em;
  }
  .tbl_1 th {
    width: 34%;
  }
  .tbl_1 td {
    width: 66%;
  }
}

.sec_17 {
  background: url(../img/bg_14.jpg) no-repeat center top;
}

.sec_17 h3 {
  padding: 1em 8%;
  background: url(../img/h3_bg.png) no-repeat center top;
  background-size: 100% 100%;
  font-size: 34px;
  color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  line-height: 1.3em;
  margin-bottom: .8em;
}

.sec_17 .box_2 {
  margin-bottom: 5%;
}

@media screen and (max-width: 768px) {
  .sec_17 {
    background-size: 100% auto;
  }
  .sec_17 h3 {
    font-size: 5.3vw;
  }
  .sec_17 h3 br {
    display: none;
  }
}

.ripple span {
  background-color: #e31d5f;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .ripple span {
    width: 100%;
    border-radius: 10px;
  }
}

.sec_18 {
  background: url(../img/bg_06.jpg) repeat-y center top;
}

@media screen and (max-width: 768px) {
  .sec_18 .ttl img {
    width: 50%;
  }
}

.sec_19 {
  background: url(../img/bg_16.jpg) no-repeat center top;
  background-attachment: fixed;
}

.sec_19 .box_2 {
  margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
  .sec_19 {
    background-size: 170% auto;
    background-repeat: repeat-y;
    background-attachment: inherit;
  }
}

.faq {
  background: none;
  margin: 0;
  padding: 2%;
}

.faq dt {
  font-size: 22px;
  background: #eee;
  border-radius: 10px;
  position: relative;
  padding: 1.5em 1em 1.5em 2em;
  font-weight: bold;
  margin-bottom: 2em;
  border-bottom: none;
}

.faq dt::before {
  display: block;
  content: '';
  position: absolute;
  width: 65px;
  height: 65px;
  background: url(../img/icon_q.png) no-repeat center top;
  top: 33px;
  right: 0;
  /* bottom: 0; */
  left: -1.5em;
  margin: auto auto auto 0;
}

.faq dd {
  font-size: 18px;
  position: relative;
  padding: 0 1em 1.5em 2.7em;
  line-height: 1.65em;
  background: none;
}

.faq dd::before {
  display: block;
  content: '';
  position: absolute;
  width: 65px;
  height: 65px;
  background: url(../img/icon_a.png) no-repeat center top;
  top: 0;
  right: 0;
  /* bottom: 0; */
  left: -1.7em;
  margin: 0 auto auto 0;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 3% 1em 3% 1.5em;
    line-height: 1.65em;
  }
  .faq dt {
    font-size: 4.8vw;
    padding: 1em 1em 1em 2em;
    margin-bottom: 1em;
  }
  .faq dt::before {
    width: 42px;
    height: 42px;
    background-size: 100% auto;
    left: -1em;
  }
  .faq dt br {
    display: none;
  }
  .faq dd {
    font-size: 4.2vw;
    padding: 1em 1em 1em 2.5em;
  }
  .faq dd::before {
    width: 42px;
    height: 42px;
    background-size: 100% auto;
    left: -1em;
  }
}

.sec_lp8 {
  background: url(../img/lp/bg_06.jpg) repeat-y center top;
  margin-bottom: 0;
}

.sec_lp8 .inner {
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .sec_lp8 .ttl {
    margin-bottom: 2em;
  }
  .sec_lp8 .ttl img {
    width: 60vw;
  }
}

.box_5 {
  box-shadow: 0 0 8px #999;
  background-color: #fff;
  padding: 4%;
  margin: 0 auto;
}

.box_5 .f_box {
  padding: 2em 0;
  margin-bottom: 2em;
  border-bottom: #02bba7 solid 4px;
}

.box_5 h2 {
  font-size: 47px;
  font-weight: 900;
  margin-bottom: .5em;
}

.box_5 h2 span {
  font-size: 26px;
}

.box_5 h2 span.t_3 {
  display: inline-block;
  margin-bottom: .5em;
  color: #02bba7;
}

.box_5 h3 {
  border-top: #02bba7 solid 4px;
  background-color: #eeecd9;
  padding: .8em .4em;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 1em;
}

.box_5 p {
  font-size: 22px;
}

@media screen and (max-width: 767px) {
  .box_5 .f_box {
    padding: 0 0 0;
  }
  .box_5 h2 {
    font-size: 8vw;
  }
  .box_5 h2 span {
    font-size: 4.7vw;
  }
  .box_5 h3 {
    font-size: 5vw;
    border-top: #02bba7 solid 2px;
    font-weight: 700;
  }
  .box_5 p {
    font-size: 4.2vw;
  }
}

.sec_20 {
  background: url(../img/bg_14.jpg) no-repeat center top;
}

.sec_20 .box_2 {
  margin-bottom: 5%;
}

@media screen and (max-width: 768px) {
  .sec_20 {
    background-size: 100% auto;
  }
  .sec_20 figure {
    margin: 14% auto 7%;
  }
  .sec_20 figure img {
    width: 30%;
  }
}

.sec_21 {
  background: #02bba7 url(../img/bg_17.jpg) no-repeat center top;
}

.sec_21 .box_2 {
  margin-bottom: 5%;
}

@media screen and (max-width: 768px) {
  .sec_21 {
    background-size: 100% auto;
  }
  .sec_21 .box_2 .f_r{
    width: 33%;
    margin: 0 0 .5em .5em;
  }
  .sec_21 .t_lrg{
    font-size: 4.2vw;
  }
}

.cta {
  position: fixed;
  padding: 0 5px 5px 0;
  right: 0;
  bottom: 0;
  width: 350px;
  /* max-width: 350px; */
  z-index: 3;
  background: none;
}

.cta .inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0 0;
  overflow: visible;
}

.cta .inner figure {
  margin: 0 0 5px;
}

.cta .inner figure.btn a::after {
  width: 35px;
  height: 15px;
}

@media screen and (max-width: 767px) {
  .cta {
    width: 100%;
    padding: 0!important;
    /* max-width: 425px; */
  }
  .cta .inner {
    /* justify-content: flex-end; */
}
.cta .inner figure{
 margin-bottom: 0!important;
}
}
footer {
  background-color: #000;
  color: #fff;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 3.2vw;
  }
}
/*# sourceMappingURL=map/style.css.map */

/* ロード画面 */
@keyframes fadeOut {
  from {
      opacity: 1;
  }
  
  to {
      display: none;
      opacity: 0;
      z-index: -1;
  }
}

#loader {
  width: 100%;
  height: 100vh;
  background-color: #00c2bc;
  position: fixed;
  z-index: 10;
}
#loader figure{
margin-top: 200px;
max-width: 25%;
}

#loader.loaded {
  animation: fadeOut 3s forwards;
}

.spinner {
margin: 0 auto;
width: 40px;
height: 40px;
position: relative;
top: 10%;
}

.cube1, .cube2 {
background-color: #ffffff;
width: 15px;
height: 15px;
position: absolute;
top: 0;
left: 0;

-webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
animation: sk-cubemove 1.8s infinite ease-in-out;
}

.cube2 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
100% { -webkit-transform: rotate(-360deg) }
}

@keyframes sk-cubemove {
25% { 
  transform: translateX(42px) rotate(-90deg) scale(0.5);
  -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
} 50% { 
  transform: translateX(42px) translateY(42px) rotate(-179deg);
  -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
} 50.1% { 
  transform: translateX(42px) translateY(42px) rotate(-180deg);
  -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
} 75% { 
  transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
} 100% { 
  transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
}
}