@charset "UTF-8";
/* CSS Document */

input[type="text"], input[type="tel"], input[type="email"], input[type="password"], textarea {
  border: #ddd 1px solid;
  border-radius: 3px;
  padding: 10px;
}

/*フォームの幅*/
.form-w-1 {
  width: 100%;
  max-width: 480px;
}
/*イレギュラーで幅を伸ばす場合*/
label.w-full {
  width: 100%!important;
}

/*--------------------------------
  ラジオボタン
*/
.radio-wrap {
  display: flex;
  flex-wrap: wrap;
}
.radio-wrap label {
  width: 48%;
  cursor: pointer;
}
.radio-wrap label input[type="radio"] {
  opacity: 0;/*input要素は非表示*/
  appearance: none;
  position: absolute;
}
.radio-wrap label .label-txt {
  display: inline-block;/*エリアの幅すべてをクリックできるようにするにはここを block にする*/
  position: relative;
  padding: 7px 7px 7px 26px;
}
.radio-wrap label .label-txt::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background: #fff;
  content: "";
  border-radius: 50%;
}
.radio-wrap label .label-txt::after {
  position: absolute;
  top: 11px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--cmn-red);
  content: "";
  opacity: 0;
  transition: all 0.3s;
}
.radio-wrap label input:focus + span::before {
  box-shadow: 0 0 4px #ccc;
}
.radio-wrap label input:checked + span::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .radio-wrap label {
    width: 32%;
  }
}

/*disabled　時のラジオボタン*/
.radio-wrap input[type="radio"]:disabled + span::before {
  background: #eee;
  border: 1px solid #e6e6e6;
}
.radio-wrap input[type="radio"]:checked:disabled + span::after {
  background-color: #888;
}

/*--------------------------------
  チェックボックス
*/
.checkbox-wrap {
  display: flex;
  flex-wrap: wrap;
}
.checkbox-wrap label {
  width: 48%;
  cursor: pointer;
}
.checkbox-wrap > label {
  margin-bottom: 10px;
}

.checkbox-wrap input[type="checkbox"] {
  opacity:0;
  appearance: none;
  position: absolute;
}
.checkbox-wrap .label-txt {
  display: inline-block;
  position: relative;
  padding: 7px 7px 7px 26px;
}
.checkbox-wrap .label-txt::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background: #fff;
  content: "";
  transition: all 0.3s;
}
.checkbox-wrap .label-txt::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  color: var(--cmn-red);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  opacity: 0;
  transition: all 0.3s;
}
.checkbox-wrap input:focus + span::before {
  box-shadow: 0 0 4px #ccc;
}
.checkbox-wrap input:checked + span::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .checkbox-wrap label {
    width: 32%;
  }
}
/*disabled　時のチェックボックス*/
.checkbox-wrap input[type="checkbox"]:disabled + span::before {
  background: #eee;
  border: 1px solid #e6e6e6;
}

/*--------------------------------
  セレクトボックス
*/
.select-wrap {
  display: inline-block;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 3px;
  vertical-align: middle;
}
.select-wrap select {
  appearance: none;
  width: 300px;/*ここでボックスの幅がきまる*/
  padding: 10px 15px;
  padding-right: 1em;
  border: none;
  color: #2a2a2a;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  height: 40px;
}
.select-wrap::before {
  position: absolute;
  top: 17px;
  right: 16px;
  width: 0;
  height: 0;
  border: transparent 6px solid;
  border-top: #ddd 8px solid;
  content: "";
  pointer-events: none;
}
.select-wrap select::-ms-expand {
  display: none;
}
/*--------------------------------
  レイアウト
*/
/*2列*/
.column-2 {/*初期幅は100%。狭める場合は個別にスタイル指定が必要*/
  display: flex;
  align-items: center;
}
.column-2 .col-item {
  width: 30%;
  margin: 0 1% 0 0;
}
.sub-label {
  color: #A6A6A6;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .column-2 .col-item {
    width: 25%;
  }
}

/*電話番号*/
.phone-column {
  display: flex;
  align-items: center;
}
.phone-column .col-item {
  width: 6em;
  margin: 0 1%;
}

