@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:after, *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline-style: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

*::-moz-selection {
  background: #0a64bf;
  color: #fff;
}

*::selection {
  background: #0a64bf;
  color: #fff;
}

:root {
/*  --font-size: 6.25%; */
/*
rem : root em (root 기준), em : parent em (parent 기준)
10.px ---> 0.625.rem
12.px ---> 0.75.rem
14.px ---> 0.875.rem
16.px ---> default ??
18.px ---> 1.125.rem
21.px ---> 1.312.rem
24.px ---> 1.5.rem
*/
--font-size: 16px;
}

@media screen and (min-width:641px) and (max-width:1280px) {
    :root {
        --font-size: 22px;
    }
}
  
@media screen and (max-width:1281px) {
    .modal-dialog {width: 95% !important;}
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: none;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: var(--font-size);
  line-height: 1.5;
}

label {
  cursor: pointer;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  display: block;
}

a:link,
a:visited {
  text-decoration: none;
}

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

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
blockquote,
big,
body,
center,
canvas,
caption,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
dl,
div,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
menu,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
small,
span,
source,
strike,
strong,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
td,
video,
tt,
u,
ul,
var {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
}

th,
td,
table,
input,
button,
select,
textarea {
  font-size: inherit;
}

input,
button,
select,
textarea {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: #555;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: inherit;
}

input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

input:-ms-input-placeholder,
button:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder,
button::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #999;
}

input::placeholder,
button::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999;
}

em,
cite,
address,
optgroup {
  font-style: normal;
}

kbd,
samp,
code {
  font-family: monospace;
}

img,
input,
button,
select,
textarea {
  vertical-align: middle;
}

img {
  -ms-interpolation-mode: bicubic !important;
}

ul,
ol {
  list-style: none;
}

img,
fieldset {
  border: 0;
}

abbr,
acronym {
  border-bottom: 1rem dotted --black;
  cursor: help;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

article,
aside,
audio,
canvas,
command,
datalist,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
keygen,
meter,
nav,
output,
progress,
section,
source,
video {
  display: block;
}

mark,
rp,
rt,
ruby,
summary,
time {
  display: inline;
}

html.mode-gnb {
  overflow: hidden;
}

.surveys {
  width: 100%;
  height: 100%;
  padding-top: 60px;
  display: block;
}

.surveys-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  padding: 0 0.75rem;
  background: #fff;
  border-bottom: 1px solid #dbd6d4;
}

.surveys-header > span {
  min-width: 40px;
}

.surveys-header__logo img {
  height: 1.5rem;
}

.surveys-header__back {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: url(../images/back.png) no-repeat 50% 50%;
  background-size: 40px 40px;
  font-size: 0;
}

.surveys-header__menu {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: url(../images/menu.png) no-repeat 50% 50%;
  background-size: 40px 40px;
  font-size: 0;
}

.surveys-header__close {
  min-width: 40px;
  width: 40px;
  height: 40px;
  background: url(../images/close.png) no-repeat 50% 50%;
  background-size: 40px 40px;
  font-size: 0;
}

.surveys-header.noline {
  border-bottom: none;
}

.surveys-header.noline + .surveys-gnb + .surveys-body .surveys-checkup-complete {
  padding-top: 22px;
}

.surveys-header.noline + .surveys-body .surveys-checkup-complete {
  padding-top: 22px;
}

.surveys-header h1 {
  font-size: 1.125rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #111;
}

.surveys-footer {
  margin-top: 28px;
  padding: 30px 20px 40px;
  border-top: 1px solid #f2efef;
}

.surveys-footer__logo {
  text-align: center;
}

.surveys-footer__logo img {
  height: 1.5rem;
}

.surveys-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

.surveys-footer__link p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.625rem;
}

.surveys-footer__link p::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 0.625rem;
  background-color: #dbd6d4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.surveys-footer__link p:first-child::before {
  display: none;
}

.surveys-footer__link a {
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #6e6a69;
}

.surveys-gnb {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background-color: #fff;
  padding: 60px 0 0 0;
  display: none;
}

.surveys-gnb .surveys-header {
  background-color: #fff !important;
  border-bottom: 1px solid #dbd6d4 !important;
}

.surveys-gnb__menu {
  padding: 30px;
  height: calc(100vh - 152px);
  overflow: auto;
}

.surveys-gnb__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #5a3025;
}

.surveys-gnb__button {
  padding: 30px 47px;
}

.surveys-gnb__button button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #000;
}

.surveys-gnb__button button:after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/logout.png) no-repeat 50% 50%;
  background-size: 17.5px 20px;
}

.surveys-body {
/* header : 60px, bottom-button : 144px, 144px+6px = 190px  */
  min-height: calc(100vh - 210px);
  overflow-y: auto;
}

.surveys.mode-gnb .surveys-gnb {
  display: block;
}

.surveys-input {
  width: 100%;
  height: 50px;
  padding: 15px 16px;
  border-radius: 8px;
  border: solid 1px #dbd6d4;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #111111;
}

.surveys-input::-webkit-input-placeholder {
  color: #a3928c;
}

.surveys-input:-ms-input-placeholder {
  color: #a3928c;
}

.surveys-input::-ms-input-placeholder {
  color: #a3928c;
}

.surveys-input::placeholder {
  color: #a3928c;
}

.surveys-input[type="date"] {
  background: #fff url(../images/calendar.png) no-repeat calc(100% - 0.625rem) 50%;
  background-size: 1.5rem 1.5rem;
}

.surveys-input[type="date"]::-webkit-inner-spin-button, .surveys-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.surveys-input:focus {
    border:3px solid #ef7811;
}

.surveys-textarea {
  width: 100%;
  height: 100px;
  padding: 15px 16px;
  border-radius: 8px;
  border: solid 1px #dbd6d4;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #111111;
}

.surveys-textarea::-webkit-input-placeholder {
  color: #a3928c;
}

.surveys-textarea:-ms-input-placeholder {
  color: #a3928c;
}

.surveys-textarea::-ms-input-placeholder {
  color: #a3928c;
}

.surveys-textarea::placeholder {
  color: #a3928c;
}

.surveys-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background-color: #ef7811;
  font-size: 1.125rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.surveys-button--outline {
  background: #fff;
  border: 1px solid #ef7811;
  color: #ef7811;
}

.surveys-button--md {
  height: 50px;
  font-size: 0.875rem;
}

