@charset "UTF-8";
/* base */
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 0vw;
  min-inline-size: 0;
}

:root {
  --font-sans-serif: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --c-white: #fff;
  --c-black: #000;
  --c-blue: #0073aa;
  --c-green: #4caf50;
  --c-red: #f44336;
  --c-good: var(--c-green);
  --c-bad: var(--c-red);
  --c-primary: var(--c-blue);
  --c-secondary: #555;
  --h-gutter: 16px;
  --v-gutter: 16px;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #f1f1f1;
  font-size: 1.6rem;
  font-family: var(--font-sans-serif);
  color: #444;
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

object[type="application/pdf"] {
  display: block;
  width: 100%;
  height: 600px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

select:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.bl_form {
  display: flex;
  gap: 8px;
}
.bl_form button {
  flex-shrink: 0;
}

pre {
  border: 1px solid #ccc;
  padding: 16px !important;
  background: #f1f1f1;
  font-size: 1.4rem !important;
  line-height: 1.6;
  white-space: pre-wrap;
  tab-size: 4;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* ヘッダー */
.ly_header {
  z-index: 1000;
  width: 100%;
  padding: 10px;
  background: #fff;
}

.admin-bar .ly_header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .ly_header {
    top: 46px;
  }
}

.ly_header__logo {
  width: fit-content;
  border: 1px solid #ccc;
  padding: 0.5em;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width:479px) {
  .ly_header__logo {
    max-width: 250px;
  }
}
.ly_header__logo img {
  filter: invert(21%) sepia(9%) saturate(2801%) hue-rotate(172deg) brightness(93%) contrast(95%);
}

.is_white .ly_header__logo img {
  filter: invert(100%) sepia(17%) saturate(1%) hue-rotate(102deg) brightness(105%) contrast(101%);
}

.ly_header__utility {
  position: absolute;
  top: 0;
  right: 20px;
}
@media only screen and (max-width:768px) {
  .ly_header__utility {
    position: initial;
  }
}

/* メイン */
.ly_main {
  padding: 40px 0;
}

/* インナーボックス */
.ly_inner {
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 20px;
}

.ly_entryContent {
  margin-top: calc(var(--v-gutter) * 2);
}
.ly_entryContent * {
  margin: revert;
  padding-left: revert;
  font-size: revert;
  font-weight: revert;
  list-style: revert;
  line-height: 1.6;
}
.ly_entryContent > :first-child {
  margin-top: 0;
}
.ly_entryContent table {
  border-collapse: collapse;
  border-spacing: 0;
}
.ly_entryContent th, .ly_entryContent td {
  border: 1px solid #ccc;
  padding: 0.5em;
}
.ly_entryContent kbd {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #ccc;
  color: #333;
  display: inline-block;
  font-family: monospace;
  font-size: 0.9em;
  line-height: 1.4;
  padding: 2px 4px;
}

/* タイトル */
.el_heading {
  font-size: 3.2rem;
  font-weight: 700;
}

.el_heading01 {
  font-size: 2.4rem;
  font-weight: 700;
}

.el_heading02 {
  width: fit-content;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  background: #000;
  color: #fff;
}

.el_card {
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 40px;
  background: #fff;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

/* ボタン */
.el_btn,
.wp-block-button__link {
  display: block;
  width: fit-content;
  padding: 0.75em;
  border-radius: 0.5em;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  color: var(--c-white);
  background: var(--c-primary);
  transition: background-color 0.3s ease;
}

.el_btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.el_btn.-ghost {
  background: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
}

.el_btn.-sm {
  padding: 0.5em;
  font-size: 1.2rem;
}

.wp-block-buttons {
  margin-block: 1em;
}

.el_favoriteBtn {
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}
.el_favoriteBtn.is_active {
  color: #ffcc00;
  /* お気に入り登録済みの色 */
}

/* バッチ */
.el_badge {
  display: inline-block;
  width: 5em;
  padding: 0.25em 0.5em;
  border: 1px solid;
  border-radius: 0.25em;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: var(--c-primary);
}
.el_badge.-green {
  color: #4caf50;
}
.el_badge.-gray {
  color: #666;
}

.bl_quizUnite__wrap {
  counter-reset: num;
}
.bl_quizUnite__wrap .el_card {
  counter-increment: num;
}
.bl_quizUnite__wrap .el_card .el_heading02::after {
  content: counter(num);
}

.bl_quizUnite {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  counter-reset: quiz-num;
}

.bl_quiz__questionText {
  padding-block: 1em;
}
.bl_quiz__questionText > :first-child {
  margin-top: 0;
}
.bl_quiz__questionText * {
  margin: revert;
  padding: revert;
  font-size: revert;
  font-weight: revert;
  list-style: revert;
}
.bl_quiz__questionText a {
  color: revert;
  text-decoration: underline;
}
.bl_quiz__questionText a[href$=".pdf"]::after,
.bl_quiz__questionText a[href$=".PDF"]::after {
  content: "PDF";
  font-size: 0.75em;
  font-weight: bold;
  background-color: #e53e3e;
  color: #fff;
  padding: 1px 4px;
  margin-left: 4px;
  border-radius: 3px;
}

.bl_quiz {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.bl_quiz:hover {
  background: #fafad6;
}
.bl_quiz::before {
  counter-increment: quiz-num;
  content: counter(quiz-num);
  position: absolute;
  left: 4px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 100vmax;
  border: 1px solid #aaa;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: #fff;
}
.bl_quiz:has(input[type=radio]:checked) {
  background: #fafad6;
}
.bl_quiz.is_selected {
  position: relative;
}
.bl_quiz.is_selected:has(input[type=radio]:checked)::after {
  content: "不正解";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100vmax;
  margin-block: auto;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #f44336;
}
.bl_quiz.is_correct.is_selected:has(input[type=radio]:checked) {
  border-color: #4caf50;
  background: #e8f5e9;
}
.bl_quiz.is_correct.is_selected:has(input[type=radio]:checked)::after {
  content: "正解";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100vmax;
  margin-block: auto;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #4caf50;
}
.bl_quiz__label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 60px;
  cursor: pointer;
}
.bl_quiz__choiceText {
  padding: 4px;
  line-height: 1.6;
}
.bl_quiz__form {
  margin-block: 20px;
}

/* スコアーユニット */
.bl_score {
  z-index: 1000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.bl_score__score {
  text-align: center;
}
.bl_score__score .-final {
  font-size: 2.4rem;
  font-weight: 700;
}
.bl_score__score .-previous {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
}

/* 結果ボックス */
.bl_resultUnite {
  display: none;
}
.bl_resultUnite.is_active {
  display: block;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.bl_result__answer {
  border: 1px solid #4caf50;
  background: #e8f5e9;
  border-radius: 20px;
  margin-top: 20px;
  padding: 1em;
  margin-bottom: 1em;
}
.bl_result__answerText {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.5;
}
.bl_result__explanation * {
  margin: revert;
}
.bl_result__explanation a {
  color: revert;
  text-decoration: underline;
}
.bl_result__explanation a[href$=".pdf"]::after,
.bl_result__explanation a[href$=".PDF"]::after {
  content: "PDF";
  font-size: 0.75em;
  font-weight: bold;
  background-color: #e53e3e;
  color: #fff;
  padding: 1px 4px;
  margin-left: 4px;
  border-radius: 3px;
}
.bl_result__explanation ul, .bl_result__explanation ol {
  padding: revert;
  list-style: revert;
}

.bl_listUnite {
  display: grid;
  gap: 0;
  margin-top: 20px;
}
.bl_listUnite__item {
  border-bottom: 1px solid #ccc;
}
.bl_listUnite__item:first-child {
  border-top: 1px solid #ccc;
}
.bl_listUnite__item a {
  display: block;
  padding: 1em;
}
.bl_listUnite__item a:hover {
  background: #fafad6;
}
.bl_listUnite__item .el_badge {
  margin-right: 0.5em;
}
.bl_listUnite__score {
  width: 5em;
  padding: 0.25em 0.5em;
  border-left: 1px solid #ccc;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: var(--c-primary);
}
.bl_listUnite__score.-none {
  color: #999;
}
.bl_listUnite__score.-good {
  color: var(--c-good);
}
.bl_listUnite__score.-bad {
  color: var(--c-bad);
}

/* bl_globalNav */
.bl_globalNav {
  background: #fff;
  border-radius: 0 0 16px 16px;
}
.bl_globalNav__list {
  display: flex;
  gap: 1em;
  margin: 0;
  padding: 0 1.5em;
  list-style: none;
}
.bl_globalNav__list a {
  display: block;
  padding: 1em 0.5em;
  text-decoration: none;
  color: var(--c-black);
}

/* ここから下は未完成 */
@media only screen and (max-width:768px) {
  .bl_globalNavUnite {
    display: none;
  }
}

@media only screen and (max-width:768px) {
  .is_open .bl_globalNavUnite {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    background: var(--c-blue-dark);
  }
}

.is_open .bl_globalNav {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.is_open .bl_globalNav__list a {
  color: var(--c-primary);
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
.bl_table {
  width: 100%;
}
.bl_table.-fixed {
  table-layout: fixed;
}
.bl_table th {
  border: 1px solid #ccc;
  padding: 1em;
  font-weight: 400;
  background: #f1f1f1;
}
@media only screen and (max-width:479px) {
  .bl_table th {
    font-size: 1.4rem;
    padding: 0.5em;
  }
}
.bl_table td {
  border: 1px solid #ccc;
  padding: 1em;
  background: #fff;
}
@media only screen and (max-width:479px) {
  .bl_table td {
    font-size: 1.4rem;
    padding: 0.5em;
  }
}

.bl_favoriteBar .el_favoriteBtn {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.5em;
  font-size: 1.2rem;
  line-height: 1;
  color: #999;
  background: #fff;
}
.bl_favoriteBar .el_favoriteBtn span {
  font-size: 1.4rem;
}
.bl_favoriteBar .el_favoriteBtn.is_active span {
  color: #ffcc00;
  /* お気に入り登録済みの色 */
}

/* トップページ */
.un_topUser {
  margin-block: 20px;
}
.un_topUser__massage span {
  font-size: 2rem;
  font-weight: 700;
}

.un_topQuiz {
  padding-top: 20px;
}
.un_topQuiz__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.un_topQuiz__cards {
  margin-top: 20px;
}
.un_topQuiz__info {
  display: flex;
  gap: 0.5em;
  margin-top: 5px;
  font-size: 1.4rem;
}
.un_topQuiz__info-term {
  font-weight: 400;
  color: #999;
}
.un_topQuiz__info-desc {
  color: #666;
}
.un_topQuiz__list {
  display: grid;
  gap: 0;
  margin-top: 20px;
}
.un_topQuiz__item {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid #ccc;
}
.un_topQuiz__item:first-child {
  border-top: 1px solid #ccc;
}
.un_topQuiz__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1em;
}
.un_topQuiz__item a:hover {
  background: #fafad6;
}
.un_topQuiz__item .el_badge {
  margin-right: 0.5em;
}

/*# sourceMappingURL=styles.css.map */
