@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #000;
  background: #fff;
  word-break: normal;
  line-break: strict;
}

body {
  background: #fff;
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::placeholder {
  color: rgba(34, 34, 34, 0.4);
}

button {
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  table-layout: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 750px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
@media only screen and (max-width: 749px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }

  #wrapper {
    position: relative;
    overflow: hidden;
  }

  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

@media only screen and (min-width: 750px) {
  html {
    font-size: 0.9615384615vw;
  }
}

@media (min-width: 1040px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (max-width: 374px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  color: #454545;
  font-family: "Noto Sans JP", 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", ヒラギノ角ゴシック, "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  line-height: 1;
  background-color: #f1f1f1;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*------------------------------------------------------------------------------
  utility
------------------------------------------------------------------------------*/
.u-inline-block {
  display: inline-block;
}

.u-nowrap {
  white-space: nowrap;
}

.u-pc {
  display: block;
}

@media only screen and (max-width: 749px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: block;
}

@media only screen and (min-width: 750px) {
  .u-sp {
    display: none;
  }
}

.u-hidden {
  display: none;
}

/*--------------------------------------------------------------------------- */
/* c-btn */
.c-btn {
  position: relative;
  display: block;
  width: 100%;
  /* padding: 2rem; */
  border-radius: 1rem;
  /* border: 4px solid #d70029; */
  font-size: 3.2rem;
  font-weight: bold;
  color: #F4903C;
  text-align: center;
  background-color: #fff;
  line-height: 1.2;
  cursor: pointer !important;
}

@media only screen and (max-width: 749px) {
  .c-btn {
    /* padding: 1rem 1rem; */
    /* border-radius: 2.5rem; */
    /* border: 3px solid #d70029; */
    font-size: 2.2rem;
  }
}

.c-btn:hover {
  background-color: #F4903C;
  color: #fff;
}

/* --orange */
.c-btn--orange {
  background-color: #F4903C;
  /* color: #fff; */
  /* border: 4px solid #F4903C; */
  /* padding: 1.2rem; */
}

.c-btn--orange::after {
  background-color: #fff;
}

.c-btn--orange:hover {
  background-color: #fff;
  color: #F4903C;
}

.c-btn--orange:hover::after {
  background-color: #F4903C;
}

.c-btn--orange input {
  width: 100%;
  font-size: 3.2rem;
  font-weight: bold;
  /* color:#fff; */
  color: #fff;
  border: 4px solid #F4903C;
  padding: 1.2rem;
  border-radius: 1rem;
}

@media only screen and (max-width: 749px) {
  .c-btn--orange input {
    font-size: 1.8rem;
  }
}

.c-btn--orange input:hover {
  color: #F4903C;
}

/* --grey */
.c-btn--grey {
  border: 4px solid #a9a9a9;
  background-color: #a9a9a9;
  color: #fff;
  padding: 2rem;
  /* border: 4px solid #a9a9a9; */
}

@media only screen and (max-width: 749px) {
  .c-btn--grey {
    font-size: 1.8rem;
    padding: 1.6rem;
  }
}

.c-btn--grey::after {
  right: initial;
  left: 3rem;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background-color: #fff;
}

.c-btn--grey:hover {
  background-color: #fff;
  color: #a9a9a9;
}

.c-btn--grey:hover::after {
  background-color: #a9a9a9;
}

.c-btn__text-s {
  font-size: 2.4rem;
}

@media screen and (max-width: 749px) {
  .c-btn__text-s {
    font-size: 1.6rem;
  }

}

/* c-survey-title */
.c-survey-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  line-height: 1.4666;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 749px) {
  .c-survey-title {
    font-size: 1.8rem;
    line-height: 1.2222;
    letter-spacing: initial;
  }
}

.c-survey-title.--no-center {
  -webkit-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
}

.c-survey-title__number {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  width: 8rem;
  height: 8rem;
  margin-right: 4rem;
  background-color: #d70029;
  font-size: 4.5rem;
  font-weight: bold;
  color: #fff;
}

@media only screen and (max-width: 749px) {
  .c-survey-title__number {
    width: 4rem;
    height: 4rem;
    margin-right: 2rem;
    font-size: 2.5rem;
  }
}

.c-survey-title__number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #d70029;
}

@media only screen and (max-width: 749px) {
  .c-survey-title__number::after {
    width: 0.7rem;
    height: 1rem;
    right: -0.6rem;
  }
}

/* c-select */
.c-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.c-select--select {
  position: relative;
  border: 2px solid #9e9e9e;
  background-color: #fff;
  cursor: pointer;
}

.c-select__input {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.c-select__input-text {
  width: 100%;
  padding: 2.1rem 7rem 2.1rem 2.1rem;
  font-size: 2.1rem;
  line-height: 1.14;
  letter-spacing: 0.05em;
  border: 2px solid #9e9e9e;
  background-color: #fff;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .c-select__input-text {
    padding: 1.8rem 4rem 1.8rem 1.8rem;
    font-size: 1.45rem;
  }
}

.c-select__input-text::placeholder {
  text-align: center;
  color: #999;
}

.c-select__label {
  position: relative;
  width: 100%;
  padding: 2.1rem 7rem 2.1rem 2.1rem;
  font-size: 2.1rem;
  line-height: 1.14;
  letter-spacing: 0.05em;
  text-align: center;
  border: 2px solid #9e9e9e;
  background-color: #fff;
  cursor: pointer;
}

@media only screen and (max-width: 749px) {
  .c-select__label {
    padding: 1.4rem 4rem 1.4rem 1.8rem;
    font-size: 1.45rem;
  }
}

.c-select__item {
  width: 100%;
  padding: 2.1rem 7rem 2.1rem 2.1rem;
  font-size: 2.1rem;
  line-height: 1.14;
  letter-spacing: 0.05em;
  text-align: left; /* center */
  color: inherit;

  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

@media screen and (max-width: 749px) {
  .c-select__item {
    padding: 1.4rem 7rem 1.4rem 1.8rem;
    font-size: 1.8rem;
  }

}

.c-select__item option {
  color: #454545;
  /* 任意の色に変更 */
}

.c-arrow-right {
  position: absolute;
  top: 50%;
  right: 2.1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 2.22rem;
  height: 2.5rem;
}

@media screen and (max-width: 749px) {
  .c-arrow-right {
    right: 1.8rem;
    width: 1.87rem;
    height: 2.1rem;

  }

}

.c-arrow-right::before,
.c-arrow-right::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 2.5rem;
  height: 0.4rem;
  border-radius: 9999px;
  background-color: #454545;
  transform-origin: calc(100% - 2px) 50%;
}

@media screen and (max-width: 749px) {

  .c-arrow-right::before,
  .c-arrow-right::after {
    width: 2.1rem;
  }

}

.c-arrow-right::before {
  transform: rotate(30deg);
}

.c-arrow-right::after {
  transform: rotate(-30deg);
}

.c-arrow-down {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 5.7rem;
  height: 100%;
  background-color: #9e9e9e;
}

.c-arrow-down::before,
.c-arrow-down::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 2px);
  width: 0.4rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% calc(100% - 2px);
}

