/* =========================================================
    共通ヘッダー  / 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;
}

/*  共通CSS  =============*/

html { font-size: 62.5%;}

body {
  font-family: -apple-system, 'BlinkMacSystemFont', 'Segoe UI', 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 18px;
  font-size: 1.8em;
  letter-spacing: 0.5px;
  color: #111111;
  line-height: 1.2;
  position: relative;
  background-color: #edebdf;
  background: #f0f0e7 url('../img/bg.gif');
}

img { max-width: 100%;}


/* 各コンテンツの共通ブロック =============*/
.section-block {
  width: 100%;
  padding: 50px 20px 25px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 3vw;
  color: #FFFFFF;
  margin: 0 auto;
}

.section-title img {
  max-height: 70px;
}

@media screen and (min-width: 1024px) {
  .section-block {
    max-width: 1000px;
    padding: 70px 20px;
  }
  
  .section-title {
    width: 80%;
    font-size: 4rem;
  }  
}

/*  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;
  background-color: #d43030;
  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;
  background-color: #d43030;
  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;
  }
}


/*  グローバルナビ  =============*/
/* =========================================================
    共通ヘッダー for LP
========================================================= */
.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; 
  border-bottom: 3px solid #d43030;
}

/* ヘッダーロゴ =============*/
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
  padding: 6px;
}


.header-logo img {
  line-height: 42px;
  vertical-align: middle;
/*  width: 20%;*/
}


@media screen and (min-width: 769px) {
  .header {
/*
    width: 100%;
    height: 40px;
*/
    border-bottom: 5px solid #d43030;
  }
  
  .header-logo {
/*    width: 100px;*/
    padding-left: 20px;
  }
}




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

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

.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 10px;
  border: none;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

/*　新規登録ボタン　*/
.btn-yamabuki {
  background: #FDB647;
}

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

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

/*　緑　*/
.btn-green {
  background: #49b9b7;
}

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

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

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

  .header-buttons li a {
    padding: 11px 35px;
  }
}


/*  nav-bottom  =============*/

nav {
  width: 100%;
}

.nav-bottom {
  position: fixed;
  bottom: 0;
  z-index: 99999;
}

.nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nav li {
  text-align: center;
  background: #2a2a17;
  width: 33.333%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.nav li:nth-child(even) {
  margin: 0 3px;
}

.nav li a {
  width: 100%;
  height: 100%;
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 8px 0 0;
  line-height: 2;
}

/* ナビアイコン上 */
.nav-icon {
  display: block;
  text-align: center;
}

.nav-icon img {
  width: 30%;
  max-width: 71px;
}

/* ナビアイコン下（arrow） */
.nav-arrow {
  display: block;
  background: #691111;
  margin-top: 10px;
}

.nav .fas {
  display: block;
  color: #b5a16a;
}

@media screen and (min-width: 769px) {
  .nav-bottom {
    width: 120px;
    right: 0;
  }

  .nav {
    display: block;
  }
  
  .nav li a {
    padding: 12px 0;
  }
  
  .nav li {
    width: 120px;
    margin-bottom: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .nav li:nth-child(even) {
    margin: 0 0 10px;
  }
  
}


/*  メインビジュアル  =============*/
.mainvisual {
  padding: 60px 20px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  background: #d43030 url('../img/mainvisual_bg.png') no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 20px;
}

.mainvisual img {
  
}

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

  .mainvisual {
    width: 100%;
/*    position: fixed;*/
  }
  .mainvisual img {
/*    width: 70%;*/
    padding: 30px 70px;
  }
}

/*  キャンペーン概要  =============*/
.beginning {
  width: 100%;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #d43030;
}

.cp-summary {
  padding-bottom: 20px;
}

.cp-summary h2 {
  text-align: left;
  line-height: 1.5;
  padding-bottom: 0;
  padding: 20px 0;
  border-bottom: 1px solid #FFFFFF;
}

.cp-summary p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #FFFFFF;
  padding-top: 10px;
  padding-bottom: 20px;
}

.cp-summary p span {
  background: #ffd800;
  padding: 0 5px;
  color: #111111;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .beginning {
  }

  .cp-summary {
    padding-bottom: 50px;
/*
    width: 1100px;
    margin: 0 auto;
*/
  }
  
  .cp-summary h2 {
    width: 70%;
    max-width: 960px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 20px auto;
    font-size: 3rem;
  }

  .cp-summary p {
    width: 70%;
    max-width: 960px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 1.8rem;
  }
}

