@charset "UTF-8";
/************* SETTING *************/
/************* LAYOUT *************/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  background: #f09f9f;
  background-color: #f09f9f;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #2b2f2c;
  font-size: 1.6rem;
}

#container {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

/************* TEXT *************/
h1, h2, h3, h4, h5, h6 {
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

a {
  color: #001b6f;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a[target=_blank]::after {
  content: "";
  background-image: url("../images/icon_blanklink.svg");
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: -0.25rem;
  background-size: contain;
  vertical-align: middle;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 680px) {
  .pc-none {
    display: inline-block;
  }
}

.sp-none {
  display: inline-block;
}
@media screen and (max-width: 680px) {
  .sp-none {
    display: none;
  }
}

.ta-center {
  text-align: center;
}

.fz-large {
  font-size: 2rem;
}

.fz-small {
  font-size: 1.2rem;
}

.b {
  font-weight: bold;
}

p {
  margin-bottom: 1.5rem;
}

.caption {
  font-size: 1.1rem;
  line-height: 1.25;
  text-align: left;
  margin: 0.5rem 0;
}
.caption > span {
  display: block;
  margin: 0.25rem 0;
}
.caption > span:before {
  display: inline-block;
  content: "※";
  padding-right: 0.5rem;
}
.caption > span + span {
  margin-top: -0.25rem;
}

/************* MARGIN PADDING *************/
.pd {
  padding: 20px !important;
}
@media screen and (max-width: 680px) {
  .pd {
    padding: 15px !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/************* BORDER *************/
hr {
  height: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 670px;
  margin: 30px auto;
  border-top: 8px solid #f4caca;
}

/************* FLEX *************/
.column-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.column-2 div {
  position: relative;
}
.column-2 .column-item {
  width: 49%;
}
.column-2 .column-item::last-child {
  margin-right: 0;
}
.column-2 .column-item-ratio3 {
  width: 30%;
}
.column-2 .column-item-ratio3 + div {
  width: 70%;
}

.column-3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.column-3 div {
  position: relative;
}
.column-3 .column-item {
  width: 32%;
  padding-left: 15px;
}
.column-3 .column-item:first-child {
  padding-left: 0;
}
.column-3 .column-item:last-child {
  margin-right: 0;
}
.column-3 .column-item .btn {
  width: 100%;
}
.column-3 .label {
  margin-left: 0.25rem;
}

/************* FORM *************/
form*:valid {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
          box-shadow: 0 0 0 1000px #fff inset !important;
}
form button:valid,
form input[type=button]:valid,
form textarea:valid {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

*:-moz-placeholder-shown {
  background-color: #fffeed !important;
  box-shadow: 0 0 0 1000px #fffeed inset !important;
}

*:-ms-input-placeholder {
  background-color: #fffeed !important;
  box-shadow: 0 0 0 1000px #fffeed inset !important;
}

*:placeholder-shown {
  background-color: #fffeed !important;
  -webkit-box-shadow: 0 0 0 1000px #fffeed inset !important;
          box-shadow: 0 0 0 1000px #fffeed inset !important;
}

*:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
          box-shadow: 0 0 0 1000px #fff inset !important;
}

.selectbox {
  position: relative;
}
.selectbox::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 40%;
  border-bottom: 2px solid #f09f9f;
  border-right: 2px solid #f09f9f;
  -webkit-transform: rotate(45deg) translateY(-30%);
          transform: rotate(45deg) translateY(-30%);
}

.q-group {
  display: block;
}
.q-group label {
  display: inline-block;
  margin-right: 1rem;
  min-width: auto;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

input + label {
  display: inline-block;
  min-width: 49%;
  vertical-align: top;
  padding: 0.8rem 1rem 0 4rem;
  margin: 0.5rem 0 0;
  cursor: pointer;
  position: relative;
  line-height: 30px;
}
input + label:before {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid #ddd;
  background-color: #fffeed;
}

input[type=radio] + label:before {
  top: 8px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 30px;
}

input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #fffeed;
}

input[type=radio]:checked + label::before,
input[type=checkbox]:checked + label::before {
  border-color: #36d1c7;
  background-color: #fff;
}

input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  display: block;
  top: 10px;
  left: 8px;
  width: 14px;
  height: 22px;
  border-right: 6px solid #36d1c7;
  border-bottom: 6px solid #36d1c7;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  display: block;
  top: 14px;
  left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 11px;
  background-color: #36d1c7;
}

input[type=checkbox]:checked + label,
input[type=radio]:checked + label {
  color: #36d1c7;
}

input {
  vertical-align: middle;
}

select,
input,
input[type=date],
input[type=text],
input[type=address],
input[type=tel],
input[type=number],
input[type=button],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select,
input,
input[type=date],
input[type=text],
input[type=address],
input[type=tel],
input[type=number],
textarea {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
  font-size: 1.6rem;
}
select::-webkit-input-placeholder, input::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=address]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
  width: 80%;
}
select::-moz-placeholder, input::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=address]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
  width: 80%;
}
select:-ms-input-placeholder, input:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=address]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
  width: 80%;
}
select::-ms-input-placeholder, input::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=address]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ccc;
  width: 80%;
}
select::placeholder,
input::placeholder,
input[type=date]::placeholder,
input[type=text]::placeholder,
input[type=address]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #ccc;
  width: 80%;
}
select:focus,
input:focus,
input[type=date]:focus,
input[type=text]:focus,
input[type=address]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  outline: 0;
  -webkit-box-shadow: inset 0 0 1px 2px #36d1c7;
          box-shadow: inset 0 0 1px 2px #36d1c7;
}