.surveys-button:disabled {
  opacity: 0.4;
}

.surveys-button-wrap {
  padding: 20px;
}

.surveys-button-wrap .surveys-button {
  margin-top: 8px;
}

.surveys-button-wrap .surveys-button:first-child {
  margin-top: 0;
}

.surveys-button-wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-button-wrap p .surveys-button {
  margin: 0 4px;
}

.surveys-button-wrap p .surveys-button:first-child {
  margin-left: 0;
}

.surveys-button-wrap p .surveys-button:last-child {
  margin-right: 0;
}

.surveys-button-sm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 1.5rem;
  padding: 0 8px;
  border-radius: 4px;
  background-color: #a47768;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.surveys-button-sm--outline {
  border: solid 1px #dbd6d4;
  background-color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: right;
  color: #60504f;
}

.surveys-button-sm--outline2 {
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #ef7811;
  color: #ef7811;
}

.surveys-button-sm--bg1 {
  border-radius: 1.5rem;
  background: #ef7811;
  border: 1px solid #ef7811;
  font-weight: 400;
  color: #fff;
}

.surveys-button-sm--bg2 {
  border-radius: 1.5rem;
  background: #60504f;
  border: 1px solid #60504f;
  font-weight: 400;
  color: #fff;
}

.surveys-button-sm--bg3 {
  border-radius: 1.5rem;
  background: #f2efef;
  border: 1px solid #f2efef;
  color: #6e6a69;
}

.surveys-button-sm--bg3:disabled {
  cursor: default;
  border-radius: 1.5rem;
  background: #f2efef;
  border: 1px solid #f2efef;
  color: #6e6a69;
}

.surveys-button-sm--bg4 {
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #fff;
  font-weight: 400;
  color: #6e6a69;
}

.surveys-caution p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #ef7811;
}

.surveys-caution p::before {
  content: "";
  display: block;
  min-width: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 5px;
  background: url(../images/helper.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checklist ul li {
  position: relative;
  margin-top: 6px;
}

.surveys-checklist ul li:first-child {
  margin-top: 0;
}

.surveys-checklist ul li input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.surveys-checklist ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 16px;
  border-radius: 6px;
  border: solid 1px #dbd6d4;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checklist ul li label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  background: url(../images/check.png) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.surveys-checklist ul li input:checked ~ label {
  border: 3px solid rgba(73, 83, 97, 1);
  color: rgba(73, 83, 97, 1);
  font-weight: bold;
}

.surveys-checklist ul li input:checked ~ label::before {
  background: url(../images/check-active.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-radio.custom ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.surveys-radio.custom ul li {
  margin: 0;
}

.surveys-radio.custom ul li + li {
  margin-top: 6px;
}

.surveys-radio ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-radio ul li {
  position: relative;
  width: 100%;
  margin: 0 4px;
}

.surveys-radio ul li:first-child {
  margin-left: 0;
}

.surveys-radio ul li:last-child {
  margin-right: 0;
}

.surveys-radio ul li input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.surveys-radio ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  padding: 15px 16px;
  border-radius: 6px;
  border: solid 1px #dbd6d4;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-radio ul li label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 0.75rem 0 0;
  border: solid 6px #f2efef;
  background-color: #fff;
  border-radius: 20px;
}

.surveys-radio ul li input:checked ~ label {
  color: rgba(73, 83, 97, 1);
  font-weight: 700;
  border: 3px solid rgba(73, 83, 97, 1);
}

.surveys-radio ul li input:checked ~ label::before {
  border: 6px solid rgba(73, 83, 97, 1);
}

.surveys-switch ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 25px;
  background-color: #f2efef;
}

.surveys-switch ul li {
  position: relative;
  width: 100%;
}

.surveys-switch ul li input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.surveys-switch ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  padding: 0 0.625rem;
  border-radius: 25px;
  background-color: #f2efef;
  border: 1px solid #f2efef;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: center;
  color: #a3928c;
}

.surveys-switch ul li input:checked ~ label {
  border: 3px solid rgba(73, 83, 97, 1);
  background-color: #fff;
  color: rgba(73, 83, 97, 1);
  font-weight: bold;
}

.surveys-calender {
  padding: 30px 20px;
}

.surveys-calender .ui-widget * {
  font-family: "Noto Sans KR", sans-serif;
}

.surveys-calender .ui-widget.ui-widget-content {
  border: none;
  border-radius: 0;
  width: 100%;
}

.surveys-calender .ui-datepicker th {
  height: 40px;
  font-size: 0.75rem;
  font-weight: normal;
  color: #60504f;
}

.surveys-calender .ui-datepicker th span {
  color: #60504f;
}

.surveys-calender .ui-datepicker td {
  font-size: 0.875rem;
  text-align: center;
}

.surveys-calender .ui-datepicker td span,
.surveys-calender .ui-datepicker td a {
  text-align: center;
}

.surveys-calender .ui-datepicker td.on1 a,
.surveys-calender .ui-datepicker td.on1 span {
  position: relative;
}

.surveys-calender .ui-datepicker td.on1 a::after,
.surveys-calender .ui-datepicker td.on1 span::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #f27ed3;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.surveys-calender .ui-datepicker td.on2 a,
.surveys-calender .ui-datepicker td.on2 span {
  position: relative;
}

.surveys-calender .ui-datepicker td.on2 a::after,
.surveys-calender .ui-datepicker td.on2 span::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #55b4a5;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.surveys-calender .ui-datepicker-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 2px 0 13px;
  background-color: transparent;
  line-height: 1.5rem;
}

.surveys-calender .ui-datepicker-prev, .surveys-calender .ui-datepicker-next {
  top: 2px;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}

.surveys-calender .ui-datepicker-prev-hover, .surveys-calender .ui-datepicker-prev:hover, .surveys-calender .ui-datepicker-next-hover, .surveys-calender .ui-datepicker-next:hover {
  top: 2px;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.surveys-calender .ui-datepicker-prev span, .surveys-calender .ui-datepicker-next span {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0;
  background: none;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
}

.surveys-calender .ui-datepicker-prev span::after, .surveys-calender .ui-datepicker-next span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -3px;
  display: block;
  width: 9px;
  height: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 2px solid rgba(73, 83, 97, 1);
}

.surveys-calender .ui-datepicker-prev {
  left: calc(50% - 100px);
}

.surveys-calender .ui-datepicker-prev-hover {
  left: calc(50% - 100px);
}