/*disabled*/
input:disabled {
  background-color: #f3f3f3;
  border: #e7e7e7 1px solid;
}

/*1行で幅全体を使用する場合（その他など）*/
.form-set .w-full-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.form-set .w-full-row label {
  width: auto;
  padding-right: 1em;
}
.form-set .w-full-row .col-item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .form-set .w-full-row .col-item {
    width: auto;
  }
}

/*テキストボックスの入力一覧*/
.form-set ul._inner-form-list {}
.form-set ul._inner-form-list li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 15px;
}

/*項目名*/
.form-set ul._inner-form-list li ._item {
  margin: 0 20px 5px 0;
}
/*テキストボックス*/
.form-set ul._inner-form-list li ._txt-box {
  max-width: 480px;
}
/*小見出しとテキストボックスの場合*/
.form-set ul._inner-form-list li .col-item input[type="text"] {
  width: 100%;
  max-width: 480px;
}
@media screen and (min-width: 768px) {
  .form-set ul._inner-form-list li {
    align-items: center;
    flex-direction: row;
  }
  .form-set ul._inner-form-list li ._item {
    width: 25%;
  }
  .form-set ul._inner-form-list li ._txt-box {
    width: calc(75% - 20px);
  }
  .form-set ul._inner-form-list li .col-item {
    width: calc(75% - 20px);
  }
}
/*チェックボックスのデザイン変更を適用*/
.form-set ul._inner-form-list .checkbox-wrap label {
  width: auto;
}


/*--------------------------------
  ページ下の注釈
*/
.footerNoteBox {
  background-color: #fff;
  margin: 40px 0;
  padding: 20px 15px;
  border-top: var(--cmn-red) 3px solid;
}
@media screen and (min-width: 768px) {
  .footerNoteBox {
    margin: 60px 0 40px;
    padding: 20px;
  }
}
.footerNoteBox .exclude dt {
  color: var(--cmn-red);
  font-size: 1.6rem;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 10px;
	border-bottom: #ddd 1px solid;
	padding-bottom: 6px;
  text-align: center;
  position: relative
	}
.footerNoteBox .exclude dd {
  margin: 20px auto 0;
}
.footerNoteBox .exclude dd ul {
  margin-left: 20px;
}
.footerNoteBox .exclude dd li {
	list-style-type: circle;
	margin-bottom: 8px;
	line-height: 1.5;
	}
.footerNoteBox .exclude dd li .memo {
	display: block;
  font-size: 1.2rem;
	margin: 3px 0 0 0;
  color: #888;
}
.footerNoteBox .attention {
  margin: 20px 0 0;
  color: var(--cmn-red);
}
.footerNoteBox .attention dt {
  display: flex;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 5px;
	}
.footerNoteBox .attention dt::before {
  content: '';
  background: url("/images/ico_alert.svg") no-repeat center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.footerNoteBox .attention dd {
	line-height: 1.5;
	text-align: left;
	}

/*注釈部分の表*/
.footerNote {
  margin: 40px 0 0;
}
.footerNote + .footerNoteBox {
  margin: 20px 0 40px;
}
.footerNote .footerNote-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.footerNote .tbl-vintage-car {
	line-height: 1.5;
	margin-bottom: 30px;
	}
.footerNote .tbl-vintage-car td,
.footerNote .tbl-vintage-car th {
	border: #bbb 1px solid;
	padding: 4px;
	}
.footerNote .tbl-vintage-car th {
	background-color: var(--cmn-gray04);
	}
.footerNote .tbl-vintage-car td {
  background-color: #fff;
}
.footerNote .tbl-vintage-car .release {
	background-color:#ffe7ee;
	}
@media screen and (min-width: 768px) {
  .footerNote .footerNote {
    margin: 60px 0 40px;
  }
}

/*プライバシーポリシー*/
.privacy-wrap {}
.privacy-wrap .checkbox-wrap label {
  width: auto;
}
.privacy-wrap .checkbox-wrap a {
  color: var(--txt-link01);
}
@media screen and (min-width: 768px) {
  .privacy-wrap {
    padding: 30px
  }
}
@media (hover: hover) {
  .privacy-wrap .checkbox-wrap a:hover {
    text-decoration: underline;
  }
}