@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Noto Sans JP", serif;
  color: #333333;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg-top {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: rgba(239, 239, 239, 0.6);
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .bg-top {
    display: none;
  }
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EFEFEF;
}
@media screen and (max-width: 600px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

/*----------------------- header -----------------------*/
header.header {
  width: 100%;
  padding: 21px 32px;
  background-color: #FFF;
}
@media screen and (max-width: 600px) {
  header.header {
    padding: 16px 21px;
  }
}
@media screen and (max-width: 375px) {
  header.header {
    padding: 16px 12px;
  }
}

.hreader_content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.hreader_txt {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .hreader_txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  .hreader_txt {
    font-size: 13px;
  }
}
.hreader_txt span {
  color: #D4145A;
}

.hreader_logo {
  width: 210px;
}
@media screen and (max-width: 600px) {
  .hreader_logo {
    width: 150px;
  }
}
@media screen and (max-width: 350px) {
  .hreader_logo {
    width: 135px;
  }
}

/*----------------------- contact -----------------------*/
.contact_wrap {
  padding: 40px 32px;
}
@media screen and (max-width: 600px) {
  .contact_wrap {
    padding: 32px 21px;
  }
}
@media screen and (max-width: 375px) {
  .contact_wrap {
    padding: 30px 12px;
  }
}

.contact_heading {
  width: 100%;
  padding-bottom: 22px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .contact_heading {
    padding-bottom: 10px;
  }
}
.contact_heading h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  color: #2E4ACE;
}
@media screen and (max-width: 600px) {
  .contact_heading h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
.contact_heading img {
  position: absolute;
  width: 110px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .contact_heading img {
    width: 70px;
  }
}
@media screen and (max-width: 375px) {
  .contact_heading img {
    width: 64px;
  }
}

.contact_heading_bottom {
  display: block;
  font-size: 19px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .contact_heading_bottom {
    font-size: 17px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 375px) {
  .contact_heading_bottom {
    margin: 0 auto 32px;
  }
}
.contact_heading_bottom span {
  color: #2E4ACE;
}

.contact_content {
  background-color: #FFF;
  border-radius: 8px;
  padding: 36px 21px 56px;
}
@media screen and (max-width: 600px) {
  .contact_content {
    padding: 24px 10px 40px;
  }
}
@media screen and (max-width: 350px) {
  .contact_content {
    padding: 24px 6px 40px;
  }
}

.survey_item:not(:first-child) {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.survey_item:not(:first-child).active {
  display: block;
  animation: opacity_item 0.5s 0.2s forwards;
  margin-top: 32px;
}

@keyframes opacity_item {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.survey_question {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .survey_question {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
}

.survey_question_img {
  width: 64px;
  height: 64px;
  background-image: url(../enquete-img/survey_img.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 600px) {
  .survey_question_img {
    width: 48px;
    height: 48px;
  }
}

.survey_question_txt_name {
  display: block;
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .survey_question_txt_name {
    font-size: 14px;
  }
}

.survey_question_txt_bubble {
  background-color: #B5B5B5;
  border-radius: 6px;
  padding: 12px 16px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .survey_question_txt_bubble {
    padding: 10px 12px;
  }
}
.survey_question_txt_bubble p {
  color: #FFF;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .survey_question_txt_bubble p {
    font-size: 16px;
  }
}
.survey_question_txt_bubble::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 14px;
  background-color: #B5B5B5;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .survey_question_txt_bubble::after {
    left: -12px;
    width: 13px;
  }
}

.survey_input .wpcf7-list-item {
  margin: 0;
  width: 100%;
}
.survey_input .wpcf7-list-item label {
  padding: 16px 0;
  background: #97CDD4;
  font-size: 21px;
  font-weight: 600;
  width: 100%;
  border: #97CDD4;
  margin-top: 12px;
}
@media screen and (max-width: 600px) {
  .survey_input .wpcf7-list-item label {
    padding: 12px 0;
    font-size: 18px;
  }
}

.survey_input.hidden {
  display: none;
}

.wpcf7-list-item.hidden {
  display: none;
}

.survey_input .wpcf7-list-item label.ui-checkboxradio-checked.ui-state-active {
  color: #FFF;
  background: #2E4ACE;
  border: #2E4ACE;
}
.survey_input .wpcf7-list-item label.ui-checkboxradio-checked.ui-state-active:hover {
  color: #FFF;
  background: #2E4ACE;
  border: #2E4ACE;
}

.survey_answer {
  padding-top: 8px;
  padding-right: 14px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  display: none;
}

.survey_answer.display {
  display: block;
}

.survey_answer_small {
  position: absolute;
  font-size: 15px;
  left: -36px;
  top: 56%;
  transform: translateY(-50%);
}

.survey_answer_bubble {
  border-radius: 6px;
  padding: 12px 16px;
  background-color: #6DE050;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .survey_answer_bubble {
    padding: 10px 12px;
  }
}
.survey_answer_bubble::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 14px;
  background-color: #6DE050;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
}
.survey_answer_bubble p {
  color: #FFF;
  font-size: 18px;
  line-height: 1.5;
}

.contact_form {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 48px;
}
.contact_form.active {
  display: block;
  animation: opacity_item 0.5s 0.2s forwards;
}

.contact_form_item {
  margin-bottom: 20px;
}

.contact_form_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.contact_form_title br {
  display: none;
}

.contact_form_title_txt {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}

.contact_form_title_icon {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #FFF;
  background-color: #D4145A;
  border-radius: 4px;
  padding: 2px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2px;
}

.contact_form_input {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 600px) {
  .contact_form_input {
    grid-template-columns: 1fr 28px;
  }
}

.contact_form_item.contact_form_textarea .contact_form_input {
  display: block;
}

.contact_form_input input,
.contact_form_input textarea {
  width: 100%;
  border-radius: 4px;
  padding: 10px;
  border: 1.6px solid #656565;
  line-height: 1.5;
}

.contact_form_check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: red;
  text-align: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
}
@media screen and (max-width: 600px) {
  .contact_form_check {
    font-size: 19px;
    width: 28px;
    height: 28px;
  }
}
.contact_form_check.ok {
  background-color: #6DE050;
  color: #FFF;
}