@media screen and (max-width: 749px) {
  .c-arrow-down::before,
  .c-arrow-down::after {
    height: 1.8rem;
  }
  
}

.c-arrow-down::before {
  transform: translateY(-50%) rotate(30deg);
}

.c-arrow-down::after {
  transform: translateY(-50%) rotate(-30deg);
}


/* :checked */
.c-select__input:checked+.c-select__label::before {
  background-color: #2FB5DE;
  border: 2px solid #fff;
}

@media only screen and (max-width: 749px) {
  .c-select__input:checked+.c-select__label::before {
    border: 1px solid #fff;
  }
}

.c-select__input:checked+.c-select__label::after {
  opacity: 1;
}

.c-select__input:checked~.c-select__label {
  border: 2px solid #2FB5DE;
  background-color: #2FB5DE;
  color: #fff;
}

/*--------------------------------------------------------------------------- */
/* l-inner */
.l-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  padding-left: 40px;
}

@media only screen and (max-width: 749px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/*--------------------------------------------------------------------------- */
/* p-banner */
.p-banner {
  max-width: 110rem;
  width: calc(100% - 8rem);
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 749px) {
  .p-banner {
    max-width: 56rem;
    width: 100%;
  }
}

.p-banner.--thanks {
  max-width: 100rem;
  width: 100%;
}

@media only screen and (max-width: 749px) {
  .p-banner.--thanks {
    max-width: 56rem;
    padding: 0 1rem;
  }
}

.p-banner a:hover {
  opacity: 0.7;
}

/* p-list */
.p-list {
  padding-left: 1.5em;
  list-style: disc;
}

.p-list li {
  font-size: 1.6rem;
  line-height: 1.625;
}

@media only screen and (max-width: 749px) {
  .p-list li {
    font-size: 1.4rem;
    line-height: 1.4285;
  }
}

.p-list li a {
  text-decoration: underline;
}

.p-list li a:hover {
  opacity: 0.7;
}

/* p-sns */
.p-sns {
  width: 100%;
  text-align: center;
}

.p-sns p {
  font-size: 1.4rem;
}

.p-sns__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  margin-top: 1.7rem;
}

