@charset "UTF-8";
body {
  font-size: 1rem;
  font-family: Hiragino Sans, Arial, sans-serif !important;
  margin: 0;
  color: #000000 !important;
  line-height: 1.8;
}

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

#wrapper {
  width: 100%;
  overflow: hidden;
  background: #f4f4f4;
}

.width {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 3px 3px 80px;
  background-color: #fff;
}

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

ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: underline;
  color: #4682b4;
  font-size: 17px;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

p {
  display: block;
  margin: 0 auto;
  font-size: 17px;
}

.bold {
  font-weight: bold;
}

.bottom {
  margin-bottom: 35px;
}

h2 {
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

h2::after {
  content: "";
  display: block;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(240, 154, 132)), to(transparent));
  background: linear-gradient(to right, rgb(240, 154, 132), transparent);
}

/* テキスト位置
===================================== */
.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

/* フォントサイズ
===================================== */
.small {
  font-size: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: right;
  color: #888;
}

.fz13 {
  font-size: 13px;
}

.fz15 {
  font-size: 15px;
}

.fz19 {
  font-size: 19px;
}

.fz21 {
  font-size: 21px;
}

.fz22 {
  font-size: 22px;
}

.fz23 {
  font-size: 23px;
}

.fz25 {
  font-size: 25px;
}

/* カラー
===================================== */
.white {
  color: #fff;
}

.gray {
  color: #888;
}

.pink {
  color: rgb(255, 0, 255);
}

.blue {
  color: rgb(0, 0, 255);
}

.sky-blue {
  color: rgb(102, 163, 224);
}

.red {
  color: rgb(255, 0, 0);
}

.light-red {
  color: rgb(240, 102, 102);
}

.orange {
  color: #ff9900;
}

.purple {
  color: rgb(153, 51, 255);
}

.brown {
  color: rgb(161, 0, 0);
}

.marker_yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff9));
  background: linear-gradient(transparent 60%, #ff9 60%);
}

.marker_green {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #cce8cc));
  background: linear-gradient(transparent 60%, #cce8cc 60%);
}

.marker_pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #facccc));
  background: linear-gradient(transparent 60%, #facccc 0%);
}

.back_yellow {
  background-color: rgb(255, 255, 0);
}

.back_red {
  background-color: rgb(255, 0, 0);
}

/* video
===================================== */
.video {
	line-height: 1;
}

/* 口コミ
===================================== */
.contents-box {
  border: 1px solid #f48d91;
}

.contents-box__title {
  background-color: #f48d91;
  padding: 0.5em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  display: block;
}

.contents-box__body {
  padding: 10px 8px;
}

/* アンケート
===================================== */
.survey {
  line-height: 1.4;
}

.survey-wrapper {
  position: relative;
  padding-bottom: 19vh;
  margin: 0 0 20px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 860px) {
  .survey-wrapper {
    padding-bottom: 70px;
  }
}
.survey-wrapper::after {
  border-width: 180px 50vw 0 50vw;
  border-color: #FFF0F5 transparent transparent transparent;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  z-index: 0;
  content: "";
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media screen and (max-width: 860px) {
  .survey-wrapper::after {
    border-width: 80px 50vw 0 50vw;
  }
}
.survey-box {
  background-color: #FFF0F5;
  padding: 10px;
  margin: 0 0 20px;
  position: relative;
}

.survey-box::after {
  font-size: 27px;
  content: "次へ";
  font-weight: bold;
  text-align: center;
  bottom: -80px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  display: block;
  position: absolute;
  z-index: 1;
}

@media screen and (max-width: 860px) {
  .survey-box::after {
    font-size: 18px;
    bottom: -40px;
  }
}
.survey-progress {
  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;
}

.survey-progress__item {
  font-size: 20px;
  font-weight: bold;
  margin: 0 4px 20px 4px;
  background: #fff;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.current {
  color: #fff;
  background: #5e200d;
}

.survey-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/******* survey-Q1 ********/
.survey-Q1__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.survey-Q1__item {
  cursor: pointer;
  position: relative;
}

.survey-Q1__item::before,
.survey-Q1__item::after {
  content: "";
  width: 10%;
  height: 10%;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 5.4%;
  left: 6.2%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: solid 2px #ffffff;
  border-radius: 50%;
}

.survey-Q1__item::before {
  z-index: 5;
}

.survey-Q1__item::after {
  z-index: 10;
  border-color: #000;
  background-color: #000;
  background-image: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20401.8%20401.8%22%20style%3D%22enable-background%3Anew%200%200%20401.8%20401.8%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FFFFFF%3B%7D%3C%2Fstyle%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M300.6%2C114.6l-18.7-12.8c-5.2-3.5-12.3-2.1-15.8%2C3l-92%2C135.7l-42.3-42.3c-4.4-4.4-11.6-4.4-16%2C0l-16.1%2C16.1%20c-4.4%2C4.4-4.4%2C11.6%2C0%2C16.1l65%2C65c3.7%2C3.7%2C9.3%2C6.4%2C14.5%2C6.4s10.3-3.2%2C13.7-8.1l110.7-163.2C307.1%2C125.2%2C305.7%2C118.2%2C300.6%2C114.6z%22%2F%3E%3C%2Fsvg%3E);
  opacity: 0;
}

@media screen and (max-width: 480px) {
  .survey-Q1__item::before,
  .survey-Q1__item::after {
    width: 10%;
    height: 10%;
  }
}
.survey-Q1__item.is-active::after {
  opacity: 1;
}

.survey-Q1__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.survey-Q1__img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}

.survey-Q1__img.is-active::before {
  opacity: 1;
}

/******* survey-checkbox ********/
.survey-checkbox__items {
  margin-bottom: 10px;
}

.survey-checkbox__item {
  margin-bottom: 10px;
}

.survey-checkbox__checkbox {
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}

.survey-checkbox__checkbox input[type=checkbox] {
  border: 2px solid #ccc;
  width: 20px;
  height: 20px;
  background: #fff;
  margin: 0.3em 10px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.survey-checkbox__checkbox input[type=checkbox]:checked::after {
  width: 18px;
  height: 10px;
  top: 0;
  left: 0;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  content: "";
}/*# sourceMappingURL=style.css.map */