@charset "UTF-8";
/* 濃い色 */
/* 薄い色 */
/* 中間色 */
html {
  font-size: 18px;
}

#container {
  max-width: 700px;
  margin: 0 auto;
}

.msg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0 5px;
}
.msg .js-operator {
  width: 15%;
}
.msg .js-operator img {
  width: 100%;
  object-fit: contain;
}
.msg .baloon_wrapper {
  flex: 1;
}
.msg .baloon_wrapper dt {
  font-weight: bold;
}
.msg .baloon_wrapper dd {
  margin: 0;
}
.msg .baloon_wrapper dl.baloon {
  position: relative;
  background: #eeeeee;
  border: none;
  border-radius: 1em;
  padding: 0.5em;
  margin: 0 0 10px 10px;
  color: #000;
  text-align: left;
  font-size: 1em;
  line-height: 1.5;
  width: calc(75% - 20px);
  max-width: 75%;
  filter: drop-shadow(2px, 2px, 2px, rgba(0, 0, 0, 0.3));
}
.msg .baloon_wrapper dl.baloon::after {
  position: absolute;
  top: 15px;
  left: -20px;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 5px 10px;
  border-color: rgba(0, 0, 0, 0) #eeeeee rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.msg .baloon_wrapper dl.baloon img {
  width: 100%;
}

.answer {
  text-align: right;
  margin: 20px 0 20px auto;
  padding: 0 5px;
  max-width: 75%;
}
.answer ul {
  background: #f4d3dd;
  border-radius: 1em;
  margin-left: auto;
  padding: 10px;
}
.answer ul.narrow {
  max-width: 50%;
}
.answer ul:not(.yesno) li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.answer ul.js-hiddenCont .slideMe {
  display: none;
}
.answer ul li {
  position: relative;
  display: block;
  color: #000;
  background: #fff;
  border-radius: 0.5em;
  padding: 0.6em 0.4em;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  margin: 0.5em 0;
  font-size: 1em;
  text-align: center;
}
.answer ul li:hover {
  cursor: pointer;
}
.answer ul li.selected {
  background: #d4829a;
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: none;
}
.answer ul.spac-n li {
  letter-spacing: -0.05em;
}
.answer ul.yesno {
  display: flex;
  justify-content: space-between;
  max-width: 12em;
}
.answer ul.yesno li {
  width: 4em;
}
.answer li.selected {
  background-color: #d4829a;
  color: #fff;
  box-shadow: none;
}

dd {
  line-height: 1.6;
}

dd, button {
  color: #333;
}

.note {
  font-size: 0.6rem;
  vertical-align: super;
}

.js-operator {
  max-width: 100px;
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #ff6 60%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  padding: 0.2em;
  animation: reveal 2s ease forwards 0.5s;
}

@keyframes reveal {
  to {
    background-size: 100% 100%;
  }
}
ol, ul {
  padding: 0;
}

ol.remarks {
  list-style-type: none;
  padding-left: 0;
  display: table;
  counter-reset: remarks_count;
  font-size: 12px;
}
ol.remarks li {
  display: table-row;
  counter-increment: remarks_count;
  font-size: 0.6rem;
}
ol.remarks li:before {
  content: "*" counter(remarks_count);
  display: table-cell;
  padding-right: 1em;
  width: 2em; /*Firefox対策*/
}

section {
  display: none;
}
section.show {
  display: block;
}

.js-brShow {
  display: none;
}
.js-brShow.show {
  display: block;
}

.btn_wrap {
  margin: 50px 0 20px;
  text-align: center;
}
.btn_wrap button.next {
  appearance: none;
  display: block;
  color: #000;
  font-weight: bold;
  font-size: 1.2em;
  background: #f4d3dd;
  border: none;
  border-radius: 0.5em;
  padding: 0.6em 0.4em;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  margin: 0.5em 0;
  text-align: center;
  margin: 0 auto;
  padding: 1em 2em;
  min-width: 8em;
  cursor: pointer;
}/*# sourceMappingURL=faq_loop.css.map */