@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #000;
}

/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

/*---------------------------------------------
font
---------------------------------------------*/
.jp {
  font-family: momochidori, sans-serif;
  font-style: normal;
}

.eg {
  font-family: "amplitude-extra-compressed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*---------------------------------------------
FV
---------------------------------------------*/
.slides {
  max-width: 80%;
  margin: auto;
}
.slides li {
  margin-right: 5px;
}
.slides li img {
  width: 100%;
  height: auto;
}
.slides .slick-dots {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.slides .slick-arrow {
  z-index: 5;
  width: 30px;
  height: 30px;
  background: #fff;
  top: 118px;
  border: 1px solid #dadada;
}
.slides .slick-arrow::before {
  content: "";
  display: block;
  opacity: 1;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: #575757 1px solid;
}
.slides .slick-prev {
  left: 48.6%;
  margin-left: -565px;
}
.slides .slick-prev::before {
  top: 50%;
  left: 50%;
  border-left: #575757 1px solid;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
.slides .slick-next {
  right: 48.6%;
  margin-right: -565px;
}
.slides .slick-next::before {
  content: "";
  display: block;
  opacity: 1;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 50%;
  border-right: #575757 1px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0; /* アニメーション前の透明度を指定 */
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0; /* アニメーション前の透明度を指定 */
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0; /* アニメーション前の透明度を指定 */
}

.flexslider {
  border: none;
  margin: 0;
}

.flex-control-nav li {
  width: 8px;
}

.flex-control-paging li a {
  width: 8px;
  height: 8px;
}

/*---------------------------------------------
3カラムレイアウト
---------------------------------------------*/
@media screen and (min-width: 769px) {
  html, body {
    height: 100%;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 769px) {
  body {
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: none; /* Firefox */
  }
}

@media screen and (min-width: 769px) {
  .page_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
  }
}

@media screen and (min-width: 769px) {
  .left_pane, .right_pane {
    position: fixed;
    top: 0;
    width: calc((100% - 600px) / 2); /* (画面幅 - 中央コンテンツ幅) / 2 */
    background-image: url(../images/yw_check.png);
    background-repeat: repeat;
    height: 100%; /* 画面の高さいっぱいに広げる */
    background-size: 30px; /* 背景画像のサイズを指定 */
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  .left_pane, .right_pane {
    display: none;
  }
}

.left_pane {
  left: 0;
}
@media screen and (min-width: 769px) {
  .left_pane {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.left_pane img {
  max-width: 80%;
  margin: auto;
}

.right_pane {
  right: 0;
}
@media screen and (min-width: 769px) {
  .right_pane {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.right_pane .pc_right_btn {
  max-width: 80%;
  margin: auto;
}
.right_pane .pc_right_btn img {
  margin: 30px auto;
}

.main_content {
  background-color: #1e368f;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .main_content {
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 600px;
    margin: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0; /* 幅が600pxより小さくならないように設定 */
    overflow-y: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100vh; /* ビューポートの高さに固定し、スクロール領域を生成 */
  }
}
.main_content .sec1 .img_box {
  position: relative;
  height: 80vh;
}
@media screen and (min-width: 769px) {
  .main_content .sec1 .img_box {
    min-height: 120vh;
    height: auto;
  }
}
.main_content .sec1 .img_box img {
  position: absolute;
}
.main_content .sec1 .img_box .img1, .main_content .sec1 .img_box .img2, .main_content .sec1 .img_box .img3, .main_content .sec1 .img_box .img4 {
  -webkit-animation-name: fuwafuwa;
          animation-name: fuwafuwa;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.main_content .sec1 .img_box .img1 {
  width: 30%;
  z-index: 5;
  top: 3%;
  right: 0;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.main_content .sec1 .img_box .img2 {
  width: 24%;
  z-index: 3;
  top: 16%;
  left: 5%;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.main_content .sec1 .img_box .img3 {
  width: 33%;
  z-index: 10;
  top: 64%;
  left: 7%;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.main_content .sec1 .img_box .img4 {
  width: 11%;
  z-index: 10;
  right: 6%;
  top: 72%;
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.main_content .sec1 .img_box .img5 {
  width: 77%;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 5;
}
.main_content .sec1 .img_box .img6 {
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  top: 80%;
}
.main_content .sec1 .top_text {
  font-size: 14px;
  color: #fff;
  width: 90%;
  margin: 50px auto 70px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .main_content .sec1 .top_text {
    width: 70%;
    font-size: 18px;
    margin-bottom: 100px;
  }
}
.main_content .sec1 .top_text span {
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .main_content .sec1 .top_text span {
    font-size: 24px;
  }
}
.main_content .sec1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_content .sec1 .flex .lead {
  font-size: 12px;
  color: #fff;
  width: 39%;
  min-width: 0;
  word-break: break-all;
  margin: auto;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .main_content .sec1 .flex .lead {
    font-size: 16px;
    line-height: 1.8;
  }
}
.main_content .sec1 .flex img {
  width: 50%;
}
.main_content .sec1 .img7 {
  width: 39%;
  margin-left: 5%;
  margin-top: 25px;
}
.main_content .sec1 .img8 {
  width: 54%;
  margin-left: auto;
  margin-top: -30px;
  -webkit-animation-name: fuwafuwa;
          animation-name: fuwafuwa;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.main_content .sec1 .img9 {
  width: 60%;
  margin-left: auto;
  margin-right: 12%;
  position: relative;
  z-index: 3;
}
.main_content .sec1 .img10 {
  width: 78%;
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
}
.main_content .sec1 .text {
  font-size: 12px;
  color: #fff;
  width: 67%;
  margin: 20px auto 0;
  word-break: break-all;
  line-height: 1.5;
  padding-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .main_content .sec1 .text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.main_content .sec1 .text .small {
  display: block;
  font-size: 10px;
  margin-top: 30px;
  border: 1px dotted #fff;
  padding: 20px;
}
@media screen and (min-width: 769px) {
  .main_content .sec1 .text .small {
    font-size: 12px;
  }
}

.credit {
  margin-bottom: 50px;
}
.credit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  margin: auto;
  color: #000;
  text-decoration: none;
  margin-bottom: 15px;
}
.credit a ul .brand {
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (min-width: 769px) {
  .credit a ul .brand {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.credit a ul .item {
  font-size: 14px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .credit a ul .item {
    font-size: 18px;
  }
}
.credit a ul .price {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.credit a .buy_btn {
  width: 20%;
}
.credit .styling_btn {
  width: 70%;
  margin: 25px auto 70px;
}

.sec2 {
  background-image: url(../images/pk_check.png);
  background-repeat: repeat;
  background-size: 30px; /* 背景画像のサイズを指定 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec2 .img_block {
  position: relative;
  top: -14px;
}
.sec2 .block3 .img1 {
  width: 80%;
  margin: 0 auto 50px;
}
.sec2 .block3 .img2 {
  width: 73%;
  margin: auto;
}

.sec3 {
  background-color: #d01126;
}
.sec3 .img2 {
  width: 70%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: 24px;
}
.sec3 .img3 {
  width: 45%;
  margin-left: -10px;
  margin-top: -63px;
  margin-bottom: 20px;
}
.sec3 .img4 {
  margin-bottom: 20px;
}
.sec3 .credit a {
  color: #fff;
}

.sec4 {
  background-color: #00703c;
  padding-bottom: 1px;
}
.sec4 .img_box {
  position: relative;
  height: 72vh;
}
.sec4 .img_box > .img {
  position: absolute;
}
.sec4 .img_box .fuwa {
  -webkit-animation: fuwaAnim linear infinite alternate;
          animation: fuwaAnim linear infinite alternate;
  -webkit-animation-duration: var(--dur, 3s);
          animation-duration: var(--dur, 3s);
}
.sec4 .img_box .img1 {
  width: 80%;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.sec4 .img_box .img2 {
  width: 23%;
  left: 7%;
  top: 6%;
  --x: -8px;
  --y: -12px;
  --r: -5deg;
  --dur: 3.8s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.sec4 .img_box .img3 {
  width: 19%;
  top: 7%;
  right: 8%;
  --x: 10px;
  --y: -8px;
  --r: 7deg;
  --dur: 4.2s;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.sec4 .img_box .img4 {
  width: 27%;
  top: 19%;
  left: 10px;
  --x: -12px;
  --y: 10px;
  --r: -8deg;
  --dur: 3.5s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.sec4 .img_box .img5 {
  width: 40%;
  top: 24%;
  right: 5px;
  --x: 15px;
  --y: 12px;
  --r: 6deg;
  --dur: 4.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.sec4 .img_box .img6 {
  width: 20%;
  top: 47%;
  left: 5%;
  --x: -10px;
  --y: -15px;
  --r: 10deg;
  --dur: 4.0s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.sec4 .img_box .img7 {
  width: 35%;
  top: 74%;
  left: 15px;
  --x: 12px;
  --y: -10px;
  --r: -7deg;
  --dur: 3.7s;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.sec4 .img_box .img8 {
  width: 40%;
  top: 73%;
  left: 30%;
  --x: -10px;
  --y: 15px;
  --r: 8deg;
  --dur: 4.3s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sec4 .img_box .img9 {
  width: 20%;
  right: 10px;
  top: 76%;
  --x: 10px;
  --y: 10px;
  --r: -9deg;
  --dur: 3.9s;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.sec4 .credit {
  margin-top: 20px;
}
.sec4 .credit a {
  color: #fff;
}
.sec4 .flip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .sec4 .flip {
    margin-top: 32%;
  }
}
.sec4 .flip img {
  width: 45%;
}
.sec4 .loop_wrap {
  margin-top: 50px;
  overflow: hidden;
  width: 100%;
}
.sec4 .loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: loop-scroll 5s linear infinite;
          animation: loop-scroll 5s linear infinite;
}
.sec4 .loop img {
  width: 60%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sec5 {
  background-image: url("../images/blue_check.png");
  background-repeat: repeat;
  background-size: 32px 32px;
}
.sec5 .loop_wrap {
  padding-top: 20px;
  margin-bottom: 50px;
  overflow: hidden;
  width: 100%;
  height: 46px;
}
.sec5 .loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: loop-scroll 5s linear infinite;
          animation: loop-scroll 5s linear infinite;
}
.sec5 .loop.yw_ribon img {
  height: 46px;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sec5 .zoom_img_wrap .img1 {
  width: 80%;
  margin: 0 auto 30px;
}
.sec5 .zoom_img_wrap .img2 {
  width: 80%;
  margin: auto;
}
.sec5 .zoom_img_wrap .ushi {
  position: relative;
}
.sec5 .zoom_img_wrap .ushi .img3 {
  position: absolute;
  width: 33%;
  z-index: 100;
  bottom: -20px;
}
.sec5 .zoom_img_wrap .img4 {
  width: 90%;
  margin: 40px auto 30px;
}
.sec5 .zoom_img_wrap .img5 {
  margin-bottom: 10px;
}
.sec5 .zoom_img_wrap .flex_wrap {
  width: 90%;
  margin: auto;
  padding-bottom: 70px;
}
.sec5 .zoom_img_wrap .flex_wrap .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;
}
.sec5 .zoom_img_wrap .flex_wrap .flex a {
  width: 47%;
  margin-bottom: 15px;
}

.zoom_img_wrap .plus_wrap {
  position: relative;
}
.zoom_img_wrap .plus_wrap .plus_img {
  position: absolute;
  width: 48px;
  bottom: -1%;
  right: -2%;
  z-index: 100;
}
.zoom_img_wrap .plus_wrap .plus1 {
  width: 50px;
  bottom: -1%;
  right: 7%;
}
.zoom_img_wrap .plus_wrap .plus2 {
  width: 50px;
  bottom: 6%;
  right: 9%;
}
.zoom_img_wrap .plus_wrap .plus3 {
  width: 50px;
  bottom: 0;
  right: 2%;
}
@media screen and (min-width: 769px) {
  .zoom_img_wrap .plus_wrap .plus_img {
    width: 50px;
    bottom: -1%;
    right: -2%;
  }
  .zoom_img_wrap .plus_wrap .plus1 {
    width: 60px;
    bottom: -1%;
    right: 7%;
  }
  .zoom_img_wrap .plus_wrap .plus2 {
    width: 60px;
    bottom: 6%;
    right: 15%;
  }
  .zoom_img_wrap .plus_wrap .plus3 {
    width: 60px;
    bottom: 0;
    right: 4%;
  }
}

.sec6 {
  background-image: url(../images/pink_line/pink_line_bg.png);
  background-repeat: repeat;
  background-size: contain;
  padding-bottom: 1px;
}
.sec6 .zoom_img_wrap .img1 {
  width: 98%;
  padding-top: 30px;
}
.sec6 .zoom_img_wrap .flex_wrap {
  width: 90%;
  margin: 30px auto;
}
.sec6 .zoom_img_wrap .flex_wrap .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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.sec6 .zoom_img_wrap .flex_wrap .flex a {
  width: 47%;
  margin-bottom: 15px;
}
.sec6 .zoom_img_wrap .img2 {
  margin-bottom: 10px;
}
.sec6 .zoom_img_wrap .img4 {
  width: 92%;
  margin: 0 auto 30px;
}
.sec6 .zoom_img_wrap .img6 {
  width: 84%;
  margin: 10px auto;
}
.sec6 .zoom_img_wrap .img10 {
  width: 92%;
  margin: 30px auto 50px;
}

.footer {
  background-color: #1e368f;
  padding-bottom: 30px;
}
.footer .btn_wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer .btn_wrap a {
  margin: 20px;
}
.footer .btn_wrap a .footer_link {
  width: 60%;
  margin: auto;
}
.footer .footer_logo {
  width: 60%;
  margin: auto;
}

.wave_line {
  width: 100%;
  height: 14px; /* SVGの高さに合わせて調整してね */
  background-image: url(../images/red_line.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  position: relative;
  z-index: 100;
  top: 5px;
}
.wave_line.bottom {
  top: -7px;
}

.two_cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -14px;
  margin-bottom: -14px;
}
.two_cols .img_wrap {
  position: relative;
}
.two_cols .img_wrap .img {
  width: 100%;
  display: block;
}
.two_cols .img_wrap .img1 {
  width: 43%;
}
.two_cols .img_wrap.img1::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 14px;
  height: 100%;
  background-image: url(../images/redline_tate.svg);
  background-repeat: repeat-y;
  background-size: auto;
  background-size: contain;
  background-position: center;
  z-index: 10;
}
.two_cols .img_wrap.img2::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: url(../images/red_line.svg);
  background-repeat: repeat-x;
  background-size: auto;
  background-size: contain;
  background-position: center;
  z-index: 10;
}

.img_block2 .wave_line {
  top: -7px;
}
.img_block2 .two_cols .img_wrap.img2::after {
  content: "";
  display: none;
}
.img_block2 .bottom2 {
  top: 5px;
}

/*---------------------------------------------
Animation
---------------------------------------------*/
@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); /* 15px上に移動 */
  }
}
@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); /* 15px上に移動 */
  }
}
@-webkit-keyframes fuwaAnim {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(var(--x, 10px), var(--y, -10px)) rotate(var(--r, 5deg));
            transform: translate(var(--x, 10px), var(--y, -10px)) rotate(var(--r, 5deg));
  }
}
@keyframes fuwaAnim {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(var(--x, 10px), var(--y, -10px)) rotate(var(--r, 5deg));
            transform: translate(var(--x, 10px), var(--y, -10px)) rotate(var(--r, 5deg));
  }
}
/*---------------------------------------------
  Scroll Animation (Intersection Observer)
---------------------------------------------*/
[data-anim] {
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
[data-anim].is-animated {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotateX(0) scale(1);
          transform: translate(0, 0) rotateX(0) scale(1);
}

[data-anim=fade-up] {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

[data-anim=fade-down] {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

[data-anim=zoom-in] {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

[data-anim=flip-down] {
  opacity: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

[data-anim=rotate-x-fade-in] {
  opacity: 0;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
}

[data-anim=fade] {
  opacity: 0;
}

[data-anim=fade].is-animated {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes dokidoki {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%, 30% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  20%, 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%, 30% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  20%, 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.plus_wrap .plus_img {
  -webkit-animation: dokidoki 1.5s ease-in-out infinite;
          animation: dokidoki 1.5s ease-in-out infinite;
}/*# sourceMappingURL=style.css.map */