@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;
  width: 40%;
  max-height: 160px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 0 2rem 0 0;
}

@media screen and (min-width: 600px) {
  .img-float-l {
    width: auto;
    max-width: 360px;
    max-height: 240px;
    padding: 2rem 3rem 1rem 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;
  }
}

/*　テキストリンク */
.text-link {
  color: #0b7575;
  text-decoration: none;
  border-bottom: 1px dotted #0b7575;
  -webkit-transition: .3s;
  transition: .3s;
}

.text-link:hover {
  opacity: .8;
  border-bottom: 1px dotted transparent;
}

/* 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;
  }
}

/* マーカー */
.marker {
  background: -webkit-linear-gradient(#2F78DD 0%, #2F78DD 100%);
  background: linear-gradient(#2F78DD 0%, #2F78DD 100%);
  color: #ffffff;
  padding: 2px;
  margin-right: 2px;
}

/* ポイントカラー */
.point-color01 {
  color: #2F78DD;
}

.point-color02 {
  color: #130966;
}

/* ポイントボックス */
.point-box {
  background-color: rgba(19, 9, 102, 0.4);
}

/* フォントサイズ */
.textS {
  font-size: 14px;
  font-weight: 900;
}

.textL {
  font-size: 2.4rem;
  font-weight: 900;
}

/* フォント太字 */
.textBold {
  font-weight: bold;
}

/*  ボタン */
.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 #1A222E;
  border-radius: 2.4rem;
  color: #1A222E;
  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: .2px;
  color: #1A222E;
  background-color: #E9F2F8;
  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;
  }
}

@media screen and (min-width: 600px) {
  main {
    padding-bottom: 3.2rem;
  }
}

/* ---------------------メインビジュアル */
.mainvisual {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding-top: 42px;
}

.mainvisual .title-area {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  background: #ffffff url("../img/mainvisual-bg.png") top right no-repeat;
  position: relative;
  font-size: 1.8rem;
  color: #130966;
  box-sizing: border-box;
  padding: 2rem 1rem 0;
  margin-bottom: 4rem;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area {
    padding: 5.6rem 2rem 2rem;
    background-size: contain;
  }
}

.mainvisual .title-area > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
  .mainvisual .title-area > div {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.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;
  max-width: 960px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.64);
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 {
    font-size: 2rem;
    text-align: left;
    background: transparent;
  }
}

.mainvisual .title-area h1 span.frame-border {
  display: block;
  background: #130966;
  color: #ffffff;
  padding: 4px 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 4px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 span.frame-border {
    font-size: 2.2rem;
    width: 260px;
    margin: 0 1rem 1rem 0;
  }
}

.mainvisual .title-area h1 span.main-copy {
  display: block;
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
  margin: 2.4rem 0 1rem;
  padding: 0 1.6rem;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 span.main-copy {
    font-size: 4rem;
    text-align: left;
    line-height: 1.4;
    margin: 3.2rem 0 0;
    padding: 0;
  }
}

.mainvisual .title-area h1 span.main-copy + span {
  color: #1A2E27;
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.7;
  text-align: left;
  max-width: 640px;
}

@media screen and (min-width: 600px) {
  .mainvisual .title-area h1 span.main-copy + span {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
}

.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;
}

@media screen and (min-width: 1024px) {
  .mainvisual .title-area .mv-img {
    display: block;
    max-width: 480px;
    -webkit-transition: 3s;
    transition: 3s;
    mix-blend-mode: multiply;
  }
}

.mainvisual .text-area {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 1.6rem;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .mainvisual .text-area {
    flex-wrap: nowrap;
  }
}

.mainvisual .text-area .image {
  width: 96%;
  max-width: 320px;
  padding: 1rem;
}

@media screen and (min-width: 600px) {
  .mainvisual .text-area .image {
    width: 40%;
  }
}

.mainvisual .text-area .text {
  width: 100%;
  padding: 0;
}

.mainvisual .text-area .text .img-float-l {
  max-width: 300px;
  padding: 0 3rem 1rem 0;
}

.mainvisual .text-area .text p {
  margin-bottom: 2rem;
}

/* ---------------------調査結果ラベル */
.label-result {
  width: 100%;
  background-color: #130966;
  padding: 1rem 0;
}

.label-result span {
  display: block;
  width: 300px;
  text-align: center;
  color: #ffffff;
  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 2rem;
}

.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:last-child {
  padding-bottom: 4rem;
}

.q-result .inner {
  /* ---- 共通外枠 */
  position: relative;
  width: 96%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 0 2rem;
  border-radius: 4vw;
}

