@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}

/*--------------------------------------------------------
animation
--------------------------------------------------------*/
.animated {
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

@keyframes shake {
  0%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5%);
  }
}

.shake {
  display: block;
  animation-name: shake;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

@keyframes falling_money {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateY(125%) rotateY(360deg);
  }
  100% {
    opacity: 0;
    transform: translateY(125%) rotateY(360deg);
  }
}

.falling_money {
  opacity: 0;
}

.falling_money.active {
  display: block;
  animation-name: falling_money;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.falling_money2 {
  opacity: 0;
}

.falling_money2.active {
  display: block;
  animation-name: falling_money;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

/*********************
* fadeInUpShort
*********************/

@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpShort {
  opacity: 0;
  transform: translateY(20px);
}

.fadeInUpShort.go {
  animation-name: fadeInUpShort;
}

/***********
* tada *
************/
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada.go {
  animation-name: tada;
}

/*--------------------------------------------------------
Reset
--------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  color: #4e4e4e;
  overflow: auto;
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  /*16px*/
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
}

input,
select,
textarea {
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dd,
dt {
  margin: 0;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

/*a img:hover { opacity: 0.9; -moz-opacity: 0.9;}*/
a img {
  border-style: none;
}

img {
  vertical-align: bottom;
  /* 一番上の画像だけ注意。隙間が空く可能性あり */
  line-height: 0 !important;
  /* display:block; */
}

button {
  background-color: transparent;
  border: none;
  backface-visibility: hidden;
}

button:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

input:focus,
select:focus {
  outline: none;
}

/*--------------------------------------------------------
定数（基本的に、全サイト共通に使えるもの）
--------------------------------------------------------*/
.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}

.r {
  text-align: right !important;
}

.l {
  text-align: left !important;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.vertical-top {
  vertical-align: top;
}

.vertical-middle {
  vertical-align: middle;
}

.pointer {
  cursor: pointer;
}

.br::before {
  content: "\A";
  white-space: pre;
}

.margin100 {
  margin-bottom: 100px;
}

.margin90 {
  margin-bottom: 90px;
}

.margin80 {
  margin-bottom: 80px;
}

.margin70 {
  margin-bottom: 70px;
}

.margin60 {
  margin-bottom: 60px;
}

.margin50 {
  margin-bottom: 50px;
}

.margin40 {
  margin-bottom: 40px;
}

.margin30 {
  margin-bottom: 30px;
}

.margin20 {
  margin-bottom: 20px;
}

.margin10 {
  margin-bottom: 10px;
}

.padding_t100 {
  padding-top: 100px;
}

.padding_t90 {
  padding-top: 90px;
}

.padding_t80 {
  padding-top: 80px;
}

.padding_t70 {
  padding-top: 70px;
}

.padding_t60 {
  padding-top: 60px;
}

.padding_t50 {
  padding-top: 50px;
}

.padding_t40 {
  padding-top: 40px;
}

.padding_t30 {
  padding-top: 30px;
}

.padding_t20 {
  padding-top: 20px;
}

.padding_t10 {
  padding-top: 10px;
}

.padding_b100 {
  padding-bottom: 100px;
}

.padding_b90 {
  padding-bottom: 90px;
}

.padding_b80 {
  padding-bottom: 80px;
}

.padding_b70 {
  padding-bottom: 70px;
}

.padding_b60 {
  padding-bottom: 60px;
}

.padding_b50 {
  padding-bottom: 50px;
}

.padding_b40 {
  padding-bottom: 40px;
}

.padding_b30 {
  padding-bottom: 30px;
}

.padding_b20 {
  padding-bottom: 20px;
}

.padding_b10 {
  padding-bottom: 10px;
}

.visible1800, .visible1000, .visible900, .visible750, .visible600, .visible500, .visible400, .visible320 {
  display: none;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*重なりの優先度*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/*要素固定*/
.fixed {
  position: fixed;
  z-index: 999;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z6 {
  z-index: 6;
}

.z7 {
  z-index: 7;
}

.z8 {
  z-index: 8;
}

.z9 {
  z-index: 9;
}

.z10 {
  z-index: 10;
}

/*横幅*/
.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.disabled {
  pointer-events: none;
  /*リンクを無効にする*/
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.fullscreen {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contents {
  width: 900px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contents1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.contents1000 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.img_center {
  margin-left: -450px;
}

.white {
  color: #fff;
}

.black {
  color: #4e4e4e;
}

.red {
  color: #f00;
}

.bold {
  font-weight: bold;
}

.bg_black {
  background-color: #4e4e4e;
}

.bg_white {
  background-color: #fff;
}

.bg_red {
  background-color: #f00;
}

.bg_clear {
  background-color: transparent;
}

.bg_gray {
  background-color: #eaeaea;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
header {
  width: 100%;
  top: 0;
  margin: 0 auto;
  line-height: 0;
  /* 画像の上下に隙間が空いてしまう対策 *    
    position:fixed;
    z-index:100;
    /* top:-1px; */
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  /*position:fixed;*/
  position: relative;
  z-index: 2;
  text-align: center;
  color: #4e4e4e;
  bottom: 0;
  left: 0;
  right: 0;
}

.wrapper {
  min-height: 100vh;
  /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
  position: relative;
  /* ←相対位置 */
  box-sizing: border-box;
}

.footer {
  position: absolute;
  bottom: 0;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 3%;
}

.copyright,
.copyright a {
  color: #4e4e4e;
}

.copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------
↓↓↓ 各種レイアウト ↓↓↓
--------------------------------------------------------*/
/*--header--*/
/*--header-end--*/
/*--contents--*/
.clk_01 img {
  width: 1800px;
  height: 355px;
}

.clk_02 img {
  width: 1800px;
  height: 1241px;
}

.clk_02_click {
  top: 10.2%;
}

.clk_02_click img {
  width: 900px;
  height: 350px;
}

.clk_02_1 {
  top: 15.8%;
  right: 5%;
}

.clk_02_1 img {
  width: 243px;
  height: 152px;
}

.clk_btn {
  bottom: 0;
}

.clk_btn img {
  width: 900px;
  height: 615px;
}

.clk_border {
  bottom: 0;
}

.clk_border img {
  width: 1800px;
  height: 90px;
}

.clk_03 img {
  width: 900px;
  height: 1338px;
}

.clk_04 img {
  width: 900px;
  height: 1287px;
}

.clk_05 img {
  width: 900px;
  height: 225px;
}

.clk_06 img {
  width: 900px;
  height: 767px;
}

.clk_07 img {
  width: 900px;
  height: 561px;
}

.clk_08 img {
  width: 900px;
  height: 586px;
}

.clk_09 img {
  width: 900px;
  height: 640px;
}

.clk_10 img {
  width: 1800px;
  height: 1133px;
}

.clk_10_1 {
  bottom: 17%;
}

.clk_10_1 img {
  width: 900px;
  height: 310px;
}

.clk_11 img {
  width: 900px;
  height: 437px;
}

.reward {
  top: 25%;
  left: 52%;
}

.reward_txt {
  font-family: "Hiragino Kaku Gothic ProN", "Copperplate";
  font-size: 7rem;
}

.reward_txt .yen {
  font-size: 0.7em;
}

/*--contents-end--*/
/*--footer--*/
/*--footer-end--*/
/* --背景設定-- */
/* --背景設定-end-- */
/* --画像位置設定-- */
/* --画像位置設定-end-- */
/* --プラポリ-- */
.privacy_head {
  width: 85%;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 2rem;
  text-align: center;
}

.privacy_head__border {
  border: 5px solid #00c20b;
}

.privacy_contents_wrap {
  width: 95%;
  border-radius: 20px;
  padding: 40px;
  font-size: 2rem;
}

.privacy_contents_wrap__border {
  border: 10px solid #00c20b;
}

.privacy_contents_wrap p {
  padding-bottom: 2rem;
}

.privacy_contents_wrap p:last-child {
  padding-bottom: 0;
}

.privacy_subtitle {
  font-size: 1.25em;
}

.icon {
  position: relative;
  line-height: 1.5;
  padding-left: 1.5em;
}

.icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffa201;
  width: 1em;
  height: 1em;
  border-radius: 5px;
}

.bg_privacy {
  /*background-color: #515151;*/
  background: url("../img/asw_pp_back.png");
  background-repeat: repeat-y;
  max-width: 1800px;
  margin: 0 auto;
}

/*.back-btn{
  position: relative;
  padding: 1rem 10rem;
  box-sizing: border-box;
  font-size: 3rem;
  .fas{
    position:  absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  } 
}*/
/* --プラポリ-end-- */
/*--toggleMenu--*/
/*--toggleMenu-end--*/
/*--------------------------------------------------------
↑↑↑ 各種レイアウト ↑↑↑
--------------------------------------------------------*/
/*--------------------------------------------------------
↓↓↓ フォーム部分 ↓↓↓
--------------------------------------------------------*/
/********
チェックボックス
********/
/*--------------------------------------------------------
↑↑↑ フォーム部分 ↑↑↑
--------------------------------------------------------*/
/*--------------------------------------------------------
サンキュー用レイアウト
--------------------------------------------------------*/
/*--------------------------------------------------------
特定商用レイアウト
--------------------------------------------------------*/
/*# sourceMappingURL=base.css.map */