@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
  --font-base: "Noto Sans JP", sans-serif;
}

.mx1300 {
  max-width: 1200px;
}

/* スマホのみ表示 */
.br-sp {
  display: inline;
}
@media (min-width: 767.1px) {
  .br-sp {
    display: none;
  }
}

/* PCのみ表示 */
.br-pc {
  display: none;
}
@media (min-width: 767.1px) {
  .br-pc {
    display: inline;
  }
}

/* スマホのみ表示 */
.spOnly {
  display: block;
}
@media (min-width: 767.1px) {
  .spOnly {
    display: none;
  }
}

/* PCのみ表示 */
.pcOnly {
  display: none;
}
@media (min-width: 767.1px) {
  .pcOnly {
    display: block;
  }
}

/* --------------------------------------------------
   reset.scss
   Modern Reset（destyle + sanitize + tailwind の良いとこ取り）
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (min-width: 767.1px) {
  html {
    scroll-padding-top: 200px;
  }
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  color: #000;
}

h1 {
  font-size: clamp(20px, 20px + (36 - 20) * (100vw - 320px) / 960, 36px);
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: clamp(18px, 18px + (30 - 18) * (100vw - 320px) / 960, 30px);
  font-weight: 700;
  line-height: 1.5;
}

h3 {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / 960, 24px);
  font-weight: 700;
  line-height: 1.6;
}

p {
  line-height: 1.8;
}

.opacty {
  opacity: 0.8;
}

.container {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .container {
    padding-inline: 5vw;
  }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.header {
  padding: clamp(15px, 15px + (20 - 15) * (100vw - 320px) / 960, 20px) 0;
}
.header__inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 90px;
}
@media (min-width: 767.1px) {
  .header__logo {
    width: 150px;
  }
}
.header__title {
  font-size: clamp(12px, 12px + (20 - 12) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
}

.footer {
  background: linear-gradient(180deg, rgb(244, 253, 255) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 100%);
  padding: clamp(30px, 30px + (50 - 30) * (100vw - 320px) / 960, 50px) 0;
  text-align: center;
}
.footer__logo {
  margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 320px) / 960, 20px);
  text-align: center;
}
.footer__logo img {
  display: inline-block;
  width: 160px;
}
@media (min-width: 767.1px) {
  .footer__logo img {
    width: 200px;
  }
}
.footer__copy {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #ccc;
  line-height: 1.5;
}

/* ==========================================================================
   Components
   ========================================================================== */
.content {
  padding: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px) 0 clamp(40px, 40px + (80 - 40) * (100vw - 320px) / 960, 80px);
}

.inner {
  max-width: 1200px;
}

.form-wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.form-body {
  padding: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px) clamp(20px, 20px + (60 - 20) * (100vw - 320px) / 960, 60px) clamp(20px, 20px + (60 - 20) * (100vw - 320px) / 960, 60px);
}

.step-nav {
  background: #fff;
  padding: clamp(10px, 10px + (30 - 10) * (100vw - 320px) / 960, 30px) clamp(0px, 0px + (50 - 0) * (100vw - 320px) / 960, 50px);
  width: 100vw;
  margin: 0 calc(50% - 50vw) clamp(20px, 20px + (30 - 20) * (100vw - 320px) / 960, 30px);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 767.1px) {
  .step-nav {
    width: 100%;
    margin: 0 0 clamp(20px, 20px + (30 - 20) * (100vw - 320px) / 960, 30px);
    border-radius: 10px;
  }
}
.step-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 767.1px) {
  .step-nav__list {
    gap: 3%;
  }
}
.step-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (min-width: 767.1px) {
  .step-nav__item {
    flex-direction: row;
    gap: 10px;
  }
}
.step-nav__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #999999;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 320px) / 960, 18px);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 767.1px) {
  .step-nav__num {
    width: 40px;
    height: 40px;
  }
}
.is-active .step-nav__num {
  background: #ED1600;
}
.is-done .step-nav__num {
  background: #1B82C3;
}
.step-nav__label {
  font-size: clamp(10px, 10px + (16 - 10) * (100vw - 320px) / 960, 16px);
  color: #999999;
  line-height: 1.3;
}
.is-active .step-nav__label {
  color: #ED1600;
  font-weight: 700;
}
.is-done .step-nav__label {
  color: #1B82C3;
  font-weight: 700;
}

.badge {
  display: inline-block;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  padding: 2px 6px 4px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 1.4;
  transform: translateY(-2px);
}
@media (min-width: 767.1px) {
  .badge {
    margin-left: 20px;
  }
}
.badge--required {
  background: #ED1600;
  color: #fff;
}
.badge--optional {
  background: #ccc;
  color: #6F6F6F;
}