@media only screen and (max-width: 749px) {
  .p-sns__wrap {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-top: 1rem;
  }
}

/* p-footer */
.p-footer {
  width: 100%;
  margin-top: auto;
  padding: 3rem;
  background-color: #333;
}

@media only screen and (max-width: 749px) {
  .p-footer {
    padding: 1.5rem 0.2rem;
  }
}

.p-footer__copy {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}

/*--------------------------------------------------------------------------- */
/* p-survey-header */
.p-survey-header {
  width: 100%;
  padding: 5rem 0;
  background-color: #D7F0FF;
}

@media only screen and (max-width: 749px) {
  .p-survey-header {
    padding: 2rem 0 3rem;
  }
}

.p-survey-header__img {
  max-width: 20rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 749px) {
  .p-survey-header__img {
    max-width: 18rem;
  }
}

.p-survey-header__title {
  margin-top: 2.5rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .p-survey-header__title {
    margin-top: 2rem;
    font-size: 2rem;
    line-height: 1.1;
  }
}

/* p-survey-contents */
.p-survey-contents {
  width: 100%;
  padding: 5rem 0 15rem;
}

@media only screen and (max-width: 749px) {
  .p-survey-contents {
    padding: 2.5rem 0 5rem;
  }
}

.p-survey-contents__title {
  margin-top: 6rem;
}

