@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap&subset=japanese);
:root {
  --main_color: #223670;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

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

html {
  background-color: #ccc;
  line-height: 1;
}

html * {
  max-width: 600px;
}

body {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  color: #4D4848;
  position: relative;
  display: flex;
  flex-direction: column;
}

.update_info {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
  padding: 10px 2% 8px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

header {
  background-color: var(--main_color);
}
header img.logo {
  width: 35.8974358974%;
  margin: 4px 0 6px 12px;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner__text {
  width: 100%;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  letter-spacing: 0.5px;
  margin-right: 12px;
  color: #ffffff;
}
header .service {
  font-size: 1em;
}
@media (max-width: 600px) {
  header .service {
    font-size: 0.8em;
  }
}
header .appeal {
  display: none;
  background: #E96E1F;
}
header .appeal h1 {
  color: #FFFFFF;
  padding: 0.2em 0.8em 0.3em;
  letter-spacing: 1.5px;
  line-height: 24px;
  text-align: left;
  font-weight: 600;
}
header .appeal h1 strong {
  font-size: 26px;
  color: #FBE819;
  margin: 0 5px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main .whiteSpace {
  flex: 1;
  background-color: #fff;
  min-height: 40px;
}

h3.formHead {
  text-align: left;
  margin: 20px 0;
  font-size: 16px;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  color: #707070;
  margin: 0 auto 10px;
  padding: 5px 0;
}
h3.formHead:before {
  content: "■";
  color: var(--main_color);
  margin-right: 2px;
}

.arrow {
  width: 15px;
  height: 15px;
}

.hands {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 0;
  bottom: 24%;
  background-size: contain;
  z-index: 200;
  pointer-events: none;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  animation: rabbit 2.5s linear 0s infinite;
  -webkit-animation: rabbit 2.5s linear 0s infinite;
}

@keyframes rabbit {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 0);
  }
  75% {
    transform: translate(0, 0);
  }
}
@keyframes shiny {
  0% {
    left: -30%;
  }
  50% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.ui-helper-hidden-accessible {
  display: none;
}

section {
  display: none;
  margin: 0;
}
section .wrapper {
  width: 100%;
  background-color: #fff;
  padding: 10px 7% 20px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  /* margin-bottom: 30px; */
}
section .wrapper .pop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 96;
  background-color: rgba(155, 155, 155, 0.8);
}
section .wrapper .pop .content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 6px;
  width: 350px;
  height: -moz-max-content;
  height: max-content;
  padding: 23px 21px 18px;
}
section .wrapper #step1pop_label {
  display: flex;
  justify-content: space-between;
  border: 2px solid #555;
  border-radius: 4px;
  padding: 0 1rem;
  height: 56px;
  align-items: center;
}
section .wrapper #step1pop_label::after {
  content: "▼";
  font-size: 0.8rem;
}
section .wrapper #step1pop {
  display: none;
}
section .wrapper #step1pop_check:checked ~ #step1pop {
  display: grid;
}
section .wrapper #step1pop_check:checked ~ #step1pop_label::after {
  content: "";
}
section .wrapper .innerWrapper {
  margin: auto;
  width: 96%;
  padding: 20px 10px;
  border-radius: 5px;
  border: solid 1px #373948;
  box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.6);
}
section .wrapper .key {
  font-size: 70%;
  text-align: center;
  margin: auto auto 10px auto;
}
section .wrapper .key.key > img {
  width: 14px;
  vertical-align: middle;
  margin: -2px 5px auto auto;
}
section .wrapper .formH4 {
  font-size: 90%;
  text-align: left;
  color: #383948;
  margin: auto auto 10px auto;
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #707070;
  margin: 0 auto 10px;
  padding: 5px 10px;
  width: 100%;
}
section .wrapper .tellMailWrap .formSubHead {
  margin-bottom: 25px;
}
section .wrapper .formSubHead {
  font-size: 85%;
  text-align: left;
  color: #383948;
  margin: auto auto 10px auto;
}
section .wrapper .formSubHead > img {
  width: 14px;
  vertical-align: middle;
  margin: -2px 5px auto auto;
}
section .wrapper .hissu {
  color: #FFFFFF;
  background-color: #f45775;
  font-size: 50%;
  padding: 0 4px;
  margin: auto auto auto 2px;
}
section .wrapper select,
section .wrapper input[type=tel],
section .wrapper input[type=text],
section .wrapper input[type=email] {
  outline: none;
  width: 100%;
  height: 56px;
  font-size: 1.25rem;
  padding: 0px 14px;
  border: 1px solid #E96E1F;
  background-color: #ffffe1;
  border-radius: 8px;
  font-weight: 600;
  color: #000;
}
section .wrapper select#postal,
section .wrapper input[type=tel]#postal,
section .wrapper input[type=text]#postal,
section .wrapper input[type=email]#postal {
  padding-left: 40px;
  background: url(../img/ico_zip.svg) left 10px center/20px no-repeat rgb(255, 255, 225);
}
section .wrapper select#email,
section .wrapper input[type=tel]#email,
section .wrapper input[type=text]#email,
section .wrapper input[type=email]#email {
  border: none;
  background-color: transparent;
  box-shadow: none;
}
section .wrapper select#tel::-moz-placeholder, section .wrapper input[type=tel]#tel::-moz-placeholder, section .wrapper input[type=text]#tel::-moz-placeholder, section .wrapper input[type=email]#tel::-moz-placeholder {
  font-size: 1rem;
}
section .wrapper select#tel::placeholder,
section .wrapper input[type=tel]#tel::placeholder,
section .wrapper input[type=text]#tel::placeholder,
section .wrapper input[type=email]#tel::placeholder {
  font-size: 1rem;
}
section .wrapper select#email::-moz-placeholder, section .wrapper input[type=tel]#email::-moz-placeholder, section .wrapper input[type=text]#email::-moz-placeholder, section .wrapper input[type=email]#email::-moz-placeholder {
  font-size: 1rem;
}
section .wrapper select#email::placeholder,
section .wrapper input[type=tel]#email::placeholder,
section .wrapper input[type=text]#email::placeholder,
section .wrapper input[type=email]#email::placeholder {
  font-size: 1rem;
}
section .wrapper input::-moz-placeholder {
  color: #E3E3E3;
}
section .wrapper input::placeholder {
  color: #E3E3E3;
}
section .wrapper select {
  width: 100%;
  height: 56px;
  padding: 0px 14px;
  font-size: 1.25rem;
  color: rgb(77, 72, 72);
  background: rgb(255, 255, 255);
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid rgb(204, 204, 204);
  -o-border-image: initial;
     border-image: initial;
  border-radius: 0;
  margin: 14px auto 0px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 600;
  box-shadow: none;
}
section .wrapper select + p {
  font-size: 1rem;
  font-weight: 600;
  margin: 4px 0px 8px;
  text-align: left;
}
section .wrapper .inputText {
  position: relative;
}
section .wrapper .inputText.birthyear:after {
  content: "年";
  right: 15px;
}
section .wrapper .inputText.birthyear:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  color: #707070;
  font-size: 15px;
  line-height: 56px;
  z-index: 2;
}
section .wrapper .inputText .tel-count, section .wrapper .inputText .zip-count {
  position: absolute;
  top: -18px;
  right: 0;
  background: #f8f8f8;
  border-radius: 100px;
  padding: 0px 8px 4px;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  font-size: 12px;
  width: auto;
  white-space: nowrap;
}
section .wrapper .toggle-outer {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}
section .wrapper .toggle-outer label {
  background: rgb(240, 240, 240);
  border-radius: 50px;
  text-align: center;
  margin: 1rem auto 0px;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgb(84, 84, 84);
  cursor: pointer;
  padding: 0.3em 36px;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
section .wrapper #toggle1:checked ~ .addTxt {
  display: none;
}
section .wrapper .addTxt {
  display: flex;
  align-items: center;
  background: #fff;
  max-width: 300px;
  margin: 30px auto 0;
  font-size: 14px;
}
section .wrapper .addTxt > img {
  width: 20%;
}
section .wrapper .addTxt p {
  --balloon_color: #F1F6F9;
  font-size: 14px;
  line-height: 1.5;
  width: 75%;
  margin-left: 5%;
  position: relative;
  display: inline-block;
  padding: 0.8em;
  max-width: 100%;
  background: var(--balloon_color);
  border-radius: 6px;
  color: #555;
  text-align: left;
}
section .wrapper .addTxt p:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
  width: 18px;
  height: 18px;
  background-color: var(--balloon_color);
  -webkit-clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
