@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;
}

/***********
* zoomIn *
************/
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomIn.go {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

/***********
* shakeY *
************/
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.shakeY.go {
  animation-name: shakeY;
}

/***********
* shakeX *
************/
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shakeX.go {
  animation-name: shakeX;
}

/***********
* kurukuru *
************/
@keyframes kurukuru {
  0% {
    transform: rotateY(0) translateY(40px);
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg) translateY(0);
    opacity: 1;
  }
}
.kurukuru.go {
  animation: kurukuru 1.4s ease-out;
  opacity: 1;
}

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

html {
  font-size: 62.5%;
  overflow: auto;
}
html:focus-within {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  /*16px*/
  line-height: 1.5;
  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;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

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;
  -webkit-backface-visibility: hidden;
  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;
}

.margin_b100 {
  margin-bottom: 100px;
}

.margin_b90 {
  margin-bottom: 90px;
}

.margin_b80 {
  margin-bottom: 80px;
}

.margin_b70 {
  margin-bottom: 70px;
}

.margin_b60 {
  margin-bottom: 60px;
}

.margin_b50 {
  margin-bottom: 50px;
}

.margin_b40 {
  margin-bottom: 40px;
}

.margin_b30 {
  margin-bottom: 30px;
}

.margin_b20 {
  margin-bottom: 20px;
}

.margin_b10 {
  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_b20 {
  padding-bottom: 20px;
}

.padding_t10 {
  padding-top: 10px;
}

@media screen and (max-width: 900px) {
  .margin_b100 {
    margin-bottom: 11%;
  }

  .margin_b90 {
    margin-bottom: 10%;
  }

  .margin_b80 {
    margin-bottom: 9%;
  }

  .margin_b70 {
    margin-bottom: 8%;
  }

  .margin_b60 {
    margin-bottom: 7%;
  }

  .margin_b50 {
    margin-bottom: 6%;
  }

  .margin_b40 {
    margin-bottom: 5%;
  }

  .margin_b30 {
    margin-bottom: 4%;
  }

  .margin_b20 {
    margin-bottom: 3%;
  }

  .margin_b10 {
    margin-bottom: 2%;
  }

  .padding_t100 {
    padding-top: 11%;
  }

  .padding_t90 {
    padding-top: 10%;
  }

  .padding_t80 {
    padding-top: 9%;
  }

  .padding_t70 {
    padding-top: 8%;
  }

  .padding_t60 {
    padding-top: 7%;
  }

  .padding_t50 {
    padding-top: 6%;
  }

  .padding_t40 {
    padding-top: 5%;
  }

  .padding_t30 {
    padding-top: 4%;
  }

  .padding_t20 {
    padding-top: 3%;
  }
  .padding_b20 {
    padding-bottom: 3%;
  }

  .padding_t10 {
    padding-top: 2%;
  }
}
.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;
  /*リンクを無効にする*/
}

.cp {
  font-family: Verdana, "Droid Sans", "メイリオ", sans-serif;
}

.vh100 {
  height: 100%;
  min-height: 100vh;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.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: #333;
}

.red {
  color: #f00;
}

.gray {
  color: #555;
}

.navy {
  color: #44728d;
}

.bold {
  font-weight: bold;
}

