@charset "UTF-8";
/* form用 */

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border: 0;
}

#form-container {
  max-width: 880px;
  margin: 40px auto;
}
#form-container .row {/*行*/
  border-bottom: var(--form-hr) 1px solid;
  padding: 30px 0;
}
#form-container .item-name {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
}
#form-container .item-name:not(._sub)::before {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100px;
}
#form-container .item-name._sub {
  border-left: none;
  padding-left: 0;
}

.w100 { width: 100%;}
.w90 { width: 90%;}
.w80 { width: 80%;}
.w70 { width: 70%;}
.w60 { width: 60%;}
.w50 { width: 50%;}
.w40 { width: 40%;}
.w30 { width: 30%;}
.w20 { width: 20%;}
.w10 { width: 10%;}

.required {
  border-radius: 4px;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 2px 4px;
  line-height: 1;
  text-align: center;
  margin: 0 0 0 10px;
  position: relative;
  top: -2px;
}
/*入力欄　列*/
.form-wrap {
  width: 100%;
}
.form-wrap._flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

/*テキスト*/
.form-txt {
  border: var(--input-line) 1px solid;
  border-radius: 4px;
  padding: 0 1.5rem;
  height: 42px;
  line-height: 2;
  width: 100%;
  appearance: none;
}
.form-txt:focus {
  border: var(--form-check) 1px solid;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.20);
  outline: 0;
}
.form-txt.error {
  border: var(--input-error-line) 1px solid;
}
/*テキストエリア*/
.form-textarea {
  border: var(--input-line) 1px solid;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  height: 100%;
  line-height: 1.6;
  width: 100%;
  appearance: none;
}
.form-textarea:focus {
  border: var(--form-check) 1px solid;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.20);
  outline: 0;
}
.form-textarea.error {
  border: var(--input-error-line) 1px solid;
}
/*セレクトボックス*/
.form-select {
  position: relative;
  width: 100%;
}
.form-select.w-date {
    max-width: 22%;
  }
.form-select::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  pointer-events: none;
}
.form-select select {
  height: 42px;
  line-height: 2;
  width: 100%;
  padding: 0 1.5rem;
  border-radius: 4px;
  border: var(--input-line) 1px solid;
  appearance: none;
  cursor: pointer;
}
.form-select select:focus {
  outline: 0;
  border: var(--form-check) 1px solid;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.20);
}
.form-select select.error {
  border: var(--input-error-line) 1px solid;
}
@media screen and (min-width: 900px) {
  .form-select {
    max-width: 240px;
  }
  .form-select.w-date {
    max-width: 180px;
  }
}

/*ラジオボタン*/
.form-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 2;
}
.form-radio input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  /*border: 0;*/
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.form-radio-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #666;
}
.form-radio-name:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid var(--input-line);
  border-radius: 50%;
  margin-right: 6px;
  flex-shrink: 0;
}
.form-radio input:checked + .form-radio-name {
  color: var(--form-check);
}
.form-radio input:checked + .form-radio-name:before {
  border: 0.35em solid var(--form-check);
}
.form-radio input:focus-visible + .form-radio-name ._text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}
/*チェックボックス*/
.form-checkbox{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 2;
}
.form-checkbox input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  /*border: 0;*/
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.form-checkbox-name {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.form-checkbox-name:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid var(--input-line);
  border-radius: 3px;
  margin-right: 6px;
  flex-shrink: 0;
}
.form-checkbox input:checked + .form-checkbox-name {
  color: var(--form-check);
}
.form-checkbox input:checked + .form-checkbox-name:before {
  border: 1px solid var(--form-check);
  background-color: var(--form-check);
}
.form-checkbox input:checked + .form-checkbox-name:after {
  content: "";
  position: absolute;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 0.4em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.65em;
  transform: translateY(-1px) rotate(45deg);
}
.form-checkbox input:focus-visible + .form-checkbox-name ._text {
  background: linear-gradient(transparent 90%, rgba(33, 150, 243, 0.3) 90%);
}

.w-postal {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .w-postal {
    width: 160px;
  }
}

/*注釈*/
.note01 {
  color: var(--form-note01);
  font-size: 0.875em;
  line-height: 1.4;
  margin-top: 1rem;
}
.error-txt {
  color: var(--form-note02);
  font-size: 1em;
  line-height: 1.4;
  margin-top: 5px;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto
}
.btn-wrap .form-bt1,
.btn-wrap .form-bt2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1em;
  padding: 0 1em;
  width: calc(50% - 20px);
  height: 54px;
  transition: 0.3s;
}
@media screen and (min-width: 900px) {
  .btn-wrap .form-bt1,
  .btn-wrap .form-bt2 {
    max-width: 300px;
  }
}
@media (hover: hover) {
  .btn-wrap .form-bt1:hover,
  .btn-wrap .form-bt2:hover {
    opacity: 0.8;
  }
}

.error-box {
  border-radius: 4px;
  font-size: 1em;
  line-height: 1.4;
  padding: 1em;
  margin: 20px auto;
}

/*確認画面*/
.confirm .row {
  display: flex;
  flex-direction: column;
}
.confirm .row .inner_columns {
  display: flex;
  flex-direction: column;
}
.confirm .input-txt {
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 900px) {
  .confirm .row {
    flex-direction: row;
  }
  .confirm .item-name {
    width: 30%;
  }
  .confirm .input-txt {
    width: 70%;
  }
  .confirm .row .inner_columns {
    width: 70%;
  }
  .confirm .row .inner_columns .input-txt {
    width: 100%;
  }
}


/*完了画面*/
.thanks {
  margin: 100px auto 50px;
  text-align: center;
}

.thanks ._ttl {
  font-size: min(6.4vw,18px);
  line-height: 1.8;
  margin: 60px auto 40px;
}
.thanks ._ttl span {
  display: inline-block;
}
.thanks .all_txt {
  line-height: 1.8;
}
@media screen and (min-width: 900px) {
  .thanks ._ttl {
    font-size: min(2.67vw,24px);
  }
}

/*プライバシーポリシー(modal)*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 5%;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 5px;
}

.close-modal {
    cursor: pointer;
}

.modal-header {
    position: relative;
}

.modal-header .close-modal {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    border: none;
    background: none;
}

.modal-body {
    max-height: 70%;
    overflow-y: auto;
}

/*レンタカー事業者検索*/
.business-serch {}
.business-serch .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  /*border: 1px solid #ccc;*/
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/*サイドバーの検索リストボックス*/
.search-menu .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .business-serch .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}