@charset "UTF-8";
/* 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;
}

/* 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 {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* --------------------- パーツ
/* 画像回り込み */
.img-float-l {
  display: block;
  float: left;
  max-width: 32%;
  max-height: 160px;
  padding: 0 3rem 0 0;
}

@media screen and (min-width: 600px) {
  .img-float-l {
    width: auto;
    max-width: 280px;
    max-height: initial;
    padding: 0rem 3rem 2rem 0;
  }
}

.img-float-r {
  display: block;
  float: right;
  max-width: 40%;
  padding: 0 0 1rem 1rem;
}

@media screen and (min-width: 600px) {
  .img-float-r {
    width: auto;
    max-width: 280px;
    padding: 0 0 1rem 3rem;
  }
}

/* PCのみ */
.only-pc {
  display: none;
}

@media screen and (min-width: 600px) {
  .only-pc {
    display: block;
  }
}

/* SPのみ */
.only-sp {
  display: block;
}

@media screen and (min-width: 600px) {
  .only-sp {
    display: none;
  }
}

/* ポイントカラー */
.point-color01 {
  color: #3ab2c9;
}

.point-color02 {
  color: #fff200;
}

/* ポイントボックス */
.point-box {
  background-color: rgba(255, 242, 0, 0.4);
}

/* フォントサイズ */
.textL {
  font-size: 2.4rem;
  font-weight: 900;
}

/*  ボタン */
.btn-yamabuki {
  max-width: 145px;
  background-color: #fdb647;
  color: #ffffff;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-yamabuki:hover {
  opacity: 0.8;
}

.btn-green {
  max-width: 145px;
  background-color: #49b9b7;
  color: #ffffff;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-green:hover {
  opacity: 0.8;
}

.btn-grey {
  position: relative;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 1rem 2.4rem;
  background-color: #AEB6B4;
  border-radius: 2rem;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 600px) {
  .btn-grey {
    padding: 1rem 4rem;
  }
}

.btn-grey:hover {
  opacity: .8;
  letter-spacing: 2px;
}

.btn-grey::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/chevron_right_white_24dp.svg") no-repeat top center/cover;
}

.btn-grey-border {
  position: relative;
  background: #ffffff;
  border: 1px solid #111829;
  border-radius: 2.4rem;
  color: #111829;
  font-weight: 900;
  font-size: 1.4rem;
  padding: 1rem 2.4rem;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 600px) {
  .btn-grey-border {
    padding: 1rem 4rem;
  }
}

.btn-grey-border:hover {
  border: 2px solid transparent;
  letter-spacing: 2px;
}

.btn-grey-border::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/chevron_right_white_24dp.svg") no-repeat top center/cover;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  position: relative;
  font-family: -apple-system,'BlinkMacSystemFont', "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #111829;
  background-color: #FFFFE7;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}

.header {
  position: fixed;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  box-shadow: 0 0 4px #333333;
  background-color: #ffffff;
  padding: 0 0.5rem 0 1rem;
  z-index: 10000;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .header {
    height: 56px;
    padding: 0 2rem 0 2rem;
  }
}

.header .logo {
  display: block;
  width: 100px;
}

@media screen and (min-width: 600px) {
  .header .logo {
    width: 145px;
  }
}

.header .buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.header .buttons a {
  display: block;
  padding: 11px 20px;
  min-width: 96px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 12px;
}

@media screen and (min-width: 600px) {
  .header .buttons a {
    width: 145px;
    padding: 11px 40px;
  }
}

.header .buttons a:not(:last-child) {
  margin-right: 1rem;
}

@media screen and (min-width: 600px) {
  .header .buttons a {
    font-size: 14px;
  }
  .header .buttons a:not(:last-child) {
    margin-right: 2rem;
  }
}

/* ---------------------メインビジュアル */
.mainvisual {
  width: 100%;
  background: #ffffff url("../img/mainvisual-bg.jpg") no-repeat top center;
  background-size: cover;
  padding-top: 49px;
}

.mainvisual .inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .mainvisual .inner {
    width: 96%;
  }
}

@media screen and (min-width: 1440px) {
  .mainvisual .inner {
    width: 80%;
    padding: 0 8rem;
    background-attachment: fixed;
  }
}

.mainvisual .title-area {
  position: relative;
  max-width: 960px;
  font-size: 1.8rem;
  color: #ffffff;
  box-sizing: border-box;
  text-shadow: 1px 2px 3px rgba(17, 24, 41, 0.6);
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area {
    padding: 8rem 0;
  }
}

