@charset "UTF-8";
body {
  margin: 0;
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", YuGothic, Meiryo, sans-serif;
  color: #1C1C1C;
  box-sizing: border-box;
}

h1,
h2 {
  margin: 0;
}

p {
  margin-top: 0;
}
p:not(:last-child) {
  margin-bottom: 1rem;
}

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

dd {
  margin-left: auto;
}

header {
  background: #515151;
  padding: 1rem;
}
header h1 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  header h1 {
    font-size: 20px;
  }
}

h2.question_h2 {
  font-size: 18px;
  text-align: center;
}

.content {
  padding: 1rem;
}
.content.questionnaire {
  max-width: 600px;
  margin: auto;
}
.content.form_content {
  max-width: 800px;
  margin: auto;
}

.text-small {
  font-size: 14px;
}

.text-large {
  font-size: 16px;
}

.text-xlarge {
  font-size: 20px;
}

.text-center {
  text-align: center !important;
}

.alert_warning {
  background: #ffebeb;
  margin: 10px auto;
  padding: 14px 20px;
}
.alert_warning li {
  font-size: 16px;
  position: relative;
}
.alert_warning li.alert_txt {
  padding-left: 30px;
}
.alert_warning li.alert_txt::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/survey/assets/img/ico-error.svg) no-repeat center/contain;
  position: absolute;
  top: 48%;
  bottom: auto;
  left: 0;
  right: auto;
  transform: translateY(-50%);
}

.questionForm + .questionForm + .questionForm {
  margin-top: 3rem;
}

.questionForm {
  margin-bottom: 0;
}
.questionForm dt {
  margin-bottom: 1rem;
}
.questionForm dt.title {
  background: #ccc;
  margin-left: -1rem;
  margin-right: -1rem;
  text-align: center;
  padding: 0.6rem;
}
.questionForm dd ul li:not(:last-child) {
  margin-bottom: 0.9rem;
}
.questionForm dd ul li label {
  display: block;
  padding: 10px 14px;
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #C4C4C4;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.questionForm dd ul li input[type=radio]::before {
  background-color: #515151;
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
}
.questionForm dd ul li input[type=radio]:checked::before {
  opacity: 1;
}
.questionForm dd ul li input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #707070;
  border-radius: 50%;
  height: 14px;
  margin: 0;
  position: relative;
  width: 14px;
}
.questionForm dd ul li input[type=radio]:checked {
  opacity: 1;
  border: 1px solid #515151;
}
.questionForm .flex-textarea {
  margin-top: 1.5rem;
}

.btn_box {
  text-align: center;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  .btn_box {
    margin: 30px auto 0;
  }
}

.btn-next {
  background: #515151;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", YuGothic, Meiryo, sans-serif;
  color: #fff;
  width: 70%;
  max-width: 400px;
  cursor: pointer;
  display: block;
  margin: auto;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: 0.3s;
  text-decoration: none;
}
.btn-next:hover {
  background: #424242;
  transition: 0.3s;
}
.btn-next:not(:last-child) {
  margin-bottom: 1rem;
}
.btn-next.gray {
  background: #888;
}
.btn-next.gray:hover {
  background: #797979;
  transition: 0.3s;
}

.endpage {
  padding-top: 40px;
}

/* ===============================================
# ログイン画面
=============================================== */
body.login .form_item_input > a {
  display: block;
  margin-top: 10px;
}
body.login .btn_box > label {
  display: block;
  margin-bottom: 6px;
}

.err_msg {
  color: #f00;
  display: block;
  margin-top: 5px;
}