.selected-service {
  background: #FFE6E3;
  border: 2px solid #ED1600;
  border-radius: 10px;
  padding: clamp(15px, 15px + (30 - 15) * (100vw - 320px) / 960, 30px) clamp(20px, 20px + (60 - 20) * (100vw - 320px) / 960, 60px);
  margin-bottom: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
.selected-service__title {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  margin-bottom: clamp(5px, 5px + (10 - 5) * (100vw - 320px) / 960, 10px);
}
.selected-service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(10px, 10px + (20 - 10) * (100vw - 320px) / 960, 20px);
}
.selected-service__back {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  color: #ED1600;
  font-weight: 700;
  transition: opacity 0.2s;
}
.selected-service__back:hover {
  opacity: 0.6;
}

.service-tag {
  display: inline-block;
  border: 1px solid #ED1600;
  border-radius: 9999px;
  color: #ED1600;
  font-weight: 700;
  background: #fff;
  padding: 7px 20px;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  line-height: 1.4;
}

.info-box {
  background: #FFE6E3;
  border: 2px solid #ED1600;
  border-radius: 10px;
  padding: clamp(15px, 15px + (30 - 15) * (100vw - 320px) / 960, 30px) clamp(20px, 20px + (60 - 20) * (100vw - 320px) / 960, 60px);
  margin-bottom: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
  margin-top: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 320px) / 960, 16px);
}
.info-box p + p {
  margin-top: 8px;
}
.info-box strong {
  font-weight: 700;
}

.section-head {
  background: #ED1600;
  padding: clamp(15px, 15px + (22 - 15) * (100vw - 320px) / 960, 22px) clamp(20px, 20px + (60 - 20) * (100vw - 320px) / 960, 60px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 767.1px) {
  .section-head {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}
.section-head__title {
  font-size: clamp(20px, 20px + (25 - 20) * (100vw - 320px) / 960, 25px);
  font-weight: 700;
  color: #fff;
}
.section-head__desc {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 320px) / 960, 16px);
  color: #fff;
}

.form-label {
  display: block;
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 767.1px) {
  .form-label {
    margin-bottom: 15px;
  }
}
.form-label.mb80 {
  margin-bottom: 20px;
}
@media (min-width: 767.1px) {
  .form-label.mb80 {
    margin-bottom: 80px;
  }
}

.form-group {
  margin-bottom: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
}
@media (min-width: 767.1px) {
  .form-group--narrow {
    flex-shrink: 0;
  }
}
.form-group--last {
  margin-bottom: 0;
}
@media (min-width: 767.1px) {
  .form-group--half {
    max-width: 46.75%;
  }
}

.form-input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #999999;
  border-radius: 4px;
  background-color: #fff;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  color: #000;
}
@media (min-width: 767.1px) {
  .form-input {
    height: 60px;
    padding: 0 25px;
  }
}
.form-input::-moz-placeholder {
  color: #999999;
}
.form-input::placeholder {
  color: #999999;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row .form-group {
  margin-bottom: 0;
}
@media (min-width: 767.1px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.5%;
    margin-bottom: 0;
  }
}

.select-wrap {
  position: relative;
}
.select-wrap .arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (min-width: 767.1px) {
  .select-wrap .arrow {
    right: 25px;
  }
}

.arrow {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 6px;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 7.7px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: 50% calc(100% - 1px);
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}

.form-select {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #999999;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  color: #000;
  line-height: 42px;
  cursor: pointer;
}
@media (min-width: 767.1px) {
  .form-select {
    height: 60px;
    line-height: 58px;
    padding: 0 25px;
  }
}
.form-select:disabled {
  background-color: #F2F2F2;
  color: #999999;
  cursor: default;
}

.form-radio-group {
  display: flex;
  gap: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
  flex-wrap: wrap;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
@media (min-width: 767.1px) {
  .form-radio {
    gap: 10px;
  }
}
.form-radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #1B82C3;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s;
}
@media (min-width: 767.1px) {
  .form-radio input[type=radio] {
    width: 30px;
    height: 30px;
  }
}
.form-radio input[type=radio]:checked {
  border-color: #1B82C3;
}
.form-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1B82C3;
}
@media (min-width: 767.1px) {
  .form-radio input[type=radio]:checked::after {
    width: 20px;
    height: 20px;
  }
}

