@charset "UTF-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

textarea {
  form-sizing: content;
  white-space: revert;
}

:focus {
  outline: none;
}

html {
  height: -webkit-fill-available;
  background-color: #FFFFFF;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 50%;
  font-weight: 700;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none; /* iPhone Safariの横向きで基本フォントサイズ拡大を防ぐ */
  word-break: auto-phrase; /* 日本語自動折返し */
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 53.75rem;
  min-height: 100vh;
  min-height: 100dvh;
  margin-inline: auto;
}
body {
  -ms-overflow-style: noe; /* Edge */
  scrollbar-width: none; /* Firefox */
}
body::-webkit-scrollbar { /* Safari */
  content-visibility: auto;
  display: none;
}

picture, img {
  display: block;
  max-width: 100%;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

a, button, select {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: inherit !important;
}

input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input:where(:not([type=datetime]):not([type=date]):not([type=month]):not([type=week]):not([type=time]):not([type=datetime-local]))::-webkit-calendar-picker-indicator {
  display: none !important;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 7.5625rem;
  padding-bottom: 0.0625rem;
  padding-inline: 2.6875rem;
  border-bottom: max(1px, 0.0625rem) solid #333333;
}
.l-header__logo {
  width: 19.6875rem;
}
.l-header__text {
  padding-right: 1.375rem;
  color: #098979;
  font-size: 1.625rem;
  line-height: 1.4230769231;
}

.l-footer {
  width: 100%;
  font-size: 1.625rem;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 4.0625rem;
       column-gap: 4.0625rem;
  margin-top: 7.5rem;
  margin-bottom: 2.0625rem;
}
.l-footer__nav__item {
  line-height: 1.4230769231;
}
.l-footer__copyright {
  background-color: #098979;
  color: white;
  line-height: 2;
  text-align: center;
}

.l-main {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  width: 80%;
}
.l-main__head {
  grid-column: content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5.625rem;
  margin-bottom: 3.375rem;
}
.l-main__head__item {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  border: 0.3125rem solid #E8E8E8;
  border-radius: 100%;
  background-color: #E8E8E8;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2.5384615385;
  text-align: center;
}
.l-main__head__item.is-active {
  border-color: #098979;
  background-color: white;
  color: #098979;
}
.l-main__head__item.is-active:has(+ .is-active) {
  background-color: #098979;
  color: white;
}
.l-main__head__item::before {
  content: "STEP";
  position: absolute;
  top: -2.9375rem;
  left: 0;
  width: 100%;
  color: #7E7E7E;
  font-size: 1.5rem;
  line-height: 1.4583333333;
}
.l-main__head__item.is-active:not(:has(+ .is-active))::before {
  color: #333333;
}
.l-main__head__item:not(:first-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3.375rem;
  width: 2.6875rem;
  height: 0.125rem;
  background-color: #E8E8E8;
}
.l-main__head__item.is-active::after {
  background-color: #098979;
}
.l-main__body {
  position: relative;
  grid-column: content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.l-main__section {
  position: absolute;
  top: 0;
  left: 0;
  grid-column: content;
  display: grid;
  grid-template-columns: [full-start] minmax(1rem, 1fr) [content-start] min(35.5rem, 100% - 2rem) [content-end] minmax(1rem, 1fr) [full-end];
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition-property: opacity, transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.l-main__section.is-active {
  position: relative;
  transform: none;
  opacity: 1;
  pointer-events: visible;
}
.l-main__section.is-back {
  transform: translateX(-100%);
  opacity: 0;
}
.l-main__section > * {
  grid-column: content;
}
.l-main__section > h2 {
  grid-column: full;
  font-size: 2.25rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
}
.l-main__section > h2::before {
  content: "⬛︎";
  color: #098979;
}
.l-main__section__option {
  grid-column: full;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-main__section__button {
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
.l-main__section__button:only-child {
  margin-inline: auto;
}
.l-main__section__button > span {
  color: #A8A8A8;
}
.l-main__section__radio {
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
}
.l-main__section__radio > .wpcf7-list-item {
  display: block;
  margin: 0;
}
.l-main__section__radio > .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: block;
  width: 100%;
  height: 8.125rem;
  padding-left: 4.8125rem;
  border: 0.25rem solid #333333;
  border-radius: 0.625rem;
  background-color: white;
  filter: drop-shadow(0 0.1875rem 0.5625rem rgba(0, 0, 0, 0.16));
  font-size: 2.25rem;
  line-height: 3.3888888889;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
}
.l-main__section__radio > .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5.25rem;
  transform: translateX(-50%);
  height: 100%;
}
.l-main__section__radio > .wpcf7-list-item input[type=radio] {
  display: none;
}
.l-main__section__radio > .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  border-color: #FFBF30;
  background-color: #FFBF30;
  color: white;
}
.l-main__section__radio:is(.radio-type-1, .radio-type-2) .wpcf7-list-item-label::before {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.l-main__section__radio.radio-type-1 .wpcf7-list-item-label::before {
  width: 5.375rem;
}
.l-main__section__radio.radio-type-1 > .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::before {
  background-image: url(../images/icon-radio-type-1_01.svg);
}
.l-main__section__radio.radio-type-1 > .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::before {
  background-image: url(../images/icon-radio-type-1_02.svg);
}
.l-main__section__radio.radio-type-1 > .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::before {
  background-image: url(../images/icon-radio-type-1_03.svg);
}
.l-main__section__radio.radio-type-2 > .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::before {
  width: 4.875rem;
  background-image: url(../images/icon-radio-type-2_01.svg);
}
.l-main__section__radio.radio-type-2 > .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::before {
  width: 5.625rem;
  background-image: url(../images/icon-radio-type-2_02.svg);
}
.l-main__section__radio.radio-type-2 > .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::before {
  width: 5.75rem;
  background-image: url(../images/icon-radio-type-2_03.svg);
}
.l-main__section__radio.radio-type-2 > .wpcf7-list-item:nth-of-type(4) .wpcf7-list-item-label::before {
  width: 6rem;
  background-image: url(../images/icon-radio-type-2_04.svg);
}
.l-main__section__radio.radio-type-3 .wpcf7-list-item-label {
  padding-inline: 2rem;
}
.l-main__section__input {
  margin-top: 2.6875rem;
  margin-bottom: 3.75rem;
}
.l-main__section__input__text {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.0625rem;
       column-gap: 1.0625rem;
  width: 100%;
  height: 8.125rem;
  padding-right: 2.75rem;
  padding-left: 2.125rem;
  border: 0.25rem solid #333333;
  border-radius: 0.625rem;
  background-color: white;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0.1875rem 0.5625rem rgba(0, 0, 0, 0.16));
}
.l-main__section__input__text input::-moz-placeholder {
  color: #A8A8A8;
}
.l-main__section__input__text input::placeholder {
  color: #A8A8A8;
}
.l-main__section__input__text > span:not([class]) {
  display: block;
  white-space: nowrap;
}
.l-main__section__input__text > .wpcf7-form-control-wrap {
  flex-grow: 1;
  width: 1px;
  overflow: hidden;
}
.l-main__section__input__text > .wpcf7-form-control-wrap > input {
  display: block;
}
.l-main__section__input__error {
  display: none;
  margin-top: 1rem;
  border-radius: 0.4375rem;
  background-color: #FFD6D6;
  color: #FF2E2E;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-main__section__input__error.is-active {
  display: block;
}
.l-main__section__submit {
  margin-bottom: 3.75rem;
}
.l-main__section__submit__dummy {
  position: relative;
  z-index: 9999;
  display: block;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #FFBF30;
  color: white;
  font-size: 2.25rem;
  line-height: 8.125rem;
  letter-spacing: 0.05em;
  text-align: center;
  filter: drop-shadow(0 0.1875rem 0.5625rem rgba(0, 0, 0, 0.16));
}
.l-main__section__submit__dummy::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  transform: translateY(-50%);
  border-block: 0.375rem solid transparent;
  border-left: 1rem solid white;
}
body.is-blackout .l-main__section__submit__dummy {
  background-image: linear-gradient(#FFDE83, #FF9D00);
}
.l-main__section .wpcf7-form-control-wrap {
  display: block;
}
.l-main__dialog {
  position: fixed;
  inset: 0;
  width: 36.875rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  border-inline: 0.5rem solid #098979;
  border-bottom: 0.5rem solid #098979;
  border-radius: 1.5rem;
  background-color: white;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  overflow: hidden;
}
.l-main__dialog::-webkit-backdrop {
  background-color: rgba(178, 178, 178, 0.69);
}
.l-main__dialog::backdrop {
  background-color: rgba(178, 178, 178, 0.69);
}
.l-main__dialog__label {
  padding-block: 1.625rem;
  background-color: #098979;
  color: white;
  line-height: 1.6388888889;
  text-align: center;
}
.l-main__dialog__label > span {
  display: inline-block;
  padding-inline: 1.0625rem;
  margin-right: 0.75rem;
  border-radius: 0.5625rem;
  background-color: white;
  color: #098979;
}
.l-main__dialog__content {
  line-height: 1.4444444444;
  text-align: center;
}
.l-main__dialog__text {
  padding-block: 2.375rem;
}
.l-main__dialog__radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 6.625rem;
  border-top: 0.1875rem solid #098979;
}
.l-main__dialog__radio span {
  display: contents;
}
.l-main__dialog__radio label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.l-main__dialog__radio .last label {
  background-color: #FFA041;
  color: white;
}
.l-main [name=date_of_reception],
.l-main [name=reception_time] {
  display: none;
}
.l-main .wpcf7-not-valid-tip,
.l-main .wpcf7-spinner,
.l-main .wpcf7-response-output {
  display: none !important;
}
.l-main--thanks {
  overflow: hidden;
  flex-grow: 1;
  width: 100%;
  font-size: 2.25rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-main__title {
  padding-block: 3.875rem;
  padding-inline: 1rem;
  background-color: #098979;
  color: white;
}
.l-main__thanks {
  padding-top: 9.3125rem;
  margin-top: 5rem;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 7.9375rem;
}

.c-hand {
  position: absolute;
  z-index: 9999;
  width: 9.4375rem;
  height: 9.5625rem;
  background-image: url(../images/icon-hand.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition-property: top, left, opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -webkit-animation: handMove 1.8s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite forwards;
          animation: handMove 1.8s cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite forwards;
}

@-webkit-keyframes handMove {
  0%, 100% {
    transform: translateY(-3%);
  }
  50% {
    transform: translateY(3%);
  }
}

@keyframes handMove {
  0%, 100% {
    transform: translateY(-3%);
  }
  50% {
    transform: translateY(3%);
  }
}
.c-blackout {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(178, 178, 178, 0.69);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body.is-blackout .c-blackout {
  opacity: 1;
  pointer-events: visible;
}

.u-hidden {
  display: none !important;
}
/*# sourceMappingURL=style.css.map */