@charset "UTF-8";
/*
Theme Name: xxx
Author: xxx
Description: xxx
Version: xxx
*/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

.container {
  width: calc(100% - 8vw);
  margin: 0 auto;
}
.container.w1200 {
  max-width: 1200px;
}
.container.w980 {
  max-width: 980px;
}
.container.w720 {
  max-width: 720px;
}

.ta_center {
  text-align: center;
}
.ta_left {
  text-align: left;
}
.ta_right {
  text-align: right;
}

header {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .ttl h1 {
  margin: 0;
  text-align: center;
  font-family: noto serif jp;
  font-weight: 300;
  font-size: 1.5rem;
}
header .ttl h1 a {
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-decoration: none;
  color: #111;
  transition: opacity 0.2s;
  will-change: opacity;
}
header .ttl h1 a:hover {
  opacity: 0.6;
}
header .ttl h1 a span {
  padding-left: 60px;
  position: relative;
  display: inline-block;
}
header .ttl h1 a span::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(img/logo.png) no-repeat center;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 25px);
}

footer {
  min-height: 200px;
  padding: 40px;
  background: #404040;
  color: #fafafa;
}
footer #copy p {
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main > section {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .onlySP {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  .onlyPC {
    display: none;
  }
}
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%;
  padding: 0.75em 0.75em;
  display: block;
  font-size: 1rem;
  border: 1px solid #999;
  border-radius: 4px;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit].form_btn_submit, button[type=submit].form_btn_submit {
  width: calc(100% - 8vw);
  height: 50px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: var(--blue01);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
input[type=submit].form_btn_submit:hover, button[type=submit].form_btn_submit:hover {
  background: var(--blue02);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

ul.form_set {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
ul.form_set > li {
  display: flex;
  flex-direction: row;
  gap: 2vw;
}
ul.form_set > li.submit {
  margin-top: 40px;
  text-align: center;
  display: block;
}
ul.form_set > li.submit input[type=submit], ul.form_set > li.submit button[type=submit] {
  margin: 0 auto;
}
ul.form_set > li .ttl {
  width: 200px;
}
ul.form_set > li .ttl label {
  width: 100%;
  padding: 0.5em 0;
  padding-right: 40px;
  display: block;
  position: relative;
  font-size: 0.875rem;
}
ul.form_set > li .ttl label span {
  display: inline-block;
}
ul.form_set > li .ttl label.required::after {
  content: "必須";
  color: #fff;
  line-height: 1.25rem;
  font-size: 0.75rem;
  border-radius: 4px;
  background: var(--red01);
  padding: 0 0.5em;
  display: inline-block;
  position: absolute;
  right: 0;
}
ul.form_set > li .input {
  flex: 1;
}

#question {
  margin: 40px 0 100px;
}
#question #flow02, #question #flow03 {
  display: none;
}
#question ol.question_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#question ol.question_list > li {
  display: none;
  position: relative;
  transition: left 0.4s;
}
#question ol.question_list > li:first-child {
  display: block;
}
#question ol.question_list > li.active {
  left: 0;
}
#question ol.question_list > li.prev {
  left: 10px;
}
#question ol.question_list > li.next {
  left: -10px;
}
#question ol.question_list > li .set h3 {
  margin: 2.5em 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#question ol.question_list > li .set ul.select_list {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#question ol.question_list > li .set ul.select_list li {
  margin-top: -1px;
}
#question ol.question_list > li .set ul.select_list li label {
  display: block;
  cursor: pointer;
  position: relative;
}
#question ol.question_list > li .set ul.select_list li label input[type=radio] {
  visibility: hidden;
  position: absolute;
}
#question ol.question_list > li .set ul.select_list li label input[type=radio] + span {
  padding: 20px;
  padding-left: 50px;
  line-height: 1.5;
  display: block;
  position: relative;
  border: 1px solid #ddd;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
