@charset 'utf-8';

/* =========================================================
    共通ヘッダー  / reset css
========================================================= */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: 12px "M PLUS Rounded 1c";
}

a {
  text-decoration: none;
  cursor: pointer;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  width: auto;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* テキスト選択時の背景・文字色 */
::-moz-selection {
  background: #ffde00;
  /*  color: #fff;*/
}

::selection {
  background: #ffde00;
  /*  color: #fff;*/
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: YakuHanJP, 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif, "Font Awesome 5 Free";
  font-size: 14px;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #435c5e;
  background-color: #ffffff;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 18px;
    font-size: 1.8em;
  }
}



/* ------------------------------------------
マーカー
------------------------------------------ */
/* pink */
.pink-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(28%, #f15f62));
  background: linear-gradient(transparent 72%, #f15f62 28%);
}

/* yellow */
.yellow-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(28%, #efe93e));
  background: linear-gradient(transparent 72%, #efe93e 28%);
}


/* ------------------------------------------
背景
------------------------------------------ */
.bg-yellow {
  background: #efe93e;
}


/* ------------------------------------------
CTAボタン
------------------------------------------ */
.cta-buttons {
  display: none;
  position: relative;
}

.cta-buttons ul {
  position: fixed;
  z-index: 99999;
  bottom: 100px;
}

/*  キャンペーン  */
.btn-cp a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  border-left: 10px solid #f0f0e7;
  border-top: 10px solid #f0f0e7;
  border-bottom: 10px solid #f0f0e7;
}

.btn-regist a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  position: relative;
  top: 40px;
  border-left: 10px solid #f0f0e7;
  border-top: 10px solid #f0f0e7;
  border-bottom: 10px solid #f0f0e7;
}

@media screen and (min-width: 1024px) {
  .cta-buttons {
    display: none;
  }

  .cta-buttons ul {
    top: 300px;
    right: 0;
  }

  .btn-cp a {
    padding: 20px;
    width: 100px;
    color: #ffffff;
    border-left: 10px solid #f0f0e7;
    border-top: 10px solid #f0f0e7;
    border-bottom: 10px solid #f0f0e7;
  }

  .btn-regist a {
    padding: 20px;
    width: 100px;
    color: #ffffff;
    position: relative;
    top: 40px;
    border-left: 10px solid #f0f0e7;
    border-top: 10px solid #f0f0e7;
    border-bottom: 10px solid #f0f0e7;
  }
}


/* ------------------------------------------
共通ヘッダー（ロゴ＋新規登録・ログインボタン）
------------------------------------------ */
.header {
  width: 100%;
  height: 40px;
  background: #ffffff;
  position: fixed;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 0 4px #333333;
  box-shadow: 0 0 4px #333333;
}

/* ヘッダーロゴ -------------*/
.header-logo {
  width: 100px;
  padding: 6px;
}

.header-logo img {
  max-width: 100px;
  height: auto;
}