@media screen and (min-width: 600px) {
  .q-result .inner {
    padding: 0 0 0;
  }
}

.q-result .inner .summary {
  /* ---- サマリー */
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 780px;
  padding: 0rem 1rem;
  box-sizing: border-box;
  clear: both;
  overflow: hidden;
  z-index: 2;
}

.q-result .inner .summary::before {
  position: absolute;
  top: -1rem;
  right: 1rem;
}

.q-result .inner .summary p {
  letter-spacing: 0.8px;
}

.q-result .inner .summary p:not(:last-child) {
  margin-bottom: 2rem;
}

.q-result .summary-list {
  font-weight: bold;
  margin-bottom: 2rem;
  padding: 2rem;
  border: 1px solid #eeeeee;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 4px;
}

.q-result .summary-list li {
  list-style: disc;
  margin-left: 2rem;
}

.q-result .inner .box-2column {
  display: -webkit-box;
  display: flex;
}

.q-result .inner-top {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
  border-top-left-radius: 3vw;
  border-top-right-radius: 3vw;
}

@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: 100%;
  font-weight: 700;
  padding: 3rem 0 0 0;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .question {
    padding-top: 8rem;
    width: 80%;
  }
}

.q-result .inner-top .question .no {
  width: 20%;
  color: #130966;
  background: #E9F2F8;
  font-family: Arial;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: bold;
  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: 7.2rem;
    width: 120px;
    height: 120px;
  }
}

.q-result .inner-top .question .text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #130966;
  padding: 0 0 0 1rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .question .text {
    font-size: 4rem;
    padding: 0 0 0 4rem;
  }
}

.q-result .inner-top .pickup-title {
  padding: 0 2rem;
}

.q-result .inner-top .pickup-title .pickup {
  width: 24%;
  max-width: 160px;
  display: block;
  border: none;
  background: #564E47;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  padding: 0.5rem 3rem;
  margin: 0 auto 2rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .pickup-title .pickup {
    width: 24%;
    padding: 0.5rem 2rem;
    font-size: 2rem;
  }
}

.q-result .inner-top .pickup-title .text {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #130966;
  margin: 0 auto 1rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .pickup-title .text {
    font-size: 2.4rem;
    text-align: center;
  }
}

.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;
}

.q-result .inner-top .chart-area .chart {
  /* チャート */
  display: block;
  width: 96%;
  max-width: 780px;
  margin: 0 auto;
}

.q-result .inner-top .chart-area .title {
  position: relative;
  width: 88%;
  max-width: 700px;
  color: #111829;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  box-sizing: border-box;
  padding: 3.2rem;
  margin: 0 auto 2rem;
  background: #FFFFFF;
  border: 2px solid #DAE7EF;
  -webkit-filter: drop-shadow(8px 8px 4px rgba(144, 198, 203, 0.17));
  filter: drop-shadow(8px 8px 4px rgba(144, 198, 203, 0.17));
  z-index: 100;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area .title {
    width: 72%;
    text-align: center;
    font-size: 2rem;
    padding: 3.2rem 3.2rem;
    margin: 0 auto 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .q-result .inner-top .chart-area .title {
    font-size: 2.4rem;
  }
}

.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 #FFFFFF;
  display: block;
  z-index: 2;
}

.q-result .inner-top .chart-area .title::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #DAE7EF;
  z-index: 1;
}

.q-result .inner-top .chart-area .title span:first-of-type::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: block;
  width: 32px;
  height: 20px;
  background: transparent url("../img/chart-title-icon01.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: 56px;
    height: 72px;
  }
}

.q-result .inner-top .chart-area .title span:first-of-type::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: block;
  width: 32px;
  height: 20px;
  background: transparent url("../img/chart-title-icon02.png") no-repeat bottom center/contain;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area .title span:first-of-type::after {
    width: 56px;
    height: 72px;
  }
}

.q-result .inner-top .chart-area.box-1column h3 {
  margin: 0 0 2rem;
}

@media screen and (min-width: 600px) {
  .q-result .inner-top .chart-area.box-1column h3 {
    margin: 0 0 2rem;
  }
}

@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: 400px;
    padding: 5.6rem 4rem 5.6rem;
    margin-right: 3.2rem;
    text-align: center;
    background: #FFFFFF;
    border: 2px solid #DAE7EF;
    -webkit-filter: drop-shadow(8px 8px 4px rgba(144, 198, 203, 0.17));
    filter: drop-shadow(8px 8px 4px rgba(144, 198, 203, 0.17));
  }
  .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 #ffffff;
  }
  .q-result .inner-top .chart-area.box-2column .title::after {
    top: 50%;
    right: -29px;
    bottom: auto;
    left: auto;
    margin-left: 0;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #DAE7EF;
  }
}

