@charset "UTF-8";
@font-face {
  font-family: 'MyFont';
  src: url("../font/felix-titling.ttf"); }
/*--------------------
共通設定
----------------------*/
* {
  padding: 0;
  margin: 0; }

img, video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  text-decoration: none;
  color: #3c463c; }
  a:visited {
    color: #3c463c; }
  a.disabled {
    pointer-events: none;
    text-decoration: none; }

ul, ol {
  list-style: none; }

.fadein {
  opacity: 0;
  transition: opacity 1s, transform 1s; }
  .fadein.visible {
    opacity: 1; }

/*--------------------------------------------*/
.lp_wrapper {
  margin: 0 auto;
  box-sizing: border-box;
  background: #fdfdf8;
  letter-spacing: 0;
  color: #3c463c;
  font-size: 14px;
  text-align: center;
  font-family: "toppan-bunkyu-gothic-pr6n", serif;
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  background: #7A8C5B;
  height: calc(100vh - 50px); }
  .lp_wrapper h1 {
    font-size: 1.1em;
    font-weight: 400;
    color: #fdfdf8;
    line-height: 3.0;
    padding: 2.0em 0;
    margin: 0;
    letter-spacing: .1em; }
    @media screen and (max-width: 600px) {
      .lp_wrapper h1 {
        font-size: 3.2vw; } }

.container {
  min-height: 70vh;
  max-height: 80%;
  height: 100%;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  background: #fdfdf8;
  text-align: center;
  margin: 0 auto 10%;
  position: relative; }
  .container #chart-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; }
  .container .q_ttl {
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "MyFont";
    font-size: 1.2em;
    letter-spacing: .1em; }
    @media screen and (max-width: 600px) {
      .container .q_ttl {
        font-size: 3.3vw; } }
  .container .question-box {
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    white-space: pre-wrap; }
    @media screen and (max-width: 600px) {
      .container .question-box {
        font-size: 3.2vw; } }
  .container .button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    width: 100%; }
    .container .button-group .btn {
      padding: 12px 25px;
      cursor: pointer;
      font-family: "MyFont";
      letter-spacing: 0.2em;
      font-size: 1em;
      transition: background-color 0.2s;
      width: 45%;
      background: #ffffff;
      border: 1px solid #3c463c;
      color: #3c463c; }
      @media screen and (max-width: 600px) {
        .container .button-group .btn {
          font-size: 3.2vw;
          padding: 10px 25px; } }
      .container .button-group .btn:hover {
        background: #7A8C5B;
        color: #fdfdf8;
        border: 1px solid #7A8C5B; }

.result {
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%; }
  .result h2 {
    font-weight: 400;
    font-size: 0.9em !important;
    margin-bottom: 24px !important;
    line-height: 2.2;
    text-align: center;
    border: none; }
    @media screen and (max-width: 600px) {
      .result h2 {
        font-size: 3.2vw; } }
  .result a {
    font-size: 0.9em;
    display: block;
    width: fit-content;
    padding: 1.0em 3.5em;
    line-height: 1.0;
    border: 1px solid #3c463c;
    background: #fff;
    letter-spacing: 0.1em;
    margin: 24px auto; }
    @media screen and (max-width: 600px) {
      .result a {
        font-size: 3.2vw; } }
    .result a:hover {
      background: #7A8C5B;
      color: #fdfdf8 !important;
      border: 1px solid #7A8C5B; }
