@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,700&family=Noto+Sans+JP:wght@400;500;700&family=Zen+Maru+Gothic:wght@700&family=Roboto:wght@700&display=swap");
html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.slide-number {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
}

.content-header .complete-title {
  font-family: "Zen Maru Gothic", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0 none;
}

html {
  background: #fff;
  color: #313131;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  --max-width: 800px;
  --content-padding: 40px;
}
@media (max-width: 768px) {
  html {
    --content-padding: 16px;
  }
}

body {
  line-height: 1.2;
}

:any-link {
  color: #0000EE;
}

figure,
figcaption {
  display: block;
  margin: 0;
  padding: 0;
  border: 0 none;
}

fieldset {
  display: block;
  margin: 45px 0 0;
  padding: 0;
  border: 0 none;
}
.slide-body > fieldset:first-child {
  margin-top: 0;
}

legend {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  font-weight: 500;
}

.fields {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.fields-col {
  flex: 1;
}

select:has(option:checked[value=""]), input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #CACACA;
}

input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly],
select:disabled,
select[readonly],
button:disabled,
button[readonly],
label:disabled,
label[readonly] {
  cursor: default;
}

input,
textarea,
select {
  box-sizing: border-box;
  background: #fff;
  color: #000;
}
input[type=text],
input[type=number],
input[type=tel],
input[type=email],
input[type=password],
input[type=search],
input[type=url],
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  padding: 19px 11px;
  border: 1px solid #949494;
  border-radius: 4px;
  width: 100%;
}

select {
  margin-left: 0.375em;
  margin-right: 0.375em;
  padding-right: 39px;
  background: url(../img/icon_select.svg) calc(100% - 11px) 50% no-repeat;
}
select.first {
  margin-left: 0;
}
select.last {
  margin-right: 0;
}
select.short {
  width: auto;
}

.radio-list {
  display: flex;
  gap: 27px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.radio-list > li {
  width: calc((100% - 27px) / 2);
}

.radio {
  display: block;
}
.radio input {
  position: absolute;
  opacity: 0;
}
.radio .label {
  display: block;
  padding: 21px 12px;
  border: 2px solid #888;
  border-radius: 34px;
  background: #FFF;
  color: #888;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (hover: hover) {
  .radio .label:hover {
    border-color: #8ACED8;
    color: #8ACED8;
  }
}
@media (max-width: 768px) {
  .radio .label {
    font-size: 0.875rem;
  }
}
.radio :checked ~ .label {
  border-color: #8ACED8;
  background-color: #8ACED8;
  color: #fff;
}
@media (hover: hover) {
  .radio :checked ~ .label:hover {
    color: #fff;
  }
}

.checkbox {
  display: block;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}
.checkbox input {
  position: absolute;
  opacity: 0;
}
.checkbox .label {
  position: relative;
  display: block;
  padding: 0 0 0 37px;
}
@media (max-width: 768px) {
  .checkbox .label {
    padding-left: 30px;
  }
}
.checkbox .label::before, .checkbox .label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .checkbox .label::before, .checkbox .label::after {
    width: 18px;
    height: 18px;
  }
}
.checkbox .label::before {
  border: 2px solid rgba(0, 0, 0, 0.5607843137);
  border-radius: 2px;
  background: #fff;
}
.checkbox .label::after {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 13px;
}
.checkbox :checked ~ .label::before {
  border-color: #8ACED8;
  background-color: #8ACED8;
}
.checkbox :checked ~ .label::after {
  content: "✔︎";
  color: #fff;
}

.mark-required {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #FF4423;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
}

.explain {
  margin: 5px 0 0;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #595959;
}
.explain small {
  font-size: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  margin: 0 auto;
  border: 0 none;
  border-radius: 33px;
  padding: 22px;
  width: 245px;
  max-width: 100%;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  background: #8ACED8;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .button:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

.agreement {
  margin: 45px 0 0;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .agreement {
    font-size: 0.8125rem;
  }
}

.actions {
  display: flex;
  gap: 30px;
  margin: 45px 0 0;
}
.agreement + .actions {
  margin-top: 16px;
}

.slide {
  display: none;
  margin: 0;
  border: 1px solid #CCC;
  border-radius: 8px;
  background: #fff;
  color: #000;
  min-height: 520px;
}
@media (max-width: 768px) {
  .slide {
    min-height: 0;
  }
}
.slide.current {
  display: block;
  animation: slideIn 0.2s ease-out;
}
@keyframes slideIn {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.slide.done .slide-progress {
  display: block;
}
.slide-header {
  position: relative;
  padding: 22px var(--content-padding);
}
@media (max-width: 768px) {
  .slide-header {
    padding: 16px 16px 16px 40px;
  }
}
.slide-number {
  margin: 0 auto;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  color: #888;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .slide-number {
    padding-right: 24px;
  }
}
.slide-number .current {
  color: #8ACED8;
  font-size: 2rem;
}
.slide-title {
  margin: 6px auto 0;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .slide-title {
    font-size: 1rem;
  }
}
.slide-title strong {
  color: #FF4423;
}
.slide-prev {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 39px;
  margin: auto;
  border: 1px solid #C3C3C3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #fff url(../img/icon_prev.svg) 50% 50% no-repeat;
  color: rgba(0, 0, 0, 0);
}
@media (max-width: 768px) {
  .slide-prev {
    left: 8px;
    width: 24px;
    height: 24px;
    background-size: contain;
  }
}
.slide-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  border: 0 none;
  width: 100%;
  height: 16px;
  background: #F1F1F1;
  color: #8ACED8;
}
.slide-progress.hidden {
  display: none;
}
@media (max-width: 768px) {
  .slide-progress {
    bottom: -8px;
    height: 8px;
  }
}
.slide-progress::-webkit-progress-bar {
  background: #F1F1F1;
}
.slide-progress::-webkit-progress-value {
  background: #8ACED8;
}
.slide-progress::-moz-progress-bar {
  background: #8ACED8;
}
.slide-body {
  box-sizing: border-box;
  margin: 16px auto 0;
  padding: 45px var(--content-padding) 40px;
  width: calc(517px + var(--content-padding) * 2);
  max-width: 100%;
}
@media (max-width: 768px) {
  .slide-body {
    margin-top: 8px;
  }
}