.mainvisual .title-area p {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area p {
    text-align: left;
  }
}

.mainvisual .title-area h1 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 {
    width: 96%;
    font-size: 2rem;
  }
}

.mainvisual .title-area h1 span.frame-border {
  display: block;
  max-width: 120px;
  border: 2px solid #ffffff;
  padding: 8px 1rem;
  margin: 0 1rem 1rem 0;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 4px;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 span.frame-border {
    display: inline;
  }
}

.mainvisual .title-area h1 span.main-copy {
  display: block;
  font-size: 3.2rem;
  line-height: 1.4;
  margin: 1rem 0;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 span.main-copy {
    font-size: 6.4rem;
    text-align: left;
  }
}

.mainvisual .title-area .text p {
  text-align: left;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area .text p {
    font-size: 1.6rem;
  }
}

.mainvisual .title-area .text p:not(:last-child) {
  margin-bottom: 2rem;
}

/* ---------------------調査結果ラベル */
.label-result {
  width: 100%;
  background-color: #fff200;
  padding: 1rem 0;
}

.label-result span {
  display: block;
  width: 300px;
  text-align: center;
  color: #111829;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .label-result span {
    font-size: 2.4rem;
  }
}

/* ---------------------SNSシェアボタン */
/* ------------------------------------------
シェアボタン共通デザイン
----------------------------------------- */
.sns-share-buttons {
  width: 100%;
  background: #ffffff;
  padding: 1rem 0;
}

.sns-share-buttons ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.sns-share-buttons ul a {
  color: #FFFFFF;
  display: block;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
}

.sns-share-buttons ul a:active {
  box-shadow: none;
}

.sns-share-buttons.bottom {
  background-color: #f5f7f7;
  padding: 2rem 2rem;
  box-sizing: border-box;
  text-align: center;
}

.sns-share-buttons.bottom p {
  padding-bottom: 1rem;
}

.sns-share-buttons.bottom ul a {
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 600px) {
  .sns-share-buttons.bottom {
    padding: 4rem 4rem;
  }
}

.sns-share-buttons.bottom .btn-grey-border {
  max-width: 320px;
  display: block;
  margin-top: 2rem;
}

/* ---------------------個別のシェアボタン */
.facebook-link {
  background: #1778F2;
}

.facebook-link:hover {
  box-shadow: 0 4px 12px 0 rgba(23, 120, 242, 0.5);
}

.x-link {
  background: #000000;
  margin: 0 1.6rem;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
}

.x-link img {
  width: 16px;
  height: auto;
  max-width: unset;
}

.sns-share-buttons.bottom ul a.x-link img {
  width: 20px;
}

.x-link:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

.hatena-link {
  background: #00a4de;
}

.hatena-link::before {
  content: "B!";
  font-family: Verdana;
  font-weight: bold;
}

.hatena-link:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 164, 222, 0.5);
}

/* ------------------------------------------各設問 */
.q-result {
  width: 100%;
  /* ---- 共通外枠(奇数) */
  /* ---- 2カラム 左：サマリー 右：チャート */
  /*  FA */
}

.q-result:nth-of-type(even) {
  background-color: #EEF6F6;
}

.q-result .inner {
  /* ---- 共通外枠 */
  position: relative;
  width: 96%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 4rem 0 4rem;
  border-radius: 4vw;
}

@media screen and (min-width: 600px) {
  .q-result .inner {
    padding: 8rem 0 8rem;
  }
}

.q-result .inner .summary {
  /* ---- サマリー */
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1024px;
  background-color: #FAFAFA;
  padding: 2rem 2rem 2rem;
  box-sizing: border-box;
  clear: both;
  overflow: hidden;
  z-index: 2;
  border-bottom-left-radius: 3vw;
  border-bottom-right-radius: 3vw;
  border-bottom: 6px solid #3ab2c9;
  border-left: 1px solid #3ab2c9;
  border-right: 6px solid #3ab2c9;
}

@media screen and (min-width: 600px) {
  .q-result .inner .summary {
    padding: 4rem 10rem 6rem;
  }
}

.q-result .inner .summary::before {
  position: absolute;
  top: -1rem;
  right: 1rem;
}

.q-result .inner .summary p:not(:last-child) {
  margin-bottom: 2rem;
}