@media screen and (min-width: 768px) {
  .header {
    height: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-logo img {
    max-width: 146px;
  }


  .header-logo {
    width: auto;
    padding-left: 20px;
  }
}


/* 登録・ログインボタン =============*/
.header-buttons {
  padding-right: 10px;
}

.header-buttons li {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.header-buttons li:first-child {
  margin-right: 5px;
}

.header-buttons li i {
  margin-right: 5px;
}

.header-buttons li a {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 11px 20px;
  border: none;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;

}

/*　新規登録ボタン　*/
.btn-yamabuki {
  background-color: #FDB647;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-yamabuki:hover {
  background-color: #f79803;
}

.btn-yamabuki:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-yamabuki:visited {
  color: #ffffff;
}

/*　緑　*/
.btn-green {
  background: #49b9b7;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-green:hover {
  background-color: #22a2a0;
}


.btn-green:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-green:visited {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .header-buttons {
    padding-right: 20px;
  }

  .header-buttons li a {
    padding: 11px 40px;
    font-size: 14px;
  }
}


/* ------------------------------------------

HeroImage

------------------------------------------ */
.section-heroImg {
  position: relative;
  background-color: #48bab7;
  background-image: url(../img/heroImg-bg.jpg);
  background-repeat: repeat-x;
  background-position: bottom;
}


.heroImg {
  position: relative;
  width: 100%;
  max-width: 1130px;
  height: 32vw;
  min-height: 195px;
  /*  max-height: 296px;*/
  /*  min-height: 260px;*/
  padding: 56px 1rem 0;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
}



@media screen and (min-width: 768px) {
  .heroImg {
    height: 240px;
  }
}

@media screen and (min-width: 1024px) {
  .heroImg {
    height: 296px;
  }
}


.heroImg img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;

  max-width: 340px;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .heroImg img {
    width: auto;
    max-width: 100%;
    top: 72px;
  }
}





/* ------------------------------------------
main
----------------------------------------- */

main {
  display: block;
  /*  padding: 24px 0 0;*/
  position: relative;
}

@media screen and (min-width: 1024px) {
  main {
    padding: 24px 0 0;
  }
}

/* ------------------------------------------
設問共通ブロック
------------------------------------------ */
/* section-blockの外枠  */
.section-block-wrap {
  width: 100%;
  padding: 24px 0;
  position: relative;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


@media screen and (min-width: 768px) {
  .section-block-wrap {
    padding: 56px;
  }
}


.section-block {
  width: 100%;
  max-width: 1200px;
  padding: 1.6rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-block-wrap h2 {
  color: #429ea5;
  font-weight: 700;
  padding-bottom: 2rem;
  font-size: 2.286rem;
  text-align: center;
  line-height: 1.4;
}

.section-text {
  text-align: left;
  line-height: 2;
}

.section-text:not(:last-child) {
  margin-bottom: 1rem;
}

.section-image {
  text-align: center;
}


@media screen and (min-width: 768px) {
  .section-block-wrap h2 {
    font-size: 4rem;
    padding-bottom: 3rem;
  }

  .section-text {
    text-align: center;
  }

}

/* ------------------------------------------

冒頭
会員ランクとは？

------------------------------------------ */
.begining {
  padding-top: 6rem;
}


/* ------------------------------------------

目次

------------------------------------------ */
.index {
  background: #edf4f2;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .index {
    background: #edf4f2 url(../img/bg-diamond.png) no-repeat bottom right;
    padding: 24px 0;
  }
}

.index-items {
  width: 80%;
  max-width: 360px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.index-items li {
  width: 100%;
  margin-bottom: 1.6rem;
}

.index-items li a {
  display: block;
  position: relative;
  color: #435c5e;
  -webkit-transition: .6s;
  transition: .6s;
}

.index-items li a span {
  border-bottom: 1px dashed #429ea5;
  padding: 8px 0 4px;
  color: #429ea5;
  -webkit-transition: .6s;
  transition: .6s;
}

.index-items li a:hover span {
  border-bottom: 1px dashed #edf4f2;
  letter-spacing: 2px;
  font-weight: 700;
  color: #23bfad;
}

.index-items li a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  color: #429ea5;
  font-size: 1.2rem;
  font-weight: 900;
  margin-right: 2rem;
  -webkit-transition: .3s;
  transition: .3s;

}

.index-items li a:hover::before {
  content: "\f078";
  color: #23bfad;
  font-size: 1.6rem;
}


/* ------------------------------------------

どうすれば「QP」を貯められる？

------------------------------------------ */
.howToGetQP {
  background-color: #edf4f2;

}

.howTo {
  padding: 2rem 0 1rem;
}

@media screen and (min-width: 768px) {
  .howToGetQP {
    background: -webkit-gradient(linear, left top, left bottom, from(#edf4f2), color-stop(64%, #edf4f2), color-stop(64%, #ddeceb), to(#ddeceb));
    background: linear-gradient(180deg, #edf4f2 0%, #edf4f2 64%, #ddeceb 64%, #ddeceb 100%);
  }

  .howTo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 4rem;
  }
}

.howTo dl {
  background-color: #FFFFFF;
  padding: 1rem 3rem;
  position: relative;
}

.howTo dl:not(:last-child) {
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .howTo dl {
    width: 33.3%;
    margin: 0 8px;
  }

  .howTo dl:not(:last-child) {
    margin-bottom: 0;
  }
}

.howTo .no {
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #429ea5;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


@media screen and (min-width: 768px) {
  .howTo .no {
    width: 40px;
    height: 40px;
  }
}

.howTo .content {
  padding-top: 2rem;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .howTo .content {}
}

.howTo .content .text,
.howTo .content .image {
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
}


.howTo .content .image img {
  width: auto;
  max-width: 140px;
  max-height: 80px;
}


@media screen and (min-width: 768px) {

  .howTo .content .text,
  .howTo .content .image {
    width: 100%;
    display: block;
    text-align: center;
  }

  .howTo .content .image img {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
  }
}


.howTo .linkInviteFriends {
  text-align: center;
}

.howTo .linkInviteFriends a {
  display: inline-block;
  position: relative;
  color: #429ea5;
  border-bottom: 1px dashed #429ea5;
  -webkit-transition: .6s;
  transition: .6s;
}

.howTo .linkInviteFriends a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  -webkit-transition: .3s;
  transition: .3s;
  margin-left: .8rem;
}

.howTo .linkInviteFriends a:hover {
  border-bottom: 1px dashed white;
  color: #23bfad;
}



/* ------------------------------------------

ランクアップすると

------------------------------------------ */
.doublePoints {
  background: #429ea5;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(54%, rgb(72, 186, 183)), to(rgb(64, 188, 152)));
  background-image: linear-gradient(90deg, rgb(72, 186, 183) 54%, rgb(64, 188, 152) 100%);
}

.doublePoints h2 {
  color: #FFFFFF;
}

.doublePoints img {
  width: auto;
}

.fukidashi {
  position: relative;
  display: block;
  margin: 1.5em auto;
  padding: 24px 56px;
  max-width: 770px;
  color: #ffffff;
  background: #31b9b5;
  border: 5px solid #FFFFFF;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffffff;
}

.fukidashi > img {
  width: 80px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .fukidashi {
    border: 8px solid #FFFFFF;
  }

  .fukidashi > img {
    width: 100px;
  }

}

.fukidashi span {
  display: block;
  font-weight: 900;
  text-align: center;
  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;
}

/* 1行目 */
.fukidashi span:nth-child(1) {}

.fukidashi span:nth-child(1) img {
  width: 32px;
}

@media screen and (min-width: 768px) {
  .fukidashi span:nth-child(1) img {
    width: 56px;
  }
}


/* 2行目 */
.fukidashi span:nth-child(2) {
  font-size: 3rem;
  color: #ffdf31;
}

.fukidashi span:nth-child(2) img {
  width: 48px;
  margin-right: 1rem;
  color: #fff600;
}

.fukidashi + p {
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .fukidashi span {
    font-size: 2.4rem;
  }

  .fukidashi span:nth-child(2) {
    font-size: 6rem;
    line-height: 1.4;
  }

  .fukidashi span:nth-child(2) img {
    width: 64px;
  }

  .fukidashi + p {
    font-size: 3.2rem;
  }
}





/* ------------------------------------------

ランクが上がると何がもらえる？

------------------------------------------ */
.whatYouget {
  padding: 0 0 56px;
}

.whatYouget h2 {
  position: relative;
  background: #ddeceb;
  padding: 24px 0;
  margin-bottom: 2rem;
}


.whatYouget h2 span {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  line-height: 1.4;
}

.whatYouget h2 img {
  width: 96px;
}

.whatYouget h2::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #ddeceb transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .whatYouget h2 {
    padding: 72px 0 48px;
    margin-bottom: 4rem;
  }

  .whatYouget h2 img {
    width: 140px;
  }
}

/* wチャンス */
.wchance {
  background: #429ea5;
  color: #ffdf31;
  padding: 0 .4rem;
}


.rank-table {
  width: 100%;
  max-width: 856px;
  border-collapse: separate;
  border-spacing: 2px;
  margin: 2rem auto 0;
}

@media screen and (min-width: 768px) {
  .rank-table {
    margin: 4rem auto 0;
  }
}


.rank-table th {
  line-height: 1.4;
}

.rank-table .item-header th {
  border-top: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  vertical-align: middle;
  padding: 16px 0 8px;
  color: #7a7a7a;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .rank-table {
    font-size: 16px;
  }

  .rank-table .item-header th {
    font-weight: bold;
    font-size: 14px;
  }
}

/* ランク　*/
.rank-table .item-header th:nth-child(1) {
  width: 20%;
}

/* 当選人数・抽選ポイント　*/
.rank-table .item-header th:nth-child(2),
.rank-table .item-header th:nth-child(3) {
  width: 21%;
  margin: 0 2px;
}

/* Wチャンス */
.rank-table .item-header th:nth-child(4) {
  width: 34%;
  background: #429ea5;
  color: #ffdf31;
  font-weight: 700;
}


/* ダイヤモンド〜レギュラーまでのセル */
.rank-table tr:not(:first-child) th {
  font-size: 11px;
}

.rank-table tr:not(:first-child) th,
.rank-table tr:not(:first-child) td {
  padding: 8px;
  vertical-align: middle;
}

.rank-table tr:not(:first-child) th img {
  width: 32px;
}

@media screen and (min-width: 768px) {

  .rank-table tr:not(:first-child) th,
  .rank-table tr:not(:first-child) td {
    padding: 2rem;
  }

  .rank-table tr:not(:first-child) th {
    font-size: 14px;
  }

  .rank-table tr:not(:first-child) th img {
    width: auto;
  }


  /* 当選人数・抽選ポイント　*/
  .rank-table .item-header th:nth-child(2),
  .rank-table .item-header th:nth-child(3) {
    width: 25%;

  }

  /* Wチャンス */
  .rank-table .item-header th:nth-child(4) {
    width: 30%;
    font-size: 2.4rem;
  }


}


/* ダイヤモンド　*/
.diamond {
  color: #303030;
}

.diamond th {
  background-color: #e3e3e3;
  border-left: 3px solid #7a7a7a;
}

.diamond td {
  background-color: #f5f5f5;
}

.diamond td:last-child {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}


/* プラチナ */
.platinum {
  color: #257ec1;
}

.platinum th {
  background-color: #d2edf6;
  border-left: 3px solid #41b4d8;
}

.platinum td {
  background-color: #f5fbfd;
}


/* ゴールド */
.gold {
  color: #bf9002;
}

.gold th {
  background-color: #fbf1c2;
  border-left: 3px solid #e5be1a;
}

.gold td {
  background-color: #fdfbf1;
}


/* シルバー */
.silver {
  color: #919191;
}

.silver th {
  background-color: #eff1f3;
  border-left: 3px solid #bcc6cc;
}

.silver td {
  background-color: #fbfbfc;
}


/* ブロンズ */
.bronze {
  color: #a85000;
}

.bronze th {
  background-color: #fae3c9;
  border-left: 3px solid #ea891f;
}

.bronze td {
  background-color: #fefbf8;
}

/* レギュラー */
.regular {
  color: #578c29;
}

.regular th {
  background-color: #e1f3d1;
  border-left: 3px solid #80cc3e;
}

.regular td {
  background-color: #ffffff;
  text-align: center;
}

.regular td span {
  width: 40px;
  margin: 0 auto;
  display: inline-block;
  border-top: 2px solid #d7d7d7;
}

/* 当選人数・抽選ポイントの文字サイズ */
.rank-table tr:not(:first-child) td:nth-child(2),
.rank-table tr:not(:first-child) td:nth-child(3) {
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: normal;
}

.rank-table tr:not(:first-child) td:nth-child(2) span,
.rank-table tr:not(:first-child) td:nth-child(3) span {
  font-size: 12px;
  display: block;
}

/* Wチャンスのスタイル　*/
.rank-table .diamond td:last-child,
.rank-table .platinum td:last-child {
  background-color: #e2f2f3;
  color: #435c5e;
  line-height: 1.4;
}

.rank-table .diamond td:last-child span,
.rank-table .platinum td:last-child span {
  font-size: 12px;
  margin-bottom: 8px;
}

.rank-table .platinum td:last-child span {
  display: block;
}


@media screen and (min-width: 768px) {

  .rank-table tr:not(:first-child) td:nth-child(2),
  .rank-table tr:not(:first-child) td:nth-child(3) {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .rank-table tr:not(:first-child) td:nth-child(2) span,
  .rank-table tr:not(:first-child) td:nth-child(3) span {
    font-size: 14px;
    display: block;
  }


  /* Wチャンスのスタイル　*/
  .rank-table .diamond td:last-child {
    font-size: 3.2rem;
    font-weight: 700;
  }

  .rank-table .platinum td:last-child {
    font-size: 2.4rem;
    font-weight: 700;
  }

  .rank-table .platinum td:last-child span {
    display: block;
    font-weight: normal;
    margin-top: 1rem;
  }



}







/* ------------------------------------------

会員ランクの期間について

------------------------------------------ */
.rankPeriod {
  padding: 0 0 56px;
}

.rankPeriod .totalingPeriod dt {
  border-top: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  text-align: center;
  color: #748493;
  font-weight: 700;
  padding: 2rem 1rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .rankPeriod .totalingPeriod dt {
    font-size: 2.4rem;
  }
}

.totalingPeriod {
  width: 100%;
  max-width: 900px;
  padding: 2rem 0 6rem;
  margin: 0 auto;
}

.totalingPeriod .month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 2rem;
}

@media screen and (min-width: 768px) {
  .totalingPeriod .month {
    padding: 2rem 1rem;
    ;
  }
}

.totalingPeriod .month li {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  width: 25%;
  border-radius: 8px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .totalingPeriod .month li {
    padding: 1rem;
    font-size: 1.8rem;
  }
}

.period1 {
  background-color: #5b9bd5;
}

.period2 {
  background-color: #56bcad;
  margin: 0 8px;
}

.period3 {
  background-color: #53b76a;
  margin-right: 8px;
}

.period4 {
  background-color: #70ad47;
}

.janToMar {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  background-color: #f3f9ff;
  border: 1px solid #abd1f4;
  border-radius: 8px;
  padding: 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.janToMar ul li {
  text-align: center;
}

.janToMar ul li:not(:last-child) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .janToMar ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .janToMar ul li {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2rem;
  }
}

/* 2〜3月期間限定用 */
.febToMar {
  text-align: center;
  margin-top: 4rem;
}

/* index.htmlへのリンク */
.btn-index {
  text-align: center;
  padding: 56px 0;
}

.btn-index a {
  position: relative;
  display: inline-block;
  color: #429ea5;
  font-weight: 700;
  border: 3px solid #429ea5;
  border-radius: 50px;
  padding: 1rem 8rem;
  -webkit-transition: .6s;
  transition: .6s;
}

.btn-index a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  -webkit-transition: .3s;
  transition: .3s;
  margin-left: .8rem;
}