section .wrapper .addTxt p span.pink {
  color: #E96E1F;
  font-size: 14px;
}
section .wrapper #toggle1:checked ~ .toggle-inner {
  display: block;
}
section .wrapper .toggle-inner {
  display: none;
}

label.error {
  display: none !important;
  width: 94%;
  margin: 5px auto 0px;
  clear: both;
  background: transparent;
  position: relative;
  box-sizing: border-box;
  border-radius: 3px;
  padding: 1px 5px;
  color: red;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  text-align: center;
}

label#postal-error.error,
label#pref-error.error,
label#city-error.error,
label#name-error.error,
label#birthyear-error.error,
label#tel-error.error,
label#item-error.error,
label#model-error.error,
label#email-error.error {
  display: block !important;
}

.msgIcon {
  width: 50px;
}

.btnArea {
  display: grid;
  --radius: 5px;
  align-items: center;
  justify-items: center;
  padding: 20px 7% 40px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
}
.btnArea.col2 {
  grid-template-columns: max-content 1fr;
  justify-items: end;
}
.btnArea.col3 {
  grid-template-columns: 3em 1fr 3em;
  justify-items: center;
  gap: 0;
}
.btnArea span.btnBack,
.btnArea span.btnNext {
  font-size: 14px;
}
.btnArea .btnNext {
  cursor: pointer;
}
.btnArea .btnNext .silver {
  font-size: 16px;
  z-index: 90;
  text-align: center;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: 0.5s;
  color: #fff;
  width: 250px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px, rgba(255, 255, 255, 0.7) 0px 0px 1px inset;
  border-radius: var(--radius);
  background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
  background-size: 800% 400%;
  animation: gradient 5s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
}
.btnArea svg {
  width: 8px;
  height: 14px;
  fill: currentColor;
  position: absolute;
  top: 19px;
  right: 10%;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btnBack {
  cursor: pointer;
  display: block;
  font-size: 0.7em;
  padding: 1em 0.5em;
  width: -moz-max-content;
  width: max-content;
}

#btnForm {
  cursor: pointer;
  width: 100%;
  z-index: 100;
  position: relative;
}
#btnForm::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.5;
  z-index: 101;
}
#btnForm.active::after {
  content: none;
}
#btnForm img {
  width: 100%;
}