.surveys-calender .ui-datepicker-prev span::after {
  border-width: 0 0 2px 2px;
}

.surveys-calender .ui-datepicker-next {
  right: calc(50% - 100px);
}

.surveys-calender .ui-datepicker-next-hover {
  right: calc(50% - 100px);
}

.surveys-calender .ui-datepicker-next span::after {
  border-width: 2px 2px 0 0;
}

.surveys-calender .ui-datepicker-title {
  margin: 0;
  font-size: 0;
  color: #111111;
  line-height: 1.5rem;
}

.surveys-calender .ui-datepicker-title span {
  vertical-align: top;
  font-size: 16px;
  font-weight: bold;
}

.surveys-calender .ui-datepicker-calendar {
  font-size: 0.75rem;
  margin: 0;
}

.surveys-calender .ui-state-default,
.surveys-calender .ui-widget-content .ui-state-default,
.surveys-calender .ui-widget-header .ui-state-default,
.surveys-calender .ui-button,
.surveys-calender html .ui-button.ui-state-disabled:hover,
.surveys-calender html .ui-button.ui-state-disabled:active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-color: #fff;
  margin: 0 auto;
  font-size: 0.875rem;
  font-weight: bold;
  color: #111111;
}

.surveys-calender .ui-state-disabled,
.surveys-calender .ui-widget-content .ui-state-disabled,
.surveys-calender .ui-widget-header .ui-state-disabled,
.surveys-calender .ui-priority-secondary,
.surveys-calender .ui-widget-content .ui-priority-secondary,
.surveys-calender .ui-widget-header .ui-priority-secondary {
  opacity: 1;
}

.surveys-calender .ui-priority-secondary,
.surveys-calender .ui-widget-content .ui-priority-secondary,
.surveys-calender .ui-widget-header .ui-priority-secondary {
  color: #a3928c;
}

.surveys-calender .ui-state-active,
.surveys-calender .ui-widget-content .ui-state-active,
.surveys-calender .ui-widget-header .ui-state-active,
.surveys-calender a.ui-button:active,
.surveys-calender .ui-button:active,
.surveys-calender .ui-button.ui-state-active:hover {
  background-color: rgba(73, 83, 97, 1);
  color: #fff;
}

.surveys-calender .ui-state-highlight,
.surveys-calender .ui-widget-content .ui-state-highlight,
.surveys-calender .ui-widget-header .ui-state-highlight {
  background-color: transparent;
  color: #ef7811;
}

.surveys-calender .ui-state-highlight.ui-state-active,
.surveys-calender .ui-widget-content .ui-state-highlight.ui-state-active,
.surveys-calender .ui-widget-header .ui-state-highlight.ui-state-active {
  background-color: rgba(73, 83, 97, 1);
  color: #fff;
}

.surveys-calender .ui-state-disabled span,
.surveys-calender .ui-widget-content .ui-state-disabled span,
.surveys-calender .ui-widget-header .ui-state-disabled span {
  /***text-decoration: line-through;***/
  opacity:0.5;
}

.surveys-calender__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 13px 20px;
  border-top: 1px solid #dbd6d4;
  text-align: right;
}

.surveys-calender__text span {
  font-size: 0.75rem;
  color: #60504f;
}

.surveys-calender__text span + span {
  margin-left: 6px;
}

.surveys-calender__text span.dot1, .surveys-calender__text span.dot2, .surveys-calender__text span.dot3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.surveys-calender__text span.dot1::before, .surveys-calender__text span.dot2::before, .surveys-calender__text span.dot3::before {
  content: "";
  margin-right: 6px;
}

.surveys-calender__text span.dot1::before {
  width: 8px;
  height: 2px;
  background-color: #111111;
}

.surveys-calender__text span.dot2::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f27ed3;
}

.surveys-calender__text span.dot3::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #55b4a5;
}

.surveys-form__item {
  margin-top: 20px;
}

.surveys-form__item:first-child {
  margin-top: 0;
}

.surveys-form__item > label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-form__item > label em {
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #ef7811;
}

.surveys-form__item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}

.surveys-form__item.flex + .flex {
  margin-top: 6px;
}

.surveys-form__item.flex dt {
  width: 10.625rem;
}

.surveys-form__item.flex dt label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: #111111;
}

.surveys-form__item.flex dt label strong {
  min-width: 20px;
  font-weight: bold;
}

.surveys-form__item.flex dd {
  position: relative;
}

.surveys-form__item.flex dd .surveys-input {
  /* max-width: 120px; */
  padding-right: 50px;
}

.surveys-form__item.flex dd span {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-email .surveys-input {
  border-radius: 8px 0 0 8px;
}

.surveys-email select {
  min-width: 40%;
  width: 40%;
  padding: 0 40px 0 16px;
  border-radius: 0 8px 8px 0;
  border: solid 1px #dbd6d4;
  border-left: none;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #111;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/select.png) no-repeat calc(100% - 20px) 50%;
  background-size: 8px 6px;
}

.surveys-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.75rem;
}

.surveys-address .surveys-input {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.surveys-address p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px;
  border-radius: 0 8px 8px 0;
  border: solid 1px #dbd6d4;
  border-left: none;
  background-color: #fff;
}

.surveys-address p button {
  width: 80px;
  height: 34px;
  padding: 0 0.75rem;
  border-radius: 4px;
  background-color: rgba(73, 83, 97, 1);
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.69;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.surveys-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 4px 0 16px;
  border-radius: 20px;
  border: solid 1px rgba(73, 83, 97, 1);
  background-color: #fff;
  overflow: hidden;
}