.btn-index a:hover {
  border: 3px solid white;
  color: #23bfad;
  letter-spacing: 2px;
}


/* 獲得QPによる例*/
.example dt {
  text-align: center;
  padding-bottom: 1rem;
}

.example dt span {
  border: 1px solid #a1b4c5;
  padding: 1rem 4rem;
  font-weight: 700;
  color: #748493;
}

.yearAround li {
  text-align: center;
  padding: 1rem 4rem 2rem;
}


@media screen and (min-width: 768px) {
  .example dt {
    font-size: 2.4rem;
  }

  .example dt + dd {
    padding: 1rem 0;
  }

  .yearAround {
    width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .yearAround ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .yearAround li {
    width: 33.33%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1rem 1rem 2rem;
  }

}



/* ------------------------------------------

注意点

----------------------------------------- */
.notice {
  background-color: #ddeceb;
}

.notice-items {
  padding-left: 1rem;
}

.notice-items li {
  list-style-type: disc;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}


/* ------------------------------------------

よくある質問

----------------------------------------- */
.faq {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(54%, rgb(72, 186, 183)), to(rgb(64, 188, 152)));
  background-image: linear-gradient(90deg, rgb(72, 186, 183) 54%, rgb(64, 188, 152) 100%);
}

.faq a {
  display: block;
  width: 50%;
  max-width: 180px;
  border-radius: 28px;
  border: 4px solid #9cdad8;
  padding: 1rem 6rem;
  margin: 0 auto;
  background: #FFFFFF;
  color: #429ea5;
  text-align: center;
  font-weight: 700;
  -webkit-transition: .6s;
  transition: .6s;
}