.q-result .fa-table {
  width: 100%;
  margin: 0 auto 4rem;
}

.q-result .fa-table dt {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #130966;
}

@media screen and (min-width: 600px) {
  .q-result .fa-table dt {
    font-size: 3.2rem;
  }
}

.q-result .fa-table dt::before {
  content: '';
  display: block !important;
  height: 2px;
  width: 24%;
  background-color: #cccccc;
  margin: 0 16px;
}

.q-result .fa-table dt::after {
  content: '';
  display: block !important;
  height: 2px;
  width: 24%;
  background-color: #cccccc;
  margin: 0 16px;
}

.q-result .fa-table table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2.4rem;
  color: #130966;
  font-weight: bold;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.q-result .fa-table table:first-of-type {
  font-size: 13px;
}

.q-result .fa-table table .items {
  background-color: #ffffff;
  font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
  .q-result .fa-table table .items {
    font-size: 2rem;
  }
}

.q-result .fa-table table .items th {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 1rem;
  vertical-align: middle;
}

.q-result .fa-table table .items td {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1rem;
}

.q-result .fa-table table .items.nisa th {
  background-color: #C7E5AD;
}

.q-result .fa-table table .items.nisa td {
  background-color: #ffffff;
  border: 1px solid #C7E5AD;
}

.q-result .fa-table table .items.ideco th {
  background-color: #95C7AE;
  border: 1px solid #95C7AE;
}

.q-result .fa-table table .items.ideco td {
  border: 1px solid #95C7AE;
}

.q-result .fa {
  width: 88%;
  max-width: 880px;
  margin: 0 auto 3.2rem;
}

.q-result .fa h3 {
  font-size: 1.8rem;
  padding: 2rem 0 0 2rem;
  border-left: 5px solid #2F78DD;
  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-title {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-title {
    font-size: 2.4rem;
  }
}

.q-result .fa .fa-title.yes {
  background-color: #2BCBA6;
}

.q-result .fa .fa-title.no {
  background-color: #2B94CB;
  margin-top: 56px;
}

.q-result .fa .fa-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  background: transparent url("../img/icon-shot.png") no-repeat top left/contain;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-title::before {
    width: 48px;
    height: 48px;
  }
}

.q-result .fa .fa-items {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.q-result .fa .fa-items li {
  position: relative;
  width: 90%;
  background-color: #ffffff;
  -webkit-filter: none;
  filter: none;
  border-radius: 16px;
  border: 3px solid #C59C71;
  font-weight: 700;
  padding: 1.6rem 3.2rem 1.6rem;
  overflow: hidden;
  clear: both;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li {
    width: 34%;
    padding: 1.6rem 5.6rem;
  }
}

.q-result .fa .fa-items li:not(:last-child) {
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .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@2x.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li::before {
    top: 1rem;
    left: 1rem;
    width: 26px;
    height: 22px;
  }
}

.q-result .fa .fa-items li::after {
  content: '';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 16px;
  height: 16px;
  background: transparent url("../img/quote-right@2x.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li::after {
    bottom: 1rem;
    right: 1rem;
    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(47, 120, 221, 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: 100%;
  color: #69322B;
  text-align: left;
}

@media screen and (min-width: 600px) {
  .q-result .fa .fa-items li .fa-item-inner span.comment {
    font-size: 1.8rem;
    text-align: center;
  }
}

.q-result .fa .fa-items li span.attribute {
  display: -webkit-inline-box;
  display: inline-flex;
  float: right;
  background: #efefef;
  border-radius: 16px;
  margin: 8px 0 0;
  padding: 0.5rem 2rem;
  font-size: 87.5%;
}

.q-result .fa .fa-items li span.attribute span {
  padding: 0 1rem;
}

.q-result .fa .fa-items li span.attribute::before {
  content: '';
}

/* ---------------------まとめ */
.matome .matome-inner {
  width: 90%;
  max-width: 840px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 12px;
  border: 4px solid #130966;
  background-color: #ffffff;
  padding: 2.4rem;
  margin: 4rem auto 4rem;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .matome .matome-inner {
    flex-wrap: nowrap;
  }
}

.matome .matome-inner img {
  max-width: 212px;
}

@media screen and (min-width: 600px) {
  .matome .matome-inner img {
    margin-right: 2.4rem;
  }
}

.matome .matome-inner .text p {
  font-weight: bold;
  color: #130966;
}

.matome .matome-inner .text p:not(:last-of-type) {
  margin-bottom: 1rem;
}

/* ---------------------調査概要 */
.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;
}