.bg_black {
  background-color: #333;
}
.bg_white {
  background-color: #fff;
}
.bg_red {
  background-color: #f00;
}
.bg_navy {
  background-color: #44728d;
}
.bg_clear {
  background-color: transparent;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
header {
  width: 100%;
  top: 0;
  margin: 0 auto;
}
header h1 {
  text-align: center;
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {

  z-index: 2;
  text-align: center;
  color: #fff;
  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: #fff;
}

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

/*--------------------------------------------------------
↓↓↓ 各種レイアウト ↓↓↓
--------------------------------------------------------*/
/*--header--*/
/*--header-end--*/
/*--contents--*/
.fgm_01 img {
  width: 900px;
  height: 1667px;
}
.fgm_01_tt {
  top: 9.4%;
}
.fgm_01_tt img {
  width: 900px;
  height: 677px;
}
.fgm_01_arw {
  top: 46%;
}
.fgm_01_arw img {
  width: 900px;
  height: 73px;
}

.fgm_btn {
  top: 47%;
}
.fgm_btn img {
  width: 900px;
  height: 288px;
}
.fgm_btn2 {
  top: 57.5%;
}

.fgm_02 img {
  width: 900px;
  height: 2530px;
}
.fgm_02_arw {
  left: -3%;
  top: 61.5%;
}
.fgm_02_arw img {
  width: 124px;
  height: 89px;
}
.fgm_02_arw02 {
  right: -2.6%;
  top: 61.5%;
}
.fgm_02_arw02 img {
  width: 124px;
  height: 89px;
}

.fgm_03 img {
  width: 900px;
  height: 2141px;
}

.fgm_04 img {
  width: 900px;
  height: 1552px;
}
.fgm_04_dcc {
  top: 1.6%;
  left: 14%;
}
.fgm_04_dcc img {
  width: 385px;
  height: 728px;
}
.fgm_04_btn {
  bottom: 7%;
  right: 0;
}
.fgm_04_btn img {
  width: 569px;
  height: 307px;
}
.fgm_04_arw {
  bottom: 1%;
  right: 13%;
}
.fgm_04_arw img {
  width: 315px;
  height: 98px;
}

.fgm_05 img {
  width: 900px;
  height: 1342px;
}

.fgm_06 img {
  width: 900px;
  height: 2512px;
}
.fgm_06_btn {
  bottom: 14.5%;
}
.fgm_06_btn img {
  height: 210px;
}

/********
チェックボックス
********/
.check_btn {
  /* チェックボックスとテキストの上下を中央に */
  align-items: center;
  display: flex;
}

.radio_box input {
  display: none;
  /* デフォルトのチェックボックスを非表示 */
}

.radio_box_wrapper li .radio_box input + .radio_btn::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 375px;
  height: 129px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.radio_box_wrapper li:nth-of-type(odd) > .radio_box input + .radio_btn::before {
  left: 7.8%;
}

.radio_box_wrapper li:nth-of-type(even) > .radio_box input + .radio_btn::before {
  right: 7.8%;
}

/* gender */
.gender > li > .radio_box input + .radio_btn::before, .gender > li > .radio_box input:checked + .radio_btn::before {
  height: 107px;
}

.gender > li:nth-of-type(1) > .radio_box input + .radio_btn::before {
  top: 20.45%;
  background-image: url(../img/sd01.png);
}

.gender > li:nth-of-type(1) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg01.png);
}

.gender > li:nth-of-type(2) > .radio_box input + .radio_btn::before {
  top: 20.45%;
  background-image: url(../img/sd02.png);
}

.gender > li:nth-of-type(2) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg02.png);
}

/* reward */
.reward > li:nth-of-type(1) > .radio_box input + .radio_btn::before {
  top: 32.2%;
  background-image: url(../img/sd03.png);
}

.reward > li:nth-of-type(1) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg03.png);
}

.reward > li:nth-of-type(2) > .radio_box input + .radio_btn::before {
  top: 32.2%;
  background-image: url(../img/sd04.png);
}

.reward > li:nth-of-type(2) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg04.png);
}

.reward > li:nth-of-type(3) > .radio_box input + .radio_btn::before {
  top: 37.65%;
  background-image: url(../img/sd05.png);
}

.reward > li:nth-of-type(3) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg05.png);
}

.reward > li:nth-of-type(4) > .radio_box input + .radio_btn::before {
  top: 37.65%;
  background-image: url(../img/sd06.png);
}

.reward > li:nth-of-type(4) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg06.png);
}

.reward > li:nth-of-type(5) > .radio_box input + .radio_btn::before {
  width: 759px;
  top: 43.13%;
  background-image: url(../img/sd07.png);
}

.reward > li:nth-of-type(5) > .radio_box input:checked + .radio_btn::before {
  width: 759px;
  background-image: url(../img/sdg07.png);
}

/* usagetime */
.usagetime > li:nth-of-type(1) > .radio_box input + .radio_btn::before {
  top: 55.4%;
  background-image: url(../img/sd08.png);
}

.usagetime > li:nth-of-type(1) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg08.png);
}

