/* CSS outline -----------------------------------------------

  1.Reset

/*------------------------------------------------------------

1.Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

html {
  font-size: 62.5%;
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: bold;
}

a {
  max-width: 100%;
}

a,
a:visited,
a:active,
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  width: auto;
  vertical-align: middle;
  height: auto;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

input,
textarea {
  padding: 0 0.5rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

input:focus,
textarea:focus,
button:focus,
html input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: 0;
}

label {
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

iframe {
  max-width: 100%;
}

/*------------------------------------------------------------

1.Default */
/*------------------------------------------------------------

2.Element */
/*------------------------------------------------------------

1.Font */
/*------------------------------------------------------------

1.Clear fix */
/*------------------------------------------------------------

1.Clear fix */
/*------------------------------------------------------------

1.Position */
.tab__group {
  display: flex;
  width: 100%;
}
.tab__btn {
  width: 100%;
  padding: 15px;
  border-bottom: 2px solid #ddd;
  text-align: center;
  color: #B4B4B4;
  font-weight: 400;
  cursor: pointer;
  transition: all ease 0.3s;
}
.tab__btn:hover {
  color: #000;
  font-weight: 500;
  background: #FFF5D6;
}
.tab__btn.active {
  border-color: #FFC718;
  color: #000;
  font-weight: 500;
}
.tab__cont {
  display: none;
}
.tab__cont.active {
  display: block;
}

.page-tab__group {
  display: flex;
  width: 100%;
}
.page-tab__btn {
  width: auto;
  padding: 10px 20px;
  text-align: center;
  color: #B4B4B4;
  font-weight: 400;
  cursor: pointer;
  transition: all ease 0.3s;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  margin-right: 3px;
  font-size: 14px;
}
.page-tab__btn:hover {
  color: #000;
  font-weight: 500;
  background: #FFF5D6;
}
.page-tab__btn.active {
  background-color: #FFDF7E;
  color: #000;
  font-weight: 500;
}
.page-tab__cont {
  display: none;
  border-radius: 0 10px 10px 10px;
  padding: 15px;
  background-color: #fff;
}
.page-tab__cont.active {
  display: block;
}

body {
  -webkit-appearance: none;
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1px;
  background-color: #f3f3f3;
  min-height: 100vh;
}

