@charset "UTF-8";
* {
  box-sizing: border-box; }

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; }

p {
  margin-bottom: 1em; }

img {
  max-width: 100%;
  height: auto; }

.txt-large {
  font-size: 24px; }
  @media only screen and (max-width: 767px) {
    .txt-large {
      font-size: 20px; } }

.header {
  display: flex;
  align-items: center;
  margin-bottom: 40px; }
  .header-content {
    width: 980px;
    margin: 0 auto;
    padding: 16.5px 0; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 60px;
      margin-bottom: 20px; }
      .header-content {
        width: 100%;
        padding: 7px 15px 0px; }
      .header-logo {
        width: 107.85px; } }

.main {
  width: 800px;
  margin: 0 auto;
  padding: 60px 0; }
  @media only screen and (max-width: 767px) {
    .main {
      width: 100%;
      padding: 0 20px; } }

.footer {
  margin-top: auto; }

.content-wrapper {
  overflow: hidden;
  max-width: 100vw;
  min-height: calc(100vh - 108px - 41px); }
  @media only screen and (max-width: 767px) {
    .content-wrapper {
      min-height: calc(100vh - 80px - 41px); } }

.txt-center {
  text-align: center; }

@media only screen and (max-width: 767px) {
  .sp-txt-center {
    text-align: center; } }
.page-title {
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center; }
  .page-title span {
    border-bottom: 5px solid #1f6cab;
    display: inline-flex;
    padding-bottom: 15px; }
  @media only screen and (max-width: 767px) {
    .page-title {
      font-size: 20px;
      font-weight: bold; } }

.page-lead {
  font-size: 14px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .page-lead {
      font-size: 16px;
      padding: 0 20px;
      text-align: left;
      margin-bottom: 50px; } }

.question {
  width: 800px;
  margin: 0 auto;
  position: relative; }
  .question-item {
    margin-bottom: 40px;
    width: 100%;
    transition: all 1s;
    position: absolute;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100vw);
    background: #fff; }
    .question-item.current {
      position: static;
      transform: translateX(0vw);
      visibility: visible;
      opacity: 1; }
    .question-item.done {
      position: absolute;
      transform: translateX(-100vw); }
    .question-item-title {
      margin-bottom: 40px; }
  .question-detail {
    margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .question {
      width: 100%; }
      .question-item-title {
        position: relative;
        padding-left: 2em;
        line-height: 1.5;
        font-size: 18px; }
      .question-num {
        position: absolute;
        left: 0; } }

.radio-row {
  display: flex;
  flex-wrap: wrap; }
.radio-item {
  width: 30%;
  margin-bottom: 3%;
  margin-right: 3%; }
  .radio-item:nth-child(3n) {
    margin-right: 0; }
  .radio-item input[type="radio"] {
    margin-right: 10px; }
  .radio-item label {
    display: block;
    cursor: pointer;
    border: 1px solid #999;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 24px; }
    .radio-item label:hover {
      border: 1px solid #1f6cab; }
    .radio-item label.checked {
      background: #ccc; }
    .radio-item label img {
      max-width: 160px; }
  .radio-item .plug-image-caption {
    text-align: center;
    padding-top: 1em;
    margin-bottom: 0; }
@media only screen and (max-width: 767px) {
  .radio-row {
    flex-direction: column; }
  .radio-item {
    width: 100%; }
    .radio-item .plug-image {
      width: 80%;
      text-align: center;
      margin: 0 auto; } }

.selectbox {
  position: relative; }

.select-label {
  margin-right: 1em;
  font-weight: bold; }

select {
  -webkit-appearance: none;
  appearance: none;
  width: 220px;
  padding: 1em 1em;
  box-sizing: border-box;
  font-size: 1em;
  border: #ccc 1px solid;
  border-radius: 0;
  background: #fff;
  position: relative; }

.selectbox::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg) translateY(-40%); }

.hidden-option {
  display: none; }

input[type="text"] {
  padding: 8px;
  border-radius: 3px;
  font-size: 18px;
  box-shadow: none;
  border: 1px solid #ccc;
  width: 100px; }
  input[type="text"].error {
    background: #edc6c6; }

.flex-row {
  display: flex; }
  .flex-row.align-center {
    align-items: center; }
  .flex-row.justify-between {
    justify-content: space-between; }
  .flex-row.justify-center {
    justify-content: center; }
  .flex-row .col {
    width: 45%; }
  @media only screen and (max-width: 767px) {
    .flex-row.sp-direction-column {
      flex-direction: column; }
    .flex-row .col {
      width: 80%;
      margin: 0 auto 30px; }
      .flex-row .col:last-child {
        margin-bottom: 0; } }

.lot-input {
  margin-top: 40px;
  margin-bottom: 20px; }
  .lot-input .notice {
    margin-bottom: 2em; }
  .lot-input-label {
    font-weight: bold;
    font-size: 16px;
    margin: 0.2em 0; }
  .lot-input p {
    margin: 0.5em 0; }

.lot-error {
  padding: 10px 0;
  color: #ff0000; }

.red {
  color: #ff0000; }

.strong {
  font-weight: bold; }

.result {
  display: none; }

.message-box {
  border: 3px solid #1f6cab;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 40px; }
  .message-box strong {
    font-size: 16px; }

.result-confirm {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px; }
  .result-confirm-number {
    text-align: left;
    margin: 0 auto;
    width: 300px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5; }

.plain-button {
  appearance: none;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #1f6cab;
  font-size: 14px;
  cursor: pointer; }

.box-button {
  background: #1f6cab;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  width: 350px;
  height: 50px;
  margin: 0 15px 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: none;
  border: 0;
  appearance: none; }
  .box-button.white {
    background: #fff;
    border: 1px solid #333;
    color: #333333; }
    .box-button.white::after {
      border-color: #222; }
  .box-button::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(-45deg); }
  .box-button[data-trigger="prev-question"] {
    margin-top: 60px; }
    .box-button[data-trigger="prev-question"]::after {
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      position: absolute;
      left: 20px;
      top: 50%;
      border-bottom: 1px solid #333;
      border-right: 1px solid #333;
      transform: translateY(-50%) rotate(135deg); }
  @media only screen and (max-width: 767px) {
    .box-button {
      width: 100%;
      display: flex;
      margin: 0 auto 30px; } }

.q6-btns {
  display: flex;
  flex-direction: column;
  width: 350px;
  margin: 0 auto; }
  .q6-btns .box-button {
    margin: 0 auto 30px; }
    .q6-btns .box-button[data-trigger] {
      margin-top: 0; }
  @media only screen and (max-width: 767px) {
    .q6-btns {
      width: 100%; } }

/* ----------------------------
accordion 
---------------------------- */
.accordion-wrapper {
  margin-bottom: 20px; }

.accordion-body {
  display: none;
  padding: 20px;
  border: 1px solid #999;
  margin: 20px 0; }

/*# sourceMappingURL=plugcheck.css.map */