#question ol.question_list > li .set ul.select_list li label input[type=radio] + span::before {
  color: var(--blue01);
  font-size: 24px;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 10px;
  top: calc(50% - 15px);
}
#question ol.question_list > li .set ul.select_list li label input[type=radio]:checked + span {
  color: var(--blue01);
  border-color: var(--blue01);
  background: rgba(var(--blue01rgb), 0.1);
  z-index: 1;
}
#question ol.question_list > li .set ul.select_list li label:hover input[type=radio] + span {
  z-index: 1;
  color: var(--blue01);
  border-color: var(--blue01);
  background: rgba(var(--blue01rgb), 0.1);
}
#question ol.question_list > li .set ul.select_list li:first-child {
  margin-top: 0;
}
#question ol.question_list > li .set ul.select_list li:first-child label input[type=radio] + span {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#question ol.question_list > li .set ul.select_list li:last-child label input[type=radio] + span {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
#question ol.question_list > li .set ul.select_list li:nth-child(1) label input[type=radio] + span::before {
  content: "A";
}
#question ol.question_list > li .set ul.select_list li:nth-child(2) label input[type=radio] + span::before {
  content: "B";
}
#question ol.question_list > li .set ul.select_list li:nth-child(3) label input[type=radio] + span::before {
  content: "C";
}
#question ol.question_list > li .set ul.select_list li:nth-child(4) label input[type=radio] + span::before {
  content: "D";
}
#question .button_set {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#question button, #question a {
  cursor: pointer;
}
#question button:disabled, #question a:disabled {
  cursor: auto;
}
#question button.btn_submit, #question a.btn_submit {
  width: calc(100% - 8vw);
  max-width: 280px;
  height: 50px;
  border: none;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  line-height: 50px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  background: var(--blue01);
  transition: box-shadow 0.2s, background 0.2s, opacity 0.2s;
}
#question button.btn_submit:hover, #question a.btn_submit:hover {
  background: var(--blue02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
#question button.btn_submit:disabled, #question a.btn_submit:disabled {
  opacity: 0.6;
}
#question button.btn_submit:disabled:hover, #question a.btn_submit:disabled:hover {
  background: var(--blue01);
  box-shadow: none;
}
#question button.btn_back, #question a.btn_back {
  width: calc(100% - 8vw);
  max-width: 120px;
  height: 30px;
  border: none;
  font-size: 0.875rem;
  background: none;
  transition: opacity 0.2s;
}
#question button.btn_back:disabled, #question a.btn_back:disabled {
  opacity: 0.6;
}
#question button#btn_finish, #question a#btn_finish {
  display: none;
}
#question article {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333;
}
#question article h2, #question article h3, #question article h4, #question article h5, #question article h6 {
  margin: 2.5em 0 1.5em;
  font-family: var(--serif);
  font-weight: 300;
  color: #111;
}
#question article h2 {
  padding-bottom: 1em;
  font-size: 2rem;
  position: relative;
}
#question article h2::before {
  content: "";
  width: 80px;
  height: 2px;
  background: #111;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
#question article p {
  margin: 1.5em 0;
}
#question article ul, #question article ol {
  margin: 40px 0;
  padding: 20px 40px 20px 60px;
  background: #fafafa;
  border-radius: 8px;
}
#question article ul li, #question article ol li {
  margin-top: 0.5em;
}
#question article blockquote {
  margin: 20px 0;
  padding: 40px;
  position: relative;
  background: #fafafa;
  border-radius: 8px;
}
#question article blockquote > *:first-child {
  margin-top: 0;
}
#question article blockquote > *:last-child {
  margin-bottom: 0;
}
#question article blockquote::before, #question article blockquote::after {
  content: "\e244";
  color: #999;
  font-family: material icons;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
}
#question article blockquote::before {
  top: 4px;
  left: 4px;
  transform: rotate(180deg);
}
#question article blockquote::after {
  bottom: 4px;
  right: 4px;
}
#question article figure {
  margin: 40px 0;
}
#question article figure.score_table table {
  border-collapse: collapse;
}
#question article figure.score_table table th, #question article figure.score_table table td {
  padding: 0.5em;
  border: 1px solid #999;
}
#question article figure.score_table table thead {
  border: none;
}
#question article figure.score_table table thead tr th:nth-child(1) {
  width: 160px;
}
#question article figure.score_table table thead tr th:nth-child(2) {
  width: 120px;
}
#question article figure.score_table table tbody tr td:nth-child(1) {
  text-align: center;
}
#question article figure.score_table table tbody tr td:nth-child(2) {
  text-align: center;
}
#question article figure.score_table table tfoot {
  border: none;
}
#question article figure.score_table table tfoot tr td {
  font-size: 0.75rem;
  border: none;
  color: #666;
}
#question .exam .count {
  position: relative;
}
#question .exam .count::before {
  content: "";
  width: 100%;
  height: 1px;
  border-top: double 3px #999;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