.form-check-group {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: clamp(10px, 10px + (30 - 10) * (100vw - 320px) / 960, 30px);
       column-gap: clamp(10px, 10px + (30 - 10) * (100vw - 320px) / 960, 30px);
  row-gap: clamp(5px, 5px + (10 - 5) * (100vw - 320px) / 960, 10px);
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
@media (min-width: 767.1px) {
  .form-check {
    gap: 8px;
  }
}
.form-check input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
@media (min-width: 767.1px) {
  .form-check input[type=checkbox] {
    width: 30px;
    height: 30px;
  }
}
.form-check input[type=checkbox]:checked {
  border-color: #1B82C3;
  background-color: #1B82C3;
}
.form-check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
@media (min-width: 767.1px) {
  .form-check input[type=checkbox]:checked::after {
    top: 3px;
    left: 9px;
    width: 10px;
    height: 16px;
  }
}

.form-note {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  margin-top: 10px;
  line-height: 1.6;
}
@media (min-width: 767.1px) {
  .form-note {
    margin-top: 20px;
  }
}
.form-note--row {
  margin-bottom: clamp(10px, 10px + (50 - 10) * (100vw - 320px) / 960, 50px);
  margin-top: 0;
}
@media (min-width: 767.1px) {
  .form-note--row {
    margin-top: 20px;
  }
}

.form-notes {
  margin-bottom: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
}
.form-notes__item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 767.1px) {
  .form-notes__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.form-notes__link {
  color: #ED1600;
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 12px + (20 - 12) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  padding: clamp(18px, 18px + (25 - 18) * (100vw - 320px) / 960, 25px) clamp(12px, 12px + (100 - 12) * (100vw - 320px) / 960, 100px);
  border-radius: 10px;
  transition: opacity 0.2s;
  line-height: 1.2;
}
@media (min-width: 767.1px) {
  .btn {
    gap: 20px;
  }
}
.btn:hover {
  opacity: 0.85;
}
.btn--primary {
  background: #ED1600;
  color: #fff;
}
.btn--gray {
  background: #999999;
  color: #fff;
}
.btn__icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}
.btn__icon::after {
  content: "";
  display: block;
  background: url(../images/icon-arrow-r.svg) center/cover;
  width: 10px;
  height: 8px;
  position: absolute;
  inset: 0;
  margin: auto;
}
.btn__icon--left::after {
  transform: rotate(180deg);
  background: url(../images/icon-arrow-g.svg) center/cover;
}
.btn__icon--red::after {
  background: url(../images/icon-arrow-r.svg) center/cover;
}
.btn__icon--gray::after {
  background: url(../images/icon-arrow-g.svg) center/cover;
}

.form-actions--split {
  justify-content: space-between;
}

.btn-add-service {
  display: block;
  width: 100%;
  padding: clamp(14px, 14px + (20 - 14) * (100vw - 320px) / 960, 20px) 30px;
  border: 2px dashed #ED1600;
  border-radius: 10px;
  background: #FFE6E3;
  color: #ED1600;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-add-service:hover {
  opacity: 0.75;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(30px, 30px + (50 - 30) * (100vw - 320px) / 960, 50px);
}
.form-actions .btn {
  justify-content: center;
}
@media (min-width: 767.1px) {
  .form-actions .btn {
    width: auto;
    justify-content: flex-start;
  }
}

.form-action {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(30px, 30px + (50 - 30) * (100vw - 320px) / 960, 50px);
}

.form-actions--center {
  justify-content: center;
}

/* ==========================================================================
   Project (Page-specific)
   ========================================================================== */
.page-service {
  background: #F4FDFF;
}

.service-block {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: clamp(20px, 20px + (60 - 20) * (100vw - 320px) / 960, 60px) clamp(20px, 20px + (40 - 20) * (100vw - 320px) / 960, 40px);
  margin-bottom: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 960, 20px);
}

.page-input {
  background: #F4FDFF;
}
@media (min-width: 767.1px) {
  .page-input .form-body .form-row {
    margin-bottom: clamp(20px, 20px + (50 - 20) * (100vw - 320px) / 960, 50px);
  }
}

@media (min-width: 767.1px) {
  .form-row:has(.w240) {
    grid-template-columns: 240px 1fr;
  }
}

.postal-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 767.1px) {
  .postal-row {
    gap: 30px;
  }
}
.postal-row .form-input {
  max-width: 200px;
}
@media (min-width: 767.1px) {
  .postal-row .form-input {
    max-width: 240px;
  }
}

.btn-address-search {
  height: 45px;
  padding: 0 clamp(15px, 15px + (30 - 15) * (100vw - 320px) / 960, 30px);
  border: none;
  border-radius: 4px;
  background: #F2F2F2;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
@media (min-width: 767.1px) {
  .btn-address-search {
    height: 60px;
  }
}
.btn-address-search:hover {
  opacity: 0.75;
}

.form-file {
  border: 1px solid #999999;
  border-radius: 4px;
  padding: 8px 8px;
}
@media (min-width: 767.1px) {
  .form-file {
    padding: 15px;
  }
}
.form-file__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.form-file__label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.form-file__btn {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #999999;
  border-radius: 4px;
  background: #F2F2F2;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 320px) / 960, 16px);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
@media (min-width: 767.1px) {
  .form-file__btn {
    height: 38px;
    padding: 0 14px;
  }
}
.form-file__btn:hover {
  opacity: 0.75;
}
.form-file__name {
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 320px) / 960, 16px);
  color: #999999;
}