.q-result .inner .box-2column {
  display: -webkit-box;
  display: flex;
}

.q-result .inner-top {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  z-index: 3;
  border-top-left-radius: 3vw;
  border-top-right-radius: 3vw;
  border-top: 1px solid #3ab2c9;
  border-left: 1px solid #3ab2c9;
  border-right: 6px solid #3ab2c9;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top {
    padding: 0 2.4rem;
  }
}

.q-result .inner-top .question {
  /* ---- 共通タイトル */
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 88%;
  font-weight: 900;
  padding: 3rem 0 0 1rem;
  margin: 0 auto 2rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .question {
    padding-top: 6rem;
  }
}

.q-result .inner-top .question .no {
  width: 20%;
  color: #111829;
  background: #fff200;
  font-family: Arial;
  font-size: 2.4rem;
  font-style: italic;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .question .no {
    font-size: 5.6rem;
    width: 104px;
    height: 104px;
  }
}

.q-result .inner-top .question .text {
  width: 80%;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 2px;
  color: #111829;
  padding: 0 0 1rem 2rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .question .text {
    font-size: 3.2rem;
    padding: 0 0 2rem 4rem;
  }
}

.q-result .inner-top .chart-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0 2rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area {
    padding: 2rem 6rem 2rem;
  }
}

.q-result .inner-top .chart-area .chart {
  /* チャート */
  display: block;
  width: 90%;
  max-width: 976px;
  margin: 0 auto;
}

.q-result .inner-top .chart-area .title {
  position: relative;
  width: 88%;
  color: #112921;
  font-weight: 900;
  font-size: 1.6rem;
  border: solid 6px #D7F0F5;
  box-sizing: border-box;
  padding: 2rem 3rem 2.4rem;
  margin: 0 auto 2rem;
  background-color: #FAFAFA;
  background: #FAFAFA url("../img/summary-bg-1column-bottom@2x.png") no-repeat bottom 1rem center/92%;
  z-index: 100;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area .title {
    text-align: center;
    font-size: 2rem;
    padding: 3rem 6rem 4.8rem;
    margin: 0 auto 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .q-result .inner-top .chart-area .title {
    font-size: 2.6rem;
  }
}

.q-result .inner-top .chart-area .title::before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FAFAFA;
  display: block;
  z-index: 2;
}

.q-result .inner-top .chart-area .title::after {
  content: '';
  position: absolute;
  bottom: -34px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #D7F0F5;
  z-index: 1;
}

.q-result .inner-top .chart-area .title span:first-of-type::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  width: 24px;
  height: 24px;
  background: transparent url("../img/summary-icon.png") no-repeat top left/contain;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area .title span:first-of-type::before {
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area.box-2column {
    flex-wrap: nowrap;
  }
}

.q-result .inner-top .chart-area.box-2column .chart {
  width: 80%;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area.box-2column .chart {
    max-width: 480px;
  }
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area.box-2column .title {
    width: 40%;
    min-width: 240px;
    max-width: 360px;
    padding: 6rem 2.4rem 8rem;
    margin-right: 4rem;
    text-align: left;
    background: #FAFAFA url("../img/summary-bg-2column-bottom@2x.png") no-repeat bottom 1rem center/92%;
  }
  .q-result .inner-top .chart-area.box-2column .title::before {
    top: 50%;
    right: -24px;
    bottom: auto;
    left: auto;
    margin-top: -12px;
    margin-left: 0;
    border: 12px solid transparent;
    border-left: 12px solid #FAFAFA;
  }
  .q-result .inner-top .chart-area.box-2column .title::after {
    top: 50%;
    right: -34px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #D7F0F5;
  }
}

.q-result .fa {
  width: 88%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.q-result .fa h3 {
  font-size: 1.8rem;
  padding: 2rem 0 0 2rem;
  border-left: 5px solid #3ab2c9;
  margin-bottom: 4rem;
}

@media screen and (min-width: 600px) {
  .q-result .fa h3 {
    font-size: 3.2rem;
    margin-bottom: 4rem;
    padding: 4rem 0 0 6rem;
  }
}

.q-result .fa .fa-items li {
  position: relative;
  background-color: rgba(58, 178, 201, 0.4);
  border-radius: 8px;
  font-weight: 700;
  padding: 2.4rem 1.6rem;
  overflow: hidden;
  clear: both;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li {
    padding: 3.2rem 5.6rem;
  }
}

.q-result .fa .fa-items li:nth-of-type(even) {
  background-color: rgba(58, 178, 201, 0.2);
}

.q-result .fa .fa-items li:not(:last-child) {
  margin-bottom: 4rem;
}

.q-result .fa .fa-items li::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 16px;
  height: 16px;
  background: transparent url("../img/quote-left.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li::before {
    top: 2rem;
    left: 2rem;
    width: 26px;
    height: 22px;
  }
}