select {
  color: #2b2f2c;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  background-color: #fffeed !important;
  -webkit-box-shadow: 0 0 0 1000px #fffeed inset !important;
          box-shadow: 0 0 0 1000px #fffeed inset !important;
}
select optopn {
  width: 75%;
}
select option[disabled] {
  color: #ccc;
}
select option[selected] {
  color: #36d1c7;
}
select:valid {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
          box-shadow: 0 0 0 1000px #fff inset !important;
}

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

textarea {
  height: 12rem;
}

input[type=text].input_err {
  border: 1px solid #c44;
  background-color: #fdd;
}
input[type=text].input_err::-webkit-input-placeholder {
  color: #c44;
}
input[type=text].input_err::-moz-placeholder {
  color: #c44;
}
input[type=text].input_err:-ms-input-placeholder {
  color: #c44;
}
input[type=text].input_err::-ms-input-placeholder {
  color: #c44;
}
input[type=text].input_err::placeholder {
  color: #c44;
}

label + input,
input + input {
  display: inline-block;
  margin-top: 1rem;
}

button {
  margin: 0 auto;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button:hover, button:active, button:focus {
  outline: none;
}
button::-moz-focus-inner {
  border: none;
}
button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input#other-text {
  display: inline-block;
  margin-top: 0.75rem;
  width: 49%;
}
input#other-text[disabled] {
  background: #cccccc;
  cursor: default;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input#other-text .disabled {
  background: #ccc;
  cursor: default;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checked-view-item {
  display: none;
}

input.checked-view:checked ~ .checked-view-item {
  display: block;
  margin-top: 1rem;
  -webkit-animation: fadein 1s;
          animation: fadein 1s;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
li .column-2 .column-item h4 {
  margin-top: 0;
}
li .column-2 + .column-2 {
  margin-top: 2rem;
}

.tel-number,
.p-code {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tel-number .column-item,
.p-code .column-item {
  position: relative;
  margin-top: 0;
}
.tel-number .column-item::before,
.p-code .column-item::before {
  position: absolute;
  content: "−";
  top: 30%;
  left: 0.5rem;
}
.tel-number .column-item:first-child::before,
.p-code .column-item:first-child::before {
  content: "";
  margin-right: 0;
}

.tel-number .column-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 2rem;
}
.tel-number .column-item:first-child {
  padding-left: 0;
}

.p-code .column-item {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  padding-left: 2rem;
}
.p-code .column-item:first-child {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding-left: 0;
}

#agree + label {
  min-width: auto;
}

.reset,
.return {
  display: inline-block;
  width: auto;
  height: 40px;
  font-size: 1.4rem;
  text-align: center;
  white-space: nowrap;
  border: none;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  color: #FFFFFF;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.reset:hover, .reset:active,
.return:hover,
.return:active {
  opacity: 0.7;
}
.reset:hover, .reset:active, .reset:focus,
.return:hover,
.return:active,
.return:focus {
  outline: none;
}

.return {
  position: relative;
  padding-left: 1.5rem;
  line-height: 40px;
}
.return::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
  border-width: 8px 6px;
  border-right-color: currentColor;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#submit-top,
#submit {
  display: block;
  width: 100%;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  height: 80px;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  background: #36d1c7 !important;
  background-color: #36d1c7 !important;
  border: none;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}
#submit-top::before,
#submit::before {
  content: "";
  color: #FFFFFF;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 8px;
  border-left-color: currentColor;
  border-right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
}
#submit-top[disabled],
#submit[disabled] {
  background: #ccc !important;
  background-color: #ccc !important;
  cursor: default;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#submit-top[disabled]::before,
#submit[disabled]::before {
  color: #eee;
}
#submit-top:hover,
#submit:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/************* CONTENTS WIDTH *************/
#header,
#contents,
#footer {
  width: 100%;
  margin: 0;
}
#header .color,
#contents .color,
#footer .color {
  background: #FFFFFF;
  background-color: #FFFFFF;
}
#header .logo,
#header .btn-wrap,
#header .inner,
#contents .logo,
#contents .btn-wrap,
#contents .inner,
#footer .logo,
#footer .btn-wrap,
#footer .inner {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  #header .logo,
  #header .btn-wrap,
  #header .inner,
  #contents .logo,
  #contents .btn-wrap,
  #contents .inner,
  #footer .logo,
  #footer .btn-wrap,
  #footer .inner {
    max-width: 100%;
  }
}
#header .btn-wrap,
#contents .btn-wrap,
#footer .btn-wrap {
  position: static;
  z-index: 1;
}
@media screen and (max-width: 680px) {
  #header .btn-wrap,
  #contents .btn-wrap,
  #footer .btn-wrap {
    margin-top: 15px;
    max-width: 95%;
  }
}

