@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.main-wrap {
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  margin-inline: auto;
  height: 370px;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding-top: 6.5rem;
    height: 250px;
  }
}
.main-wrap .page-title {
  display: inline-block;
}
.main-wrap .container {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
.main-wrap .container .text-area {
  z-index: 1;
  font-weight: 700;
  height: 100%;
  grid-area: stack;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 3rem;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .container .text-area {
    justify-content: start;
    top: 30%;
    left: 2rem;
    font-size: 8vw;
    padding: 0 2rem;
  }
}
.main-wrap .image-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  grid-area: stack;
  margin-left: auto;
}
.main-wrap .image-canvas .dots-area {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.main-wrap .image-canvas .dots-area .dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
  width: clamp(32px, var(--s, 2.4) * 1vw, 128px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot {
    width: clamp(24px, var(--s, 2.4) * 1vw, 128px);
  }
}
.main-wrap .image-canvas .dots-area .dot-red {
  animation-delay: 0.2s;
  background: #C94A4A;
}
.main-wrap .image-canvas .dots-area .dot-blue {
  animation-delay: 0.5s;
  background: #4A6FA8;
}
.main-wrap .image-canvas .dots-area .dot-yellow {
  animation-delay: 0.5s;
  background: #EEAE50;
}
.main-wrap .image-canvas .dots-area .dot-01 {
  --x: 70%;
  --y: 27%;
  --s: 4;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-01 {
    --x: 70%;
    --y: 27%;
    --s: 4;
  }
}
.main-wrap .image-canvas .dots-area .dot-02 {
  --x: 80%;
  --y: 52%;
  --s: 3;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-02 {
    --x: 80%;
    --y: 52%;
    --s: 3;
  }
}
.main-wrap .image-canvas .dots-area .dot-03 {
  --x: 90%;
  --y: 15%;
  --s: 2;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-03 {
    --x: 90%;
    --y: 15%;
    --s: 2;
  }
}
.main-wrap .image-canvas .dots-area .dot-04 {
  --x: 95%;
  --y: 50%;
  --s: 10;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-04 {
    --x: 95%;
    --y: 50%;
    --s: 10;
  }
}

.section-wrap {
  padding: 10rem 0;
  text-align: justify;
}
@media screen and (max-width: 767.98px) {
  .section-wrap {
    padding: 7rem 0;
  }
}
.section-wrap p {
  margin-bottom: 1.4em;
  font-size: 1.6rem;
  line-height: 2;
}
.section-wrap p span.attention {
  color: #C94A4A;
}

span.label-required {
  display: inline-block;
  background-color: #C94A4A;
  color: #fff;
  font-size: 0.85em;
  font-weight: 500;
  padding: 0 0.5rem;
  border-radius: 3px;
  line-height: 1.6;
  margin: 0 0.2rem;
}

table.tbl-form {
  width: 100%;
  background: #FAF7F2;
  margin-top: 3rem;
}
table.tbl-form tr {
  border-bottom: 1px solid #ddd;
}
table.tbl-form tr:first-child {
  border-top: 1px solid #ddd;
}
table.tbl-form th, table.tbl-form td {
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: left;
}
@media screen and (max-width: 767.98px) {
  table.tbl-form th, table.tbl-form td {
    width: 100%;
    float: left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
table.tbl-form th {
  width: 250px;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  table.tbl-form th {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
table.tbl-form th span.label-required {
  float: right;
  margin: 0.3rem 0 0 0.5rem;
}
@media screen and (max-width: 767.98px) {
  table.tbl-form th span.label-required {
    float: none;
  }
}
table.tbl-form td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  vertical-align: middle;
}
table.tbl-form td span.note {
  display: inline-block;
  color: #666;
}
table.tbl-form td p {
  line-height: 1.6;
}
table.tbl-form td p.txt-address {
  margin-top: 1em;
}
table.tbl-form td select {
  margin-bottom: 1.5rem !important;
}
table.tbl-form td input[type=radio] {
  margin: -0.2rem 0.5rem 0 0;
  scale: 1.4;
}
table.tbl-form td label {
  margin-right: 1em;
}

.input-middle {
  width: 500px;
  max-width: 100%;
}
@media screen and (max-width: 767.98px) {
  .input-middle {
    width: 100%;
  }
}

.input-max {
  width: 100%;
}

input.input-postcode {
  width: 180px;
  margin-left: 0.5rem !important;
}

/*プライバシー同意*/
.txt-policy-check {
  margin: 1.5em 0;
  line-height: 1.6 !important;
}

.checkbox-block {
  padding: 1.5rem 3rem;
  background: #FAF7F2;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}
.checkbox-block label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-block input[type=checkbox] {
  margin: -0.2rem 0.5rem 0 0;
  scale: 1.4;
}

.button-area .btn-normal {
  border: none;
  font-size: 1.8rem;
  padding: 1.2rem 4rem;
  margin: 1rem 0.5rem;
}
.button-area .btn-normal,
.button-area a.btn-normal {
  display: inline-block;
  background-color: #4A6FA8;
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 4rem;
  border-radius: 5rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
.button-area .btn-normal:hover,
.button-area a.btn-normal:hover {
  opacity: 0.7;
}
.button-area .button-back {
  background: #e5e5e5;
  color: #222;
  padding: 1.2rem 3rem;
}
@media screen and (max-width: 575.98px) {
  .button-area .button-back {
    padding: 1.2rem 2rem;
  }
}
.button-area .button-send {
  background: #4A6FA8;
  padding: 1.2rem 8rem;
  letter-spacing: 5;
}
@media screen and (max-width: 575.98px) {
  .button-area .button-send {
    padding: 1.2rem 6rem;
  }
}

/*ボタン*/
.button-area {
  margin: 4rem -1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .button-area {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.button-area.left {
  justify-content: flex-start;
}
@media screen and (max-width: 767.98px) {
  .button-area.left {
    justify-content: center;
  }
}
.button-area .btn-back {
  margin: 1rem 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .button-area .btn-back {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media screen and (max-width: 575.98px) {
  .radio-sp label {
    display: block;
    margin-bottom: 1em;
  }
}

.input-ng-msg {
  color: #C94A4A;
  margin-top: 3px;
  margin-right: 10px;
  padding: 1px 5px;
  background-color: #fee;
  border: 1px solid #C94A4A;
}

.sendError {
  text-align: center;
  color: #C94A4A;
  font-weight: bold;
  background-color: #ffff99;
  border: 1px solid #4A6FA8;
  padding: 5px;
  margin: 10px 5px;
  font-size: 1.2em;
}

.inquiryResMgsE {
  font-size: 12px;
  font-weight: bold;
  padding-top: 2px;
  color: #C94A4A;
  margin: 0;
}

.textfield04 {
  width: 4em;
}

.inputError span, .inputErrorAll span {
  color: #C94A4A;
  margin-top: 2rem;
  margin-right: 10px;
  padding: 1px 5px;
  background-color: #fee;
  border: 1px solid #4A6FA8;
  display: block;
}

.textfield04 {
  width: 4em;
}

.textfield02 {
  width: 3em;
}

.contents-title {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.4;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .contents-title {
    font-size: 2.4rem;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
  }
}
.contents-title::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.5rem;
  background-color: #C94A4A;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/*----------------------------------------------------
  thanks
----------------------------------------------------*/
.info-wrap {
  padding: 8rem 0;
}

.info-area {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .info-area {
    display: block;
  }
}
.info-area .contents {
  flex: 1;
  width: calc(100% - 250px);
}
.info-area .btn-back,
.info-area a.btn-back {
  display: inline-block;
  border: 2px solid #4A6FA8;
  background-color: #fff;
  color: #555;
  font-size: 1.8rem;
  text-decoration: none;
  padding: 1em 2em 1em 3.6em;
  border-radius: 2em;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .info-area .btn-back,
  .info-area a.btn-back {
    font-size: 1.5rem;
  }
}
.info-area .btn-back::before, .info-area .btn-back::after,
.info-area a.btn-back::before,
.info-area a.btn-back::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
}
.info-area .btn-back::before,
.info-area a.btn-back::before {
  width: 1.6em;
  height: 1.6em;
  background-color: #4A6FA8;
  border-radius: 50%;
  left: 1.2em;
  transform: translateY(-50%);
}
.info-area .btn-back::after,
.info-area a.btn-back::after {
  width: 0.5em;
  height: 0.5em;
  border-top: 0.14em solid #fff;
  border-right: 0.14em solid #fff;
  left: 1.84em;
  transform: translateY(-50%) rotate(-135deg);
}
.info-area .btn-back:hover,
.info-area a.btn-back:hover {
  opacity: 0.7;
}

.main-block {
  padding: 8rem 0;
}/*# sourceMappingURL=form.css.map */