@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: 100%;
  max-width: 320px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media screen and (min-width: 1024px) {
  img {
    width: 100%;
    max-width: 530px;
  }
}


/* テキスト選択時の背景・文字色 */
::-moz-selection {
  background: #48a1d7;
  color: #fff;
}

::selection {
  background: #48a1d7;
  color: #fff;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, Meiryo, sans-serif;
  font-size: 14px;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #3a3134;
  background-color: #d1eaf8;
}

@media screen and (min-width: 600px) {
  body {
    font-size: 16px;
    font-size: 1.6em;
  }
}



/* =============================================

部分的なスタイリング

=============================================*/

/* ------------------------------------------
マーカー
------------------------------------------ */
/* pink */
.pink-marker {
  padding: 2px 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, #fdefef), color-stop(68%, #fdefef));
  background: linear-gradient(#fdefef 32%, #fdefef 68%);
}

/* yellow */
.yellow-marker {
  padding: 2px 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, #ffde00), color-stop(68%, #ffde00));
  background: linear-gradient(#ffde00 32%, #ffde00 68%);
}

/* blue */
.blue-marker {
  padding: 2px 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(32%, #48a1d7), color-stop(68%, #48a1d7));
  background: linear-gradient(#48a1d7 32%, #48a1d7 68%);  
}

/* white */
.white-marker {
  padding: 2px 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(28%, #ffffff), color-stop(72%, #ffffff));
  background: linear-gradient(#ffffff 28%, #ffffff 72%);  
}

/* light-blue */
.light-blue-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(5%, #a5d3ed));
  background: linear-gradient(transparent 5%, #a5d3ed 5%);
}
 

/* ------------------------------------------
テキスト レイアウト
------------------------------------------ */
/* textセンタリング用 */
.centered {
  text-align: center;
}


/* 太字 */
.text-bold {
  font-weight: 700;
}

/* 改行 */
.br-sp {
  display: inline;
}

.br-pc {
  display: none;
}

/* PCのみ改行 */
@media screen and (min-width: 600px) {
  .br-sp {
    display: none;
  }

  .br-pc {
    display: inline;
  }
}

/* ------------------------------------------
フォントカラー
------------------------------------------ */
/* フォント(小 12px) */
.text-small {
  font-size: 12px;
  font-size: 1.2rem;
}

/*フォントカラー（pink） */
.text-pink {
  color: #ed8299;
}

/*フォントカラー（grey） */
.text-grey {
  color: #656565;
}

/*フォントカラー（black） */
.text-black {
  color: #3a3134;
}

/*フォントカラー（yellow） */
.text-yellow {
  color: #ffde00;
}

/*フォントカラー（white） */
.text-white {
  color: #ffffff;
}

/*フォントカラー（green） */
.text-green {
  color: #41bcd2;
}

/*フォントカラー（blue） */
.text-blue {
  color: #259de4;
}



/*--------------------------------------
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;
  }
}




/* ------------------------------------------

メインビジュアル

------------------------------------------ */
/* ------------------------------------------
メインビジュアル外枠
----------------------------------------- */
.mainvisual-wrap {
  position: relative;
  background: #85c3e8;
}

.mainvisual {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 0 0;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 1;
}

/* イラスト　*/
.mainvisual .mv-image {
  width: 80px;
  float: left;
  margin-right: 1rem;
}


@media screen and (min-width: 769px) {
  .mainvisual-wrap::after {
    height: 32px;
  }
  
  .mainvisual {
    padding: 104px 0 64px;
    background-image: url(../img/mv-family.png);
    background-repeat: no-repeat;
    background-position: top 48px right;
  }
  
  .mainvisual::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    max-width: 276px;
    max-height: 299px;
    width: 24vw;
    height: 24vw;
    background-image: url(../img/mv-doctor.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  

  
  
  
  .mainvisual .mv-image {
    display: none;
  }
}

@media screen and (min-width: 1024px) {

  .mainvisual::after {
    content: '';
    position: absolute;
    right: 80px;
    bottom: 2rem;
    display: block;
    max-width: 176px;
    max-height: 431px;
    width: 24vw;
    height: 56vw;
    background-image: url(../img/mv-vaccine.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}


.mainvisual .logo {
  position: relative;
  text-align: center;
  z-index: 2;
}

.mainvisual .logo img {
  width: 120px;
}

.mainvisual .logo p {
  text-align: center;
}

@media screen and (min-width: 600px) {
  .mainvisual .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 1rem;
  }
  .mainvisual .logo img {
    width: 160px;
    margin-right: 1.6rem;
  }
}

.mainvisual > div:nth-of-type(2) {
  position: relative;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 3;
}

.mainvisual > div:nth-of-type(2) p {
  width: 96%;
  margin: 0 auto;
  clear: both;
}

.mainvisual > div h1 {
  width: 100%;
  font-size: 4vw;
  text-align: center;
  padding-top: 1rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* .mainvisual > div > p {
  padding: 1rem 0 0;
} */

@media screen and (min-width: 769px) {
  .mainvisual > div:nth-of-type(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .mainvisual > div h1 {
    font-size: 4.8rem;
    text-align: left;
    margin: 2rem 0;
  }

  .mainvisual > div:nth-of-type(2) p {
    width: 72%;
    line-height: 2;
    font-size: 1.8rem;
  }
  
  .mainvisual > div:nth-of-type(2) p:first-of-type {
    margin: 2rem auto;
  }
}

/* @media screen and (min-width: 1200px) {
  .mainvisual > div h1 {
    font-size: 4.8rem;
  }
} */


/* ------------------------------------------

survey-result-title

------------------------------------------ */

/* ------------------------------------------
main
----------------------------------------- */

main {
  display: block;
  padding: 0 0;
  position: relative;
}

/* @media screen and (min-width: 1024px) {
  main {
    padding: 24px 0 0;
  }
} */


/* ------------------------------------------
「調査結果」表記
----------------------------------------- */
p.survey-result-title {
  text-align: center;
  background: #2a8ecb;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 8px;
  padding: 4px 0;
  clear: both;
}


@media screen and (min-width: 600px) {
  p.survey-result-title {
    font-size: 2.4rem;
    padding: 2rem 0;
  }
  
  /* p.survey-result-title span {
  } */
}


/* ------------------------------------------

各Q

----------------------------------------- */
.result-area-box {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
}

.result-area-box:nth-of-type(even) {
  background: #bee1f5;
}

.result-area-box.general:nth-of-type(even) {
  background: #e8f4f6;
}

.result-area-box.general:nth-of-type(odd) {
  background: #dceff2;
}


.q-result {
  max-width: 1024px;
  width: 94%;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .result-area-box {
    width: 100%;
    padding: 6rem 0;
    margin: 0 auto;
  } 

  .q-result {
    padding-bottom: 2rem;
  }
}

/* Q番号 */
.q-title {
  width: 100%;
  max-width: 880px;
  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;
  font-weight: bold;
  margin: 0 auto 0.8rem;
}

.q-title p {
  color: #48a1d7;
  font-size: 3.2rem;
  font-style: italic;
  margin-right: 1.6rem;
}

.q-title h2 {
  width: 80%;
  font-size: 1.6rem;
  line-height: 1.4;
}

.general .q-title p {
  color: #41bcd2;
}


@media screen and (min-width: 600px) {
  .q-title {
    
    padding: 0 0 1rem;  
  }
  
  .q-title p {
    font-size: 7.2rem;
    margin-right: 4rem;
  }


  .q-title h2 {
    font-size: 3.2rem;
    line-height: 1.4;
  }

}

/* ------------------------------------------
サマリー＆チャート表示箇所
----------------------------------------- */
/* .chart-area {
} */

@media screen and (min-width: 600px) {
  .chart-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .chart-area > h3 {
    width: 30%;
    max-width: 380px;
    height: 200px;
    margin-right: 2rem;
  }
  
  .chart-area > div {
    width: 70%;
    max-width: 640px;
  }
}


/* ------------------------------------------

 h2 サマリー

----------------------------------------- */
.q-summary {
  position: relative;
  width: 80%;
  max-width: 360px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 3.6vw;
  margin: 0 auto 1rem;
  padding: 1.2rem 2rem 5rem;
  background-color: #48a1d7;
  background-image: url('../img/icon-shot-h2.png');
  background-repeat: no-repeat;
  background-size: 88%;
  background-position: bottom 1rem center;
}

.q-summary::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #48a1d7 transparent transparent transparent;
}

@media screen and (min-width: 600px) {
  .q-summary {
    font-size: 2rem;
    text-align: left;
    padding: 4rem 4rem 2rem;
    background-size: 80%;
    background-position: top 2rem 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;
  }
    
  .q-summary::after {
    bottom: auto;
    left: auto;
    right: -1.6rem;
    top: 10rem;
    border-width: 25px 0 25px 43px;
    border-color: transparent transparent transparent #48a1d7;
  }
  
  .q-summary > * {
    width: 100%;
  }
}


@media screen and (min-width: 1025px) {
  .q-summary {
    font-size: 2.4rem;
  }

}



/* 一般 */
.general .q-summary {
  background-color: #41bcd2;
}

.general .q-summary::after {
  border-color: #41bcd2 transparent transparent transparent;
}

@media screen and (min-width: 600px) {
  .general .q-summary::after {
    border-color: transparent transparent transparent #41bcd2;
  }
}



/* -----------------------------------------

　回答者

----------------------------------------- */
.answerer {
  position: relative;
  top: 1rem;
  width: 64%;
  margin: 0 auto;
  background: #ffffff;
  font-weight: 900;
  line-height: 2;
  border: 4px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.answerer span:first-of-type {
  width: 30%;
  text-align: center;
  color: #48a1d7;
}

.answerer span:nth-of-type(2) {
  width: 70%;
  text-align: center;
  line-height: 1.4;
  font-size: 1.2rem;
  color: #ffffff;
  background: #48a1d7;
  padding: 4px 0;
}

.general .answerer span:first-of-type {
  color: #41bcd2;
}

.general .answerer span:nth-of-type(2) {
  background: #41bcd2;
}

@media screen and (min-width: 600px) {
  .answerer span:nth-of-type(2) {
    font-size: 1.6rem;
  }
}



/* ------------------------------------------

 チャートエリア

----------------------------------------- */
/* グラフ */
.q-chart {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 2rem 1rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.q-text {
  line-height: 1.8;
  padding: 1rem 1rem 0;
  clear: both;
}

@media screen and (min-width: 600px) {
  .q-chart {
    padding: 3rem 3rem 2rem;
  }

  .q-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
  }
}


/* ------------------------------------------
Q1
----------------------------------------- */
/* 副反応 */
.q1-02 h2 {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
  margin: 2rem auto 0;
  padding: 1rem;
}

.q1-02 h3 {
  width: 88%;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  background: #48a1d7;
  color: #ffffff;
  margin: 0 auto;
  padding: 4px 0;
}


@media screen and (min-width: 600px) {
  .q1-02 h2 {
    font-size: 3.2rem;
    margin: 4rem 0 1rem;
  }
  .q1-02 h3 {
    width: 56%;
    font-size: 2.4rem;
    margin: 0 auto 2rem;
  }
  
  
  .q1-02 .q-chart {
    max-width: 800px;
/*    height: 320px;*/
    margin: 0 auto;
    text-align: center;
  }
  
  .q1-02 .q-chart img {
    max-width: 630px;
  }
}


/* ------------------------------------------
Q2
----------------------------------------- */
.q2 .q-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 138px;
  max-height: 182px;
  width: 24vw;
  height: 48vw;
  background-image: url('../img/q2-image.png');
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: bottom right;
}

/* @media screen and (min-width: 600px) {
  .q2 .q-chart::after {
    background-size: auto;
  }
} */


/* ------------------------------------------
Q3
----------------------------------------- */
.q3-fa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.q3-fa-agree {
  width: 100%;
  font-weight: bold;
  color: #48a1d7;
  border-radius: 8px;
  border: 3px solid #48a1d7;
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.q3-fa-agree dt {
  width: 100%;
  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;
  font-size: 1.8rem;
  position: relative;
  padding: 0 0 8px;
}

.q3-fa-agree dt::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../img/icon-q3-agree.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  margin-right: 1rem;
}


.q3-fa-agree dd {
  border-top: 1px solid #48a1d7;
  padding: 1rem 0;
}

.q3-fa-disagree {
  width: 100%;
  font-weight: bold;
  color: #999999;
  border-radius: 8px;
  border: 3px solid #999999;
  background: #ffffff;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.q3-fa-disagree dt {
  width: 100%;
  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;
  position: relative;
  font-size: 1.8rem;
  padding: 0 0 8px;
}

.q3-fa-disagree dt::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../img/icon-q3-disagree.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  margin-right: 1rem;
}

.q3-fa-disagree dd {
  border-top: 1px solid #999999;
  padding: 1rem 0;
}


@media screen and (min-width: 600px) {
  .q3-fa {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 4rem;
  }

  .q3-fa > dl {
    width: 48%;
    padding: 2rem;
  }
  
  .q3-fa > dl:first-of-type {
    margin-right: 1rem;
  }
  
  .q3-fa > dl dt {
    font-size: 2.4rem;
    padding-bottom: 2rem;
  }
  
  .q3-fa > dl dt::before {
    width: 64px;
    height: 64px;
    margin-right: 2rem;
  }
  
  .q3-fa > dl dd {
    padding: 2rem;
  }
  
}



/* ------------------------------------------
Q5
----------------------------------------- */
.q5 .q-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 138px;
  max-height: 182px;
  width: 24vw;
  height: 48vw;
  background-image: url('../img/q5-image.png');
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: bottom right;
}

/* @media screen and (min-width: 600px) {
  .q5 .q-chart::after {
    background-size: auto;
  }
} */


/* ------------------------------------------
Q8
----------------------------------------- */
.q8 .q-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 191px;
  height: 116px;
  background-image: url('../img/q8-image.png');
  background-repeat: no-repeat;
  background-size: 64%;
  background-position: bottom right;
}

@media screen and (min-width: 600px) {
  .q8 .q-chart::after {
    background-size: 80%;
  }
}

/* ------------------------------------------

おすすめ情報

----------------------------------------- */
.recommend-wrap {
  width: 100%;
  background: #ffffff;
}

.recommend-wrap h2 {
  position: relative;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background: #48a1d7;
  padding: 4rem 2rem 1rem;
}

.recommend-wrap h2::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 0;
  display: block;
  width: 100%;
  height: 14px;
  background: url(../img/fivestars.png) no-repeat center;
  background-size: contain;
}

.recommend-wrap h2 span:first-of-type {
  display: block;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .recommend-wrap h2 {
    font-size: 4rem;
    padding: 10rem 2rem 2rem;
  }
  
  .recommend-wrap h2::before {
    height: 100%;
    background: url(../img/fivestars.png) no-repeat center 24px;
    background-size: auto;
  }
  
  .recommend-wrap h2 span:first-of-type {
    font-size: 1.8rem;
  }
  
  
}


.recommend {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.recommend-info {
  padding: 1rem 1rem;
}

@media screen and (min-width: 600px) {
  .recommend {
    padding: 4rem 0;
  }
  
  .recommend .q-text {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
  }
  
  .recommend-info {
    margin: 3rem 0;
  }
}

.recommend-info .info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
  border: 1px solid #d4e3ec;
  color: #3a3134;
  margin-bottom: 2rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.recommend-info .info:not(:last-child):hover {
  -webkit-box-shadow: 1px 13px 27px -11px rgba(0, 0, 0, 0.26);
  box-shadow: 1px 13px 27px -11px rgba(0, 0, 0, 0.26);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}


.recommend-info .info:not(:last-child)::after {
  content: '';
  position: absolute;
  
  bottom: 0;
  right: 0;
/*  border-top: 24px solid transparent;*/
/*  border-right: 24px solid #v;*/
  display: block;
  width: 24px;
  height: 24px;
  background-color: #eaf2f7;
  background-image: url(../img/chevron_right_black_24dp.svg);
  background-repeat: no-repeat;
/*  border: 16px solid #eaf2f7; */
}

/* .recommend-info .info h3 {
} */

.recommend-info .info > h3 {
  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;
  width: 24%;
  color: #ffffff;
  font-weight: bold;
  padding: 1rem;
  background: #48a1d7;
}

@media screen and (min-width: 600px) {
  .recommend-info .info > h3 {
    position: relative;
    padding: 2rem;
  }
  
  .recommend-info .info > h3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 88%; height: 80%;
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  
}

.recommend-info .info > p.text {
  width: 76%;
  padding: 1rem;
  font-size: 12px;
}

.recommend-info .info > p.text > span:first-of-type {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  background: #eaf2f7;
  color: #48a1d7;
  padding: 2px 1rem;
}

.recommend-info .info > p.text > span:first-of-type::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 14px;
  margin-left: 2rem;
  background: url(../img/fivestars.png) no-repeat right;
  background-size: contain;
}

.recommend-info .info > p.text > span:nth-of-type(2) {
  display: block;
}

@media screen and (min-width: 600px) {
  .recommend-info .info > p.text {
    font-size: 1.4rem;
    padding: 2rem;
  }
  
  .recommend-info .info > p.text > span:nth-of-type(2) {
    margin-top: 1rem;
  }
}




/* ------------------------------------------

結果まとめ

----------------------------------------- */
.matome-wrap {
  background: #eaf2f7;
  padding: 2rem 0 2rem;
  clear: both;
  overflow: hidden;
}

.matome {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.matome::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 120px;
  height: 120px;
  background-image: url(../img/mv-vaccine.png);
  background-repeat: no-repeat;
  background-position: top right 10px;
  background-size: contain;
}

.matome p {
  padding: 1rem 1.6rem;
}

@media screen and (min-width: 600px) {
  .matome-wrap {
    padding: 8rem 0;
  }
  
  /* .matome {
  } */
  
  .matome::after {
    width: 100%;
    height: 100%;
    background-size: contain;
  }  

  .matome p {
/*    font-weight: bold;*/
    width: 72%;
  }

}

.matome h2 {
  font-weight: bold;
  font-size: 1.6rem;
  padding: 1rem 1.6rem;
  color: #48a1d7;
}

.matome h2 span:nth-child(1) {
  display: block;
  width: 24%;
  border: 3px solid #48a1d7;
  background: #ffffff;
  letter-spacing: 4px;
  text-align: center;
  padding: 4px 2rem;
  margin: 0 0 1.6rem;
}

/* .matome .q-text:first-of-type {
} */

.matome .q-text {
  padding: 1rem 1.6rem 0;
}

@media screen and (min-width: 600px) {
  .matome h2 {
    font-size: 3.2rem;
  }
  
  .matome h2 span:nth-child(1) {
    font-size: 2.4rem;
  }
}



/* ------------------------------------------
調査概要
----------------------------------------- */

.survey-summary {
  background: #ffffff;
  padding: 2rem 0 3rem;
}

.survey-summary > div {
  width: 80%;
  max-width: 1024px;
  margin: 0 auto;
}

.survey-summary > div h3 {
  text-align: center;
  letter-spacing: 3px;
  font-weight: 700;
  padding: 1rem 0;
}

.survey-summary > div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.survey-summary > div dl dt {
  width: 30%;
  padding: 4px 0;
}

.survey-summary > div dl dd {
  width: 70%;
  padding: 4px 0;
}


@media screen and (min-width: 600px) {
  .survey-summary {
    padding: 4rem 0 6rem;
  }

  .survey-summary div {
    width: 400px;
  }
}


/* ------------------------------------------

SNSシェアボタン

----------------------------------------- */

.fukidashi-triangle-down {
  position: absolute;
  top: -30px; 
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 50px solid #FFFFFF;
  border-right: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid transparent;
}

/* ------------------------------------------
シェアボタン共通デザイン
----------------------------------------- */
.share-button a {
  color: #FFFFFF;
  display: block;
  border-radius: 50%;
  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;
  -webkit-transition: .3s;
  transition: .3s;
}

.share-button a:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.facebook-link {
  background: #1778F2;
}

.x-link {
  background: #000000;
  margin: 0 1.6rem;
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
}

.x-link img {
  width: 16px;
  height: auto;
}

.section-block__sns-bottom .x-link img {
  width: 20px;
}

.hatena-link {
  background: rgb(0, 164, 222);
}

.fa-hatena:before {
  content: "B!";
  font-family: Verdana;
  font-weight: bold;
}

.facebook-link:hover {
  -webkit-box-shadow: 0 4px 12px 0 rgba(23, 120, 242, .5);
  box-shadow: 0 4px 12px 0 rgba(23, 120, 242, .5);
}

.x-link:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
}

.hatena-link:hover {
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 164, 222, .5);
  box-shadow: 0 4px 12px 0 rgba(0, 164, 222, .5);
}


/* ------------------------------------------
記事上
----------------------------------------- */
.section-block__sns-top {
  background: #FFFFFF;
}


.sns-top-area {
  width: 100%;
  max-width: 1024px;
  padding: 1rem 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.sns-top-area__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sns-top-area__buttons a {
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
}

@media screen and (min-width: 600px) {
  .sns-top-area {
    padding: 24px 20px;
  }
}


/* ------------------------------------------
記事下
----------------------------------------- */
.section-block__sns-bottom {
  background: #f5f7f7;
}

.sns-bottom-area {
  width: 100%;
  max-width: 300px;
  padding: 40px 20px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.fukidashi-triangle-down {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;  
  width: 0;
  height: 0;
  border-top: 50px solid #FFFFFF;
  border-right: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid transparent;  
}


.sns-bottom-area p {
  text-align: center;
}

.sns-bottom-area__buttons {
  margin: 1.6rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.sns-bottom-area__buttons a {
  font-size: 2rem;
  width: 48px;
  height: 48px;
}

.facebook-link img {
  width: 100%;
}
 

/* ------------------------------------------
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: 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 {
  -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: 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 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;
}

/* 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;
}