a {
  color: #000;
  transition: all 0.3s;
  transition-duration: all 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.wrap {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .wrap {
    padding: 15px;
    flex-flow: column;
    min-height: auto;
  }
}

.survey {
  margin: 30px auto;
  max-width: 850px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .survey {
    margin: 10px auto 30px;
  }
}
.survey__wrap {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .survey__wrap {
    flex-flow: column;
    min-height: auto;
  }
}
.survey__meter-wrap {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  width: 100%;
}
.survey__meter-bg {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  height: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.survey__meter {
  position: absolute;
  background: #FFC718;
  top: 0;
  bottom: 0;
  left: 0;
}
.survey__meter-num {
  padding-left: 10px;
}
.survey__cont {
  padding: 50px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 3px 23px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .survey__cont {
    padding: 15px;
  }
}
.survey__cont-desc {
  margin-bottom: 15px;
}
.survey__cont-group {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  background-color: #f3f3f3;
}
.survey__heading {
  font-size: 18px;
  margin-bottom: 15px;
}
.survey__points-wrap {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  .survey__points-wrap {
    gap: 0 5px;
  }
}
.survey__points-desc {
  margin-top: 8px;
  padding-top: 8px;
  font-size: 12px;
  color: #808080;
  text-align: center;
  border-top: 1px solid #ddd;
}
.survey__point-label-wrap {
  margin-top: 8px;
  font-size: 12px;
  color: #808080;
  display: flex;
  justify-content: space-between;
}
.survey__points-group {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
.survey__points-group--no-illust {
  justify-content: flex-start;
}
.survey__points-btn-wrap {
  display: flex;
  gap: 0 20px;
}
.survey__points-btn-wrap--compliance {
  padding-top: 34px;
}
@media screen and (max-width: 768px) {
  .survey__points-btn-wrap {
    gap: 0 5px;
  }
}
.survey__textarea-wrap {
  margin-bottom: 30px;
  display: flex;
  flex-flow: column;
}
.survey__textarea-wrap label {
  margin-bottom: 5px;
}
.survey__textarea-wrap textarea {
  padding: 15px;
  height: 120px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.5;
}
.survey__points-btn {
  width: 100%;
  display: flex;
  flex-flow: column;
  margin-top: auto;
}
.survey__points-radio {
  display: none;
}
.survey__points {
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #C8C8C8;
  text-align: center;
  transition: 0.3s all;
  background: #fff;
}
.survey__points:hover {
  background: #ffde7c;
}
@media screen and (max-width: 768px) {
  .survey__points {
    padding: 5px;
  }
}
.survey__points.is-last-time {
  background: #f2f2f2;
}
.survey__points.is-last-time:hover {
  background: #ffde7c;
}
.survey__points-radio:checked + .survey__points {
  background-color: #FFDF7E;
}
.survey__icon {
  margin: 0 auto;
  max-width: 80px;
  width: 100%;
}
.survey__last-time-label {
  color: #909090;
  font-size: 12px;
  padding: 5px;
  margin-bottom: 5px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.survey__btn-wrap {
  width: 100%;
  display: flex;
  gap: 0 20px;
}
.survey__btn {
  padding: 10px;
  border-radius: 50px;
  max-width: 210px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s all;
}
.survey__btn--back {
  border: 1px solid #DDD;
  background: #F8F8F8;
}
.survey__btn--back:hover {
  opacity: 0.6;
}
.survey__btn--next {
  margin-left: auto;
  background: #FFDF7E;
}
.survey__btn--next:hover {
  opacity: 0.6;
}
.survey__tree {
  margin: 30px 0;
}
.survey__tree ul {
  list-style: none;
  padding-left: 1em;
  display: flex;
  flex-flow: column;
  gap: 15px 0;
  margin: 0;
  position: relative;
}
.survey__tree ul::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 1px;
  height: calc(100% - 23px);
  background: #ccc;
}
.survey__tree ul > li {
  position: relative;
  padding-left: 20px;
}
.survey__tree ul > li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -9px;
  width: 12px;
  height: 1px;
  background: #ccc;
}
.survey__tree ul > li:last-child::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 1px;
  height: calc(100% - 23px);
  background: white;
}
.survey__tree ul > li > ul {
  padding-left: 20px;
}
.survey__tree ul > li > ul::before {
  top: 0;
  height: 89%;
  left: 10px;
}
.survey__tree .sub-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.survey__tree .sub-list.open {
  margin-top: 15px;
  opacity: 1;
}
.survey__tree .toggle-button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1em;
  margin-left: 0.5em;
}
.survey__tree .item-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.survey__tree div {
  display: flex;
  gap: 0 8px;
}
.survey__tree label {
  display: flex;
  gap: 0 8px;
}
.survey__tree input {
  display: none;
}
.survey__tree input + span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #ddd;
}
.survey__tree input:checked + span {
  background-color: #ffde7c;
}
.survey__tree input:checked + span::before {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(45deg);
}
.survey__complia-btn-wrap {
  width: 100%;
  display: flex;
  gap: 0 20px;
  justify-content: center;
}
.survey__complia-btn {
  padding: 10px;
  border-radius: 50px;
  max-width: 210px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: 0.3s all;
}
.survey__complia-btn--yes {
  background: #ff9a9a;
}
.survey__complia-btn--yes:hover {
  opacity: 0.6;
}
.survey__complia-btn--no {
  border: 1px solid #DDD;
  background: #F8F8F8;
}
.survey__complia-btn--no:hover {
  opacity: 0.6;
}

