@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: 440px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* テキスト選択時の背景・文字色 */
::-moz-selection {
  background: #ffde00;
/*  color: #fff;*/
}
::selection {
  background: #ffde00;
/*  color: #fff;*/
}

html { font-size: 62.5%;}

body {
  width: 100%;
  font-family: YakuHanJP, 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif, "Font Awesome 5 Free";
  font-size: 14px;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #3a3134;
  background-color: #ffffcc;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
    font-size: 1.6em;
  }
}



/* ------------------------------------------
マーカー
------------------------------------------ */
/* pink */
.pink-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(28%, #f15f62));
  background: linear-gradient(transparent 72%, #f15f62 28%);
}

/* yellow */
.yellow-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(72%, transparent), color-stop(28%, #efe93e));
  background: linear-gradient(transparent 72%, #efe93e 28%);
}


/* ------------------------------------------
背景
------------------------------------------ */
.bg-yellow {
  background: #efe93e;
}


/* ------------------------------------------
CTAボタン
------------------------------------------ */
.cta-buttons {
  display: none;
  position: relative;
}

.cta-buttons  ul {
  position: fixed;
  z-index: 99999;
  bottom: 100px;
}

/*  キャンペーン  */
.btn-cp a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  border-left: 10px solid #f0f0e7;
  border-top: 10px solid #f0f0e7;
  border-bottom: 10px solid #f0f0e7;
}

.btn-regist a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #ffffff;
  position: relative;
  top: 40px;
  border-left: 10px solid #f0f0e7;
  border-top: 10px solid #f0f0e7;
  border-bottom: 10px solid #f0f0e7;
}

@media screen and (min-width: 1024px) {
  .cta-buttons {
    display: none;
  }
  
  .cta-buttons  ul {
    top: 300px;
    right: 0;
  }

  .btn-cp a {
    padding: 20px;
    width: 100px;
    color: #ffffff;
    border-left: 10px solid #f0f0e7;
    border-top: 10px solid #f0f0e7;
    border-bottom: 10px solid #f0f0e7;
  }

  .btn-regist a {
    padding: 20px;
    width: 100px;
    color: #ffffff;
    position: relative;
    top: 40px;
    border-left: 10px solid #f0f0e7;
    border-top: 10px solid #f0f0e7;
    border-bottom: 10px solid #f0f0e7;
  }
}


/* ------------------------------------------
共通ヘッダー（ロゴ＋新規登録・ログインボタン）
------------------------------------------ */
.header {
  width: 100%;
  height: 40px;
  background: #ffffff;
  position: fixed;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-shadow: 0 0 4px #333333;
  box-shadow: 0 0 4px #333333;
}

/* ヘッダーロゴ -------------*/
.header-logo {
  width: 100px;
  padding: 6px;
}

.header-logo img {
  max-width: 100px;
  height: auto;
}