#question .exam .count .num {
  padding-right: 1em;
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 1;
}
#question .exam .count .num small {
  font-size: 0.75em;
}
#question .greeting .start {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}
#question .greeting .start::before {
  content: "";
  width: calc(100% + 20px);
  height: 1px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
}
#question .greeting .start .button_set {
  margin: 0;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}
#question .greeting .start .button_set button, #question .greeting .start .button_set a {
  max-width: 520px;
}
#question .finish .finish_form {
  margin: 40px 0;
}
#question .finish .finish_form ul.form_set {
  padding: 80px 40px 40px;
  background: #f5f5f5;
  border-radius: 8px;
}
#question .finish .finish_form ul.form_set > li {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 40px;
  background: #fff;
}
#question .finish .finish_form ul.form_set > li:nth-child(1) {
  padding-top: 40px;
}
#question .finish .finish_form ul.form_set > li:nth-last-child(2) {
  padding-bottom: 40px;
}
#question .finish .finish_form ul.form_set > li.submit {
  margin-top: 40px;
  padding: 0;
  background: none;
  position: relative;
}
#question .finish .finish_form ul.form_set > li.submit .wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 12px);
}
#question .result .score {
  margin: 100px 0;
}
#question .result .score .rank {
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: center;
}
#question .result .score .rank strong {
  font-size: 7rem;
  font-family: var(--serif);
  line-height: 1;
}
#question .result .score .rank small {
  display: inline-block;
  position: relative;
}
#question .result .score .rank small::before, #question .result .score .rank small::after {
  content: "-";
}
#question .result .score .rank small::before {
  margin-right: 1em;
}
#question .result .score .rank small::after {
  margin-left: 1em;
}
#question .result .score .bar {
  max-width: 560px;
  margin: 40px auto;
  position: relative;
}
#question .result .score .bar .cursor {
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  width: 20px;
  height: 12px;
  margin-left: -9px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: left 1s ease;
}
#question .result .score .bar .level {
  padding-top: 12px;
  display: flex;
  flex-direction: row;
}
#question .result .score .bar .level span {
  padding: 2px 0;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid #999;
  border-left: none;
  display: table-cell;
}
#question .result .score .bar .level span:first-child {
  border-left: 1px solid #999;
}
#question .result .score .bar .level span:nth-child(1) {
  width: 20%;
}
#question .result .score .bar .level span:nth-child(2) {
  width: 20%;
}
#question .result .score .bar .level span:nth-child(3) {
  width: 15%;
}
#question .result .score .bar .level span:nth-child(4) {
  width: 15%;
}
#question .result .score .bar .level span:nth-child(5) {
  width: 15%;
}
#question .result .score .bar .level span:nth-child(6) {
  width: 10%;
}
#question .result .score .bar .level span:nth-child(7) {
  width: 5%;
}
#question .result .score .num {
  margin: 10px 0 0;
  text-align: center;
  font-weight: 600;
}
#question .result ol.result_list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: listNum 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#question .result ol.result_list > li {
  position: relative;
}
#question .result ol.result_list > li .count {
  position: relative;
}
#question .result ol.result_list > li .count::before {
  content: "";
  width: 100%;
  height: 1px;
  border-top: double 3px #999;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