.faq a:hover {
  border: 4px solid #ffffff;
  letter-spacing: 2px;
}

.faq p {
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  padding-top: 1rem;
}

@media screen and (min-width: 768px) {
  .faq p {
    font-size: 2.4rem;
  }
}


/* ------------------------------------------
CTAエリア
----------------------------------------- */
.cta-area {
  background: #FFFFFF;
  color: #2a2a17;
}

.cta-area-text {
  padding: 30px 2rem 0;
}

.cta-copy {
  padding: 0 0 20px;
}

.cta-logo {
  display: block;
  text-align: center;
}

.cta-logo img {
  width: 25%;
  max-width: 120px;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.cta-text {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
}

.cta-area-btn {
  padding: 20px 20px 40px;
}

.cta-area-btn__above-text {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
}

/* 新規登録ボタン（大） */
.btn-yamabuki-large {
  text-align: center;
}

.btn-yamabuki-large a {
  display: block;
  position: relative;
  /*  width: 100%;*/
  max-width: 400px;
  font-size: 2rem;
  line-height: 1.5;
  background: #fd5147;
  padding: 16px 64px;
  border-bottom: solid 6px #803905;
  border-radius: 40px;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn-yamabuki-large a i {
  margin-right: 10px;
}

.btn-yamabuki-large a:hover {
  -webkit-box-shadow: 0 4px 16px 0 #e59995;
  box-shadow: 0 4px 16px 0 #e59995;
}

.btn-yamabuki-large a:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: none;
  top: 6px;
}


.btn-yamabuki-large a:hover {
  text-decoration: none;
  color: #fff;
}

.btn-yamabuki-large a::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-btn1 6s ease-in-out infinite;
  animation: shiny-btn1 6s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@media screen and (min-width: 1024px) {
  .cta-area-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 30px 0;
  }

  .cta-area-btn {
    padding: 30px 0 70px;
  }

  .cta-area-btn__above-text {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 1rem;
  }

  .cta-logo {
    width: auto;
  }

  .btn-yamabuki-large a {
    width: 500px;
    padding: 20px 72px;
  }
}

