@charset "UTF-8";
/* form共通css
---------------------------------------- */
.sideBannerPos {
  display: none;
}

#formAreaInner {
  border-radius: 4px;
  padding: 2em;
}

.formGrayBack {
  background-color: #EFF4F6;
}

.widths {
  width: 80px !important;
}

.width104 {
  width: 104px !important;
}

.width4em {
  width: 4em !important;
}

.width10em {
  width: 10em !important;
}

.width216 {
  width: 216px !important;
}

.marginBottom8 {
  margin-bottom: 8px;
}

.marginBottom16 {
  margin-bottom: 16px;
}

.marginBottom32 {
  margin-bottom: 32px;
}

.marginBottom64 {
  margin-bottom: 64px;
}

input:disabled {
  cursor: default;
  border: #b0b0b0 1px solid !important;
  background-color: #ccc !important;
}

.req {
  font-weight: bold;
  color: var(--cautionColor);
  margin-right: 0.2em;
}

.colorcaution {
  color: var(--cautionColor);
}

.err {
  background-color: #ffc9ca !important;
}

.inputFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.formError .errMsg {
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.formError .formErrorContent {
  width: auto;
  max-width: 180px;
}

#referBox {
  display: none;
}

.emailErr {
  background-color: #ffc9ca !important;
}

#EmailErr {
  display: none;
  color: #cc0000;
}

#ui-datepicker-div {
  font-size: 0.875rem;
}

.formGroup {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .formGroup {
    grid-template-columns: 200px 1fr;
  }
}
.formGroup.single {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .formGroup.single .inputFlex .textInputBody {
    width: 100%;
  }
}
.formGroup.disabled {
  display: none;
}
.formGroup .formGroupLabel {
  display: block;
  line-height: 1.8;
  font-weight: 700;
  color: var(--textColor);
  cursor: default;
}
.formGroup .inputFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.25em;
}
.formGroup .inputFlex .textInputBody {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--textColor);
  width: 100%;
  padding: 0.5em;
  border-radius: 4px;
  border: 1px solid #b0b0b0;
  /* height: calc(1rem + 0.5em + 0.5em + 2px); */
}
@media screen and (min-width: 900px) {
  .formGroup .inputFlex .textInputBody {
    width: 70%;
  }
}
.formGroup .inputFlex input[type=file] {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 4px;
  padding: 0.5em;
}
@media screen and (min-width: 900px) {
  .formGroup .inputFlex input[type=file] {
    width: 70%;
  }
}
.formGroup .inputFlex .exampleText {
  color: #88878a;
}
.formGroup .inputFlex .zipCodeWrap {
  line-height: 1.1;
}
.formGroup .inputFlex .zipCodeWrap .zipCodeSearch {
  font-size: 0.875rem;
  color: #268aff;
}
.formGroup .inputFlex .zipCodeWrap .zipCodeSearch::after {
  content: "";
  background-image: url("/images/mainframe/external.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}
.formGroup .inputFlex .zipCodeWrap .zipCodeSearch:visited {
  color: #268aff;
}
.formGroup .inputFlex .zipCodeWrap .zipCodeSearch > * {
  vertical-align: middle;
}
.formGroup .inputFlex + .inputFlex {
  padding-top: 0.5em;
}
.formGroup .confirmText {
  line-height: 1.8;
}
.formGroup + .formGroup,
.formGroup + #differentAddress {
  border-top: 1px solid #D3DFE3;
  margin-top: 1em;
  padding-top: 1em;
}
.formGroup + .formGroup.noBorder,
.formGroup + #differentAddress.noBorder {
  border-top: none;
  padding-top: 0;
}

#differentAddress + .formGroup {
  border-top: 1px solid #D3DFE3;
  margin-top: 1em;
  padding-top: 1em;
}

/* セレクトボックスのデザイン
---------------------------------------- */
.selectContainer {
  position: relative;
  display: inline-block;
}
.selectContainer::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 0.75em;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
.selectContainer select {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5em 2em 0.5em 0.5em;
  border-radius: 4px;
  color: inherit;
  background-color: #FFFFFF;
  border: 1px solid #b0b0b0;
  /* height: calc(1rem + 0.5em + 0.5em); */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.radioLabel {
  font-size: 1rem;
}

.radioLabel > span {
  margin-left: 0.3em;
  vertical-align: middle;
}

/* ボタン付きテキスト入力
---------------------------------------- */
.inputWithButton {
  display: grid;
  grid-template-columns: 1fr 56px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--textColor);
  border: 1px solid #B0B0B0;
  border-radius: 4px;
}
.inputWithButton > input {
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0.5em;
  border: none;
  border-radius: 4px 0 0 4px;
}
.inputWithButton > button {
  font-size: inherit;
  line-height: inherit;
  white-space: nowrap;
  text-align: center;
  padding: 0;
  color: var(--textColor);
  background-color: #F0F0F0;
  border: none;
  border-left: 1px solid #B0B0B0;
  border-radius: 0 4px 4px 0;
}
.inputWithButton > button:hover {
  background-color: #DDDDDD;
}
.inputWithButton > button:active {
  background-color: #CCCCCC;
}

/* 刺繍書体の選択リスト
---------------------------------------- */
#textfont {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  font-size: 0.75rem;
}
@media screen and (min-width: 900px) {
  #textfont {
    row-gap: 2em;
  }
}
#textfont label {
  width: 100%;
  margin-right: 0;
}
#textfont label span {
  vertical-align: middle;
  margin-left: 0.5em;
}
#textfont label img {
  width: 100%;
  margin-top: 4px;
}

.btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2em;
  margin-bottom: 3em;
}
@media screen and (min-width: 900px) {
  .btnBox {
    -webkit-column-gap: 3em;
       -moz-column-gap: 3em;
            column-gap: 3em;
  }
}
.btnBox .baseButton {
  color: inherit;
}
.btnBox .btnSubmit,
.btnBox .btnCancel {
  width: 280px;
}
.btnBox .btnSubmit button {
  margin: 0 auto;
}

/*===============================================
●画面の横幅が769px以下(スマホ)
===============================================*/
@media screen and (max-width: 770px) {
  .marginBottom8 {
    margin-bottom: 1.2vw;
  }
  .marginBottom16 {
    margin-bottom: 2.4vw;
  }
  .marginBottom32 {
    margin-bottom: 4.8vw;
  }
  .marginBottom64 {
    margin-bottom: 9.6vw;
  }
}/*# sourceMappingURL=form.css.map */