.contact_form_bottom {
  line-height: 1.6;
  font-size: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 600px) {
  .contact_form_bottom {
    font-size: 14px;
  }
}

.contact_acceptance {
  margin-bottom: 40px;
}
.contact_acceptance .wpcf7-list-item {
  margin: 0;
  margin-left: 4px;
}
.contact_acceptance .wpcf7-list-item input {
  transform: scale(1.4);
  margin-bottom: 5px;
  margin-right: 12px;
}
@media screen and (max-width: 600px) {
  .contact_acceptance .wpcf7-list-item input {
    margin-bottom: 4px;
  }
}
.contact_acceptance .wpcf7-list-item span {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .contact_acceptance .wpcf7-list-item span {
    font-size: 16px;
  }
}

.contact_btn {
  position: relative;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .contact_btn {
    width: 250px;
    margin: 0 auto;
  }
}
.contact_btn::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../enquete-img/contact_btn_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 140px;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .contact_btn::before {
    width: 16px;
    height: 16px;
    right: 40px;
  }
}
.contact_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #172567;
  border-radius: 100px;
  top: 4px;
  left: 4px;
  z-index: -1;
}

.contact_btn:hover {
  top: 4px;
  left: 4px;
}
.contact_btn:hover::after {
  top: 0;
  left: 0;
}

.contact_btn input {
  width: 100%;
  padding: 16px 0;
  background-color: #2E4ACE;
  border-radius: 100px;
  color: #FFF;
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  padding-right: 24px;
}
@media screen and (max-width: 600px) {
  .contact_btn input {
    font-size: 20px;
  }
}