/* footer **************************************/
footer {
  background: #152453;
}

.footer {
  text-align: center;
  padding: 3vh;
}

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

.wrap-footer {
  font-size: 13px;
  text-align: left;
  list-style: disc;
}

.wrap-footer li {
  margin-bottom: 2vh;
}

.wrap-footer li a {
  font-weight: bold;
  margin-bottom: 1vh;
  text-decoration: none;
  color: #ffffff;
}

@media screen and (min-width: 1024px) {
  .wrap-footer li {
    margin-bottom: 2vh;
    display: inline-block;
  }

  .wrap-footer li:not(:last-child) {
    margin-right: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 984px;
    margin: 0 auto;
  }

}

.wrap_footer_copy {
  display: block;
  color: #dddddd;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 2vh 0 0.5vh;
}



/* =============================================

部分的なスタイリング

=============================================*/

/* textセンタリング用 */
.centered {
  text-align: center;
}

/* 改行 */
.br-sp {
  display: inline;
}

.br-pc {
  display: none;
}

/* PCのみ改行 */
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }

  .br-pc {
    display: inline;
  }
}

/* フォント(小 12px) */
.text-small {
  font-size: 12px;
  font-size: 1.2rem;
}

/*フォントカラー（pink） */
.text-pink {
  color: #f15f62;
}