#question .result ol.result_list > li .count .num {
  padding-right: 1em;
  display: inline-block;
  background: #fff;
  position: relative;
  z-index: 1;
}
#question .result ol.result_list > li h3 {
  margin: 2em 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#question .result ol.result_list > li h3::before {
  font-weight: 600;
  margin-right: 0.5em;
}
#question .result ol.result_list > li ul.select_list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#question .result ol.result_list > li ul.select_list li {
  margin-top: -1px;
}
#question .result ol.result_list > li ul.select_list li span {
  padding: 20px;
  padding-left: 50px;
  display: block;
  position: relative;
  border: 1px solid #ddd;
}
#question .result ol.result_list > li ul.select_list li span::before {
  content: "";
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: var(--blue01);
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 10px;
  top: calc(50% - 15px);
}
#question .result ol.result_list > li ul.select_list li:nth-child(1) span {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#question .result ol.result_list > li ul.select_list li:nth-child(1) span::before {
  content: "A";
}
#question .result ol.result_list > li ul.select_list li:nth-child(2) span::before {
  content: "B";
}
#question .result ol.result_list > li ul.select_list li:nth-child(3) span::before {
  content: "C";
}
#question .result ol.result_list > li ul.select_list li:nth-child(4) span {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
#question .result ol.result_list > li ul.select_list li:nth-child(4) span::before {
  content: "D";
}
#question .result ol.result_list > li ul.select_list li.check span {
  background: rgba(var(--red01rgb), 0.1);
  border-color: var(--red01);
  color: var(--red01);
  z-index: 1;
}
#question .result ol.result_list > li ul.select_list li.check span::before {
  color: var(--red01);
}
#question .result ol.result_list > li ul.select_list li.active span {
  background: rgba(var(--blue01rgb), 0.1);
  border-color: var(--blue01);
  color: var(--blue01);
  z-index: 1;
  font-weight: 600;
}
#question .result ol.result_list > li ul.select_list li.active span::before {
  color: var(--blue01);
  font-weight: 400;
}
#question .result ol.result_list > li button.btn_explanation {
  width: calc(100% - 8vw);
  margin: 40px auto 0;
  padding: 0;
  display: block;
  position: relative;
  background: none;
  border: 1px solid #666;
  border-radius: 4px;
  color: #333;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s, margin 0.2s, right;
}
#question .result ol.result_list > li button.btn_explanation span {
  display: block;
  position: relative;
  line-height: 40px;
}
#question .result ol.result_list > li button.btn_explanation span::before, #question .result ol.result_list > li button.btn_explanation span::after {
  content: "\e5db";
  font-family: material icons;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
}
#question .result ol.result_list > li button.btn_explanation span::before {
  left: 10px;
}
#question .result ol.result_list > li button.btn_explanation span::after {
  right: 10px;
}
#question .result ol.result_list > li button.btn_explanation:hover {
  background: #666;
  color: #fff;
}
#question .result ol.result_list > li button.btn_explanation.active {
  width: 30px;
  height: 30px;
  margin: 0;
  margin-left: auto;
  top: 80px;
  right: 10px;
  z-index: 1;
  border: none;
}
#question .result ol.result_list > li button.btn_explanation.active::before {
  content: "\e5cd";
  font-family: material icons;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#question .result ol.result_list > li button.btn_explanation.active span {
  display: none;
}
#question .result ol.result_list > li .explanation {
  margin-top: 40px;
  margin: 40px 0 40px;
  padding: 20px;
  padding-top: 40px;
  background: #f5f5f5;
  position: relative;
  display: none;
}
#question .result ol.result_list > li .explanation::before {
  content: "-　解説　-";
  color: #333;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  line-height: 40px;
  width: 100%;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#question .result ol.result_list > li .explanation > *:first-child {
  margin-top: 0;
}
#question .result ol.result_list > li .explanation > *:last-child {
  margin-bottom: 0;
}
#question .result ol.result_list > li .explanation p {
  line-height: 1.8;
  font-size: 0.875rem;
}
#question .result ol.result_list > li.correct h3::before {
  content: "○";
  color: var(--blue01);
}
#question .result ol.result_list > li.incorrect h3::before {
  content: "✕";
  color: var(--red01);
}
#question .result ol.result_list + .share_set {
  margin-top: 100px;
}
#question .share_set {
  margin: 40px 0;
  padding: 10px 20px 20px;
  border: 1px solid #ddd;
}
#question .share_set h3 {
  margin: 0;
  text-align: center;
  font-size: 1rem;
}
#question .share_set ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
}
#question .share_set ul li {
  width: 30%;
}
#question .share_set ul li a {
  width: 100%;
  height: 50px;
  background: #eee;
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
#question .share_set ul li a::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
}
#question .share_set ul li a span {
  display: none;
}
#question .share_set ul li a:hover {
  opacity: 0.8;
}
#question .share_set ul li.facebook a {
  background: #0865fe;
}
#question .share_set ul li.facebook a::before {
  background-image: url(img/icon_facebook.svg);
}
#question .share_set ul li.x_twitter a {
  background: #000;
}
#question .share_set ul li.x_twitter a::before {
  background-image: url(img/icon_x.svg);
}
#question .share_set ul li.line a {
  background: #06C755;
}
#question .share_set ul li.line a::before {
  background-image: url(img/icon_line.svg);
}
#question .share_set ul li.threads a {
  background: #f5f5f5;
}
#question .share_set ul li.threads a::before {
  background-image: url(img/icon_threads.svg);
}
#question .pr figure {
  max-width: 480px;
  margin: 0 auto;
  display: block;
}
#question .pr figure a img {
  max-width: 100%;
  transition: opacity 0.2s;
}
#question .pr figure a:hover img {
  opacity: 0.8;
}
#question .pr figure figcaption {
  margin-top: 0.5em;
  font-size: 0.75rem;
  color: #666;
}