/* デモグラフィック */
.demographic {
  width: 100%;
  background: #ffffff;
  padding: 0 20px 20px;
  border-radius: 10px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.demographic h2 {
  text-align: center;
  font-weight: 700;
/*  font-size: 2.4rem;*/
  color: #111111;
}

/* 吹き出し */
.balloon-wrap {
  position: relative;
  top: -20px;
  display: inline-block;
  padding: 18px 30px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #111;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow:6px 5px 5px -4px #666666;
  box-shadow:6px 5px 5px -4px #666666;
}

.balloon-wrap:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon-wrap:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}

.balloon-wrap h2 {
  margin: 0;
  padding: 0;
}

/* 参加人数 カウントアップ */
.numberOfAnswerer {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
}

.numberOfAnswerer-txt {
  font-size: 1.4rem;
  font-weight: 900;
}

.numberOfAnswerer-num {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.demogra-chart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.demogra-chart li {
  width: 200px;
/*
  max-width: 50%;
  min-width: 33.3333%;
*/
  text-align: center;
}

.demogra-chart li span {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  padding: 6px 0 20px;
}

@media screen and (min-width: 1024px) {
  
  .balloon-wrap {
    left: 30px;
  }
  
  .demographic {
    width: 960px;
/*    padding: 50px;*/
  }
  
  .demographic h2 {
    font-size: 2rem;
  }
  
  .demogra-chart li {
    max-width: 220px;
    min-width: 33.3333%;
/*    padding: 10px 20px;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 220px;
    min-width: 33.3333%;
  }
  
  .demogra-chart li canvas {
    margin: 0 auto;
  }
  
  .demogra-chart li img {
    max-width: 220px;
    min-width: 33.3333%;
  }
  
  
  .demogra-chart li span {
    padding-top: 20px;
    font-size: 2rem;
  }
  
  /* 参加人数 カウントアップ */
  .numberOfAnswerer {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  .numberOfAnswerer-txt {
    width: 50%;
    font-size: 3rem;
    font-weight: 900;
  }

  .numberOfAnswerer-num {
    width: 80%;
    font-size: 6rem;
    font-weight: 700;
    margin: 0 auto;
  }
  
  .numberOfAnswerer-num span {
    padding-right: 20px;
    font-size: 4rem;
  }
}


/* 参加人数カウントアップ */
.count {
  font-size: 16rem;
  color: #d43030;
  letter-spacing: -6px;
}

/* アンケート結果 */
.ques-result > div {
  display: block;
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 50px;
}

/* Q用ラベル*/
.q-label {  
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 20px;
  margin: 0;
  padding: 10px 0 7px;
  z-index: 2;
  width: 40px;
  text-align: center;
  color: white;
  font-size: 13px;
  background: #d43030;
/*  border-radius: 2px 0 0 0;*/
}

.q-label:before {
  position: absolute;
  content: '';
  top: 0;
  left: -5px;
  border: none;
/*
  border-bottom: solid 6px #d43030;
  border-right: solid 5px transparent;
*/
}

.q-label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid #d43030;
}


@media screen and (min-width: 1024px) {
  
  
  .ques-result > div {
    padding: 60px 90px;
  }
  
  .q-label {
    width: 100px;
    font-size: 24px;
    font-weight: 700;
    padding: 20px 0 17px;
  }
  
  .q-label:before {
    
  }
  
  .q-label:after {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 20px solid #d43030;
  }

}


.ques-result div h3 {
/*  width: 70%;*/
/*  margin: 0 auto;*/
  font-weight: 700;
  font-size: 2rem;
  padding-bottom: 10px;
  position: relative;
}

.ques-result dl dt {
/*  width: 70%;*/
/*  margin: 0 auto;*/
  font-weight: 700;
  font-size: 2rem;
  padding-bottom: 10px;
  position: relative;
}

.q-title {
  width: 66%;
  display: block;
}

.q-icon {
  max-width: 100px;
  position: absolute;
  top: -30px;
  right: 0;
}

@media screen and (min-width: 1024px) {
  
  .ques-result div h3 {
    margin: 0 auto;
    font-weight: 700;
    font-size: 3.2rem;
  }
  
  .ques-result dl dt {
    margin: 0 auto;
    font-weight: 700;
    font-size: 3.2rem;
  }
  
  .q-title {
    width: 70%;
  }
  
  .q-icon {
    max-width: 180px;
    top: -60px;
    right: -20px;
  }
}

.ques-result-area {
  position: relative;
}

.ques-result-area ul {
  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;
  
  
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
}

.ques-result-area ul li {
/*  width: 100%;*/
}

.chart {
  width: 200px;
  padding-top: 10px;
  padding-bottom: 70px;
}

.comment {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}

/*  正解ラベル */
.answer {
  width: 160px;
  margin: auto;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 10px 20px 10px 50px;
  background: #FFF;
  border: 2px solid #111;
  position: absolute;
  top: 200px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10000;
  -webkit-box-shadow:4px 4px 6px -3px #272827;
  box-shadow:4px 4px 6px -3px #272827;
  letter-spacing: 0;
}

.answer span {
  font-size: 1.2rem;
}

.icon-corrent {
  width: 60px;
  position: absolute;
  top: -20px;
  left: -20px;
}

/* サブスクへのリンク */
.mail-settings {
  padding: 4px 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
  background: #999999;
  font-weight: 700;
  border-radius: 10px;
  color: #FFFFFF;
  line-height: 2;
}

.mail-settings i {
  font-size: 1.2rem;
  padding-left: 7px;
}

.mail-settings:hover {
  background: #dddddd;
  -webkit-transition: .5s;
  transition: .5s;
}

@media screen and (min-width: 769px) {
  
  .ques-result-area ul {
    width: 700px;
    margin: 0 auto;
  }
  
  
  .ques-result-area {
     position: relative;
  }

  .ques-result div:nth-child(even) ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .chart {
    width: 220px;
    margin-bottom: 0;
/*    padding: 20px;*/
    position: relative;
  }

  .comment {
    width: 420px;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.5;
/*    padding: 20px;*/
  }

  .comment-perspective {
    -webkit-perspective: 500px;
    perspective: 500px;
  }

  .comment-txt {
    -webkit-transform:rotateY(20deg);
    transform:rotateY(20deg);
    background: rgba(249,249,249, 0.8);
    padding: 20px 40px;
    line-height: 1.8;
    font-size: 1.6rem;
  }

  .ques-result > div:nth-child(odd) .comment-txt {
    -webkit-transform:rotateY(-20deg);
    transform:rotateY(-20deg);
    background: rgba(249,249,249, 0.8);
  }
  
  .answer {
    width: 260px;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 20px 20px 20px 40px;
    border: 3px solid #111;
    top: 220px;
    left: -50px;
  }
  
  .answer span {
    font-size: 2rem;
  }
  
  .icon-corrent {
    width: 80px;
    position: absolute;
    top: -60px;
    left: -40px;
  }

}

/*  正解者人数  =============*/
.winner {
  position: relative;
/*  padding: 30px 0;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 700;
  background-color: rgb(134, 0, 0);
}

.winner::before {
  display: block;
  width: 100%;
  height: 100%;
  
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: " ";
  position: absolute;
  background-image: url('../img/winner_bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
}


.winner h2 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  line-height: 40px;
  vertical-align: middle;
  padding: 30px 0 0;
}

.winner h2 span {
  padding: 0 20px;
  position: relative;
  top: -20px;
}

.winner h2 img {
  max-height: 40px;
}

.numberOfWinner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 30px;
}

.numberOfWinner > div {
  padding: 10px;
  font-size: 3rem;
  color: #FFFFFF;
  background: -webkit-gradient(linear, left bottom, left top, from(#1d1d1d), to(#000000));
  background: linear-gradient(to top, #1d1d1d, #000000);
  border-radius: 10px;
/*  border: 1px solid #111111;*/
}

.numberOfWinner > div:not(last-child) {
  margin-right: 3px;
}

.numberOfWinner p {
  padding: 20px 0 0 0;
  font-size: 3rem;
  color: #FFFFFF;
}

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

  .winner h2 {
    font-size: 5rem;
    padding-top: 100px;
    padding-bottom: 30px;
  }
  
  .winner h2 img {
    max-height: 70px;
  }
  
  .numberOfWinner {
    width: 840px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  
  .numberOfWinner > div {
    font-size: 6rem;
    padding: 30px 40px;
  }
  
  .numberOfWinner > p {
    font-size: 6rem;
    padding: 60px 0 0;
  }  
}

/*  UserVoice  =============*/
.user-voice {
  
  padding: 30px 0;
}

@media screen and (min-width: 1024px) {
  .user-voice {
    
    padding: 80px 0;
  }
}

/* Congratulationsのリボン　*/
.ribbon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 30px;
}

.ribbon {
  display: inline-block;
  position: relative;
  right: 0;
  left: 0;
  height: 45px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
}
.ribbon:before {/*左側のリボン端*/
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -35px;
  z-index: -2;
  border: 20px solid #ceb226;
  border-left-color: transparent;/*山形に切り抜き*/
}

.ribbon:after {/*右側のリボン端*/
  content: '';
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -35px;
  z-index: -2;
  border: 20px solid #ceb226;
  border-right-color: transparent;/*山形に切り抜き*/
}

.ribbon p, .ribbon h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 30px;
  line-height: 45px;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  background: #B19402;/*真ん中の背景色*/
}
.ribbon p:before, .ribbon h2:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px #c45815;/*左の折り返し部分*/
}
.ribbon p:after, .ribbon h2:after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 15px #c45815;/*右の折り返し部分*/
}