.survey-ai {
  position: relative;
  max-width: 455px;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .survey-ai {
    height: auto;
    min-height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.survey-ai__talk-wrap {
  display: flex;
  flex-flow: column;
  min-height: 100%;
  padding: 20px;
  padding-bottom: 102px;
}
.survey-ai__talk-box {
  display: flex;
  align-items: flex-start;
  gap: 0 15px;
  margin-top: 15px;
}
.survey-ai__talk-box:first-child {
  margin-top: auto;
}
.survey-ai__talk-box--user {
  justify-content: flex-end;
}
.survey-ai__talk-balloon {
  padding: 15px;
  border-radius: 10px;
  background: #F5F5F5;
}
.survey-ai__talk-box--user .survey-ai__talk-balloon {
  background: #fff;
  border: 1px solid #ddd;
}
.survey-ai__input-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
}
.survey-ai__input {
  padding: 15px;
  padding-right: 50px;
  max-height: 66px;
  min-height: 66px;
  font-size: 16px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #DDD;
  background: #F5F5F5;
  resize: none;
}
.survey-ai__btn {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: 32px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s all;
}
.survey-ai__btn:hover {
  opacity: 0.6;
}

.kokoro-no-hokenshitsu {
  width: 100%;
  padding: 15px 30px;
  background: #fff;
}
.kokoro-no-hokenshitsu__head {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.kokoro-no-hokenshitsu__logo {
  width: 137px;
}
.kokoro-no-hokenshitsu__heading {
  padding: 5px 20px;
  margin-left: auto;
  background: #e2e2e2;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #404D61;
}
.kokoro-no-hokenshitsu__main {
  position: relative;
  height: calc(100vh - 155px);
  border: 1px solid #ddd;
  background: url(/images/kokoro-no-hokenshitsu/video-bg.png);
  background-size: contain;
  border-radius: 10px;
  overflow: hidden;
}
.kokoro-no-hokenshitsu__video-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.kokoro-no-hokenshitsu__video-start {
  position: absolute;
  top: 50%;
  left: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #FFDF7E;
}
.kokoro-no-hokenshitsu__video {
  margin-left: -25%;
  width: 100%;
  height: 100%;
}
.kokoro-no-hokenshitsu__talk-wrap {
  position: absolute;
  padding: 20px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  max-width: 50%;
  width: 100%;
}
.kokoro-no-hokenshitsu__talk-line-wrap {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 102px;
}
.kokoro-no-hokenshitsu__talk-line {
  min-height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
.kokoro-no-hokenshitsu__talk--ai {
  width: 100%;
  padding: 15px 0;
}
.kokoro-no-hokenshitsu__talk--user {
  margin-left: auto;
  max-width: 80%;
  padding: 15px 30px;
  border-radius: 60px;
  background: #fff2ca;
  border: 1px solid #ffc718;
}
.kokoro-no-hokenshitsu__talk-btn-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
}
.kokoro-no-hokenshitsu__talk-btn {
  margin-bottom: 15px;
  width: 100%;
}
.kokoro-no-hokenshitsu__talk-btn input {
  display: none;
}
.kokoro-no-hokenshitsu__talk-btn span {
  border: 1px solid #DDD;
  padding: 10px;
  border-radius: 50px;
  min-width: 120px;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s all;
}
.kokoro-no-hokenshitsu__talk-btn span:hover {
  background: #ffde7c;
}
.kokoro-no-hokenshitsu__talk-btn input:checked + span {
  background: #FFDF7E;
}
.kokoro-no-hokenshitsu__question + .kokoro-no-hokenshitsu__question {
  margin-top: 15px;
}
.kokoro-no-hokenshitsu__questions-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.kokoro-no-hokenshitsu__description {
  margin-bottom: 15px;
}
.kokoro-no-hokenshitsu__container + .kokoro-no-hokenshitsu__description {
  margin-top: 15px;
}
.kokoro-no-hokenshitsu__question-text {
  margin-bottom: 5px;
  font-weight: 600;
}
.kokoro-no-hokenshitsu__options {
  display: flex;
  gap: 0 10px;
}
.kokoro-no-hokenshitsu__option {
  width: 100%;
  display: flex;
}
.kokoro-no-hokenshitsu__option input {
  display: none;
}
.kokoro-no-hokenshitsu__option span {
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #C8C8C8;
  text-align: center;
  display: flex;
  justify-content: center;
  background: #fff;
  transition: 0.3s all;
}
.kokoro-no-hokenshitsu__option span:hover {
  background: #ffde7c;
}
.kokoro-no-hokenshitsu__option input:checked + span {
  background: #FFDF7E;
}
.kokoro-no-hokenshitsu__btn-reservation {
  padding: 20px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background: #FFC718;
  border-radius: 50px;
  transition: 0.3s all;
}
.kokoro-no-hokenshitsu__btn-reservation:hover {
  opacity: 0.6;
}
.kokoro-no-hokenshitsu__input-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
}
.kokoro-no-hokenshitsu__input {
  padding: 15px;
  padding-right: 50px;
  max-height: 66px;
  min-height: 66px;
  font-size: 16px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #DDD;
  background: #F5F5F5;
  resize: none;
}
.kokoro-no-hokenshitsu__btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: 32px;
  transition: 0.3s all;
}
.kokoro-no-hokenshitsu__btn:hover {
  opacity: 0.6;
}
.kokoro-no-hokenshitsu__foot {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.survey-modal {
  max-width: 850px;
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  display: none;
}
.survey-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.survey-modal__head {
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
}
.survey-modal__cont {
  padding: 20px 25px;
}
.survey-modal__counselor-list {
  display: flex;
  gap: 0 15px;
  justify-content: space-between;
}
.survey-modal__counselor-label {
  width: 100%;
  min-height: 100%;
  display: flex;
}
.survey-modal__counselor-label input {
  display: none;
}
.survey-modal__counselor-label--none {
  margin-top: 15px;
}
.survey-modal__counselor-box {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  transition: 0.3 all;
}
.survey-modal__counselor-box:hover {
  background: #fff4d2;
}
.survey-modal__counselor-box--last-time {
  background: #f2f2f2;
}
.survey-modal__counselor-box--last-time:hover {
  background: #fff4d2;
}
.survey-modal__counselor-label--none .survey-modal__counselor-box {
  padding: 10px 20px;
  width: calc(33.333333% - 10px);
}
input:checked + .survey-modal__counselor-box {
  border: 1px solid #FFDF7E;
  background: #fff4d2;
}
.survey-modal__counselor-last {
  color: #909090;
  font-size: 12px;
  padding: 5px;
  margin-bottom: 5px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.survey-modal__counselor-icon {
  margin-bottom: 15px;
}
.survey-modal__counselor-title {
  font-size: 12px;
}
.survey-modal__btn-wrap {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.survey-modal__btn {
  padding: 10px;
  border-radius: 50px;
  max-width: 210px;
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all;
}
.survey-modal__btn--back {
  border: 1px solid #DDD;
  background: #F8F8F8;
}
.survey-modal__btn--back:hover {
  opacity: 0.6;
}
.survey-modal__btn--next {
  margin-left: auto;
  background: #FFDF7E;
}
.survey-modal__btn--next:hover {
  opacity: 0.6;
}
.survey-modal__day-select table {
  width: 100%;
}
.survey-modal__day-select td,
.survey-modal__day-select th {
  position: relative;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 10px 15px;
}
.survey-modal__day-select .is-close {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AFAFAF;
}
.survey-modal__day-select .is-close svg {
  width: 16px;
}
.survey-modal__day-select label {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3 all;
}
.survey-modal__day-select label:hover {
  background: #fff4d2;
}
.survey-modal__day-select input + span {
  display: none;
}
.survey-modal__day-select input:checked + span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFDF7E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #808080;
}
.survey-modal__day-select input:checked + span svg {
  width: 16px;
}
.survey-modal__desc {
  margin-bottom: 15px;
}
.survey-modal__reserve-wrap {
  background: #EEEEF3;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  gap: 0 10px;
}
.survey-modal__reserve-box {
  width: 100%;
  min-height: 100%;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: 600;
}
.survey-modal__reserve-counselor-icon {
  margin-right: 10px;
  width: 50px;
  border-radius: 100%;
}

.survey-talk-line {
  margin: 30px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .survey-talk-line {
    margin: 0;
  }
}
.survey-talk-line__wrap {
  display: flex;
  width: 100%;
  max-height: 100vh;
}
@media screen and (max-width: 768px) {
  .survey-talk-line__wrap {
    max-height: calc(100vh - 30px);
  }
}
.survey-talk-line__cont {
  max-width: 850px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  background: #FFF;
  padding-bottom: 132px;
  box-shadow: 0px 3px 23px 0px rgba(0, 0, 0, 0.05);
}
.survey-talk-line__talk-line-wrap {
  height: 100%;
  padding: 50px;
  padding-bottom: 0;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .survey-talk-line__talk-line-wrap {
    padding: 15px;
  }
}
.survey-talk-line__talk-line {
  min-height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
.survey-talk-line__talk--ai {
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
  gap: 0 15px;
}
.survey-talk-line__talk--ai > img {
  width: 80px;
  border-radius: 100%;
  border: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .survey-talk-line__talk--ai > img {
    width: 50px;
  }
}
.survey-talk-line__talk--ai > div {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: #f2f2f2;
  border: 1px solid #ddd;
}
.survey-talk-line__talk--ai > div > * + * {
  margin-top: 15px;
}
.survey-talk-line__talk--user {
  margin-left: auto;
  max-width: 80%;
  padding: 15px 0;
  border-radius: 60px;
  background: #FFF;
}
.survey-talk-line__input-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .survey-talk-line__input-wrap {
    padding: 15px;
  }
}
.survey-talk-line__input {
  padding: 15px;
  padding-right: 50px;
  max-height: 66px;
  min-height: 66px;
  font-size: 16px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #DDD;
  background: #F5F5F5;
  resize: none;
}
.survey-talk-line__btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -19px;
  right: 42px;
  transition: 0.3s all;
}
.survey-talk-line__btn:hover {
  opacity: 0.6;
}
.survey-talk-line__talk-btn-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0 15px;
}
@media screen and (max-width: 768px) {
  .survey-talk-line__talk-btn-group {
    flex-flow: column;
  }
}
.survey-talk-line__talk-btn {
  margin-bottom: 15px;
  width: 100%;
}
.survey-talk-line__talk-btn input {
  display: none;
}
.survey-talk-line__talk-btn span {
  border: 1px solid #DDD;
  background: #F8F8F8;
  padding: 10px;
  border-radius: 50px;
  min-width: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  transition: 0.3s all;
}
.survey-talk-line__talk-btn span:hover {
  background: #ffde7c;
}
.survey-talk-line__talk-btn input:checked + span {
  background: #FFDF7E;
}

.thinking-dots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100px;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #8f8f8f;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
}