.q-result .fa .fa-items li::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 16px;
  height: 16px;
  background: transparent url("../img/quote-right.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li::after {
    top: 2rem;
    right: 2rem;
    width: 26px;
    height: 22px;
  }
}

.q-result .fa .fa-items li .fa-item-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.q-result .fa .fa-items li .fa-item-inner span.age {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 0.875em;
  font-weight: 900;
  -webkit-text-decoration: italic;
  text-decoration: italic;
  color: rgba(58, 178, 201, 0.8);
  text-align: center;
  margin: 0 16px 0 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li .fa-item-inner span.age {
    font-size: 1em;
    width: 56px;
    height: 56px;
  }
}

.q-result .fa .fa-items li .fa-item-inner span.comment {
  width: 80%;
}

.q-result .fa .fa-items li span.in-use {
  display: -webkit-inline-box;
  display: inline-flex;
  float: right;
  background: #ffffff;
  margin: 8px 0 0;
}

.q-result .fa .fa-items li span.in-use span {
  padding: 0 1rem;
}

.q-result .fa .fa-items li span.in-use::before {
  content: '利用中のサブスク';
  background: #3ab2c9;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  padding: 0 1rem;
}

/* ---------------------まとめ */
.matome {
  width: 100%;
  background: #ffffff url("../img/matome-bg.png") no-repeat top left;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  padding: 4rem 0;
}

@media screen and (min-width: 1440px) {
  .matome {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.matome .inner {
  width: 96%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4rem 2rem;
}

@media screen and (min-width: 600px) {
  .matome .inner {
    padding: 6rem 8rem;
  }
}

.matome .inner .label {
  border: 3px solid #111829;
  padding: 1rem 4rem;
  font-size: 1.8rem;
  letter-spacing: 4px;
}

@media screen and (min-width: 600px) {
  .matome .inner .label {
    font-size: 2.4rem;
    padding: 1rem 8rem;
  }
}

.matome .inner h2 {
  font-size: 2rem;
  font-weight: 900;
  padding: 2rem 0 1rem;
}

@media screen and (min-width: 600px) {
  .matome .inner h2 {
    font-size: 3.2rem;
    padding: 4rem 0 1rem;
  }
}

.matome .inner p:not(:last-child) {
  margin-bottom: 2rem;
}

.matome .inner .btn-grey {
  margin-top: 2rem;
  max-width: 320px;
  text-align: center;
  font-weight: 900;
  display: block;
}

/* ---------------------調査概要 */
.survey-summary {
  background: #ffffff;
  padding: 2rem 0 3rem;
}

@media screen and (min-width: 600px) {
  .survey-summary {
    padding: 4rem 0 6rem;
  }
}

.survey-summary div {
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .survey-summary div {
    width: 400px;
  }
}

.survey-summary div h3 {
  text-align: center;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 1rem 0;
}

.survey-summary div dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.survey-summary div dl dt {
  width: 30%;
  padding: 4px 0;
}

.survey-summary div dl dd {
  width: 70%;
  padding: 4px 0;
}

/* ------------------------------------------
CTAエリア
----------------------------------------- */
.cta-area {
  background: #FFFFFF;
  color: #2a2a17;
  padding: 4rem 1.6rem 4rem;
}

.cta-area-text {
  padding: 30px 2rem 0;
}

.cta-copy {
  padding: 0 0 20px;
}

.cta-logo {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.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 0.8rem;
  padding: 0 0;
  box-sizing: border-box;
  font-size: 1.4rem;
  text-align: center;
}

.cta-area-btn {
  padding: 20px 0 20px;
}

.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: 16px;
  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 {
  box-shadow: 0 4px 16px 0 #e59995;
}

.btn-yamabuki-large a:active {
  box-shadow: none;
  border-bottom: solid 6px transparent;
  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;
}

@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;
  }
}

@-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 40px;
  }
  .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 {
  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: flex;
    -webkit-box-align: center;
    align-items: center;
    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;
  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;
}