.surveys-search input {
  width: 100%;
  height: 40px;
  border: 0;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-search button {
  min-width: 40px;
  height: 40px;
  background: url(../images/search.png) no-repeat 50% 50%;
  background-size: 40px 40px;
  font-size: 0;
}

.surveys-notification {
  margin-bottom: 20px;
}

.surveys-notification__title {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-notification ul {
  margin-top: 8px;
}

.surveys-notification ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-notification ul li:before {
  content: "";
  display: block;
  min-width: 4px;
  width: 4px;
  height: 4px;
  margin: 8px;
  background-color: #a3928c;
}

.surveys-notification ul li:first-child {
  margin-top: 0;
}

.surveys-url {
  padding: 30px 20px;
}

.surveys-url p {
  margin-bottom: 20px;
}

.surveys-url p a {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 445px;
  background-color: #f8f7f7;
  z-index: 10;
}

.surveys-main .surveys-header {
  border-bottom: none;
  background-color: #f8f7f7;
}

.surveys-main-keyvisual {
  position: relative;
  z-index: 20;
  padding: 0 20px;
}

.surveys-main-keyvisual__title {
  margin: 1.125rem 0 0.75rem 6px;
  font-size: 1.5rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #5a3025;
}

.surveys-main-keyvisual__text {
  margin-left: 6px;
  margin-bottom: 23px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: normal;
  text-align: left;
  color: #a3928c;
}

.surveys-main-keyvisual__button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 1.125rem;
  border: solid 1px #ef7811;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #ef7811;
}

.surveys-main-keyvisual__button a:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/arrow_r.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-main-keyvisual__image {
  margin-top: -37px;
  margin-left: -20px;
}

.surveys-main-keyvisual__image img {
  height: 260px;
}

.surveys-main-menu {
  margin: 23px 20px 33px;
}

.surveys-main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.surveys-main-menu ul li {
  width: 100%;
  text-align: center;
  padding: 0 2px;
}

.surveys-main-menu ul li a {
  display: block;
}

.surveys-main-menu ul li a img {
  width: 64px;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
          box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
}

.surveys-main-menu ul li a p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #463e3e;
}

.surveys-main-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px 20px;
  height: 40px;
  padding: 0 0.75rem 0 16px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
          box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
  background-color: #60504f;
}

.surveys-main-notice a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.surveys-main-notice a:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.625rem;
  background: url(../images/notice.png) no-repeat 50% 50%;
  background-size: 1.5rem 1.5rem;
}

.surveys-main-notice:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/detail.png) no-repeat 50% 50%;
  background-size: 16px 16px;
}

.surveys-main-swiper {
  margin: 0 0 20px 0px;
}

.surveys-main-swiper__title strong {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.surveys-main-swiper__title p {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  opacity: 0.7;
}

.surveys-main-swiper__image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.surveys-main-swiper .swiper {
  padding-right: 80px;
  padding-left: 20px;
}

.surveys-main-swiper .swiper-slide {
  position: relative;
  height: 220px;
  padding: 20px 1.5rem;
  border-radius: 16px;
}

.surveys-main-tag {
  margin: 0 20px;
}

.surveys-main-tag__inner {
  height: 150px;
  padding: 20px 0 0 0;
  border-radius: 16px;
  background-color: #1d3c78;
  overflow: hidden;
}

.surveys-main-tag__title {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.surveys-main-tag__tag {
  padding: 0 0 20px 44px;
  overflow: auto;
}

.surveys-main-tag__tag p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 11px;
}

.surveys-main-tag__tag p:first-child {
  margin: 0 0 0 60px;
}

.surveys-main-tag__tag p a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 32px;
  margin-right: 0.625rem;
  padding: 0 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 3px 0.625rem 0 #070f1f;
          box-shadow: 0 3px 0.625rem 0 #070f1f;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.29;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  white-space: nowrap;
}

.surveys-main-tag__tag p a.point {
  background: #ef7811;
}

.surveys-main-info {
  margin: 0.75rem 20px;
}

.surveys-main-info__inner {
  position: relative;
  height: 150px;
  padding: 20px 0 0 1.5rem;
  border-radius: 16px;
  background-color: #0b937e;
}

.surveys-main-info__title strong {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.surveys-main-info__title p {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  opacity: 0.7;
}

.surveys-main-info__image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.surveys-main-info__image img {
  height: 108px;
}

.surveys-login {
  width: 100%;
  height: 100%;
/****  margin-top: -60px;  ****/
  padding: 80px 20px 0%;
  background: #f8f7f7;
}

.surveys-login__logo {
  padding: 0px 0 30px 0;
  text-align: center;
}

.surveys-login__logo img {
  height: 33.5rem;
}

.surveys-login__title strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: normal;
  text-align: center;
  color: #111;
}

.surveys-login__title p {
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: center;
  color: #111;
}

.surveys-login-form {
  width: 100%;
  margin-top: 38px;
}

.surveys-login-form__item {
  margin-top: 20px;
}

.surveys-login-form__item:first-child {
  margin-top: 0;
}

.surveys-login-form__item label {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-login-form__item .surveys-input {
  margin-top: 0.625rem;
}

.surveys-login-form .surveys-button {
  margin-top: 30px;
}

.surveys-login__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.surveys-login__link a {
  position: relative;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #6e6a69;
}

.surveys-login__link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 0.625rem;
  margin-right: 0.625rem;
  background: #dbd6d4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.surveys-login__link a:first-child::before {
  display: none;
}

.surveys-information {
  padding: 0 0 30px 0;
}

.surveys-information-section01 {
  padding: 30px 20px;
}