footer {
  position: relative;
  bottom: 0;
  margin-top: auto;
}
footer .update_info {
  padding: 8px 2% 10px;
  background-color: var(--main_color);
  color: #FFFFFF;
}
footer nav {
  padding: 0px 0px 10px;
  background: #000000;
  z-index: 99;
  position: relative;
}
footer nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer nav ul li a {
  cursor: pointer;
  color: #ffffff;
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 1rem 0.5rem;
  text-decoration: none;
}
footer nav .copyright {
  color: #ffffff;
  font-size: 0.625rem;
  text-align: center;
}

#overlay {
  display: none;
  position: fixed;
  z-index: 60;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  inset: 0;
  margin: auto;
}
#overlay.overlay-on {
  display: block;
}

/* オートコンプリートの装飾 */
ul.ui-autocomplete {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0em 0.5em 0em 0.5em;
  border: none;
  border-radius: 8px;
  cursor: default;
  background-color: #ffffff;
  z-index: 10;
}
ul.ui-autocomplete li {
  line-height: 2;
  border-bottom: 1px solid #f0f0f0;
}

.ui-autocomplete {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.sectionPop {
  position: relative;
}

.startButton {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  position: absolute;
  bottom: 5%;
  left: 51%;
  transform: translateX(-50%);
  cursor: pointer;
}
.startButton:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (min-width: 599px) {
  .startButton::before {
    bottom: 80%;
    left: 15px;
    width: 150px;
    height: 100px;
  }
}
.startButton label img {
  animation: click 2.5s infinite linear;
  filter: drop-shadow(0 3px 5px #333);
}
.startButton label img:hover {
  animation: none;
  filter: none;
  transform: translate(0, 3px);
}

.fixedImage::before {
  position: fixed;
  bottom: 90%;
}

@keyframes click {
  0%, 35%, 55%, 100% {
    filter: drop-shadow(0 3px 5px #333);
  }
  40%, 50% {
    filter: none;
  }
}/*# sourceMappingURL=style.css.map */