.wpcf7-spinner {
  display: none !important;
}

/*----------------------- company -----------------------*/
.company {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}
.company.active {
  display: block;
  animation: opacity_item 0.5s 0.2s forwards;
}

.company_wrap {
  padding: 21px 32px;
}
@media screen and (max-width: 600px) {
  .company_wrap {
    padding: 24px 21px;
  }
}
@media screen and (max-width: 375px) {
  .company_wrap {
    padding: 24px 12px;
  }
}

.company_logo {
  width: 260px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .company_logo {
    width: 180px;
  }
}

.company table {
  border-collapse: separate;
  border-spacing: 0 16px;
}
@media screen and (max-width: 600px) {
  .company table {
    font-size: 14px;
  }
}
.company table td {
  line-height: 1.5;
}
.company table td:nth-child(1) {
  width: 160px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding-right: 32px;
}
@media screen and (max-width: 600px) {
  .company table td:nth-child(1) {
    padding-right: 16px;
    width: 120px;
  }
}

.company ul li {
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
}
.company ul li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}

.company_link {
  -webkit-text-decoration: underline 1px #333;
          text-decoration: underline 1px #333;
  transition: all 0.3s;
}
.company_link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 600px) {
  .company_bottom {
    font-size: 14px;
  }
}

.company_bottom_heading h3 {
  display: block;
  font-weight: 800;
  font-size: 21px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 24px;
}
@media screen and (max-width: 600px) {
  .company_bottom_heading h3 {
    font-size: 17px;
  }
}
.company_bottom_heading span {
  display: block;
  width: 160px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  padding-right: 32px;
  margin-bottom: 16px;
}

.company_bottom_item {
  margin-bottom: 24px;
}
.company_bottom_item span {
  line-height: 1.5;
}

/*----------------------- confirm -----------------------*/
.confirm_wrap {
  padding: 40px 32px;
}
@media screen and (max-width: 600px) {
  .confirm_wrap {
    padding: 32px 21px;
  }
}
@media screen and (max-width: 375px) {
  .confirm_wrap {
    padding: 30px 12px;
  }
}

.confirm_heading {
  width: 100%;
  padding-bottom: 38px;
}
@media screen and (max-width: 600px) {
  .confirm_heading {
    padding-bottom: 30px;
  }
}
.confirm_heading h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #2E4ACE;
}
@media screen and (max-width: 600px) {
  .confirm_heading h2 {
    font-size: 26px;
  }
}

.confirm_list {
  margin-bottom: 32px;
}

.confirm_item {
  display: grid;
  grid-template-columns: 170px 1fr;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .confirm_item {
    grid-template-columns: 145px 1fr;
  }
}
.confirm_item:last-child {
  margin-bottom: 0;
  grid-template-columns: 1fr;
}
.confirm_item:last-child .confirm_title {
  min-width: 100%;
}

.confirm_title {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background-color: #97CDD4;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 170px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .confirm_title {
    font-size: 16px;
    min-width: 145px;
    padding: 8px 12px;
  }
}