.usagetime > li:nth-of-type(2) > .radio_box input + .radio_btn::before {
  top: 55.4%;
  background-image: url(../img/sd09.png);
}

.usagetime > li:nth-of-type(2) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg09.png);
}

.usagetime > li:nth-of-type(3) > .radio_box input + .radio_btn::before {
  top: 60.85%;
  background-image: url(../img/sd10.png);
}

.usagetime > li:nth-of-type(3) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg10.png);
}

.usagetime > li:nth-of-type(4) > .radio_box input + .radio_btn::before {
  top: 60.85%;
  background-image: url(../img/sd11.png);
}

.usagetime > li:nth-of-type(4) > .radio_box input:checked + .radio_btn::before {
  background-image: url(../img/sdg11.png);
}

.usagetime > li:nth-of-type(5) > .radio_box input + .radio_btn::before {
  width: 759px;
  top: 66.33%;
  background-image: url(../img/sd12.png);
}

.usagetime > li:nth-of-type(5) > .radio_box input:checked + .radio_btn::before {
  width: 759px;
  background-image: url(../img/sdg12.png);
}

/*--contents-end--*/
/*--footer--*/
/*--footer-end--*/
/* --プラポリ-- */
.privacy::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  max-width: 900px;
  height: 100vh;
  background: url(../img/fgm_prpr02.png) center;
  background-size: contain;
}

.privacy_wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.privacy_title {
  font-size: 4rem;
}

.privacy_head {
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 2rem;
  text-align: center;
}
.privacy_head__border {
  border: 5px solid #000;
}

.privacy_contents {
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.privacy_contents__border {
  border: 5px solid #000;
}
.privacy_contents p {
  margin-bottom: 2rem;
}

.privacy_subtitle {
  font-size: 1.25em;
}

.icon {
  position: relative;
  line-height: 1.5em;
  padding-left: 1.5em;
  color: #44728d;
}
.icon::before {
  content: "●";
  color: #44728d;
  position: absolute;
  left: 0;
}

.fgm_back img {
  width: 420px;
  height: 153px;
}

.fgm_back_2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7%;
}
.fgm_back_2 img {
  width: 420px;
  height: 153px;
}

.law_text {
  font-size: clamp(1.4rem , calc(0.7931034483rem + 0.0189655172 * 100vw) , 2.5rem);
}

.law_text:nth-of-type(2) {
  font-weight: bold;
  top: 19.1%;
  left: 41%;
}

.law_text:nth-of-type(3) {
  font-weight: bold;
  top: 39.6%;
  left: 41%;
}

.back_btn {
  display: inline-block;
}
/* --プラポリ-end-- */
/*--------------------------------------------------------
↑↑↑ 各種レイアウト ↑↑↑
--------------------------------------------------------*/
/*--------------------------------------------------------
↓↓↓ フォーム部分 ↓↓↓
--------------------------------------------------------*/
/********
ラジオボタン
********/
/********
チェックボックス
********/
/*--------------------------------------------------------
↑↑↑ フォーム部分 ↑↑↑
--------------------------------------------------------*/

/* ========　特定商法取引のページ ============= */
.law_wrap {
  /* background-color: #84ffae; */
  padding: 0% 0% 4% 0;
}
.law_subtitle {
  color: black;
}
.law_contents {
  margin: 5%;
}

.text-container {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  padding: 4%;
}
.wrapper {
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}
.underline {
  text-decoration: underline;
}
.blue {
  color: blue;
}
.bg-blue {
  background-color: #c6dfff;
}
.service_contents {
  margin: 5%;
  padding: 5%;
}
.title-blue {
  color: #006937;
}
h1 {
  font-size: 3rem;
}

.cookie_contents {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #402833;
}
.cookie_contents {
  margin: 5%;
  padding: 2% 4% 4% 4%;
  color: #402833;
}


.cookie_contents p {
  margin-bottom: 2rem;
  color: #402833;
}
.cookie_contents h3 {
  font-weight: bold;
  margin: 4% 0;
}
.cookie_subtitle {
  font-size: 1.35em;

}
.bg-purple{
  background-color: rgb(0, 45, 128);
}