@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする
*/
:root {
  --color-font-default: #262924;
  --color-font-black: #000000;
  --color-font-white: #fff;
  --color-font-light-green: #E2F1D5;
  --color-font-gray: #979797;
  --color-font-dark-gray: #6F6F6F;
  --color-font-dark-gray2: #7F7F7F;
  --color-font-dark-gray3: #828282;
  --color-font-light-gray: #F2F2F2;
  --color-font-light-gray2: #F4F4F4;
  --color-font-light-gray3: #BDBDBD;
  --color-font-red: #FA6767;
  --color-font-green: #6eb92b;
  --color-bg-default: #fff;
  --color-bg-green: #6eb92b;
  --color-bg-light-green: #F3F9EE;
  --color-bg-light-gray: #F7F7F7;
  --color-bg-light-gray2: #F8F8F8;
  --color-bg-gray: #979797;
  --color-bg-black: #262924;
  --color-button-default: #000;
  --color-stroke-default: #121830;
  --color-stroke-gray: #BDBDBD;
  --color-stroke-dark-gray: #979797;
  --color-stroke-light-gray: #EAEAEA;
  --color-stroke-light-gray2: #EEEEEE;
  --color-stroke-light-gray3: #e0e0e0;
  --color-stroke-black: #000000;
  --color-stroke-black2: #262924;
  --color-stroke-white: #ffffff;
  --color-stroke-twitter: #20A1F1;
  --color-stroke-facebook: #405992;
  --color-stroke-green: #6eb92b;
}

/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/* ブレイクポイントの設定 min~max */
/* mq-target:指定してメディアクエリのみに適用 */
/* mq:指定より小さい画面に適用 */
.page-thanks {
  background-color: var(--color-bg-light-gray2);
  margin-top: 32px;
  overflow: hidden;
}

@media screen and (max-width: 896px) {
  .page-thanks {
    margin-top: 0;
  }
}

.page-thanks > .thanks > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 84px;
}

@media screen and (max-width: 896px) {
  .page-thanks > .thanks > .container {
    display: block;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.page-thanks > .thanks > .container > .main {
  width: 100%;
  max-width: 992px;
}

.page-thanks > .thanks > .container > .main > .policy > .ttl {
  font-size: 42px;
  line-height: 180%;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 896px) {
  .page-thanks > .thanks > .container > .main > .policy > .ttl {
    font-size: 20px;
    line-height: 140%;
  }
}

.page-thanks > .thanks > .container > .main > .policy > .desc {
  margin-top: 24px;
  font-size: 14px;
  line-height: 160%;
}

@media screen and (max-width: 896px) {
  .page-thanks > .thanks > .container > .main > .policy > .desc {
    margin-top: 16px;
  }
}

.page-thanks > .thanks > .container > .main > .policy > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 104px;
}

@media screen and (max-width: 896px) {
  .page-thanks > .thanks > .container > .main > .policy > .link {
    margin-top: 48px;
  }
}

.page-thanks > .thanks > .container > .main > .policy > .link > .link {
  width: 100%;
  max-width: 325px;
  padding: 22px 24px;
  font-size: 20px;
  line-height: 160%;
  color: var(--color-font-white);
  background-color: var(--color-bg-green);
  border: none;
  border-radius: 500px;
}

@media screen and (max-width: 896px) {
  .page-thanks > .thanks > .container > .main > .policy > .link > .link {
    max-width: 295px;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 180%;
  }
}