/* ===============================================
# 一覧画面
=============================================== */
.admin_index main {
  width: 1000px;
  max-width: 100%;
  margin: 50px auto 0;
}
.admin_index main .buttons {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.admin_index main table {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin-bottom: 20px;
}
.admin_index main table th, .admin_index main table td {
  padding: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.admin_index main table .ta-center {
  text-align: center;
}
.admin_index main table form {
  display: inline;
}
.admin_index main table a, .admin_index main table button {
  font-size: 1rem;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}
.admin_index main .pagination {
  display: flex;
  justify-content: center;
}
.admin_index main .pagination span, .admin_index main .pagination a {
  font-size: 1rem;
  padding: 5px;
}

/* ===============================================
# 入力画面
=============================================== */
.admin_create > a, .admin_edit > a {
  display: block;
  max-width: 800px;
  margin: 50px auto -50px;
  text-align: right;
}

.form_input {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .form_input {
    margin-top: 20px;
  }
}

.form_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form_item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .form_item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.form_item .form_item_title {
  width: 23%;
  margin-bottom: 8px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .form_item .form_item_title {
    width: 100%;
    padding-right: 0;
  }
}
.form_item .form_item_title label {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .form_item .form_item_title label {
    font-size: 16px;
  }
}
.form_item .form_item_input {
  width: 75%;
}
@media (max-width: 767px) {
  .form_item .form_item_input {
    width: 100%;
  }
}
.form_item input[type=text],
.form_item input[type=email],
.form_item input[type=password],
.form_item input[type=url],
.form_item textarea,
.form_item select {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  color: #1C1C1C;
  border: solid 1px #E2E2E2;
  border-radius: 4px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", YuGothic, Meiryo, sans-serif;
  background: #F3F3F3;
  width: 100%;
}
@media (max-width: 767px) {
  .form_item input[type=text],
  .form_item input[type=email],
  .form_item input[type=password],
  .form_item input[type=url],
  .form_item textarea,
  .form_item select {
    font-size: 16px;
    padding: 14px 8px;
  }
}
.form_item textarea {
  resize: vertical;
}

.sub_text {
  display: block;
  font-size: 14px;
  margin-top: 3px;
}

.admin_index .alert_success,
.admin_index .alert_error, .admin_edit .alert_success,
.admin_edit .alert_error, .admin_create .alert_success,
.admin_create .alert_error {
  background: rgba(143, 195, 31, 0.1803921569);
  margin: 0 auto 30px;
  padding: 14px 20px;
}
.admin_index .alert_success li,
.admin_index .alert_error li, .admin_edit .alert_success li,
.admin_edit .alert_error li, .admin_create .alert_success li,
.admin_create .alert_error li {
  font-size: 16px;
  position: relative;
}
.admin_index .alert_error, .admin_edit .alert_error, .admin_create .alert_error {
  background: rgba(195, 31, 31, 0.1803921569);
}

.star {
  position: relative;
  display: inline-block;
}
.star::after {
  content: "";
  font-size: 1em;
  display: inline-block;
  color: #515151;
  margin-left: 0.5em;
}
.star.star5::after {
  content: "★★★★★";
}
.star.star4::after {
  content: "★★★★";
}
.star.star3::after {
  content: "★★★";
}
.star.star2::after {
  content: "★★";
}
.star.star1::after {
  content: "★";
}

/* ===============================================
# レビュー画面
=============================================== */
.form_thanks header,
.form_review_index header,
.form_review_thanks header {
  background: none;
}
.form_thanks header h1,
.form_review_index header h1,
.form_review_thanks header h1 {
  color: #1C1C1C;
}
.form_thanks .star_wrap,
.form_review_index .star_wrap,
.form_review_thanks .star_wrap {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 30px;
}
.form_thanks .star_wrap label,
.form_review_index .star_wrap label,
.form_review_thanks .star_wrap label {
  display: inline-block;
  margin-left: 14px;
  position: relative;
  cursor: pointer;
}
.form_thanks .star_wrap label:first-of-type,
.form_review_index .star_wrap label:first-of-type,
.form_review_thanks .star_wrap label:first-of-type {
  margin-left: 0;
}
.form_thanks .star_wrap label input[type=radio],
.form_review_index .star_wrap label input[type=radio],
.form_review_thanks .star_wrap label input[type=radio] {
  margin: 0;
  padding: 0;
  opacity: 0;
  position: absolute;
  top: 10px;
  left: 10px;
}
.form_thanks textarea,
.form_review_index textarea,
.form_review_thanks textarea {
  resize: none;
  font-size: 1rem;
  width: 100%;
  height: 80px;
  padding: 16px;
  border-color: rgb(60, 64, 67);
  border-radius: 3px;
}
.form_thanks .username_wrap input,
.form_review_index .username_wrap input,
.form_review_thanks .username_wrap input {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 40px auto 0;
  padding: 15px 15px;
  border: 1px solid #b6c3c6;
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", YuGothic, Meiryo, sans-serif;
  color: #1C1C1C;
}

/* ===============================================
# 伸縮するテキストエリア
=============================================== */
.flex-textarea {
  position: relative;
  font-size: 1rem;
}
.flex-textarea .flex-textarea-dummy {
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
  padding: 5px 15px;
  min-height: 120px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1px solid;
}
.flex-textarea .flex-textarea-textarea {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  padding: 5px 15px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #b6c3c6;
  border-radius: 4px;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  resize: none;
}
.flex-textarea .flex-textarea-textarea:focus {
  box-shadow: 0 0 0 4px rgba(35, 167, 195, 0.3);
  outline: 0;
}

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