@media screen and (max-width: 767.98px) {
  #question {
    margin: 60px 0 80px;
  }
  #question article h2 {
    font-size: 1.5rem;
  }
  #question article ul, #question article ol {
    padding: 20px 20px 20px 40px;
  }
  #question article blockquote {
    padding: 30px;
  }
  #question article figure.score_table table th, #question article figure.score_table table td {
    padding: 0;
    border: none;
    line-height: 1.5;
  }
  #question article figure.score_table table thead {
    display: none;
  }
  #question article figure.score_table table tbody tr {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    border-bottom: dashed 1px #666;
  }
  #question article figure.score_table table tbody tr:first-child {
    border-top: 1px solid #333;
  }
  #question article figure.score_table table tbody tr:last-child {
    border-bottom: 1px solid #333;
  }
  #question article figure.score_table table tbody tr td:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-weight: 600;
  }
  #question article figure.score_table table tbody tr td:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #question article figure.score_table table tbody tr td:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/3;
    padding: 0.5em 0 0.5em 0.5em;
  }
  #question article figure.score_table table tfoot tr td {
    padding: 0.5em 0;
    display: block;
  }
  #question .greeting .start .button_set {
    padding: 10px 0;
  }
  #question .greeting .start .button_set button {
    max-width: 100%;
    border-radius: 4px;
  }
  #question .finish .finish_form ul.form_set {
    padding: 4vw 4vw 4vw;
  }
  #question .finish .finish_form ul.form_set > li {
    padding: 1vw 4vw 4vw;
    flex-direction: column;
    border-top: 1px solid #f5f5f5;
  }
  #question .finish .finish_form ul.form_set > li:nth-child(1) {
    padding-top: 1vw;
    border-top: none;
  }
  #question .finish .finish_form ul.form_set > li:nth-last-child(2) {
    padding-bottom: 4vw;
  }
  #question .finish .finish_form ul.form_set > li.submit {
    margin-top: 4vw;
    padding: 0;
    background: none;
  }
  #question .finish .finish_form ul.form_set > li .ttl {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
}

:root {
  --sans-serif: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --serif: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --blue01: #1967d2;
  --blue01rgb: 25,103,210;
  --blue02: #195ab4;
  --blue02rgb: 25,90,180;
  --red01: #af1e2b;
  --red01rgb: 175,30,43;
  --gray: #f8f9fa;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
  --main-margin-bottom-pc: 200px;
  --main-margin-bottom-sp: 100px;
  --main-margin-top-pc: 100px;
  --main-margin-top-sp: 60px;
}/*# sourceMappingURL=style.css.map */