.surveys-information-section01__title strong {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-information-section01__title p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-information-section01__list {
  margin-top: 20px;
}

.surveys-information-section01__list ul li {
  margin-top: 0.75rem;
  padding: 16px;
  border-radius: 8px;
  background-color: #f8f7f7;
}

.surveys-information-section01__list ul li:first-child {
  margin-top: 0;
}

.surveys-information-section01__list ul li strong {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-information-section01__list ul li p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-information-section02 {
  padding: 30px 16px;
  background-color: #f8f7f7;
}

.surveys-information-section02__title {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-information-section02__list {
  margin-top: 54px;
}

.surveys-information-section02__list dl {
  position: relative;
  margin-top: 34px;
  padding: 1.5rem 20px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
          box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
  background-color: #fff;
}

.surveys-information-section02__list dl:first-child {
  margin-top: 0;
}

.surveys-information-section02__list dl dt {
  position: absolute;
  top: 0;
  left: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
  padding: 0 16px;
  border-radius: 0.875rem;
  background-color: rgba(73, 83, 97, 1);
  font-size: 0.75rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.surveys-information-section02__list dl dd strong {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-information-section02__list dl dd p {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #535353;
  word-break: keep-all;
}

.surveys-information-section03 {
  padding: 30px 20px;
}

.surveys-information-section03__title {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-information-section03 dl {
  margin-top: 20px;
}

.surveys-information-section03 dl dt {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-information-section03 dl dd {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-callcenter {
  padding: 0 0 30px 0;
}

.surveys-callcenter__head {
  position: relative;
  height: 300px;
  padding: 30px 20px;
  background-color: #f2efef;
}

.surveys-callcenter__title h2 {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-callcenter__title p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-callcenter__number {
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-callcenter__number p {
  margin-top: 2px;
}

.surveys-callcenter__number p a {
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: normal;
  text-align: left;
  color: #ef7811;
}

.surveys-callcenter__image {
  position: absolute;
  right: 20px;
  bottom: -0.625rem;
}

.surveys-callcenter__image img {
  height: 140px;
}

.surveys-callcenter__time {
  padding: 40px 20px;
}

.surveys-callcenter__time h2 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dbd6d4;
  font-size: 1.125rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-callcenter__time table th {
  padding: 2px 0;
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: left;
  color: #5a3025;
}

.surveys-callcenter__time table td {
  padding: 2px 0;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup {
  padding: 0 0 60px 0;
}

.surveys-checkup__text {
  padding: 20px;
}

.surveys-checkup__text p {
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 20px 15px;
  background-color: #f8f7f7;
}

.surveys-checkup-head__select select {
  width: 120px;
  height: 40px;
  padding: 8px 0.75rem;
  border-radius: 20px;
  border: solid 1px rgba(73, 83, 97, 1);
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  text-align: left;
  color: #111;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/select.png) no-repeat calc(100% - 20px) 50%;
  background-size: 8px 6px;
}

.surveys-checkup-head__select .surveys-caution {
  margin-left: 6px;
}

.surveys-checkup-head__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-head__button p {
  margin-left: 16px;
}

.surveys-checkup-head__button p img {
  width: 40px;
}

.surveys-checkup-head__button p strong {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  text-align: center;
  color: #6c3d31;
  line-height: 1.3;
}

.surveys-checkup-head__text {
  padding-bottom: 5px;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-checkup-body {
  padding: 30px 20px;
}

.surveys-checkup-list__item {
  padding: 20px;
  border-bottom: 1px solid #dbd6d4;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-list__item h3 {
  margin-bottom: 16px;
  font-size: 1.125rem; /*1.312rem;*/
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-list__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-list__item a:after {
  content: "";
  display: block;
  width: 6.5px;
  height: 9.5px;
  margin-left: 0.875rem;
  background: url(../images/icon-arrow-down.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-list__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-list__map:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-map2.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-list__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-list__call:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-call.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-list__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}

.surveys-checkup-list__time:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-time.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-list__time li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4px;
}

.surveys-checkup-list__time li:first-child {
  margin-top: 0;
}

.surveys-checkup-list__time li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.surveys-checkup-list__time li span strong {
  margin-right: 8px;
}

.surveys-checkup-list__time li span:last-child:before {
  content: "";
  display: block;
  width: 2px;
  height: 2px;
  margin: 0 8px;
  background-color: rgba(73, 83, 97, 1);
}

.surveys-checkup-list__time li span:last-child:first-child::before {
  display: none;
}

.surveys-checkup-view {
  padding: 0 0 30px 0;
}

.surveys-checkup-view-map__map {
  height: 200px;
  background: #f2efef;
}

.surveys-checkup-view-map__text {
  padding: 30px 20px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-view-detail {
  padding: 30px 20px;
}

.surveys-checkup-view-detail__title strong {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-view-detail__title p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-view-detail-list {
  margin-top: 20px;
}

.surveys-checkup-view-detail-list__item {
  margin-top: 0.75rem;
  padding: 16px;
  border-radius: 8px;
  background-color: #f8f7f7;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-view-detail-list__item:first-child {
  margin-top: 0;
}

.surveys-checkup-view-detail-list__item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}

.surveys-checkup-view-detail-list__item p strong {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-view-detail-list__item p strong span {
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-view-detail-layer {
  padding: 0 0 30px 0;
}

.surveys-checkup-view-detail-layer__head {
  padding: 20px;
  background-color: #f8f7f7;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-view-detail-layer__head h2 {
  margin-bottom: 0.75rem;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-view-detail-layer__head-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.surveys-checkup-view-detail-layer__head-title h3 {
  font-size: 1.125rem; /*16px;*/
  font-weight: bold;
  color: #111111;
}

.surveys-checkup-view-detail-layer__head-title + .surveys-checkup-view-detail-layer__head-text {
  padding-top: 8px;
}

.surveys-checkup-view-detail-layer__head-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.surveys-checkup-view-detail-layer__head-text span {
  position: relative;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-checkup-view-detail-layer__head-text span + span {
  padding-left: 8px;
  margin-left: 8px;
}

.surveys-checkup-view-detail-layer__head-text span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  width: 1px;
  height: 0.625rem;
  background-color: #dbd6d4;
}

.surveys-checkup-view-detail-layer__head-text + .surveys-checkup-view-detail-layer__head-link {
  padding-top: 0.75rem;
}

.surveys-checkup-view-detail-layer__head-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(73, 83, 97, 1);
  font-size: 0.875rem;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-view-detail-layer__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-view-detail-layer__map:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-map2.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-view-detail-layer__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-view-detail-layer__call:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-call.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-view-detail-layer__body {
  padding: 30px 20px;
}

.surveys-checkup-view-detail-layer__body.pd0 {
  padding: 0;
}

.surveys-checkup-view-detail-layer__body h3 {
  font-size: 1.125; /*16px;*/
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-view-detail-layer__body h3 span {
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-view-detail-layer__body p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-view-detail-layer__body .surveys-checkup-register-form {
  padding: 0;
}

.surveys-checkup-view-detail-layer__body .surveys-address p {
  margin-top: 0;
}

.surveys-checkup-view-map ~ .surveys-checkup-view-detail {
  border-top: 1px solid #dbd6d4;
}

.surveys-checkup-process__text {
  padding: 20px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-process__list {
  padding: 34px 16px 30px;
  background-color: #f8f7f7;
}

.surveys-checkup-process__list dl {
  position: relative;
  margin-top: 34px;
  padding: 1.5rem 20px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
          box-shadow: 0 3px 0.625rem 0 rgba(67, 40, 31, 0.15);
  background-color: #fff;
}

.surveys-checkup-process__list dl:first-child {
  margin-top: 0;
}

.surveys-checkup-process__list dl dt {
  position: absolute;
  top: 0;
  left: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
  padding: 0 16px;
  border-radius: 0.875rem;
  background-color: rgba(73, 83, 97, 1);
  font-size: 0.75rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.surveys-checkup-process__list dl dd strong {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-process__list dl dd p {
  margin-top: 6px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #535353;
}

.surveys-checkup-process__button {
  padding: 20px;
}

.surveys-checkup-location {
  padding: 0 0 45px 0;
}

.surveys-checkup-location__text {
  padding: 20px;
  background-color: #f8f7f7;
}

.surveys-checkup-location__text p {
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-location__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 25px 20px;
}

.surveys-checkup-location__list button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  padding: 15px 16px;
  border-radius: 8px;
  border: solid 1px #dbd6d4;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #60504f;
}

.surveys-checkup-location__list button:disabled {
  background-color: #f8f7f7;
  border-color: #f8f7f7;
  color: #a3928c;
}

.surveys-checkup-search {
  padding: 0;
}

.surveys-checkup-search .surveys-checkup-view-map__map {
  height: 294px;
}

.surveys-checkup-search .surveys-checkup-list__item {
  border-bottom: none;
}

.surveys-checkup-product__text {
  padding: 20px;
  background-color: #f8f7f7;
}

.surveys-checkup-product__text p {
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-checkup-product-center {
  padding: 20px;
  border-bottom: 1px solid #dbd6d4;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-product-center__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.surveys-checkup-product-center__title h2 {
  margin-bottom: 0.75rem;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-product-center__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-product-center__map:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-map2.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-product-center__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-product-center__call:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-call.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-product-list {
  padding: 0 20px 20px;
}

.surveys-checkup-product-list__title {
  margin-bottom: 20px;
}

.surveys-checkup-product-list__title strong {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-product-list__title p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-checkup-product-list .surveys-checklist {
  padding: 16px;
  border-radius: 8px;
  background-color: #f8f7f7;
}

.surveys-checkup-agree__title {
  padding: 30px 20px;
}

.surveys-checkup-agree__title strong {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-agree__title p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-checkup-agree-form {
  padding: 57px 20px 0;
}

.surveys-checkup-agree-form__list {
  margin-top: 0.75rem;
  padding: 16px;
  border-radius: 6px;
  background-color: #f8f7f7;
}

.surveys-checkup-agree-form__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-top: 0.75rem;
}

.surveys-checkup-agree-form__list ul li a {
  display: block;
  min-width: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.875rem;
  background: url(../images/icon-arrow-down.png) no-repeat 50% 50%;
  background-size: 6.5px 9.5px;
  font-size: 0;
}

.surveys-checkup-agree-form__list ul li:first-child {
  margin-top: 0;
}

.surveys-checkup-agree-form__list ul li input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.surveys-checkup-agree-form__list ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-agree-form__list ul li label strong {
  margin-right: 4px;
  font-weight: 400;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-agree-form__list ul li label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  background: url(../images/check.png) no-repeat 50% 50%;
  background-size: cover;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.surveys-checkup-agree-form__list ul li input:checked ~ label {
  border-color: rgba(73, 83, 97, 1);
  color: rgba(73, 83, 97, 1);
  font-weight: bold;
}

.surveys-checkup-agree-form__list ul li input:checked ~ label::before {
  background: url(../images/check-active.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-agree__caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.75rem;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: rgba(73, 83, 97, 1);
  word-break: keep-all;
}

.surveys-checkup-agree__caution::before {
  content: "";
  display: block;
  min-width: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 4px;
  margin-right: 5px;
  background: url(../images/helper2.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-agree-detail {
  padding: 0 0 40px 0;
}

.surveys-checkup-agree-detail__date {
  padding: 0.75rem 20px;
  background-color: #f8f7f7;
  font-size: 0.75rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.83;
  letter-spacing: normal;
  text-align: right;
  color: #60504f;
}

.surveys-checkup-agree-detail__title {
  margin-bottom: 20px;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #dbd6d4;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-agree-detail__title strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  margin-left: 0.625rem;
  padding: 0 8px;
  border-radius: 0.625rem;
  border: solid 1px rgba(73, 83, 97, 1);
  background-color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-agree-detail__content {
  padding: 20px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-checkup-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 42px;
  padding: 0 20px;
  background-color: rgba(73, 83, 97, 1);
}

.surveys-checkup-step p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  padding-top:3px;
  padding-bottom:3px;
}

.surveys-checkup-step p strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.surveys-checkup-step p strong.noline::after {
  display: none;
}

.surveys-checkup-step p strong:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  margin: 0 0.625rem;
  background-color: #a47768;
}

.surveys-checkup-step span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.5rem;
  padding: 3px 11px 4px;
  border-radius: 0.75rem;
  background-color: rgba(113, 128, 142, 1);
  font-size: 0.75rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.surveys-checkup-register-form {
  padding: 30px 20px 20px;
}

.surveys-checkup-register-form__title {
  margin-bottom: 30px;
}

.surveys-checkup-register-form__title h2 {
  margin-bottom: 20px;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-reservation {
  padding: 30px 20px 1.125rem 20px;
}

.surveys-checkup-reservation.pd0 {
  padding: 0;
}

.surveys-checkup-reservation + .surveys-checkup-reservation {
  border-top: 8px solid #f8f7f7;
}

.surveys-checkup-reservation h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 3px;
  font-size: 1.125rem; /*1.312rem;*/
  font-weight: bold;
  color: #111111;
}

.surveys-checkup-reservation h3 strong {
  font-size: 0.75rem;
  font-weight: bold;
  color: rgba(73, 83, 97, 1);
  padding-bottom: 6px;
  padding-left: 5px;
}

.surveys-checkup-reservation h3 + .surveys-checklist {
  margin-top: 16px;
}

.surveys-checkup-reservation h3 + .surveys-checkup-reservation__item:first-of-type {
  padding-top: 16px;
}

.surveys-checkup-reservation h3 + .surveys-checkup-reservation__text {
  padding-top: 6px;
}

.surveys-checkup-reservation__box {
  margin-top: 5px;
  padding: 16px;
  border-radius: 8px;
  background-color: #f8f7f7;
}

.surveys-checkup-reservation__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.surveys-checkup-reservation__text {
  line-height: 20px;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-checkup-reservation__text + .surveys-form,
.surveys-checkup-reservation__text + .surveys-checklist {
  margin-top: 20px;
}

.surveys-checkup-reservation__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.75rem 0;
}

.surveys-checkup-reservation__item dt {
  width: 10.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #60504f;
}

.surveys-checkup-reservation__item dd {
  width: calc(100% - 10.625rem);
  padding-left: 0.625rem;
  font-size: 0.875rem;
  color: #111111;
}

.surveys-checkup-reservation__item dd a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: #111111;
}

.surveys-checkup-reservation__item dd a::after {
  content: "";
  margin: 7px 0.75rem 0 0.75rem;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(73, 83, 97, 1);
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.surveys-checkup-reservation__item + .surveys-checkup-reservation__item {
  border-top: 1px solid #f2efef;
}

.surveys-checkup-reservation .surveys-form__item {
  padding: 7px 20px 20px 20px;
}

.surveys-checkup-reservation .surveys-form__item.pd0 {
  padding: 0;
}

.surveys-checkup-address__head {
  padding: 20px;
  background-color: #f8f7f7;
}

.surveys-checkup-address__none {
  padding: 80px 20px;
  text-align: center;
}

.surveys-checkup-address__none strong {
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #111;
}

.surveys-checkup-address__none p {
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #60504f;
}

.surveys-checkup-address-list {
  margin: 0.625rem 0 30px 0;
}

.surveys-checkup-address-list__item {
  padding: 20px;
  border-bottom: 1px solid #f2efef;
}

.surveys-checkup-address-list__item strong {
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-address-list__item p {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-address-list__item p span {
  display: block;
  margin-top: 2px;
  color: #60504f;
  font-weight: normal;
}

.surveys-checkup-add {
  padding: 30px 20px 20px 20px;
}

.surveys-checkup-add-info__title h2 {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-add-info__title p {
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-add-check {
  margin-top: 30px;
  margin-bottom: 30px;
}

.surveys-checkup-add-check__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.surveys-checkup-add-check__head h2 {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-add-check__text {
  margin-top: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f2efef;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-add-confirm {
  padding-top: 20px;
  border-top: 1px solid #f2efef;
}

.surveys-checkup-choice {
  padding: 30px 20px 20px 20px;
}

.surveys-checkup-choice-item {
  margin-top: 30px;
}

.surveys-checkup-choice-item:first-child {
  margin-top: 0;
}

.surveys-checkup-choice-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 16px;
}

.surveys-checkup-choice-item__title strong {
  margin-right: 0.625rem;
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-choice-item__title span {
  margin-bottom: 3px;
  font-size: 0.75rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: normal;
  text-align: left;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-choice-item__title-sub {
  margin-top: 22px;
  margin-bottom: 16px;
}

.surveys-checkup-choice-item__title-sub:first-of-type {
  margin-top: 0;
}

.surveys-checkup-choice-item__title-sub strong {
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-choice-item__title-sub h3 {
  padding-top: 7px;
  font-size: 16px;
  font-weight: bold;
  color: #111111;
}

.surveys-checkup-choice-item__title-sub h3 + p {
  margin-top: 0.625rem;
}

.surveys-checkup-choice-item__title-sub p {
  line-height: 20px;
  font-size: 0.75rem;
  color: #60504f;
}

.surveys-checkup-date-head {
  padding: 20px;
  border-bottom: 1px solid #dbd6d4;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-date-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.75rem;
}

.surveys-checkup-date-head__title h2 {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-date-head__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-date-head__map:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-map2.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-date-head__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.surveys-checkup-date-head__call:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  background: url(../images/icon-call.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-date-body {
  padding: 30px 20px 20px 20px;
}

.surveys-checkup-date-body__title {
  margin-bottom: 40px;
}

.surveys-checkup-date-body__title h2 {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-date-body__title p {
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
}

.surveys-checkup-date-body__caution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: rgba(73, 83, 97, 1);
  word-break: keep-all;
}

.surveys-checkup-date-body__caution::before {
  content: "";
  display: block;
  min-width: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 4px;
  margin-right: 5px;
  background: url(../images/helper2.png) no-repeat 50% 50%;
  background-size: cover;
}

.surveys-checkup-complete {
  padding: 30px 20px 20px 20px;
}

.surveys-checkup-complete-info {
  padding: 0 0 15px 0;
  border-bottom: 1px solid #dbd6d4;
}

.surveys-checkup-complete-info.noline {
  padding: 0;
  border-bottom: none;
}

.surveys-checkup-complete-info.noline h2 {
  margin-bottom: 0;
}

.surveys-checkup-complete-info.noline h2 + p {
  margin-top: 13px;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-checkup-complete-info h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-complete-info table tbody th {
  padding: 5px 0;
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  vertical-align: top;
}

.surveys-checkup-complete-info table tbody td {
  padding: 5px 0;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-complete-service {
  padding: 30px 0 0 0;
}

.surveys-checkup-complete-service h2 {
  font-size: 1.312rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-complete-service h4 {
  font-size: 16px;
  color: #111111;
}

.surveys-checkup-complete-service h4 + p {
  padding-top: 9px;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-checkup-complete-service-text {
  margin-top: -0.875rem;
  margin-bottom: 4px;
  font-size: 0.875rem;
  color: #111111;
}

.surveys-checkup-complete-service-item {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background-color: #f8f7f7;
}

.surveys-checkup-complete-service-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.surveys-checkup-complete-service-item__title h3 {
  font-size: 1.125rem; /*16px;*/
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #111;
}

.surveys-checkup-complete-service-item__text {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #60504f;
  word-break: keep-all;
}

.surveys-checkup-complete-service-item__list {
  margin: -16px 0;
}

.surveys-checkup-complete-service-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 5px;
}

.surveys-checkup-complete-service-item__link h3 {
  font-size: 1.125rem; /*16px;*/
  font-weight: bold;
  color: #111111;
}

.surveys-checkup-complete-service-item__link h4 {
  font-size: 0.625rem;
  color: #111111;
}

.surveys-checkup-complete-service-item__link .surveys-button-sm {
  min-width: 74px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.surveys-checkup-complete-service-item__link + .surveys-checkup-complete-service-item__link {
  border-top: 1px solid #dbd6d4;
}

.surveys-checkup-complete-service-item + .surveys-caution p {
  margin-top: 13px;
}

.surveys-checkup-complete-service__link {
  position: relative;
  display: block;
  padding: 20px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid #dbd6d4;
}

.surveys-checkup-complete-service__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  display: block;
  width: 9px;
  height: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 2px solid rgba(73, 83, 97, 1);
  border-width: 2px 2px 0 0;
}

.surveys-checkup-complete-service__link strong {
  font-size: 0.75rem;
  color: rgba(73, 83, 97, 1);
}

.surveys-checkup-complete-service__link h3 {
  padding-top: 4px;
  font-size: 1.125rem; /*16px;*/
  color: #111111;
}

.surveys-reservation {
  background-color: #f8f7f7;
}

.surveys-reservation__head {
  position: relative;
  padding-top: 61px;
  overflow: hidden;
}

.surveys-reservation__head h2 {
  position: absolute;
  top: 41px;
  left: 0;
  padding: 0 20px;
  line-height: 28px;
  font-size: 1.312rem;
}

.surveys-reservation__head h2 strong {
  color: #ef7811;
}

.surveys-reservation__head img {
  display: block;
  height: 260px;
  margin-bottom: -49px;
}

.surveys-reservation__cont {
  padding: 0 20px 30px;
}

.surveys-reservation__item {
  background-color: #fff;
  padding: 16px 1.5rem;
  border: 1px solid #f2efef;
  border-radius: 8px;
}

.surveys-reservation__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.surveys-reservation__item-title h3 {
  font-size: 1.125rem; /*16px;*/
  font-weight: bold;
  color: #111111;
}

.surveys-reservation__item-title + .surveys-reservation__item-text {
  padding-top: 8px;
}

.surveys-reservation__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.surveys-reservation__item-text span {
  position: relative;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-reservation__item-text span + span {
  padding-left: 8px;
  margin-left: 8px;
}

.surveys-reservation__item-text span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  width: 1px;
  height: 0.625rem;
  background-color: #dbd6d4;
}

.surveys-reservation__item + .surveys-reservation__item {
  margin-top: 8px;
}

.surveys-board__new {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: top;
  background-color: #ef7811;
  height: 13px;
  line-height: 0.75rem;
  padding: 0 6px;
  border-radius: 13px;
  color: #fff;
  font-size: 0.625rem;
  font-weight: bold;
}

.surveys-board__item {
  width: 100%;
  border-bottom: 1px solid #f2efef;
}

.surveys-board__link {
  position: relative;
  width: 100%;
  display: block;
  padding: 20px 60px 20px 20px;
}

.surveys-board__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #5a3025;
  border-width: 2px 2px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.surveys-board__link p {
  font-size: 0.75rem;
  color: #a3928c;
}

.surveys-board__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.875rem;
  font-weight: bold;
  color: #111111;
}

.surveys-board__title + p {
  margin-top: 0.625rem;
}

.surveys-board__view-title {
  padding: 22px 20px 20px;
  border-bottom: 1px solid #f2efef;
}

.surveys-board__view-title h3 {
  font-size: 1.125rem; /*16px;*/
  font-weight: bold;
  color: #111111;
}

.surveys-board__view-title h3 + p {
  margin-top: 0.625rem;
}

.surveys-board__view-title p {
  font-size: 0.75rem;
  color: #a3928c;
}

.surveys-board__view-cont {
  padding: 30px 20px;
  line-height: 20px;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-board__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  background-color: #f8f7f7;
  padding: 0 20px;
  font-size: 0.75rem;
  color: #60504f;
}

.surveys-board__count span {
  margin-left: 5px;
}

.surveys-board__Accordion-item {
  border-bottom: 1px solid #f2efef;
}

.surveys-board__Accordion-item dt a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 20px 40px 20px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.875rem;
  font-weight: bold;
  color: #111111;
  word-break: keep-all;
}

.surveys-board__Accordion-item dt a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 29px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(73, 83, 97, 1);
  border-width: 2px 0 0 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.surveys-board__Accordion-item dt a strong {
  width: 40px;
  text-align: left;
  font-size: 0.875rem;
  color: rgba(73, 83, 97, 1);
}

.surveys-board__Accordion-item dd {
  display: none;
  padding: 0 44px 0.875rem 60px;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-board__Accordion-item dd span {
  font-size: 0.75rem;
  color: rgba(73, 83, 97, 1);
}

.surveys-board__Accordion-item dd span + p {
  padding-top: 0.625rem;
}

.surveys-board__Accordion-item.activate dt a {
  padding-bottom: 0.875rem;
}

.surveys-board__Accordion-item.activate dt a::after {
  top: 1.5rem;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.surveys-board__Accordion-item.activate dd {
  display: block;
}

.surveys-popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.surveys-popup__wrap {
  border-radius: 16px;
  background-color: #fff;
  max-width: calc(100% - 40px);
  min-width: 320px;
  padding: 1.125rem 20px;
}

.surveys-popup__body {
  text-align: center;
}

.surveys-popup__body h3 {
  padding: 0.75rem 0;
  font-size: 1.312rem;
  font-weight: bold;
  color: #111111;
}

.surveys-popup__footer {
  padding-top: 1.125rem;
}

.surveys-popup__text {
  padding: 0.625rem 0 0.75rem;
  font-size: 0.875rem;
  color: #60504f;
}

.surveys-popup__text p + p {
  margin-top: 0.625rem;
}

.surveys-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 46px;
  padding: 0 20px;
  background-color: rgba(73, 83, 97, 1);
}

.surveys-tab .swiper-slide {
  width: auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: normal;
}

.surveys-tab .swiper-slide a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: normal;
}

.surveys-tab .swiper-slide.swiper-slide-active {
  border-bottom: 1px solid #fff;
  color: #fff;
}

.surveys-tab .swiper-slide.swiper-slide-active a {
  color: #fff;
}

/*                                       */
body {margin: auto;}
.bottom_fixed {
    position: fixed; width: 100%; bottom: 20;
} 

#full-layer, #full-layer-2, #full-layer-noline {
    width:100vw; 
    height:100vh; 
    z-index:1100; 
    background:#FFF; 
    position:fixed; 
    top:0; 
    overflow-y:auto;
}

#layer-contents, #layer-contents-2 {
    padding-top:60px;
}

/*
@media screen and (min-width:640px) {
  body {width: 640px !important;}
  .surveys, .surveys-body, .surveys-header, .bottom_fixed {width: 640px !important;;}
}

@media screen and (max-width:640px) {
  .modal-dialog {width: 95% !important;}
}
*/

.modal {
    display:fixed; 
    position:absolute; 
    left:0; 
    top:0; 
    width:100%; 
    height:100%;
}

@media screen and (min-width:1281px) {
    body {width: 720px !important;}
    .surveys, .surveys-body, .surveys-header, .bottom_fixed {width: 720px !important;;}
}
  
@media screen and (max-width:1281px) {
    .modal-dialog {width: 95% !important;}
}
