@charset "utf-8";

/*--------------------------------------------------------------
# 共通
--------------------------------------------------------------*/
/* 共通 */
body {
  font-family: "Avenir", "Open Sans", "Helvetica Neue", "Helvetica", "Arial", "Verdana", "Roboto", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3","ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "メイリオ", "Meiryo", "Meiryo UI", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
}
.s-readonly {
  display: none;
}
img {
  max-width: 100%;
}
button {
  background: transparent;
  border: 0;
}
@media (max-width: 990px) {
  .container {
    width: auto;
  }
}
.s-content__wrap {
  padding: 0 60px;
}
@media (max-width: 830px) {
  .s-content__wrap {
    padding: 0 20px;
  }
}

/* CSS lock */
html {
  font-size: 1rem;
}
@media (max-width: 990px) {
  html {
    font-size: calc((100vw - 320px) / 140 + 16px);
  }
}
_::-webkit-full-page-media, _:future, :root, body {
  -webkit-animation: safariFix 1s forwards infinite;
}
@-webkit-keyframes safariFix {
  100% {
    z-index: 1;
  }
}

/*--------------------------------------------------------------
# 質問画面
--------------------------------------------------------------*/
.s-quest__wrap {
  margin-top: 40px;
}
.list_selected {
  background: #FFFB79;
}
.folder_on {
  padding: 5px 0 5px 30px;
  background: url(../images/common/icon_folder_on.jpg) no-repeat #FFFB79;
  background-position: 10px 8px;
  border-right: 2px solid #ADD598;
  border-bottom: 2px solid #ADD598;
}
.folder_off {
  padding: 5px 0 5px 30px;
  background: url(../images/common/icon_folder_off.jpg) no-repeat #FFFFFF;
  background-position: 10px 8px;
  border-right: 2px solid #ADD598;
  border-bottom: 2px solid #ADD598;
}
.shindan_answer_list {
  padding: 0;
  text-align: center;
}
.shindan_answer_list li {
  display: inline-block;
  margin-bottom: 4px;
  list-style-type: none;
}
@media (max-width: 990px) {
  .shindan_answer_list li {
    display: block;
  }
}
.shindan_answer_list label {
  display: inline-block;
  padding: 6px 8px;
  background-color: #EAEDE7;
  color: #000;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
@media (max-width: 990px) {
  .shindan_answer_list label {
    font-size: 18px;
    display: block;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .shindan_answer_list label {
    font-size: 16px;
  }
}
.shindan_answer_list label:hover {
  background-color: #24923A;
  color: #fff;
}
.shindan_answer_list label.selected {
  color: #fff;
  background-color: #24923A;
}
.shindan_answer_list label input {
  display: none;
}
input#btn_submit {
  cursor: pointer;
/* display: block; */
/*
  width: 600px;
  height: 51px;
*/
  border: none;
/* text-indent: -9999px; */
/*  background: url(../images/btn_submit.jpg) no-repeat 0 0;*/
}
.s-error {
  color: #FF0004;
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .s-error {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# 結果画面
--------------------------------------------------------------*/
/* ヘッダー */
.s-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.s-header p {
  margin: 0;
  width: 85px;
}
.s-header h1 {
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  color: #24923c;
  width: calc(100% - 85px);
  margin: 0;
  padding-right: 85px;
  text-align: center;
}
@media (max-width: 990px) {
  .s-header p {
    width: calc(85 / 990 * 100vw);
  }
  .s-header h1 {
    font-size: calc(24 / 990 * 100vw);
    width: calc(100% - (85 / 990 * 100vw));
    padding-right: calc(85 / 990 * 100vw);
  }
}
@media (max-width: 480px) {
  .s-header h1 {
    font-size: 13px;
    padding: 0;
  }
}
/* コンテント */
#main_box {
/*  width: 810px;*/
  width: 100%;
  margin: 0 auto 0;
}
#main_box a {
  transition: opacity 0.2s;
  text-decoration: none;
}
#main_box a:hover {
  opacity: 0.75;
}
/* 共通 */
h2.s-heading {
  font-weight: bold;
  font-size: 24px;
  line-height: 150%;
  color: #24923c;
  margin: 0;
  text-align: center;
}
@media (max-width: 990px) {
  h2.s-heading {
    font-size: calc(24 / 990 * 100vw);
  }
}
@media (max-width: 480px) {
  h2.s-heading {
    font-size: 18px;
  }
  h2.s-heading > span {
    display: block;
    letter-spacing: -0.0625em;
  }
}
/* キャラクター */
.s-chara {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: #dce9bb;
  border-radius: 100%;
  width: 240px;
  height: 240px;
  margin: 20px auto 0;
}
@media (max-width: 990px) {
/*
  .s-chara {
    width: calc(240 / 990 * 100vw);
    height: calc(240 / 990 * 100vw);
  }
*/
}
@media (max-width: 480px) {
  .s-chara {
    width: 240px;
    height: 240px;
  }
}
.s-chara img {
  height: 220px;
  width: auto;
}
@media (max-width: 990px) {
/*
  .s-chara img {
    height: calc(220 / 990 * 100vw);
  }
*/
}
@media (max-width: 480px) {
  .s-chara img {
    height: 220px;
  }
}
/* SNS */
.s-sns {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 30px 0 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 480px) {
  .s-sns {
    display: block;
    justify-content: flex-start;
    margin-bottom: -6px;
    padding-left: 40%;
  }
}
.s-sns li {
  font-size: 12px;
  line-height: 150%;
  margin-left: 12px;
}
@media (max-width: 480px) {
  .s-sns li {
    margin-bottom: 6px;
  }
}
.s-sns a {
  display: block;
  box-sizing: border-box;
  background: #efefef;
  border-radius: 100px;
/*  padding: 6px 14px 6px 0;*/
  padding-right: 16px;
}
@media (max-width: 480px) {
  .s-sns a {
    display: block;
    box-sizing: border-box;
    padding: 0;
  }
}
.s-sns img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}
/* タイプ */
.s-type {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  margin: 40px 0 0;
  margin-left: -80px;
  text-align: center;
}
@media (max-width: 990px) {
  .s-type {
    margin-left: calc(-80 / 990 * 100vw);
  }
}
@media (max-width: 480px) {
  .s-type {
    display: flex;
    justify-content: center;
    text-align: left;
    margin-left: 0;
  }
  .s-type-lead {
    display: block;
  }
}
.s-type img {
  height: 50px;
  width: auto;
  margin: 0 8px 12px;
  vertical-align: middle;
}
@media (max-width: 990px) {
  .s-type img {
    height: calc(50 / 990 * 100vw);
  }
}
@media (max-width: 480px) {
  .s-type img {
    height: 40px;
    margin-left: 0;
  }
}
/* 結果 */
.s-result {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  margin: 40px 0 0;
}
@media (max-width: 990px) {
  .s-result {
    display: block;
  }
}
.s-type + .s-result {
  margin-top: 40px;
}
.s-result-title {
  width: 30%;
  margin: 0;
}
.s-result-title img {
  height: 40px;
  width: auto;
}
.s-result-text {
  font-size: 17px;
  font-weight: bold;
  line-height: 37px;
  background: url(../images/result_text_bg.jpg);
  width: 591px;
  min-height: 110px;
  margin: 10px 0 0;
  padding-top: 2px;
  padding-left: 5px;
}
@media (max-width: 990px) {
  .s-result-title {
    width: 100%;
  }
  .s-result-text {
    width: 100%;
    margin-top: 20px;
  }
}
/* サンプル */
.s-sample {
  margin: 60px auto 0;
  text-align: center;
}
@media (max-width: 480px) {
  .s-sample {
    margin-top: 30px;
  }
}
.s-sample img {
  width: 300px;
  height: auto;
  border: 2px solid #efefef;
  border-radius: 3px;
}
/* 有料版 */
.s-paidver-wrap {
  background: #fffeee;
  margin: 50px 0 0;
  padding: 50px 60px 60px;
}
@media (max-width: 830px) {
  .s-paidver-wrap {
    padding: 30px 16px 16px;
  }
}
.s-paidver {
/*
  background: #f2f9f5;
*/
  background: #ffffff;
  border: 3px dotted #f2cec8;
  border-radius: 6px;
  margin: 50px auto 0;
  padding: 32px;
}
@media (max-width: 480px) {
  .s-paidver {
    margin-top: 25px;
    padding: 16px;
  }
}
.s-paidver > *:last-child {
  margin-bottom: 0;
}
.s-paidver h3.s-heading {
  font-weight: bold;
  font-size: 22px;
  line-height: 150%;
  color: #654540;
  margin: 15px 0 40px;
  text-align: center;
}
@media (max-width: 990px) {
  .s-paidver h3.s-heading {
    font-size: calc(22 / 990 * 100vw);
  }
}
@media (max-width: 480px) {
  .s-paidver h3.s-heading {
    font-size: 18px;
  }
  .s-paidver h3.s-heading > span {
    display: block;
    letter-spacing: -0.0625em;
  }
}
.s-paidver p,
.s-paidver li {
/*  font-weight: bold;*/
  font-size: 15px;
  line-height: 175%;
}
/* リンクボタン */
.s-link-button {
  margin-top: 30px;
  text-align: center;
}
.s-link-button a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff !important;
/*  background: #24923c;*/
  background: #ee7700;
  padding: 8px 18px 8px 12px;
  border-radius: 100px;
  text-align: center;
}
@media (max-width: 480px) {
  .s-link-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 125%;
  }
  .s-link-button .s-br {
    display: block;
  }
  .s-link-button a {
    border-radius: 6px;
  }
}
.s-link-button .material-icons {
  margin-right: 8px;
  vertical-align: middle;
}