@charset "UTF-8";
.form-block {
  width: 960px;
}

footer .foot-links,
footer .foot-main,
footer .foot-search {
  display: none;
}

.sec-support,
.contentBottom-explanation {
  display: none;
}

.c-formLead {
  margin-bottom: 2.2em;
}
@media screen and (max-width: 999px) {
  .c-formLead {
    margin: 0 1em 2em;
  }
}

.c-inputTable {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.c-inputTable > tbody > tr {
  background: #fff;
}
.c-inputTable > tbody > tr > th, .c-inputTable > tbody > tr > td {
  border: 1px solid #ccc;
  padding: 8px;
  line-height: 1.4;
}
.c-inputTable > tbody > tr > th {
  text-align: right;
  width: 30%;
  font-weight: bold;
  vertical-align: middle;
}
.c-inputTable > tbody > tr > th.c-required {
  padding-left: 3em;
  position: relative;
}
.c-inputTable > tbody > tr > th.c-required::before {
  content: "必須";
  line-height: 1;
  color: #fff;
  font-size: 10px;
  display: inline-block;
  padding: 3px;
  background: #C00;
  border-radius: 3px;
  position: absolute;
  left: 8px;
  margin: auto 0;
}
.c-inputTable > tbody > tr > td input, .c-inputTable > tbody > tr > td textarea, .c-inputTable > tbody > tr > td select {
  border: 1px solid #ccc;
  font-size: 14px;
}
.c-inputTable > tbody > tr > td > input, .c-inputTable > tbody > tr > td > textarea {
  width: 80%;
}
.c-inputTable > tbody > tr > td > label + label {
  margin-left: 24px;
}
.c-inputTable > tbody > tr > td label + input[type=text] {
  margin-left: 6px;
}
.c-inputTable > tbody > tr > td label[id^=label--address] {
  display: inline-block;
  text-align: right;
  width: 6em;
}
.c-inputTable > tbody > tr > td input[type=radio], .c-inputTable > tbody > tr > td input[type=checkbox] {
  margin: 4px 6px;
}
.c-inputTable > tbody > tr > td > ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-inputTable > tbody > tr > td > ol > li:not(:last-of-type) {
  margin-bottom: 6px;
}
.c-inputTable > tbody > tr > td > .c-inputNameArea {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.c-inputTable > tbody > tr > td > .c-inputNameArea > * + * {
  margin-left: 20px;
}
.c-inputTable > tbody > tr > td > .c-inputNameArea > .c-inputName input[type=text] {
  width: 240px;
}
.c-inputTable > tbody > tr:nth-of-type(odd) {
  background: #f3f3f3;
}

.c-choicesTable {
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
.c-choicesTable + .c-choicesTable {
  margin-top: 16px;
}
.c-choicesTable > tbody > tr > th {
  background: #f3f3f3;
  padding: 6px;
  text-align: left;
  font-weight: bold;
}
.c-choicesTable > tbody > tr > td {
  background: #fff;
  padding: 6px 3px;
}
.c-choicesTable > tbody > tr > td > label {
  width: 33.3%;
  margin: 4px 0;
  cursor: pointer;
}
.c-choicesTable > tbody > tr > td > label:hover {
  font-weight: bold;
}
.c-choicesTable > tbody > tr > td > label.c-choice--checked {
  border: 1px solid #ccc;
  background: #e9f3e9;
}

[class^=c-choices--column] {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
[class^=c-choices--column] > label {
  margin: 4px 0;
  cursor: pointer;
  box-sizing: border-box;
  padding-left: 2em;
  text-indent: -2em;
}

.c-choices--column2 > label {
  width: 50%;
}

.c-choices--column3 > label {
  width: 33.3333333333%;
}

.c-choices--block > * {
  display: block;
  margin: 4px 0;
  cursor: pointer;
  margin-right: 1em;
}

.c-inputGroup > * + * {
  margin-top: 8px;
}
.c-inputGroup > .c-inputGroup_item label {
  display: inline-block;
  width: 8em;
  text-align: right;
}
.c-inputGroup > .c-inputGroup_item input {
  width: 66%;
}

.c-formNote {
  margin: 4px 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.c-formNote::before {
  content: "※";
  margin-right: 0.2em;
}

.c-requiredError {
  border: 1px solid #f99;
  border-radius: 3px;
  background: #fee;
  color: #f00;
  margin-top: 4px;
  padding: 5px;
}

.c-requiredError__label {
  font-weight: bold;
}
.c-requiredError__label::before {
  content: "[";
}
.c-requiredError__label::after {
  content: "]";
}

.c-formModal {
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  overflow: auto;
  padding: 36px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  transform: translate3d(0px, 0px, 0px);
}
.c-formModal.is-active {
  display: flex;
}

.c-formModal__inner {
  background: #f9f9f9;
  min-width: 50%;
  padding: 24px;
  height: 900px;
}

.c-formConfirmation .c-formConfirmation__title {
  border: none;
  font-family: inherit;
  font-size: 2.4em;
  font-weight: normal;
  margin: 0 0 16px;
  padding: 0;
  text-align: center;
}
.c-formConfirmation .c-formConfirmation__table {
  border-collapse: collapse;
  width: 100%;
}
.c-formConfirmation .c-formConfirmation__table tr {
  background: #F6F7F9;
}
.c-formConfirmation .c-formConfirmation__table tr:nth-of-type(odd) {
  background: #fff;
}
.c-formConfirmation .c-formConfirmation__table th {
  max-width: 40%;
}
.c-formConfirmation .c-formConfirmation__table th, .c-formConfirmation .c-formConfirmation__table td {
  border: 1px solid #ccc;
  border-width: 1px 0;
  font-weight: normal;
  padding: 3px 10px;
  text-align: left;
}
.c-formConfirmation .c-formConfirmation__footer {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
}

.c-buttonContainer--center {
  padding: 10px 0;
  text-align: center;
}

[class^=c-formButton] {
  background: #aaa;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 16px 12px;
  position: relative;
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 180px;
}
[class^=c-formButton]:hover {
  background: #bbb;
}
[class^=c-formButton]::before {
  content: "";
  border: 1px solid #fff;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
}
[class^=c-formButton].is-disabled, [class^=c-formButton].is-disabled:hover {
  background: #ddd;
  color: #fff;
  cursor: default;
}

.c-formButton--submit,
.c-formButton--confirm {
  background: #0067B6;
}
.c-formButton--submit:hover,
.c-formButton--confirm:hover {
  background: #2091E8;
}

.c-button--reselect {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  background: #fff;
  font-size: 1em;
  line-height: 1.5;
  padding: 4px 12px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.c-formComment {
  margin: 4px 0;
}

.g-recaptcha {
  margin: 30px 0;
}
.g-recaptcha div {
  margin: 0 auto;
}

@media screen and (max-width: 999px) {
  .c-inputTable > tbody > tr > td > input, .c-inputTable > tbody > tr > td > textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .c-inputTable > tbody > tr > td > .c-inputNameArea {
    flex-direction: column;
  }
  .c-inputTable > tbody > tr > td > .c-inputNameArea > .c-inputName {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .c-inputTable > tbody > tr > td > .c-inputNameArea > .c-inputName > input[type=text] {
    width: 100%;
  }
  .c-inputTable > tbody > tr > td > .c-inputNameArea > * + * {
    margin-top: 10px;
    margin-left: 0;
  }
  #shopKeyHelpLink {
    display: block;
    padding-top: 4px;
  }
}
@media screen and (max-width: 640px) {
  .c-inputTable > tbody > tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .c-inputTable > tbody > tr:last-of-type {
    margin-bottom: 0;
  }
  .c-inputTable > tbody > tr > th {
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    border-bottom: none;
  }
  .c-inputTable > tbody > tr > th br {
    display: none;
  }
  [class^=c-choices--column] > label {
    width: 100%;
  }
}
.col--1 {
  display: grid;
  align-items: stretch;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-gap: 8px 12px;
}

.col--2 {
  display: grid;
  align-items: stretch;
  grid-template-columns: calc(50% - 6px) calc(50% - 6px);
  grid-template-rows: auto;
  grid-gap: 8px 12px;
}

.col--3 {
  display: grid;
  align-items: stretch;
  grid-template-columns: calc(33.3% - 8px) calc(33.3% - 8px) calc(33.3% - 8px);
  grid-template-rows: auto;
  grid-gap: 8px 12px;
}

.col--4 {
  display: grid;
  align-items: stretch;
  grid-template-columns: calc(25% - 8px) calc(25% - 8px) calc(25% - 8px) calc(25% - 8px);
  grid-template-rows: auto;
  grid-gap: 8px 12px;
}

@media screen and (max-width: 640px) {
  .col--2, .col--3, .col--4 {
    grid-template-columns: auto;
  }
}
.form-block {
  position: relative;
}

.c-formLoader {
  background: rgba(232, 232, 232, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #999;
  margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=maps/sf-form.css.map */