#footer {
  z-index: 0;
}

/************* HEADER *************/
#header {
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  height: 50px;
  max-height: 50px;
  background: #FFFFFF;
  background-color: #FFFFFF;
}
@media screen and (max-width: 680px) {
  #header {
    height: 40px;
    max-height: 40px;
  }
}
#header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  padding: 5px 10px 0;
  overflow: hidden;
}
#header .logo img {
  height: 40px;
  width: auto;
  max-width: 760px;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 680px) {
  #header .logo img {
    height: 30px;
  }
}
#header .logo .collabo {
  display: inline-block;
}
#header .logo .collabo::after {
  display: inline-block;
  content: "";
  background: top center/contain url("../images/times.svg") no-repeat;
  height: 25px;
  width: 15px;
  margin: -3px 10px;
}
@media screen and (max-width: 680px) {
  #header .logo .collabo::after {
    background: top 5px center/contain url("../images/times.svg") no-repeat;
    width: 20px;
  }
}

/************* CONTENTS *************/
#contents {
  /*      MAIN VISUAL     */
  /*      PRESENT AREA     */
  /*      QUESTION AREA     */
}
#contents .text-area {
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  border-bottom: 8px solid #f4caca;
}
#contents .border {
  border-right: 8px solid #f4caca;
  border-left: 8px solid #f4caca;
}
@media screen and (max-width: 680px) {
  #contents .border {
    border: none;
  }
}
#contents .headline {
  border-radius: 0;
  padding: 15px 0;
  text-align: center;
  color: #001b6f;
  background: #f4caca;
}
#contents .title-area {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
}
@media screen and (max-width: 680px) {
  #contents .title-area {
    padding-bottom: 15px;
  }
}
#contents .title-area h1, #contents .title-area h2 {
  color: #FFFFFF;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  line-height: 1.25;
  background: right top 20px/20% url("../images/star-right.png") no-repeat, left bottom 30px/20% url("../images/star-left.png") no-repeat;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1, #contents .title-area h2 {
    max-width: 100%;
  }
}
#contents .title-area h1 .title, #contents .title-area h2 .title {
  margin: 0 auto;
  white-space: nowrap;
  text-align: center;
  color: #fdff00;
}
#contents .title-area h1 .title::before, #contents .title-area h1 .title::after, #contents .title-area h2 .title::before, #contents .title-area h2 .title::after {
  content: "";
  display: block;
}
#contents .title-area h1 .title::after, #contents .title-area h2 .title::after {
  width: 105%;
  height: 15px;
  margin: 0 auto 0 -4%;
  background: left top/200% url("../images/bg-stripe.svg") no-repeat;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .title::after, #contents .title-area h2 .title::after {
    width: 95%;
    margin-left: 0;
  }
}
#contents .title-area h1 .title span, #contents .title-area h2 .title span {
  display: block;
}
#contents .title-area h1 > .bg, #contents .title-area h2 > .bg {
  text-align: center;
  font-size: 1rem !important;
  margin-top: 10px;
}
#contents .title-area h1 > .bg > span, #contents .title-area h2 > .bg > span {
  display: inline-block;
  font-size: 3rem;
  color: #f09f9f;
  background: #FFFFFF;
  padding: 5px 15px;
  border-radius: 50px;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 > .bg > span, #contents .title-area h2 > .bg > span {
    font-size: 2.5rem;
  }
}
#contents .title-area h1 .sub-title, #contents .title-area h2 .sub-title {
  margin: 0 auto;
  max-width: 80%;
  color: #001b6f;
  font-size: 1.8rem;
  letter-spacing: 0.25rem;
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .sub-title, #contents .title-area h2 .sub-title {
    font-size: 1.4rem;
    max-width: 90%;
    padding-left: 20px;
  }
}
#contents .title-area h1 .sub-title span, #contents .title-area h2 .sub-title span {
  font-size: 180%;
  color: #FFFFFF;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .sub-title span, #contents .title-area h2 .sub-title span {
    font-size: 160%;
  }
}
#contents .title-area h1 .sub-title div, #contents .title-area h2 .sub-title div {
  white-space: nowrap;
}
#contents .title-area h1 .sub-title div:first-child, #contents .title-area h2 .sub-title div:first-child {
  margin-right: auto;
}
#contents .title-area h1 .sub-title div:last-child, #contents .title-area h2 .sub-title div:last-child {
  margin-left: auto;
}
#contents .title-area h1 .sub-title::before, #contents .title-area h2 .sub-title::before {
  content: "";
  display: block;
  position: absolute;
  top: -17px;
  left: -20px;
  height: 18px;
  width: 50px;
  background: top left/contain url("../images/waa.svg") no-repeat;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .sub-title::before, #contents .title-area h2 .sub-title::before {
    top: -15px;
    left: -10px;
    height: 15px;
    width: 30px;
  }
}
#contents .title-area h1 .sub-title::after, #contents .title-area h2 .sub-title::after {
  content: "";
  display: block;
  width: 120%;
  height: 30px;
  margin: 0 auto;
  background: center/100% url("../images/bg-fukidashi.svg") no-repeat;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .sub-title::after, #contents .title-area h2 .sub-title::after {
    height: 20px;
  }
}
#contents .title-area h1 .title {
  font-size: 12rem;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .title {
    font-size: 7rem;
  }
}
#contents .title-area h1 .title span {
  font-size: 8rem;
}
@media screen and (max-width: 680px) {
  #contents .title-area h1 .title span {
    font-size: 5rem;
  }
}
#contents .title-area h2 .title {
  font-size: 8rem;
}
@media screen and (max-width: 680px) {
  #contents .title-area h2 .title {
    font-size: 4.5rem;
    margin-left: 1.5%;
  }
}
#contents .title-area h2 .title span {
  font-size: 5rem;
  line-height: 1;
  padding: 10px 0;
}
#contents .present-area {
  margin: 0 auto;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 680px) {
  #contents .present-area {
    padding: 0 15px 15px;
  }
}
#contents .present-area .present-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 680px) {
  #contents .present-area .present-item {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