.body--07 .p-survey-contents__title {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media only screen and (max-width: 749px) {
  .p-survey-contents__title {
    margin-top: 2.5rem;
    /* align-items: flex-start; */
  }
}

.p-survey-contents__note {
  margin-top: 3rem;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 749px) {
  .p-survey-contents__note {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}

.p-survey-contents__select {
  margin-top: 3rem;
}

@media only screen and (max-width: 749px) {
  .p-survey-contents__select {
    margin-top: 1.5rem;
  }
}

.p-survey-contents__select.--mt24 {
  margin-top: 2.4rem;
}

@media only screen and (max-width: 749px) {
  .p-survey-contents__select.--mt24 {
    margin-top: 0.8rem;
  }
}

.p-survey-contents__btn {
  /*margin-top: 10.5rem;*/
  margin-top: 5.5rem;
}

@media only screen and (max-width: 749px) {
  .p-survey-contents__btn {
    margin-top: 4rem;
  }
}

/* p-pagination */
.p-pagination {
  /* position: relative; */
  max-width: 45rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}

@media only screen and (max-width: 749px) {
  .p-pagination {
    max-width: 30.5rem;
  }
}

.p-pagination__items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.p-pagination__number span {
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background-color: #b3b3b3;
}

@media only screen and (max-width: 749px) {
  .p-pagination__number span {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.p-pagination__number.is-active span {
  background-color: #2FB5DE;
}

.p-survey-contents__pagination-page {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #666;
}

/* p-select-list */
.p-select-list {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 749px) {
  .p-select-list {
    width: 100%;
  }

}

.p-select-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
}

@media only screen and (max-width: 749px) {
  .p-select-list__items {
    row-gap: 1rem;
  }
}

.p-select-list__item {
  width: 100%;
}

/* --col2 */
.p-select-list__items--02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1rem;
}

@media only screen and (max-width: 749px) {
  .p-select-list__items--02 {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

.p-select-list__items--02 .p-select-list__item {
  width: calc(50% - 1rem);
}

@media only screen and (max-width: 749px) {
  .p-select-list__items--02 .p-select-list__item {
    width: calc(50% - 0.75rem);
  }
}

/* --col3 */
.p-select-list__items--03 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1rem;
}

@media only screen and (max-width: 749px) {
  .p-select-list__items--03 {
    flex-direction: column;
  }
}

.p-select-list__items--03 .p-select-list__item {
  width: calc(33.3333333% - 2rem);
}

@media only screen and (max-width: 749px) {
  .p-select-list__items--03 .p-select-list__item {
    width: 100%;
  }
}


/* p-btn-box */
.p-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 9.5rem;
  -moz-column-gap: 9.5rem;
  column-gap: 9.5rem;
}

@media only screen and (max-width: 749px) {
  .p-btn-box {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

.p-btn-box__item {
  width: 35rem;
}

@media only screen and (max-width: 749px) {
  .p-btn-box__item {
    width: 15rem;
  }
}

.p-btn-box__item--l {
  width: 100%;
}

/*--------------------------------------------------------------------------- */
/* p-finish */
.p-finish {
  padding: 8rem 0;
}

@media only screen and (max-width: 749px) {
  .p-finish {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
}

.p-finish__title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #d70029;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .p-finish__title {
    font-size: 2.1rem;
  }
}

.p-finish__form {
  margin-top: 6rem;
}

@media only screen and (max-width: 749px) {
  .p-finish__form {
    margin-top: 3.6rem;
  }
}

.p-finish__contents {
  margin-top: 8rem;
}

@media only screen and (max-width: 749px) {
  .p-finish__contents {
    margin-top: 4.5rem;
  }
}

.p-finish__contents h2 {
  font-size: 2rem;
  font-weight: normal;
}

@media only screen and (max-width: 749px) {
  .p-finish__contents h2 {
    font-size: 1.8rem;
  }
}

.p-finish__btn {
  max-width: 45rem;
  width: 70%;
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 749px) {
  .p-finish__btn {
    max-width: 25rem;
    margin-top: 3rem;
  }
}

/* p-address-form */
.p-address-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 2rem;
}

.p-address-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 749px) {
  .p-address-form__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
  }
}

.p-address-form__label {
  width: 16%;
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 749px) {
  .p-address-form__label {
    width: 100%;
    font-size: 1.7rem;
  }
}

.p-address-form__input {
  width: 84%;
  font-size: 2rem;
  padding: 1.15rem;
  border: 1px solid #c7c7c7;
  border-radius: 0.5rem;
  background-color: #ededed;
}

@media only screen and (max-width: 749px) {
  .p-address-form__input {
    width: 100%;
    font-size: 1.6rem;
  }
}

/* p-finish-explain */
.p-finish-explain h2 {
  font-size: 2rem;
  font-weight: normal;
}

@media only screen and (max-width: 749px) {
  .p-finish-explain h2 {
    font-size: 1.8rem;
  }
}

.p-finish-explain__list {
  margin-top: 1.5rem;
}

.p-finish-explain__check {
  margin-top: 8rem;
}

@media only screen and (max-width: 749px) {
  .p-finish-explain__check {
    margin-top: 3rem;
  }
}

.p-finish-explain__checkbox {
  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;
  width: 100%;
}

.p-finish-explain__input {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}

.p-finish-explain__label {
  position: relative;
  padding-left: 6.5rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.14;
  letter-spacing: 0.05em;
  cursor: pointer;
}

@media only screen and (max-width: 749px) {
  .p-finish-explain__label {
    padding-left: 4rem;
    font-size: 1.6rem;
  }
}

.p-finish-explain__label::before,
.p-finish-explain__label::after {
  content: "";
  display: block;
  position: absolute;
}

.p-finish-explain__label::before {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border: 1px solid #c7c7c7;
  border-radius: 0.5rem;
  background-color: #ededed;
}

