body,
.container {
    background-color: #00aeff;
}

input[type=radio] {
    display: none;
}
.contents {
    background-color: transparent;
}
.answer_header {
    color: #fff;
}
footer {
    height: 40px;
    color: #fff;
}
.navbar-brand,
.nav-link {
    color: #fff;
}
.navbar-toggler {
    border-color: rgba(255,255,255,1);
}
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }
.contents {
    min-height: calc(100vh - 96px);
    width: 100%;
    text-align: center;
}
/* .answer {
    display: none;
} */

.answer,
.result,
.about,
.policy,
.faq,
.contact {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: solid 2px #00aeff;
    border-radius: 20px;
}

.result,
.about,
.policy,
.faq,
.contact {
    text-align: left;
}

.cookie_error {
    color: #fff;
}

/* 円の基本形 */
.maru {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-flow: column; 
    vertical-align: top;
    background-color: #00aeff;
    margin: 5px 2px;
    cursor: pointer;
    color: #fff;
    border: 4px solid #00aeff;
}
.maru:hover {
    background-color: #fff;
    color: rgb(0, 174, 255);
    border: 4px solid #00aeff;
}
/* 文字の大きさ */
.maru div {
    font-size: 3em;
    line-height: 1.5em;
    cursor: pointer;
}
/* 円の大きさ */
.size_normal{
    width: 120px;
    height: 120px;
}
.errors {
    padding-left: 0;
    color: #f00;
    list-style: none;
}
.success {
    color: #00f;
}

/* グラフ */
.canvas-container {
    width:100%;
    height:60vh;
    text-align: center;
}
.attention {
    font-size: 10pt;
    font-weight: bold;
}

.period {
    width: 100%;
    text-align: right;
}

/* About ボタン */
.vote_btn_wrapper {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.vote_btn,
.vote_btn:active,
.vote_btn:link {
    background-color: #4169e1;
    color: #fff;
    font-size: 16pt;
    font-weight: bold;
    border-radius: 5px;
    padding: 20px 50px;
    cursor: pointer;
    text-decoration: none;
}


/* FAQ アコーディオンメニュー */
.accordion-container {
  position: relative;
  width: 100%;
  /* border: 1px solid #0079c1; */
  border-top: none;
  outline: 0;
  cursor: pointer;
}

.accordion-container .accordion-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 0;
  font-size: 1.25em;
  font-weight: normal;
  color: #000;
  background: #fff;
  cursor: pointer;
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
  background-color: #00aaa7;
  color: white;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
  color: #fff;
}

.accordion-title{
  position: relative;
}

.accordion-title:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  padding-left: 10px;
}

/* About 画像センタリング */
.img-wrapper {
    width: 100%;
    text-align: center;
}

/* About 画像 */
.img-responsive {
    /* display: block; */
    margin-top: 20px;
    height: auto;
    max-width: 100%;
  }

  /* 下線 */
  .under1 {
    background: linear-gradient(transparent 70%, #ff99ab 70%);
  }
  .under2 {
    background: linear-gradient(transparent 70%, #99abff 70%);
  }

  /* お問合せフォーム リンク */
  .contact_form,
  .privacy_link {
      color: #00f;
      font-size: 16pt;
      font-weight: bold;
  }