#contents .present-area .present-item + .present-item {
  margin-top: 30px;
}
#contents .present-area .present-item.bg {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 680px) {
  #contents .present-area .present-item.bg {
    padding: 30px 15px 15px;
  }
}
#contents .present-area .present-image {
  margin: 0 auto 20px;
  max-width: 560px;
  overflow: hidden;
}
#contents .present-area .present-image img {
  width: 100%;
  height: auto;
  max-width: 560px;
  max-height: 400px;
  min-height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (max-width: 680px) {
  #contents .present-area .present-image img {
    min-height: 200px;
  }
}
#contents .present-area .badge {
  padding: 10px;
  display: inline-block;
  position: absolute;
  left: -10px;
  top: -10px;
  height: 80px;
  line-height: 80px;
  border-radius: 80px;
  background: #36d1c7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #contents .present-area .badge {
    top: -25px;
  }
}
#contents .present-area .badge h3 {
  text-align: center;
  margin: 0;
  line-height: 80px;
  color: #FFFFFF;
  z-index: 999;
  white-space: nowrap;
  height: 60px;
  width: 60px;
  position: relative;
  font-size: 3rem;
}
#contents .present-area .badge h3 span {
  line-height: 1;
  font-size: 1.5rem;
  display: block;
  position: absolute;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#contents .present-area .badge h3::after {
  content: "名";
  display: inline-block;
  font-size: 1.5rem;
}
#contents .present-area .present-title {
  max-width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