.confirm_input {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background-color: #Fff;
  width: 100%;
  line-height: 1.5;
  word-break: break-all;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .confirm_input {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.confirm_check {
  display: none;
}

.confirm_policy {
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .confirm_policy {
    margin-bottom: 32px;
  }
}
.confirm_policy .wpcf7-list-item {
  margin: 0;
  margin-left: 4px;
}
.confirm_policy .wpcf7-list-item input {
  transform: scale(1.4);
  margin-bottom: 5px;
  margin-right: 12px;
}
@media screen and (max-width: 600px) {
  .confirm_policy .wpcf7-list-item input {
    margin-bottom: 4px;
  }
}
.confirm_policy .wpcf7-list-item span {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .confirm_policy .wpcf7-list-item span {
    font-size: 16px;
  }
}

.confirm_policy_inner {
  padding: 24px 20px;
  height: 240px;
  overflow-y: scroll;
  width: 100%;
  background-color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .confirm_policy_inner {
    padding: 20px 16px;
  }
}
.confirm_policy_inner span {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .confirm_policy_inner span {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
.confirm_policy_inner p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .confirm_policy_inner p {
    font-size: 14px;
  }
}

.confirm_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .confirm_btn {
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  .confirm_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.confirm_back {
  width: 260px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .confirm_back {
    width: 160px;
  }
}
@media screen and (max-width: 400px) {
  .confirm_back {
    width: 100%;
  }
}
.confirm_back::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 21px;
  background-image: url(../enquete-img/confirm_back_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .confirm_back::before {
    top: 52%;
    width: 18px;
    height: 15px;
    left: 24px;
  }
}
@media screen and (max-width: 350px) {
  .confirm_back::before {
    display: none;
  }
}
.confirm_back::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  background-color: #656565;
  top: 4px;
  left: 4px;
  z-index: -1;
}
.confirm_back input {
  width: 100%;
  background-color: #97CDD4;
  padding: 16px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  border-radius: 100px;
  padding-left: 16px;
}
@media screen and (max-width: 600px) {
  .confirm_back input {
    padding: 12px 0 12px 16px;
  }
}
@media screen and (max-width: 350px) {
  .confirm_back input {
    padding-left: 0;
  }
}

.confirm_back:hover {
  top: 4px;
  left: 4px;
}
.confirm_back:hover::after {
  top: 0;
  left: 0;
}

.confirm_submit {
  width: 260px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .confirm_submit {
    width: 160px;
  }
}
@media screen and (max-width: 400px) {
  .confirm_submit {
    width: 100%;
  }
}
.confirm_submit::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../enquete-img/contact_btn_icon.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .confirm_submit::before {
    width: 15px;
    height: 15px;
    right: 26px;
    top: 52%;
  }
}
@media screen and (max-width: 350px) {
  .confirm_submit::before {
    display: none;
  }
}
.confirm_submit::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  background-color: #172567;
  top: 4px;
  left: 4px;
  z-index: -1;
}
.confirm_submit input {
  width: 100%;
  background-color: #2E4ACE;
  padding: 16px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  border-radius: 100px;
  color: #FFF;
  padding-right: 16px;
}
@media screen and (max-width: 600px) {
  .confirm_submit input {
    padding: 12px 16px 12px 0;
  }
}
@media screen and (max-width: 350px) {
  .confirm_submit input {
    padding-right: 0;
  }
}

.confirm_submit:hover {
  top: 4px;
  left: 4px;
}
.confirm_submit:hover::after {
  top: 0;
  left: 0;
}

/*----------------------- thanks -----------------------*/
.thanks {
  background-color: #EFEFEF;
}

.thanks_content {
  padding: 21px 32px 0;
}
@media screen and (max-width: 600px) {
  .thanks_content {
    padding: 16px 21px 0;
  }
}
@media screen and (max-width: 375px) {
  .thanks_content {
    padding: 16px 12px;
  }
}

.thanks_txt {
  margin-bottom: 21px;
}
@media screen and (max-width: 600px) {
  .thanks_txt {
    margin-bottom: 12px;
  }
}
.thanks_txt span {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #2E4ACE;
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .thanks_txt span {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 350px) {
  .thanks_txt span {
    font-size: 23px;
  }
}
.thanks_txt p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .thanks_txt p {
    font-size: 16px;
  }
}

.thanks_img {
  width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .thanks_img {
    width: 260px;
  }
}

.thanks_heading {
  background-color: #2E4ACE;
  padding: 10px 0;
}
@media screen and (max-width: 600px) {
  .thanks_heading {
    padding: 6px 0;
  }
}
.thanks_heading span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: #FFF;
  font-weight: 900;
}
@media screen and (max-width: 600px) {
  .thanks_heading span {
    font-size: 24px;
  }
}

/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*/
/*-----------------------  -----------------------*//*# sourceMappingURL=enquete-index.css.map */