.notes {
  margin: 45px 0 0;
  color: #313131;
  font-size: 0.875rem;
  font-weight: 400;
}
.notes small {
  font-size: 100%;
}

.complete-body {
  margin: 28px 0 0;
  padding: 0;
  background: #fff;
  color: #000;
  text-align: center;
}
.complete-body .message {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.complete-body .description {
  margin: 1.2em 0 0;
  font-size: 1rem;
  font-weight: 400;
}
.complete-body .image {
  display: block;
  margin: 16px auto 0;
  max-width: 100%;
  height: auto;
  aspect-ratio: 504/218;
}

.contact {
  margin: 0 0 50px;
  padding: 0;
  border: 0 none;
  text-align: center;
}
.contact-title {
  margin: 0;
  padding: 13px var(--content-padding);
  border-radius: 8px 8px 0 0;
  background: #F4A3A3;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}
.contact-body {
  margin: 0;
  padding: 16px var(--content-padding) 40px;
  border: 1px solid #C3C3C3;
  border-top: 0 none;
  border-radius: 0 0 8px 8px;
}
.contact-message {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.contact-tel {
  box-sizing: border-box;
  display: block;
  margin: 16px auto 0;
  padding: 25px var(--content-padding);
  border-radius: 16px;
  max-width: 409px;
  background: #F4A3A3;
  color: #fff;
  text-align: center;
  font-style: normal;
}
.contact-tel-title {
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-tel-body {
  margin: 6px 0 0;
  padding: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.275;
  letter-spacing: -0.02em;
}
.contact-tel-body :any-link {
  color: inherit;
  text-decoration: none;
}
.contact-tel-body::before {
  content: "";
  display: inline-block;
  margin: 0 8px 0 0;
  width: 38px;
  height: 39px;
  background: url(../img/icon_tel.svg) 50% 50% no-repeat;
  background-size: contain;
  vertical-align: -6px;
}
.contact-tel-description {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-header,
.site-footer,
.content {
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
}

.site-header :any-link,
.site-footer :any-link {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .site-header :any-link:hover,
  .site-footer :any-link:hover {
    text-decoration: underline;
  }
}

.site-header {
  position: relative;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
.site-header .container {
  display: flex;
  gap: 0 16px;
  justify-content: flex-start;
  align-items: center;
}
.site-header .sitename {
  margin: 0;
  padding: 0;
}
.site-header .sitename :any-link {
  display: block;
}
.site-header .sitename img {
  display: block;
  height: auto;
  aspect-ratio: 217/60;
}
@media (max-width: 768px) {
  .site-header .sitename img {
    width: 130px;
  }
}
.site-header .tagline {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .site-header .tagline {
    font-size: 0.75rem;
  }
}

.content {
  overflow: hidden;
}

.content-header {
  margin: 0 calc(-1 * var(--content-padding)) 12px;
}
.content-header .title {
  margin: 0;
  padding: 0;
}
.content-header .title img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.content-header .complete-title {
  margin: 0 auto 12px;
  padding: 39px var(--content-padding) 48px;
  max-width: var(--max-width);
  background: #8ACED8;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.content-header .complete-title .supertitle {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4479166667;
}
.content-header .complete-title .supertitle::before {
  content: "";
  display: inline-block;
  margin: 0 5px 0 0;
  width: 24px;
  height: 24px;
  background: url(../img/icon_complete.svg) 50% 50% no-repeat;
  background-size: contain;
  line-height: 1;
  vertical-align: -2px;
}
.content-header .complete-title .message {
  display: block;
  margin: 8px 0 0;
  font-size: 2.5rem;
  line-height: 1.448;
}

.content-body {
  margin: 0 auto;
  max-width: var(--max-width);
}

.site-footer {
  margin: 60px 0 0;
  border-top: 1px solid #888;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
}
.site-footer .menu ul {
  display: flex;
  gap: 16px 24px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
  width: fit-content;
  max-width: 100%;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .site-footer .menu ul {
    flex-direction: column;
  }
}
.site-footer .menu ul > li {
  border-left: 1px solid;
  padding: 0 0 0 24px;
}
@media (max-width: 768px) {
  .site-footer .menu ul > li {
    border-left: 0 none;
    padding-left: 0;
  }
}
.site-footer .menu ul > li:first-child {
  border-left: 0 none;
  padding-left: 0;
}
.site-footer .copyright {
  margin: 24px 0 0;
  padding: 0;
  color: #888;
  font-size: 0.75rem;
}
.site-footer .copyright small {
  font-size: 100%;
}

/*# sourceMappingURL=index.css.map */