@media screen and (min-width: 1024px) {
  .ribbon p, .ribbon h2 {
    font-size: 3rem;
  }
}

.slick-slide {
  height: 172px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, rgba(255,255,255,1)), to(rgba(255,252,234,1)));
  background: linear-gradient(180deg, rgba(255,255,255,1) 32%, rgba(255,252,234,1) 100%);
  border: 3px solid #b5a16a;
  border-radius: 10px;
  padding: 20px 20px;
  margin: 0 8px;
  -webkit-box-shadow:6px 7px 4px -5px #6d0101;
  box-shadow:6px 7px 4px -5px #6d0101;
}

.slick-slide dt {
  font-weight: 700;
  font-size: 1.2rem;
}

.slick-slide dt i {
  font-size: 2rem;
  color: #b5a16a;
  padding-right: 10px;
}

.slick-slide dd {
  padding: 20px 0 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.user-attribute {
  padding-left: 10px;
  font-size: 1rem;
}

.slick-prev, .slick-next {

}

.slick-prev {
  z-index: 1;
  left: 0;
}

.slick-next {
  right: 15px;
}

.slick-prev:before {
  background: #111111;
  padding: 10px 10px 10px 5px;
  color: white;
  opacity: 0.8;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.slick-next:before {
  background: #111111;
  padding: 10px 5px 10px 10px;
  color: white;
  opacity: 0.8;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}


@media screen and (min-width: 1024px) {
  .slick-slide dt {
    font-size: 1.6rem;
  }
  
  .slick-slide dd {
    font-size: 1.4rem;
  }
}

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

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

.cta-copy {
  padding: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
}

.cta-logo {
  width: 18%;
}

.cta-logo img {
  text-align: center;
}

.cta-text {
  width: 75%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.btn-text {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
}

/* 新規登録ボタン（大） */
.btn-yamabuki-large {
  text-align: center;
}
.btn-yamabuki-large a {
  display: block;
  position: relative;
  width: 50%;
  letter-spacing: .1em;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  background: #FDB647;
  padding: 16px 64px;
  border-bottom: solid 4px #b27015;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
}

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

.btn-yamabuki-large a:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}


.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 {
    width: 600px;
    margin: 0 auto;
    padding: 50px 30px 30px;
  }
  
  .cta-text {
    padding: 0 30px;
    font-size: 2rem;
  }
  
  .btn-text {
    font-size: 1.4rem;
  }
  
  .cta-area-btn {
    padding: 30px 0 70px;
  }
  
  .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;
}

/* button back to top */
.toTop {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10000;
}

@media screen and (max-width: 834px) {
  .toTop {
    position: relative;
    display: block;
    right: 0;
    bottom: 0
  }
}

.toTop a {
  display: block;
  background: rgba(28, 28, 28, 0.8);
  width: 73px;
  height: 73px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 3px 0 rgba(10, 29, 47, 0.4);
  box-shadow: 0 2px 3px 0 rgba(10, 29, 47, 0.4);
}

@media screen and (max-width: 425px) {
  .toTop a {
    width: 100%;
    height: 44px;
    border-radius: 0
  }
}

.toTop a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 21px 12.5px;
  border-color: transparent transparent #fff transparent;
  margin-top: 22px
}

@media screen and (max-width: 425px) {
  .toTop a:after {
    border-width: 0 6.25px 10.25px 6.25px;
    margin-top: 16px
  }
}

.toTop a:hover {
  background: #ffffff;
}



