@charset "UTF-8";
/*--------------------------------------------------
Functions
--------------------------------------------------*/
/*--------------------------------------------------
Variables
--------------------------------------------------*/
/*--------------------------------------------------
Base
--------------------------------------------------*/
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --error-color: #dc2626;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-700: #374151;
  --gray-800: #1f2937;
}

html {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100dvh;
  max-height: 100svh;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.8705882353);
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.025em;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  overflow: hidden;
}
@media (max-width: 1024px) {
  body {
    height: 100dvh;
    max-height: 100svh;
  }
}
@media (max-width: 768px) {
  body {
    background-color: #fff;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scrollbar-width: thin;
}

a {
  color: rgba(0, 0, 0, 0.8705882353);
}

@media (hover: hover) {
  a:hover {
    color: rgba(0, 0, 0, 0.6);
  }
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: rgba(0, 0, 0, 0.8705882353);
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.desktop_only {
  display: block;
}
@media (max-width: 768px) {
  .desktop_only {
    display: none;
  }
}

.mobile_only {
  display: none;
}
@media (max-width: 768px) {
  .mobile_only {
    display: block;
  }
}

/*--------------------------------------------------
Loading
--------------------------------------------------*/
/*--------------------------------------------------
Typography
--------------------------------------------------*/
.headline1 {
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .headline1 {
    font-size: 1.875rem;
  }
}

.headline2 {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .headline2 {
    font-size: 1.25rem;
  }
}

.headline3 {
  font-size: 1.25rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .headline3 {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------
Layout
--------------------------------------------------*/
.container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-block: 1.5rem;
}
@media (max-width: 1024px) {
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: none;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  width: 100%;
  padding: 0 1.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.header .logo {
  width: auto;
  height: 2.5rem;
}

.header .logo img {
  width: auto;
  height: 100%;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form-content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.slide-item.active .form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding: 1.5rem;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .form-group {
    padding-inline: 0.75rem;
  }
}

.form-section {
  width: 100%;
}

.form-section:not(:first-of-type) {
  margin-top: 1rem;
}

.form-section .input_groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .form-section .input_groups {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.form-section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-size: 1.25rem;
  font-weight: bold;
}

.input_group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #424242;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 1.125rem;
  }
}

.form-control,
.form-select {
  width: 100%;
  min-height: 5rem;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (max-width: 768px) {
  .form-control,
  .form-select {
    min-height: auto;
    font-size: 1.125rem;
  }
}

.form-select {
  padding-right: 2.25rem;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
          box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
  color: var(--gray-300);
}

.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  color: var(--gray-300);
}

.form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder {
  color: var(--gray-300);
}

.form-control::-ms-input-placeholder, .form-select::-ms-input-placeholder {
  color: var(--gray-300);
}

.form-control::placeholder,
.form-select::placeholder {
  color: var(--gray-300);
}

.required-label {
  color: #d32f2f;
}

.zipcode-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  max-width: 50%;
}
@media (max-width: 768px) {
  .zipcode-group {
    max-width: 100%;
  }
}

.form-select.prefecture {
  width: auto;
}

.birthdate-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.birthdate-form .form-section {
  width: 100%;
}

@media (max-width: 1024px) {
  .birthdate-form .form-section .input_groups {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.birthdate-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}

.birthdate-group .form-select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 112px;
  text-align: center;
}
@media (max-width: 768px) {
  .birthdate-group .form-select {
    min-height: 72px;
  }
}

.gender-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gender-form .form-section {
  width: 100%;
}

@media (max-width: 1024px) {
  .gender-form .form-section .input_groups {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.gender-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.gender-option {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .gender-option {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

.gender-option input {
  position: absolute;
  opacity: 0;
}

.gender-option .check-mark {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.custom-radio {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 112px;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  background-color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (max-width: 768px) {
  .custom-radio {
    min-height: 72px;
  }
}

.gender-option input:checked + .custom-radio {
  border-color: var(--primary-color);
  background-color: rgba(25, 118, 210, 0.3019607843);
  color: #2563eb;
}

.gender-option input:checked + .custom-radio .check-mark {
  display: block;
}

.phone-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.phone-form .form-section {
  width: 100%;
}

.phone-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.phone-group .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 112px;
  text-align: center;
}
@media (max-width: 768px) {
  .phone-group .form-control {
    min-height: 72px;
  }
}

/*--------------------------------------------------
Stepper
--------------------------------------------------*/
.stepper {
  width: 14rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 1rem;
}
@media (max-width: 1024px) {
  .stepper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    padding: 1rem 0;
  }
}
@media (max-width: 768px) {
  .stepper {
    gap: 0.5rem;
  }
}

.step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    margin-bottom: 0;
  }
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  z-index: -2;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: #e0e0e0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .step:not(:last-child)::after {
    left: calc(100% + 1rem);
    top: 1.25rem;
    width: 2rem;
    height: 4px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .step:not(:last-child)::after {
    top: 1rem;
  }
}

.step.active .step-number {
  position: relative;
  background-color: #2563eb;
  color: #fff;
}

.step.active .step-number::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 130%;
  height: 130%;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #2563eb;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.step-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: #e0e0e0;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.25rem;
}
@media (max-width: 1024px) {
  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .step-number {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 1024px) {
  .step-number .number {
    display: none;
  }
}

.step.active .step-title {
  color: rgba(0, 0, 0, 0.8705882353);
}

.step-title {
  font-weight: bold;
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.3803921569);
}
@media (max-width: 1024px) {
  .step-title {
    display: none;
    font-size: 1rem;
  }
}

/*--------------------------------------------------
Buttons
--------------------------------------------------*/
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 4.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #e0e0e0;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.8705882353);
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 1;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
@media (max-width: 768px) {
  .btn {
    font-size: 1.125rem;
  }
}

.btn-sm {
  padding: 0.25rem 0.625rem;
  min-width: 3.875rem;
  min-height: 1.875rem;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  min-width: 5.125rem;
  min-height: 3.125rem;
}

@media (hover: hover) {
  .btn:hover {
    background-color: #f5f5f5;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.12), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 2px 4px -1px rgba(0, 0, 0, 0.2);
  }
}

.btn:active {
  background-color: #9e9e9e;
  -webkit-box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.btn:disabled {
  background-color: rgba(0, 0, 0, 0.1215686275);
  color: rgba(0, 0, 0, 0.3803921569);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

@media (hover: hover) {
  .btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
  }
}

.btn-primary:active {
  background: #5d9fe0;
  color: #fff;
}

.text-button {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 500;
  text-transform: none;
}

@media (hover: hover) {
  .text-button:hover {
    background: rgba(0, 0, 0, 0.0392156863);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

/* Scroll to Top */
.scroll_to_top {
  position: fixed;
  bottom: 6.125rem;
  right: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  border-radius: 50%;
  background: #e0e0e0;
  color: rgba(0, 0, 0, 0.8705882353);
  -webkit-box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 1000;
}

.scroll_to_top.show {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .scroll_to_top:hover {
    background-color: #f5f5f5;
    color: rgba(0, 0, 0, 0.8705882353);
    -webkit-box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.12), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 3px 5px -1px rgba(0, 0, 0, 0.2);
  }
}

.scroll_to_top .icon {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media (hover: hover) {
  .scroll_to_top:hover .icon {
    -webkit-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
  }
}

.scroll_to_top .text {
  font-size: 0.75rem;
  white-space: nowrap;
}

/*--------------------------------------------------
Link
--------------------------------------------------*/
.link-underline-primary {
  padding: 0.75rem 1.25rem;
  min-width: 5.125rem;
  min-height: 3.125rem;
  color: #2563eb;
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

@media (hover: hover) {
  .link-underline-primary:hover {
    color: #1d4ed8;
    background: rgba(0, 0, 0, 0.0392156863);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

/*--------------------------------------------------
Home
--------------------------------------------------*/
/* メインコンテンツ */
.main-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: calc(100dvh - 4rem - 3rem);
  max-height: calc(100svh - 4rem - 3rem);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .main-content {
    height: calc(100dvh - 4rem - 48px - 72px);
    max-height: calc(100svh - 4rem - 48px - 72px);
  }
}
@media (max-width: 768px) {
  .main-content {
    height: calc(100dvh - 4rem - 24px - 64px);
    max-height: calc(100svh - 4rem - 24px - 64px);
  }
}

.task-title {
  display: none;
  margin-top: 0;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1024px) {
  .task-title {
    display: block;
  }
}

.registration-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .registration-form {
    padding: 0;
  }
}

.form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1024px) {
  .form-container {
    height: calc(100dvh - 4rem - 48px - 72px - 34px - 16px);
    max-height: calc(100svh - 4rem - 48px - 72px - 34px - 16px);
  }
}
@media (max-width: 768px) {
  .form-container {
    height: calc(100dvh - 4rem - 24px - 64px - 34px);
    max-height: calc(100svh - 4rem - 24px - 64px - 34px);
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.slide-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 5.4375rem);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .slide-container {
    height: 100%;
    max-height: calc(100% - 87px);
  }
}
@media (max-width: 768px) {
  .slide-container {
    max-height: calc(100% - 84px);
  }
}

.slide-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.terms-link {
  display: block;
  margin-top: 0.5rem;
  color: var(--primary-color);
  text-decoration: underline;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.terms-link:hover {
  color: var(--primary-hover);
}

.form-check-input {
  border: 2px solid var(--gray-300);
}

/* ボタン */
.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}
@media (max-width: 768px) {
  .button-container {
    padding-inline: 0.75rem;
  }
}

.prev-btn {
  display: block;
  margin-right: auto;
}

.next-btn {
  display: block;
  margin-left: auto;
  min-width: 12.5rem;
}
@media (max-width: 768px) {
  .next-btn {
    min-width: 7.5rem;
  }
}

/*--------------------------------------------------
Thanks
--------------------------------------------------*/
.page-thanks {
  background-color: #fff;
}

.page-thanks .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  padding: 1.5rem;
  text-align: center;
}

.page-thanks .logo {
  width: 100%;
  max-width: 18.5rem;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  .page-thanks .logo {
    max-width: 12.5rem;
  }
}

.page-thanks .btn-home {
  width: 100%;
  max-width: 12.5rem;
  margin: 2.5rem auto 0;
}