#contents .present-area .present-title h3 {
  margin-bottom: 1rem;
  font-size: 125%;
  color: #001b6f;
  position: relative;
  display: inline-block;
  padding: 0 10px 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 1rem;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #fdff00));
  background-image: linear-gradient(transparent 50%, #fdff00 0%);
}
#contents .present-area.after::after {
  content: "プレゼントを選ぶ";
  text-align: center;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  font-size: 3rem;
  line-height: 100px;
  color: #FFFFFF;
  display: block;
  background-color: #f09f9f;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 100%;
  height: 130px;
  position: absolute;
  bottom: -130px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 680px) {
  #contents .present-area.after::after {
    font-size: 2rem;
    height: 100px;
    line-height: 60px;
    bottom: -99px;
  }
}
#contents .present-area + .title-area {
  margin-top: -30px;
}
@media screen and (max-width: 680px) {
  #contents .present-area + .title-area {
    margin-top: -50px;
  }
}
#contents #question-area {
  padding-top: 130px;
}
@media screen and (max-width: 680px) {
  #contents #question-area {
    padding-top: 80px;
  }
}
#contents #question-area .question {
  padding: 20px 20px 40px 60px;
  counter-reset: number 0;
}
@media screen and (max-width: 680px) {
  #contents #question-area .question {
    padding-left: 50px;
  }
}
#contents #question-area .question li {
  display: block;
}
#contents #question-area .question li h4 {
  font-size: 1.3rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: normal;
  color: #001b6f;
}
#contents #question-area .question .required {
  position: relative;
}
#contents #question-area .question .required:after {
  content: "＼必須／";
  font-size: 1.2rem;
  position: absolute;
  left: -53px;
  top: -24px;
  color: #f09f9f;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  display: block;
}
@media screen and (max-width: 680px) {
  #contents #question-area .question .required:after {
    left: -48px;
    top: -22px;
  }
}
#contents #question-area .question .q-text {
  position: relative;
  color: #001b6f;
  font-weight: 600 !important;
  font-weight: bold;
  margin: 3rem 0 1.5rem;
}
@media screen and (max-width: 680px) {
  #contents #question-area .question .q-text {
    font-size: 1.6rem;
  }
}
#contents #question-area .question .q-text:first-child {
  margin-top: 15px;
}
#contents #question-area .question .q-text:before {
  counter-increment: number 1;
  content: "Q" counter(number);
  display: inline-block;
  position: absolute;
  top: -8px;
  left: -50px;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  border-radius: 40px;
  background: #f09f9f;
  color: #FFFFFF;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 680px) {
  #contents #question-area .question .q-text:before {
    top: -4px;
    left: -42px;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    line-height: 36px;
  }
}
#contents #question-area .question .q-text > span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400 !important;
  font-weight: normal !important;
  padding: 2px 8px;
  margin-left: 1rem;
  border-radius: 40px;
  border: 1px solid #fdf8f8;
  border-color: #001b6f;
  line-height: 16px;
  height: 22px;
}
#contents #question-area .question + .question {
  margin-top: -8px;
  border-top: 4px dashed #FFFFFF;
  border-radius: 0 0 10px 10px !important;
  position: relative;
}
#contents #question-area .question + .question::after {
  content: "+";
  font-size: 6rem;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #36d1c7;
  background: #FFFFFF;
  height: 60px;
  width: 60px;
  border-radius: 60px;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 680px) {
  #contents #question-area .question + .question::after {
    top: -25px;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    font-size: 4rem;
  }
}
#contents #question-area #qa-present .question,
#contents #question-area #qa-check .question {
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-present .question,
  #contents #question-area #qa-check .question {
    padding: 20px 15px;
  }
}
#contents #question-area #qa-present .question .required::after,
#contents #question-area #qa-check .question .required::after {
  display: none;
}
#contents #question-area #qa-present .question .q-text:first-child,
#contents #question-area #qa-check .question .q-text:first-child {
  margin-top: 0;
}
#contents #question-area #qa-present .question .q-text::before,
#contents #question-area #qa-check .question .q-text::before {
  display: none;
}
#contents #question-area #qa-present .question label,
#contents #question-area #qa-check .question label {
  padding-bottom: 12px;
  background: #FFFFFF;
  width: 80%;
  border-radius: 5px;
  font-size: 1.8rem;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-present .question label,
  #contents #question-area #qa-check .question label {
    padding-top: 10px;
    width: 100%;
    font-size: 1.6rem;
  }
}
#contents #question-area #qa-present .question input + label,
#contents #question-area #qa-check .question input + label {
  padding: 1rem 1rem 1rem 5rem;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-present .question input + label,
  #contents #question-area #qa-check .question input + label {
    padding: 1rem 0.5rem 1rem 4.5rem;
  }
}
#contents #question-area #qa-present .question .caption,
#contents #question-area #qa-check .question .caption {
  width: 80%;
  margin: 1rem auto 0;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-present .question .caption,
  #contents #question-area #qa-check .question .caption {
    width: 100%;
  }
}
#contents #question-area #qa-present {
  padding: 30px 0;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-present {
    padding: 30px 20px 30px;
  }
}
#contents #question-area #qa-present .question {
  background: #d5f4f2;
}
#contents #question-area #qa-present .question label {
  border: 2px solid #36d1c7;
}
#contents #question-area #qa-present .question input[type=radio] + label:before {
  top: 10px;
  left: 10px;
}
#contents #question-area #qa-present .question input[type=radio]:checked + label:after {
  top: 16px;
  left: 16px;
}
#contents #question-area #qa-present .question label {
  border: 2px solid #36d1c7;
}
#contents #question-area #qa-present .question input[type=checkbox] + label:before {
  top: 12px;
  left: 10px;
}
#contents #question-area #qa-present .question input[type=checkbox]:checked + label:after {
  top: 10px;
  left: 16px;
}
#contents #question-area #qa-client {
  background: top right/140% url("../images/bg-star.svg") no-repeat, top 30% left/140% url("../images/bg-star.svg") no-repeat, top 60% right/140% url("../images/bg-star.svg") no-repeat, top 90% left/140% url("../images/bg-star.svg") no-repeat;
}
#contents #question-area #qa-client.border {
  border-top: 8px solid #f4caca;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-client.border {
    border: none;
    border-radius: 0;
  }
}
#contents #question-area #qa-basic {
  background: #fdf8f8;
}
#contents #question-area #qa-information h1, #contents #question-area #qa-information h2, #contents #question-area #qa-information h3, #contents #question-area #qa-information h4, #contents #question-area #qa-information h5, #contents #question-area #qa-information h6 {
  color: #001b6f;
}
#contents #question-area #qa-information a {
  color: #36d1c7;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
