img {
  line-height: 0;
  vertical-align: top;
  width: 100%;
  height: auto;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  background: #ffffff;
  color: #37002a;
  /* color:#37002a; */
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro",
    "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
a {
  cursor: pointer;
}

.mincho {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.color-main {
  color: #ef1d88;
}
.color-white {
  color: #ffffff;
}
.color-gray {
  color: #333333;
}

.ffs {
  font-feature-settings: "palt";
}
.indent {
  text-indent: -1em;
  padding-left: 1em;
}
.lh13 {
  line-height: 1.3;
}
#upload-label {
  display: none;
}

.flex{
  display: flex;
}
.flex-ai_b{
  align-items: baseline;
}
.flex-jc_sb{
  justify-content: space-between;
}

/* btn */
.btn {
  width: 335px;
  max-width: 100%;
  height: auto;
  cursor: pointer;
}
.btn._small {
  width: 305px;
}
.btn._disabled {
  pointer-events: none;
  opacity: 0.4;
}

/* checkbox */
.check {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + .check_box::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  padding: 2px;
  margin-right: 10px;
  background-color: #ffffff;
  border-radius: 4px;
}
input[type="checkbox"]:checked + .check_box::before {
  background-image: url("../img/check.png");
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.check_text {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.3;
}

/* radio */
.radio {
  width: 50%;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.radio-text {
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: left;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + .radio-box::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-color: #ffffff;
  box-shadow: 0px 0px 0px 3px #ffffff inset, 0px 0px 0px 1px #cccccc;
  border-radius: 50%;
}
input[type="radio"]:checked + .radio-box::before {
  background-color: #ef2185;
  box-shadow: 0px 0px 0px 3px #ffffff inset, 0px 0px 0px 1px #ef2185;
}

/* select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 1.6rem;
}
select::-ms-expand {
  display: none;
}
select {
  position: relative;
  width: 148px;
  min-width: 148px;
  height: 36px;
  padding-left: 6px;
  line-height: 36px;
  border-radius: 4px;
  border: solid 1px #cccccc;
  background-color: #ffffff;
  background-size: 14px auto;
  background-position: center right 12px;
  background-repeat: no-repeat;
}
select._small {
  width: 88px;
  min-width: 88px;
}
select._large {
  width: 100%;
}
.select {
  display: inline-block;
  position: relative;
}
.select::after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  right: 0px;
  top: 0px;
  border-radius: 0 4px 4px 0;
  background-color: #cccccc;
  background-size: 16px 9px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/arrow_select.png);
}

/* modal */
.modal {
  /* display: none; */
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
}
.modal-bg, .js-modal-bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal-inner {
  position: absolute;
  width: 87%;
  max-width: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 10px;
}
.modal-close, .js-modal-close {
  position: absolute;
  right: 0;
  top: -38px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.modal-flame {
  height: 10px;
  width: auto;
}
.modal-flame img {
  vertical-align: top;
}
.modal-contents {
  padding: 30px 10px;
}

/* wrapper */
.wrapper {
  width: 100%;
  padding: 5px;
}
.wrapper-note {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  font-size: 1.0rem;
  color: #333333;
}
.wrapper-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 15px 40px;
  background-color: #f01e89;
  background-image: url(../img/bg_top.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 16px;
}
.wrapper-container._top {
  padding: 0 0 40px;
  background-image: none;
}
.wrapper-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  height: auto;
  border-radius: 0 0 16px 16px;
  z-index: 100;
  overflow: hidden;
}
.wrapper-inner {
  position: relative;
  z-index: 200;
}
.wrapper-title {
  width: 234px;
  text-align: center;
  margin: 0 auto;
}
.wrapper-title img {
  width: 100%;
}
.wrapper-main {
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.wrapper-border {
  width: 68px;
  border-top: solid 1px #ffffff;
  margin: 5px auto 0;
}
.wrapper-lead {
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* top */
.top {
  width: 100%;
  padding: 0 15px;
}
.top-mv {
  width: 100%;
  height: auto;
}
.top-main {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.top-img {
  margin-right: 24px;
}
.box {
  position: relative;
  width: 200px;
  height: auto;
  background-color: #ffffff;
}
.box._large {
  width: 100%;
}
.box-inner {
  padding: 0 8px;
}
.box-flame {
  width: 100%;
  height: 5px;
}
.box-flame img {
  width: 100%;
  vertical-align: top;
}
.box-label {
  width: 100%;
  border-radius: 4px;
  background-color: #ef208a;
  color: #ffffff;
  text-align: center;
  padding: 6px 0;
}
.box-tablet {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  font-feature-settings: "palt";
}
.box-image {
  width: 46px;
  height: auto;
  margin-right: 6px;
}
.box-pop {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 35px;
  height: auto;
}
.top-link {
  font-size: 1.2rem;
  text-decoration: underline;
  position: relative;
  color: #ffffff;
  cursor: pointer;
}
.top-link::after {
  content: "";
  width: 5px;
  height: 10px;
  display: inline-block;
  margin-left: 8px;
  background-image: url(../img/arrow_small_right_white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5px auto;
}
.period {
  width: 100%;
  /* padding: 8px 0px 8px 16px;
  border: solid 1px #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.2rem; */
}
.period-top {
  position: absolute;
  width: 75px;
  height: auto;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.period-apply {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: #ffd9ee;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  color: #ef208a;
  text-align: center;
  padding: 15px 0;
  margin-right: 8px;
}
.period-apply._dashed {
  background-color: transparent;
  border: dashed 1px #ffd9ee;
  color: #ffd9ee;
}
.period-date {
  display: inline-block;
  width: 74px;
  border-right: solid 1px #ffffff;
  margin-right: 5px;
}
.target {
  width: 100%;
  padding: 14px;
  background-color: #ffffff;
}
.target-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.target-img {
  width: 190px;
  height: auto;
}
.target-confirm {
  font-size: 1.2rem;
  text-decoration: underline;
  white-space: nowrap;
  position: relative;
}
.target-confirm::after {
  content: "";
  width: 5px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
  background-image: url(../img/arrow_right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5px auto;
}

/* changed */
.changed {
  background-color: #ffd440;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  margin: 20px auto 0;
  padding: 20px 12px;
  color: #37002a;
}
.changed-title {
  font-size: 0;
  font-feature-settings: "palt";
}
.changed-label {
  padding: 5px;
  background-color: #fff;
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 4px;
}
.changed a {
  font-size: 1rem;
  color: #37002a;
}

/* main */
.main {
  width: 100%;
  background-color: #fff;
}

/* comment */
.comment {
  width: 335px;
  max-width: 100%;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
}
.comment-item {
  width: 102px;
  height: auto;
  margin-right: 6px;
}

/* history */
.history {
  margin: 14px auto 0;
  width: 335px;
  max-width: 100%;
  border-radius: 4px;
  border: solid 1px #ffffff;
  color: #ffffff;
  text-align: center;
}
.history-item {
  padding: 10px 0;
  font-size: 1.4rem;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.history-item + .history-item {
  border-top: solid 1px #ffffff;
}

/* point */
.point {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin: 20px auto 0;
  text-align: center;
}
.point-total {
  display: inline-block;
  background-color: #fff;
  padding: 4px 0;
  width: 155px;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  color: #ef228b;
  margin-right: 10px;
}
.point-applied {
  display: inline-block;
  border: solid 1px #fff;
  padding: 4px 0;
  width: 155px;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  margin-right: 10px;
}
.point-link {
  color: #fff;
  text-decoration: underline;
  position: relative;
  font-size: 1.2rem;
}
.point-link::after {
  content: "";
  width: 5px;
  height: 10px;
  display: inline-block;
  margin-left: 2px;
  background-image: url(../img/arrow_right_white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5px auto;
}
.overlay {
  /* display: none; */
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-y: auto;

}
.overlay-inner {
  width: 100%;
  max-width: 400px;
  padding: 60px 0px 10px;
  margin: 0 auto;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
}
/* howto */
.step {
  width: 100%;
  padding: 16px;
  background-color: #ffffff;
}
.step-title {
  text-align: center;
}
.step-title img {
  height: 48px;
  width: auto;
}

/* question */
.question {
  width: 100%;
  padding: 40px 15px;
  background-color: #ffffff;
}
.question-title {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ef2185;
}
.question-item._radio {
  display: flex;
  flex-wrap: wrap;
}

/* purchase */
.purchase {
  width: 100%;
  padding: 20px 8px 8px;
  background-color: #ffffff;
}
.purchase-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
.purchase-wrap {
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.purchase-item {
  display: inline-block;
  width: 33%;
  margin-bottom: 36px;
  text-align: center;
}
.purchase-name {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase-img {
  text-align: center;
}
.purchase-img img {
  height: 58px;
  width: auto;
}
.purchase-name {
  margin: 2px auto 8px;
  font-size: 1rem;
  text-align: center;
}

/* store */
.store{
  width: 100%;
  background-color: #ffffff;
  padding: 20px 16px 30px;
}
.store-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
.store-question {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ef2185;
}
.store-input input {
  border-radius: 4px;
  border: solid 1px #cccccc;
  padding: 4px;
  height: 36px;
  font-size: 1.6rem;
  -webkit-appearance: none;
}
.store-input input[type="text"] {
  width: 100%;
  max-width: 460px;
}

/* upload */
.upload {
  width: 100%;
  background-color: #ffffff;
  padding: 15px 15px 36px;
}
.upload-prev {
  width: 100%;
}
.upload-prev img {
  width: 100%;
  height: auto;
}
.upload-items {
}
.upload-items p {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  margin-top: 15px;
  text-indent: -26px;
  padding-left: 26px;
}
.upload-items p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: text-bottom;
  background-image: url(../img/mark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

/* complete */
.compelete {
  width: 100%;
}
.compelete-box {
  width: 100%;
}

/*** form フォームブロック ***/
.form {
  width: 100%;
  padding: 20px 15px 25px;
  background-color: #ffffff;
  margin-bottom: 15px;
}
.form-title {
  font-size: 1.6rem;
  text-align: center;
  color: #ef2185;
  font-weight: bold;
  margin-bottom: 20px;
}
.form-text {
  font-size: 1.2rem;
  text-align: center;
}
.form-attention {
  font-size: 1rem;
  margin-top: 5px;
  color: #666666;
}
.form-req_errmsg,
.form-errmsg {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 6px;
  color: #ff0000;
}
.form-req_errmsg._label {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 6px;
  color: #ffffff;
  background-color: #ff0000;
}

/*** item 各入力項目 ***/

.item {
  width: 100%;
}
.item._ib {
  width: 48%;
  display: inline-block;
}
.item-name {
  font-size: 1.2rem;
  color: #666666;
  font-weight: bold;
  margin-bottom: 8px;
}
.item-required {
  font-size: 1.2rem;
  color: #ef2185;
  font-weight: bold;
}
.item-img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
/* 入力フォームのスタイル */
.item-input {
  color: #222222;
}
.item-input._flex {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
._flex select,
._flex .select {
  width: 33%;
  min-width: 90px;
}
.item-input input {
  border-radius: 4px;
  border: solid 1px #cccccc;
  padding: 4px;
  height: 36px;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

input::placeholder {
  color: #cccccc;
}
.item-input input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 460px;
}
input.error,
select.error {
  background-color: rgba(255, 0, 0, 0.1);
  border: solid 1px #ff0000;
}

.label {
  vertical-align: text-bottom;
  padding: 4px;
  background-color: #ffffff;
  font-size: 1.3rem;
  color: #ef2185;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.info {
  width: 100%;
  color: #666666;
  background-color: #ffffff;
  padding: 20px 15px 30px;
  font-weight: bold;
}
.info-name {
  font-size: 1.6rem;
}
.info-text {
  font-size: 1.2rem;
}

.main-line{
  line-height: 1;
}
.main-line img{
  line-height: 1;
  vertical-align: auto;
}
.main-circle {
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-arrow {
  width: 8px;
  height: auto;
  text-align: center;
}
.main-arrow img {
  width: 100%;
  height: auto;
}

.circle {
  margin: 0 auto;
  position: relative;
  width: 216px;
  height: 216px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #00aeef;
  /* color: #ffffff; */
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.circle-before {
  position: absolute;
  top: 0;
  left: -108px;
  width: 216px;
  height: 216px;
  background: #d9f5ff;
  transform-origin: right 108px;
  z-index: 2;
  transform: rotate(0deg);
}

.circle-after {
  position: absolute;
  top: 0px;
  left: 108px;
  width: 216px;
  height: 216px;
  background: #d9f5ff;
  transform-origin: left 108px;
  z-index: 3;
  transform: rotate(0deg);
}
.circle-after._right {
  background: #00aeef;
}

.circle .circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  padding-top: 52px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
}

.circle-point {
  margin-right: 4px;
  font-size: 3.4rem;
  font-style: italic;
}
.circle-img {
  height: 96px;
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.circle-img img {
  height: 100%;
  width: auto;
}
.circleMini {
  position: relative;
  text-align: center;
  width: 60px;
  height: auto;
}
.circleMini._02,
.circleMini._05{
  width: 75px;
}
.circleMini._07 {
  width: 85px;
}
.circleMini._full {
  cursor: pointer;
}
/*
.circleMini-before {
  position: absolute;
  left: -30px;
  width: 60px;
  height: 60px;
  background: #f78fc4;
  transform-origin: right 30px;
  z-index: 2;
  transform: rotate(0deg);
}

.circleMini-after {
  position: absolute;
  top: 0px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #f78fc4;
  transform-origin: left 30px;
  z-index: 3;
  transform: rotate(0deg);
}
._00 > .circleMini-after._right,
._03 > .circleMini-after._right,
._06 > .circleMini-after._right {
  background: #fed032;
}
._01 > .circleMini-after._right,
._04 > .circleMini-after._right,
._07 > .circleMini-after._right {
  background: #02beec;
}
._02 > .circleMini-after._right,
._05 > .circleMini-after._right {
  background: #acd01a;
}

._full > .circleMini-after {
  transform: rotate(360deg);
  background-color: inherit;
}
._full > .circleMini-before {
  transform: rotate(180deg);
}

.circleMini._07 {
  width: 80px;
  height: 80px;
}
._07 > .circleMini-before {
  position: absolute;
  left: -40px;
  width: 80px;
  height: 80px;
  transform-origin: right 40px;
  z-index: 2;
}

._07 > .circleMini-after {
  position: absolute;
  top: 0px;
  left: 40px;
  width: 80px;
  height: 80px;
  transform-origin: left 40px;
  z-index: 3;
}

.circleMini .circleMini-inner {
  position: absolute;
  width: 48px;
  height: 48px;
  padding-top: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #ef297f;
  border-radius: 50%;
  z-index: 4;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.circleMini._07 .circleMini-inner {
  padding-top: 10px;
  width: 68px;
  height: 68px;
  text-align: center;
}

.circleMini-inner span {
  font-style: italic;
  padding-right: 4px;
} */

/* list */
.list {
  list-style: none;
}
.list-item {
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
  padding: 16px 10px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  cursor: pointer;
  background-image: url(../img/icon_plus.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px auto;
}