/*フォントカラー（grey） */
.text-grey {
  color: #656565;
}

/*フォントカラー（black） */
.text-black {
  color: #3a3134;
}


/*フォントカラー（yellow） */
.text-yellow {
  color: #fff600;
}

/*フォントカラー（yellow） */
.text-orange {
  color: #ffa200;
}



/*フォントカラー（薄きいろ） */
.text-lightYellow {
  color: #fffec8;
}


/*フォントカラー（white） */
.text-white {
  color: #ffffff;
}

/*フォントカラー（green） */
.text-green {
  color: #269078;
}


/* 強調 太字 */
.emphasis {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .emphasis {
    font-size: 2.4rem;
  }
}

strong {
  font-weight: 700;
}


/* =============================================

トップへ戻るボタン

============================================= */
#page_top {
  position: fixed;
  right: 8px;
  bottom: 160px;
  width: 64px;
  height: 64px;
  background: #48bab7;
  border-radius: 50%;
  border: 3px solid #ffffff;
  -webkit-box-shadow: 8px 8px 6px 1px rgba(0, 0, 0, 0.24);
  box-shadow: 8px 8px 6px 1px rgba(0, 0, 0, 0.24);
}

@media screen and (min-width: 768px) {
  #page_top {
    width: 80px;
    height: 80px;
    right: 24px;
  }
}

#page_top a {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: .6s;
  transition: .6s;
}

#page_top a:hover {
  letter-spacing: 2px;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 25px;
  color: #fff600;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 4px;
/*  bottom: 10px;*/
  right: 0;
  left: 0;
  margin: auto;
  padding-bottom: 8px;
}

#page_top a span {
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  #page_top {
    width: 80px;
    height: 80px;
    right: 24px;
  }
  
  #page_top a {
    font-size: 12px;
  }
}