@media screen and (min-width: 768px) {
  .header {
    height: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-logo img {
    max-width: 146px;
  }


  .header-logo {
    width: auto;
    padding-left: 20px;
  }

}


/* 登録・ログインボタン =============*/
.header-buttons {
  padding-right: 10px;
}

.header-buttons li {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.header-buttons li:first-child {
  margin-right: 5px;
}

.header-buttons li i {
  margin-right: 5px;
}

.header-buttons li a {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 11px 20px;
  border: none;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;

}

/*　新規登録ボタン　*/
.btn-yamabuki {
  background-color: #FDB647;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-yamabuki:hover {
  background-color: #f79803;
}

.btn-yamabuki:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-yamabuki:visited {
  color: #ffffff;
}

/*　緑　*/
.btn-green {
  background: #49b9b7;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-green:hover {
  background-color: #22a2a0;
}


.btn-green:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-green:visited {
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .header-buttons {
    padding-right: 20px;
  }

  .header-buttons li a {
    padding: 11px 40px;
    font-size: 14px;
  }
}


/* ------------------------------------------
固定ナビゲーション（ページ内リンク）
PC　→　右下固定
SP　→　下固定
------------------------------------------ */

nav {
  width: 100%;
}

.nav-bottom {
  position: fixed;
  bottom: 0;
  z-index: 99999;
}

.nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.nav li {
  text-align: center;
  background: #2a2a17;
  width: 33.333%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.nav li:nth-child(even) {
  margin: 0 3px;
}

.nav li a {
  width: 100%;
  height: 100%;
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 8px 0 0;
  line-height: 2;
}

/* ナビアイコン上 */
.nav-icon {
  display: block;
  text-align: center;
}

.nav-icon img {
  width: 30%;
  max-width: 71px;
}

/* ナビアイコン下（arrow） */
.nav-arrow {
  display: block;
  background: #691111;
  margin-top: 10px;
}

.nav .fas {
  display: block;
  color: #b5a16a;
}

@media screen and (min-width: 768px) {
  .nav-bottom {
    width: 120px;
    right: 0;
  }

  .nav {
    display: block;
  }
  
  .nav li a {
    padding: 12px 0;
  }
  
  .nav li {
    width: 120px;
    margin-bottom: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .nav li:nth-child(even) {
    margin: 0 0 10px;
  } 
}


/* ------------------------------------------

メインビジュアル

------------------------------------------ */
.section-mainvisual {
  position: relative;
  background-color: #ffffcc;

  background-image:  url(../img/mv-bgImg-left.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 60%;
  -webkit-transition: .3s;
  transition: .3s;
  }

@media screen and (max-width: 375px) {
  .section-mainvisual {
    background-image:  url(../img/mv-bgImg-left.png), url(../img/mv-bgImg-right.png) ;
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom 100px right;
    background-size: 80%, 80%;
  }
}


@media screen and (min-width: 768px) {
  .section-mainvisual {
  background-image:  url(../img/mv-bgImg-left.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 60%;
  }
}

@media screen and (min-width: 1024px) {
  .section-mainvisual {
    background-image:  url(../img/mv-bgImg-left.png), url(../img/mv-bgImg-right.png) ;
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom 200px right;
    background-size: auto, auto;
  }
}


.mainvisual {
  width: 100%;
  max-width: 1440px;
  padding: 56px 20px 24px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden;

}

.mainvisual-contents-box {
  width: 100%;
  max-width: 800px;
  position: relative;
  background: rgba(255, 255, 255, .2);
  text-align: center;
}

.mainvisual-title-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/* .mainvisual-title-box h1 {
} */


.mainvisual-subtitle {
  text-align: center;
  padding-top: 1.6rem;
}

.mainvisual-subtitle__text {
/*  display: block;*/
  font-size: 12px;
}

/* logo */
.mv-logo {
  display: block;
}

.mv-logo img {
  width: 124px;
}


.mainvisual-title {
  width: 100%;
  max-width: 560px;
  font-size: 1.6px;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 8px 0;
  line-height: 1.5;
  text-align: center;
  background: #3a3134;
  color: #FFFFFF;
}


.mainvisual h2 {
  font-size: 32px;
  font-size: 7vw;
  line-height: 1.4;
  font-weight: 700;
  text-align: center; 
  padding-top: .8rem;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;

}

.mainvisual-comment {
  padding: 3.2rem 1.6rem 2.4rem;
  background: #269078 url(../img/bg-stripe-large.png) repeat-x top left;
}

.mainvisual-comment p {
  color: #FFFFFF;

}



@media screen and (min-width: 768px) {
  .mainvisual {
    background-size: auto, auto, auto;
    padding: 64px 20px 32px;
  }
  
  .mainvisual-contents-box {
    margin: 0 auto;
/*    background: transparent;*/
    padding: 2.4rem 0;
  }
  
  /* .mainvisual-title-box {
  } */
  
  .mainvisual-title {
    width: 100%;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.4;
    padding: 1.6rem;
    text-align: center;
    
  }
  
  .mainvisual-title .bg-yellow {
    display: inline-block;
    font-size: 2.4rem;
    text-align: center;
  }

  .mainvisual h2 {
    font-size: 64px;
    font-size: 6.4rem;
    display: inline-block;
  }

    
  .mainvisual-subtitle {
    text-align: center;
  }

  .mv-logo {
    display: inline;
    padding: 0 8px 0 16px;
  }
  .mv-logo img {
    width: 148px;
  }
  
  .mainvisual-lead {
    width: 88%;
/*    max-width: 769px;*/
/*    margin: 0 auto;*/
    font-size: 1.6rem;
    line-height: 2;
  }
  
  .mainvisual-subtitle__text {
    display: inline;
    font-size: 16px;
    font-size: 1.6rem;
  }
  
  .mainvisual-comment p {
    max-width: 768px;
    margin: 0 auto;
    font-size: 20px;
    font-size: 2rem;
  }

}

@media screen and (min-width: 1440px) {

  .mainvisual-contents-box {
    background: transparent;
  }
}




/* ------------------------------------------
main
----------------------------------------- */

main {
  display: block;
/*  padding: 24px 0 0;*/
  position: relative;
}

@media screen and (min-width: 1024px) {
  main {
    padding: 24px 0 0;
  }
}

/* ------------------------------------------
設問共通ブロック
------------------------------------------ */
.section-block {
  width: 100%;
/*  padding: 24px 0 0;*/
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 奇数　*/
.question-odd {
  background: #fcecd8;
}

/* 偶数　*/
/* .question-even {
  background: #ddf1f2;
} */

.section-title img {
  max-height: 70px;
}

@media screen and (min-width: 768px) {
  .section-block {
    padding: 0 20px 24px;
  }

  .section-title {
    width: 100%;
    font-size: 4rem;
  }  
}


/* 各設問の枠 */
.question-result {
  width: 96%;
  display: block;
  position: relative;
  padding: .8rem 0 1.6rem;
  margin: 0 auto 1.6rem;;
  border: 1px solid #fdc827;
  background: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*　設問  */
.question-result__qtitle {
  display: block;
  font-weight: 700;
  font-size: 20px;
  font-size:  2rem;
  padding: 1.6rem 0 0.8rem;
  position: relative;
  line-height: 1.5;
  text-align: center;
}

/* Q番号用ラベル*/
.q-label {  
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #269078;
  border-bottom: 2px solid #269078;
  padding: 2px 4px;
  -webkit-transition: .3s;
  transition: .3s;
  margin: 0 auto;
  display: block;
  width: 48px;
}

/* アンケート結果 h3 */
.question-result__title {
  position: relative;
  width: 100%;
  text-align: left;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3a3134;
  text-align: center;
  padding: 8px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fdc827 url(../img/bg-stripe-small.png) repeat-x 0 0;
}

/* コメント */
.question-result__comment {
  position: relative;
  padding: .8rem 1.6rem;
/*  margin-top: 1.4rem;*/
/*  line-height: 1.5;*/
}


@media screen and (min-width: 768px) {
  .question-result h2 {
    min-height: 128px;
    text-align: center;
  }
  
  .q-label {
    font-size: 4rem;
    padding: 0 16px 0 0;
    font-weight: 700;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  .question-result__qtitle {
    font-size: 2.4vw;
    font-weight: 700;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  /* アンケート結果 h3 */
  .question-result__title {
    font-size: 1.6rem;
    padding: 16px 16px 8px;
  }
  
  .question-result__comment {
    padding: 1.6rem .8rem;
  }
}

@media screen and (min-width: 1024px) {
  .question-result__qtitle {
    font-size: 2.4rem;
  }
  
  .question-result__title {
    font-size: 2rem;
  }  
  
}

/* まとめ */
.question-result__reference {
  padding: 2.4rem;
}


/* FA 1カラム */
/* .fa-1column-box {
  padding: 16px 8px;
} */


/* FA 2カラム */
.fa-2column-box {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
  background: #f1787b;
  border: solid 3px #f1787b;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fa-2column-box i {
  font-size: 24px;
}

.fa-2column-box:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #f1787b;
  z-index: 2;
}

.fa-2column-box:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #f1787b;
  z-index: 1;
}



@media screen and (min-width: 768px) {
  .question-result__reference {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .question-result__fa-title {
    font-size: 2.4rem;
    padding: 1rem 0 1rem;
  }
  
  .fa-2column-box__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 24px 56px;
  }
  
  .fa-2column-box__group {
    width: 48%;
    -webkit-transition: .3s;
    transition: .3s;
  }
  
  .fa-2column-box__group:first-child {
    margin-right: 4rem;
  }
}

/* .question-result-area {
} */

.question-result-area li {
  margin-bottom: 8px;
}

.question-result__area {
  position: relative;
}

.question-result-area__figure{
  position: relative;
  line-height: 0;
  text-align: center;
  padding-bottom: .8rem;
}

.question-result__text {
  background: #FFFFFF;
  position: relative;
}


@media screen and (min-width: 768px) {
  .question-result {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.4rem 1.6rem 3.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
  }

  .question-result-area {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
/*    padding: 0 32px;*/
  }
  
  /* .question-result-area__figure  {
  } */

  /* 2column */
  .flex-2column {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    -webkit-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .flex-2column .question-result {
    width: 46%;
  }

  .flex-2column .question-result:first-child {
    margin-right: 1.6rem;
  }
  
  /* 2column チャート内 */
  .flex-2column-in-result-area {
    width: 100%;
    max-width: 1080px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 2.4rem;
  }

  .flex-2column-in-result-area > div {
    width: 50%;
    padding-left: 3rem;
  }
  
  /* .flex-2column .question-result-area__figure {
  } */
}

/* ------------------------------------------
FAバルーン
------------------------------------------ */
/* fontawesome */
.fa-2column-box i,
.fa-balloon__item i
{
  font-size: 3.2rem; 
  margin-right: .4rem;
  position: relative;
}

.fa-balloon__item i {
  font-size: 2.4rem; 
  color: #f1787b;
}

i.fa-female,
i.fa-male
{
  font-size: 1.6rem;
  color: #2C4041;
}

.user-info {
  font-weight: 700;
}

.fa-balloon__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fa-balloon__item {
  position: relative;
  display: inline-block;
  margin: 0 1rem 1.8rem;
  padding: 16px;
  width: 100%;
  background: #FFF;
/*  border: solid 3px #555;*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fa-balloon__item p {
  margin: 0;
  padding: 0;
}

/* FA テキスト */
.fa-text {
  display: block;
  font-size: 1.4rem;
}



/* ------------------------------------------
冒頭の調査結果
----------------------------------------- */
.survey-result-title {
  background: #3a3134;
  color: #FFFFFF;
  padding: 4px 24px;
  display: block;
/*  width: 240px;*/
  font-weight: 700;
  margin: 1rem auto .8rem;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  
}

@media screen and (min-width: 768px) {
  .survey-result-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    width: 240px;
  }
}


/* ------------------------------------------
Q4
----------------------------------------- */


/* ------------------------------------------
Q5
----------------------------------------- */
.q5 h2 {
  margin-bottom: 24px;
}

.q5 h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
}

.q5 .question-result-area02 {
  width: 100%;
  padding: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #FFFFFF;
}

.q5 .question-result-area02 h3 {
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .q5 h3 {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 900;
  }
  
  .q5 .question-result-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .q5 .question-result-area > * {
    width: 50%
  }
}


/* ------------------------------------------
注目！
----------------------------------------- */

.chumoku {
  background: #fdc827 url(../img/bg-stripe-large.png) repeat-x 0 0;
  margin: 4rem 0;
}

.chumoku .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.chumoku .title img {
  margin-top: 2.4rem;
  width: 100px;
  height: auto;
}


.chumoku .title-reference {
  background: #FFFFFF;
}

.chumoku .question-result__reference {
/*  width: 100%;*/
  max-width: 900px;
  padding: 7.2rem 1.6rem 5.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



/* .chumoku .question-result__comment {
} */

.chumoku .question-result__comment::after {
   content: "";
   display: block;
   clear: both;
}

/* .chumoku .question-result__comment span {
} */

.chumoku .question-result__comment img {
  max-width: 56px;
  margin-right: .8rem;
  float: left;
}

.chumoku h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 1.6rem 0 .8rem;
}

.chumoku h3 {
  background: #3a3134;
  color: #FFFFFF;
  font-weight: 700;
  padding: 2px .8rem;
  text-align: center;
  margin: 1.6rem 0;
}

/* 注目の声 */
.fa-1column-box li {
  background: rgba(255, 255, 255, .2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: .8rem;
  margin-bottom: 16px;
}

.fa-1column-box li span {
  display: block;
  font-size: 1.2rem;
}


.fa-1column-box li img {
  max-width: 24px;
  margin-right: 8px;
}


.checklist-link {
  border: 2px solid #3a3134;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.6rem;
  
}

.checklist-link ul {
  margin-top: 1.6rem;

}


/* .checklist-link img {
  width: 96%;
} */


@media screen and (min-width: 768px) {

  .chumoku .title-reference {
    margin: 0 0;
  }
  
  .chumoku h2 {
    font-size: 32px;
    font-size: 3.2rem;
    text-align: left;
    margin-bottom: 2.4rem;
  }
  
  .chumoku h3 {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.4rem;
  }  
  
  .chumoku .title {

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .chumoku .title > div {
    font-size: 2rem;
    width: 60%;
  }
  
  .chumoku .title img {
    width: 30%;
    max-width: 248px;
  }
  
  .checklist-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
  }
  
  .checklist-link p {
    width: 64%;
    padding: 1.6rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .checklist-link ul {
    width: 26%;
  }
  
  .chumoku .fa-1column-box li {
    padding: 1.6rem;
  }

}



/* ------------------------------------------

check

----------------------------------------- */
.check {
  background: #FFFFFF;
}


/* .check .question-result__reference {
} */

.check h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1.6rem 0;
}

.check h2 img {
  width: 88px;
  margin-right: .8rem;
}

.check .question-result__qtitle {
  text-align: left;
  padding: 0;
  font-size: 2rem;
}

.check .anpikakunin-service dt {
  background: #137760;
  color: #FFFFFF;
  padding: 2px .8rem;
  margin:  1.6rem 0 .8rem ;
}

.check .title {
  width: 24%;
  font-size: 12px;
  text-align: center;
  border: 1px solid #3a3134;
  padding: 2px 2px;
  margin-right: 1.6rem;
  text-align: center;
  display: block;
}

.anpikakunin-service li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: .8rem;
}

.anpikakunin-service li span:nth-child(2) {
  width: 76%;
  display: block;
}


.anpikakunin-service li img {
  width: 72px;
  margin-left: 2px;
}

.anpikakunin-comment {
  padding: 1.6rem;
  background: #fdc827 url(../img/bg-stripe-small.png) repeat-x 0 0;
}

.anpikakunin-comment p:not(last-child) {
  margin-bottom: 1rem
}

@media screen and (min-width: 768px) {
  .check .question-result__reference {
    padding: 7.2rem 0
  }

  .check h2 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

  }
  
  .check .question-result__qtitle {
    font-size: 32px;
    font-size: 3.2rem;
    padding-left: 1.6rem;
  }


  .check h2 img {
    width: auto;
  }

  .anpikakunin-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
  }
  
  .check .anpikakunin-service dt {
    text-align: center;
  }
  
  .anpikakunin-service li span:nth-child(2) {
    font-size: 20px;
    font-size: 2rem;
  }
  
  .anpikakunin-service .item {
    width: 48%;
  }
  
  .check .title {
    font-size: 16px;
    font-size: 1.6rem;
  }
  
  .anpikakunin-comment {
    margin-top: 2.4rem;
    padding: 2.4rem;
    font-size: 18px;
    font-size: 1.8rem;
  }


}


/* ------------------------------------------
Q9
----------------------------------------- */
.about-emergency-mail {
  border: 1px solid #b0b0b0;
  background: #f8f8f8;
  padding: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 3.2rem auto 0;
  width: 96%;
  
}


/* ----------------------------------------
共通style
----------------------------------------- */
.title-reference {
  width: 160px;
  border: 1px solid #3a3134;
  padding: 4px 16px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .title-reference {
    font-size: 2.4rem;
  }
}


/* ------------------------------------------
調査概要 ページ下
----------------------------------------- */
.survey-information {
  background: #FFFFFF;
  padding: 16px 0 56px;
}
.survey-information div {
  max-width: 480px;
  width: 88%;
  border-top: 1px solid #89827a;
  border-bottom: 1px solid #89827a;
  color: #5a554e;
  margin: 0 auto;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.survey-information h3 {
  text-align: center;
  font-weight: 700;
}

.survey-information dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.survey-information dl dt {
  width: 30%;
}
.survey-information dl dd {
  width: 70%;
}

/* @media screen and (min-width: 768px) {
  .survey-information {
  }
} */


/* ------------------------------------------

SNSシェアボタン

----------------------------------------- */
/* ------------------------------------------
シェアボタン共通デザイン
----------------------------------------- */
.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;
}

.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: 1200px;
  padding: 10px 20px 0;
  -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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sns-top-area__buttons a {
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
}


/* ------------------------------------------
記事下
----------------------------------------- */
.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 {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;  
  width: 0;
  height: 0;
  border-right: 50px solid transparent;
  border-bottom: 50px solid #FFFFFF;
  border-left: 50px solid transparent;
}

.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;  
}

@media screen and (min-width: 768px) {
  .q5 .fukidashi-triangle,
  .q7 .fukidashi-triangle {
    position: absolute;
    top: 0;
    left: -16px;
    right: auto;
    z-index: 0;
    margin: auto;  
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-right: 50px solid #FFFFFF;
    border-bottom: 50px solid transparent;
    border-left: none;  

  }
}

.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;
}

/* ------------------------------------------
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: none;
  top: 6px;  
}


.btn-yamabuki-large a:hover {
    text-decoration: none;
    color: #fff;
}
.btn-yamabuki-large a::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    -webkit-animation: shiny-btn1 6s ease-in-out infinite;
    animation: shiny-btn1 6s ease-in-out infinite;
}
@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;
}



/* =============================================

部分的なスタイリング

=============================================*/

/* textセンタリング用 */
.centered {
  text-align: center;
}

/* 改行 */
.br-sp {
  display: inline;
}
.br-pc {
  display: none;
}
/* PCのみ改行 */
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline;
  }
}

/* フォント(小 12px) */
.text-small {
  font-size: 12px;
  font-size: 1.2rem;
}

/*フォントカラー（pink） */
.text-pink {
  color: #f15f62;
}

/*フォントカラー（grey） */
.text-grey {
  color: #656565;
}

/*フォントカラー（black） */
.text-black {
  color: #3a3134;
}


/*フォントカラー（yellow） */
.text-yellow {
 color: #fdb427;
}

/*フォントカラー（white） */
.text-white {
 color: #ffffff;
}

/*フォントカラー（green） */
.text-green {
 color: #269078;
}