@media only screen and (max-width: 749px) {
  .p-finish-explain__label::before {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.p-finish-explain__label::after {
  top: 50%;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 3rem;
  width: 3rem;
  background-image: url(../img/icon_check-black.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}

@media only screen and (max-width: 749px) {
  .p-finish-explain__label::after {
    left: 0.4rem;
    width: 2rem;
    height: 2rem;
  }
}

.p-finish-explain__label a {
  text-decoration: underline;
}

.p-finish-explain__label a:hover {
  opacity: 0.7;
}

/* :checked */
.p-finish-explain__input:checked+.p-finish-explain__label::after {
  opacity: 1;
}

/*--------------------------------------------------------------------------- */
/* p-thanks */
.p-thanks {
  padding: 8rem 0;
}

@media only screen and (max-width: 749px) {
  .p-thanks {
    padding: 5rem 0;
  }
}

.p-thanks__title {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .p-thanks__title {
    font-size: 2.1rem;
  }
}

.p-thanks__text {
  max-width: 63.1rem;
  width: 100%;
  margin-top: 5.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .p-thanks__text {
    max-width: 33rem;
    margin-top: 2.5rem;
    text-align: left;
  }
}

.p-thanks__text p {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 749px) {
  .p-thanks__text p {
    font-size: 1.6rem;
    letter-spacing: initial;
  }
}

.p-thanks__btn {
  width: 70%;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 749px) {
  .p-thanks__btn {
    width: 100%;
    margin-top: 4rem;
  }
}

.q_none {
  display: none;
}

.c-btn--index {
  border: 4px solid #00BF63;
  padding: 2rem;
}

.c-btn--thanks {
  border: 4px solid #00BF63;
  padding: 2rem;
  background-color: #00BF63;
  color: #fff;
}

.c-btn--thanks::after {
  background-color: #fff;
}

.c-btn--thanks:hover {
  background-color: #fff;
  color: #00BF63;
}

.c-btn--thanks:hover::after {
  background-color: #00BF63;
}

.c-survey-title--option {
  font-size: 2rem;
  display: contents;
}

@media only screen and (max-width: 749px) {
  .c-survey-title--option {
    font-size: 1.32rem;
  }
}

/*--------------------------------------------------------------------------- */
/*--------------------------------------------------------------------------- */
.alert {
  margin: 25px 0;
  text-align: center;
  color: #d70029;
  font-size: 16px;
}

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

/*PCでは無効（改行しない）*/
.sma {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .sma {
    display: block;
  }
}

/*--------------------------------------------------------------------------- */
/*.form-privacy-check
/*--------------------------------------------------------------------------- */
.form-privacy-check {
    margin-bottom: 0.5em;
    font-size: 0.75rem;
    color: #838383;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
}
.form-privacy-check a {
  background-color: transparent;
    color: inherit;
    text-decoration: underline;
}
.form-privacy-check .sp-block{
  display: none;
}

@media only screen and (max-width: 749px) {
  .form-privacy-check {
    font-size: 1.5rem;
  }
  .form-privacy-check .sp-block{
    display: block;
  }
}
/*--------------------------------------------------------------------------- */
/*modal
/*--------------------------------------------------------------------------- */
.modal {
  opacity: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: all 300ms;
}

.modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal__overlay {
  display: flex;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 5%;
  background-color: #333;
}

.modal__container {
  position: relative;
  max-width: 840px;
  background-color: #fff;
}
.modal__container .modal__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  overflow: scroll;
  overscroll-behavior: contain;
  height: 100%;
  padding: 10%;
  line-height: 1.5;
}
.modal__container .modal__content-wrapper h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.modal__container .modal__content-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  font-size: 14px;
}
.modal__container .modal__content-wrapper .text-wrapper h3 {
  font-weight: 700;
}

.modal__close {
  position: absolute;
  top: 2.5%;
  right: 2.5%;
  width: 32px;
  height: 32px;
  border-radius: 100vh;
  background-color: #333;
  cursor: pointer;
}
.modal__close span:nth-child(1),
.modal__close span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background-color: #fff;
}
.modal__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}