#contents #question-area #qa-information .scroll-area {
  width: 100%;
  height: 15rem;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  overflow-y: scroll;
  font-size: 85%;
  border: 1px solid #ddd;
  border-radius: 4px;
}
#contents #question-area #qa-information .scroll-area ul, #contents #question-area #qa-information .scroll-area ol {
  line-height: 1.5;
  padding-left: 2rem;
}
#contents #question-area #qa-information .scroll-area ul {
  margin: 0;
  list-style: disc;
}
#contents #question-area #qa-information .scroll-area ul li {
  margin-bottom: 0.25rem;
}
#contents #question-area #qa-information .scroll-area ol {
  list-style-type: decimal;
}
#contents #question-area #qa-information .scroll-area ol li {
  margin-top: 0.25rem;
}
#contents #question-area #qa-information .scroll-area h3, #contents #question-area #qa-information .scroll-area h4, #contents #question-area #qa-information .scroll-area h5, #contents #question-area #qa-information .scroll-area h6 {
  margin: 1rem 0;
}
#contents #question-area #qa-information .scroll-area h3, #contents #question-area #qa-information .scroll-area h4 {
  font-size: 1.6rem;
}
#contents #question-area #qa-information .scroll-area h5, #contents #question-area #qa-information .scroll-area h6 {
  font-size: 1.4rem;
}
#contents #question-area #qa-information .pd h5 {
  margin-bottom: 0;
}
#contents #question-area #qa-check {
  padding: 0 0 30px 0;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-check {
    padding: 0 30px 10px;
  }
}
#contents #question-area #qa-check .question {
  border-radius: 0 0 10px 10px;
  background: #f4caca;
}
@media screen and (max-width: 680px) {
  #contents #question-area #qa-check .question {
    border-radius: 10px;
    padding: 20px 25px;
  }
}
#contents #question-area #qa-check .question label {
  border: 2px solid #f09f9f;
}
#contents #question-area #qa-check .question input[type=checkbox] + label:before {
  top: 12px;
  left: 10px;
}
#contents #question-area #qa-check .question input[type=checkbox]:checked + label:after {
  top: 10px;
  left: 16px;
}
#contents #question-area .little-after {
  position: relative;
}
#contents #question-area .little-after::after {
  content: "";
  background: top center/contain url("../images/little-after.svg") no-repeat;
  display: inline-block;
  width: 100px;
  height: 75px;
  position: absolute;
  bottom: 30%;
  left: -50px;
  background-size: contain;
}
@media screen and (max-width: 680px) {
  #contents #question-area .little-after::after {
    width: 60px;
    height: 50px;
    bottom: 28%;
    left: -5px;
    z-index: 999;
  }
}

/************* FOOTER *************/
#footer {
  position: relative;
  background: #FFFFFF center top/cover url("../images/bg-footer.svg") no-repeat;
  width: 100%;
  padding-top: 240px;
  margin-top: 0;
}
@media screen and (max-width: 680px) {
  #footer {
    padding-top: 220px;
  }
}
#footer .footer-link {
  position: relative;
  display: block;
  margin-top: -2px;
}
#footer .footer-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 30px;
}
@media screen and (max-width: 680px) {
  #footer .footer-link ul {
    padding-bottom: 15px;
  }
}
#footer .footer-link ul li {
  display: inline-block;
  border-right: 1px solid #f09f9f;
  border-left: 1px solid #f09f9f;
  padding: 0 2rem;
  margin: 1rem 0;
  margin-left: -1px;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 680px) {
  #footer .footer-link ul li {
    margin: 0.5rem 0;
  }
}
#footer .footer-link ul li + li {
  margin-left: -1px;
}
#footer .footer-link a {
  text-decoration: none;
  color: #001b6f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#footer .footer-link a[target=_blank]::after {
  background-image: none;
  width: 0;
  height: 0;
  margin: 0;
}
#footer .footer-link a:hover {
  opacity: 0.7;
}
#footer .copyright {
  display: block;
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  background: #f09f9f;
  color: #FFFFFF;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1.4rem;
}

.go-to-top {
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 240px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #f09f9f center center/contain url("../images/go-to-top.svg") no-repeat;
  z-index: 999;
}
@media screen and (max-width: 680px) {
  .go-to-top {
    width: 60px;
    height: 60px;
    bottom: 220px;
  }
}
.go-to-top a {
  height: 100%;
  width: 100%;
  display: block;
}