.id-doc-group {
  margin-top: clamp(12px, 12px + (20 - 12) * (100vw - 320px) / 960, 20px);
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 clamp(15px, 15px + (30 - 15) * (100vw - 320px) / 960, 30px);
  border-radius: 4px;
  background: #F2F2F2;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  transition: opacity 0.2s;
}
@media (min-width: 767.1px) {
  .btn-pdf {
    height: 60px;
  }
}
.btn-pdf:hover {
  opacity: 0.6;
}

.privacy-box {
  background: #F2F2F2;
  border-radius: 4px;
  padding: clamp(20px, 20px + (40 - 20) * (100vw - 320px) / 960, 40px);
  margin-bottom: clamp(12px, 12px + (15 - 12) * (100vw - 320px) / 960, 15px);
  line-height: 1.9;
  max-height: 300px;
  overflow-y: auto;
  font-feature-settings: "palt";
}
@media (min-width: 767.1px) {
  .privacy-box {
    max-height: 400px;
  }
}
.privacy-box p + p {
  margin-top: 10px;
}
.privacy-box .pv-h1 {
  margin-top: 25px;
  font-weight: 700;
}
.privacy-box .pv-h2 {
  margin-top: 10px;
}
.privacy-box .pv-h3 {
  margin-top: 6px;
}
.privacy-box .pv-h4 {
  margin-top: 4px;
}

.form-check--consent {
  margin-top: clamp(12px, 12px + (16 - 12) * (100vw - 320px) / 960, 16px);
}

.form-wrap + .form-wrap {
  margin-top: clamp(20px, 20px + (30 - 20) * (100vw - 320px) / 960, 30px);
}

.page-confirm {
  background: #F4FDFF;
}

.confirm-service-title {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  margin-bottom: clamp(14px, 14px + (20 - 14) * (100vw - 320px) / 960, 20px);
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #999999;
  margin-bottom: 50px;
}
@media (max-width: calc(767.1px - 1px)) {
  .confirm-table {
    display: block;
    border-bottom: none;
  }
  .confirm-table tbody {
    display: block;
  }
  .confirm-table tr {
    display: block;
  }
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .confirm-table th {
    border-bottom: 1px solid #999999;
  }
}
.confirm-table th,
.confirm-table td {
  padding: clamp(15px, 15px + (20 - 15) * (100vw - 320px) / 960, 20px) clamp(15px, 15px + (20 - 15) * (100vw - 320px) / 960, 20px);
  text-align: left;
  border-bottom: 1px solid #999999;
  vertical-align: middle;
}
.confirm-table th {
  background: #F2F2F2;
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 767.1px) {
  .confirm-table th {
    width: 180px;
    border-right: 1px solid #999999;
  }
}
.confirm-table td {
  background: #fff;
}
@media (min-width: 767.1px) {
  .confirm-table tr:last-child th,
  .confirm-table tr:last-child td {
    border-bottom: none;
  }
}

.page-complete {
  background: #F4FDFF;
}

.complete-message {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  line-height: 2;
}
.complete-message p + p {
  margin-top: 0;
}

.complete-number {
  margin-top: clamp(20px, 20px + (30 - 20) * (100vw - 320px) / 960, 30px);
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.u-mt0 {
  margin-top: 0 !important;
}

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

.u-ml0 {
  margin-left: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mt-sm {
  margin-top: 12px !important;
}

.u-mt-md {
  margin-top: 20px !important;
}

.u-mt-lg {
  margin-top: 32px !important;
}

.u-mb-sm {
  margin-bottom: 12px !important;
}

.u-mb-md {
  margin-bottom: 20px !important;
}

.u-mb-lg {
  margin-bottom: 32px !important;
}

.u-pt-sm {
  padding-top: 12px !important;
}

.u-pt-md {
  padding-top: 20px !important;
}

.u-pt-lg {
  padding-top: 32px !important;
}

.u-pb-sm {
  padding-bottom: 12px !important;
}

.u-pb-md {
  padding-bottom: 20px !important;
}

.u-pb-lg {
  padding-bottom: 32px !important;
}

.u-txt-center {
  text-align: center !important;
}

.u-txt-right {
  text-align: right !important;
}

.u-txt-left {
  text-align: left !important;
}

.u-flex {
  display: flex !important;
}

.u-inline {
  display: inline !important;
}

.u-inlineblk {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.u-flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.u-w100 {
  width: 100% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
  }
}
@media (min-width: 767.1px) {
  .u-hidden-md {
    display: none !important;
  }
}
.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}/*# sourceMappingURL=common.css.map */