.confirm #contents .other,
.closed #contents .other,
.complete #contents .other {
  color: #FFFFFF;
  padding: 0 0 30px;
  width: 100%;
}
.confirm #contents .other h1, .confirm #contents .other h2, .confirm #contents .other h3, .confirm #contents .other h4, .confirm #contents .other h5, .confirm #contents .other h6,
.closed #contents .other h1,
.closed #contents .other h2,
.closed #contents .other h3,
.closed #contents .other h4,
.closed #contents .other h5,
.closed #contents .other h6,
.complete #contents .other h1,
.complete #contents .other h2,
.complete #contents .other h3,
.complete #contents .other h4,
.complete #contents .other h5,
.complete #contents .other h6 {
  color: #001b6f;
  margin: 2rem 0 1rem;
  text-align: center;
}
.confirm #contents .other h1:first-child, .confirm #contents .other h2:first-child, .confirm #contents .other h3:first-child, .confirm #contents .other h4:first-child, .confirm #contents .other h5:first-child, .confirm #contents .other h6:first-child,
.closed #contents .other h1:first-child,
.closed #contents .other h2:first-child,
.closed #contents .other h3:first-child,
.closed #contents .other h4:first-child,
.closed #contents .other h5:first-child,
.closed #contents .other h6:first-child,
.complete #contents .other h1:first-child,
.complete #contents .other h2:first-child,
.complete #contents .other h3:first-child,
.complete #contents .other h4:first-child,
.complete #contents .other h5:first-child,
.complete #contents .other h6:first-child {
  margin-top: 0;
}
.confirm #contents .other.border,
.closed #contents .other.border,
.complete #contents .other.border {
  border: 8px solid #f4caca;
  border-radius: 10px;
}
@media screen and (max-width: 680px) {
  .confirm #contents .other.border,
  .closed #contents .other.border,
  .complete #contents .other.border {
    border-right: none;
    border-left: none;
    border-radius: 0;
  }
}
.confirm #contents .other .headline:first-child,
.closed #contents .other .headline:first-child,
.complete #contents .other .headline:first-child {
  margin-top: -8px;
}
.confirm #contents .other p,
.closed #contents .other p,
.complete #contents .other p {
  padding: 0 15px;
}
.confirm #contents .title-area h1 .title, .confirm #contents .title-area h2 .title,
.closed #contents .title-area h1 .title,
.closed #contents .title-area h2 .title,
.complete #contents .title-area h1 .title,
.complete #contents .title-area h2 .title {
  padding: 10px 0;
  font-size: 5rem;
}
@media screen and (max-width: 680px) {
  .confirm #contents .title-area h1 .title, .confirm #contents .title-area h2 .title,
  .closed #contents .title-area h1 .title,
  .closed #contents .title-area h2 .title,
  .complete #contents .title-area h1 .title,
  .complete #contents .title-area h2 .title {
    font-size: 3.6rem;
  }
}
.confirm #contents .title-area h1 .title::before, .confirm #contents .title-area h2 .title::before,
.closed #contents .title-area h1 .title::before,
.closed #contents .title-area h2 .title::before,
.complete #contents .title-area h1 .title::before,
.complete #contents .title-area h2 .title::before {
  display: none;
}
.confirm #footer,
.closed #footer,
.complete #footer {
  background: #f09f9f center top/cover url("../images/bg-footer-wh.svg") no-repeat;
}
.confirm #footer .footer-link ul li,
.closed #footer .footer-link ul li,
.complete #footer .footer-link ul li {
  border-right: 1px solid #f09f9f;
  border-left: 1px solid #f09f9f;
}
.confirm #footer .footer-link a,
.closed #footer .footer-link a,
.complete #footer .footer-link a {
  color: #f09f9f;
}
.confirm .go-to-top,
.closed .go-to-top,
.complete .go-to-top {
  background: #f09f9f center center/contain url("../images/go-to-top-wh.svg") no-repeat;
}

.confirm .column-2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.confirm .column-2 .column-item {
  width: auto;
}
.confirm .column-2 .column-item + .column-item {
  margin-left: 1.5rem;
}
.confirm .column-2 + .column-2 {
  margin-top: 1rem;
}
.confirm #contents #question-area {
  padding-top: 0;
}
.confirm #contents #question-area.color {
  background: #f09f9f;
}
.confirm #contents #question-area .question .required::after {
  display: none;
}
.confirm #contents #question-area .question .q-text::before {
  color: #f09f9f;
  background: #FFFFFF;
  border: 4px dashed #FFFFFF;
}
.confirm #contents #question-area #qa-present .question,
.confirm #contents #question-area #qa-client .question,
.confirm #contents #question-area #qa-basic .question,
.confirm #contents #question-area #qa-check .question {
  text-align: left;
  background: #FFFFFF;
}
.confirm #contents #question-area #qa-present {
  padding: 0;
}
.confirm #contents #question-area #qa-present .question {
  text-align: left;
  border-radius: 10px 10px 0 0;
  padding: 30px 20px 20px 60px;
  border-right: 8px solid #f4caca;
  border-left: 8px solid #f4caca;
  border-top: 8px solid #f4caca;
}
@media screen and (max-width: 680px) {
  .confirm #contents #question-area #qa-present .question {
    padding-left: 50px;
    border-right: none;
    border-left: none;
    border-radius: 0;
  }
}
.confirm #contents #question-area #qa-present .question .required::after {
  display: none;
}
.confirm #contents #question-area #qa-present .question .q-text::before {
  content: "";
  display: inline-block;
  background: #FFFFFF center center/55% url("../images/icon_present.svg") no-repeat;
  border: 4px dashed #FFFFFF;
}
.confirm #contents #question-area #qa-client.border {
  border-radius: 0;
}
@media screen and (max-width: 680px) {
  .confirm #contents #question-area #qa-client.border {
    border-top: 8px solid #f4caca;
  }
}
.confirm #contents #question-area #qa-client .question {
  border-radius: 0;
}
.confirm #contents #question-area #qa-basic .question {
  background: #fdf8f8;
}
@media screen and (max-width: 680px) {
  .confirm #contents #question-area #qa-check {
    padding: 0;
  }
}
.confirm #contents #question-area #qa-check .question {
  text-align: left;
  padding: 30px 20px 20px 60px;
  border: 8px solid #f4caca;
}
@media screen and (max-width: 680px) {
  .confirm #contents #question-area #qa-check .question {
    padding-left: 50px;
    border-right: none;
    border-left: none;
    border-top: none;
    border-radius: 0;
  }
}
.confirm #contents #question-area #qa-check .question .required::after {
  display: none;
}
.confirm #contents #question-area #qa-check .question li {
  position: relative;
}
.confirm #contents #question-area #qa-check .question li::before {
  content: "";
  display: inline-block;
  background: #FFFFFF center center/65% url("../images/icon_check.svg") no-repeat;
  border: 4px dashed #FFFFFF;
  position: absolute;
  top: -8px;
  left: -50px;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  border-radius: 40px;
  color: #FFFFFF;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .confirm #contents #question-area #qa-check .question li::before {
    top: -4px;
    left: -44px;
  }
}
.confirm #contents #question-area .little-after::after {
  display: none;
}

.closed .bnr-wrap,
.complete .bnr-wrap {
  padding: 15px;
}
.closed .bnr-wrap a,
.complete .bnr-wrap a {
  display: block;
}
.closed .bnr-wrap a + a,
.complete .bnr-wrap a + a {
  margin-top: 15px;
}
.closed .bnr-wrap a img,
.complete .bnr-wrap a img {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.closed .bnr-wrap a[target=_blank]::after,
.complete .bnr-wrap a[target=_blank]::after {
  display: none;
}
.closed .bnr-wrap a:hover,
.complete .bnr-wrap a:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.closed .headline + .bnr-wrap,
.complete .headline + .bnr-wrap {
  padding-top: 5px;
}
.closed .btn-wrap,
.complete .btn-wrap {
  text-align: center;
}
.closed .btn,
.complete .btn {
  font-size: 1.8rem;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0 2rem;
  width: auto;
  min-width: 300px;
  margin: 2rem auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#f36e93), to(#f38888));
  background-image: linear-gradient(left, #f36e93, #f38888);
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.closed .btn:hover,
.complete .btn:hover {
  opacity: 0.8;
}
.closed .btn::after,
.complete .btn::after {
  display: none;
}
.closed #footer,
.complete #footer {
  margin-top: 40px;
}

.panel-default {
  border: none;
  border-top: 8px solid #f4caca;
  border-radius: 0;
  margin-top: 30px;
}

.panel-dacco-app {
  display: block;
  padding: 0.5rem;
  margin-bottom: 0;
  color: #666;
  line-height: 1.8;
}
.panel-dacco-app .message {
  font-size: 1.4rem;
}
.panel-dacco-app .small {
  font-size: 1.2rem;
  color: #999;
}
.panel-dacco-app h3.h4 {
  font-family: "Shuei MaruGo B", "秀英丸ゴシック B", "A-OTF 秀英丸ゴシック Std B", sans-serif;
  color: #6f4829;
  font-size: 1.6rem;
  padding-top: 1rem;
}
.panel-dacco-app .btn {
  font-size: 1.8rem;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0 2rem;
  width: auto;
  margin: 2rem auto;
  background-image: -webkit-gradient(linear, left top, right top, from(#f36e93), to(#f38888));
  background-image: linear-gradient(left, #f36e93, #f38888);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.panel-dacco-app .btn:hover {
  opacity: 0.8;
}
.panel-dacco-app h2, .panel-dacco-app h3, .panel-dacco-app h4, .panel-dacco-app h5 {
  background: none;
  color: inherit;
  padding: 0;
}

.panel {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* ************ エラーメッセージ ************ */
div .error-message {
  color: #c44;
  margin-top: 0.25rem;
}

/* ************ メールサジェスト ************ */
.autocomplete-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  border-left: 1px solid #ddd;
  background-color: #fffeed;
  margin-top: -2px;
  z-index: 999;
}
.autocomplete-items > .btn {
  display: block;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  color: #001b6f;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  background-color: transparent;
}
.autocomplete-items > .btn:last-child {
  border-radius: 0 0 2px 2px;
}
.autocomplete-items > .btn:hover, .autocomplete-items > .btn:active, .autocomplete-items > .btn:focus {
  color: #36d1c7;
}
