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

/*==================================================
  FORM PARTS
==================================================*/
input {
  padding: 5px;
}

input[type="radio"] {
  width: auto;
}

.btnSend input[type="submit"] {
  font-size: clamp(2.4rem, 2vw, 2.9rem);
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
  padding: 20px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  -webkit-appearance: button;
  appearance: button;
  text-indent: .01px;
  text-overflow: "";
  padding: 8px 15px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.5s;
  border-radius: 5px;
  border: 1px solid var(--color-lightgray);
  background: #F7F7F7;
  margin: 0!important;
}

input[type="text"] + input[type="text"] {
  margin-left: 10px!important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="radio"]:focus,
textarea:focus,
input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover,
select:hover {
  border: 1px solid var(--color-lightgray);
  box-shadow: 0px 0px 5px 0px rgba(102, 175, 233, 0.4);
}

input[type="checkbox"] {
  border: 1px solid #aaaaaa;
  vertical-align: -8px;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  margin-right: 5px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  background: #e2e2e2;
  background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}

input[type="checkbox"]:checked {
  border: 1px solid var(--color-black);
}

input[type="checkbox"]:checked:before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  content: "";
  width: 10px;
  height: 4px;
  background: var(--color-black);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

input[type="checkbox"]:checked:after {
  display: block;
  position: absolute;
  left: 10px;
  top: 16px;
  content: "";
  width: 16px;
  height: 4px;
  background: var(--color-black);
  -webkit-transform: rotate(-53deg);
  transform: rotate(-53deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

select {
  box-shadow:none;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 5px;
  background: #fff;
}

select::-webkit-scrollbar {
  width: 8px;
}

select::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 100px;
}

select::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 100px;
}

/* セレクトボックス矢印変更 */
select.select_bg {
  width: 250px;
  position: relative;
  -webkit-appearance: none;
    appearance: none;
  background: #F7F7F7;
}

td.select_arrow {
  width: 350px;
  position: relative;
}

td.select_arrow::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 28px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: rotate(45deg);
  pointer-events: none;
}

td.select_arrow.wish_time::after {
  right: unset;
  left: 240px;
}

input.w100p,
textarea.w100p {
  width: 100%;
}

input.w250 {
  width: 250px;
}

input::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  color: #969494;
}

/*==================================================
  FORM OPTIONS
==================================================*/
/* フォームwarning */
form .warning {
  color: #999;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 400;
}

form .warning span.font_red01 {
  background: var(--color-red);
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 1px 8px 2px;
  margin-right: 3px;
}

/*フォームtable*/
.entrytbl {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.entrytbl a {
  text-decoration: underline;
  font-size: 1.6rem;
}

.entrytbl td {
  margin-bottom: 20px;
  display: block;
}

.entrytbl th {
  font-weight: 500;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}

.entrytbl td p {
  margin-top: 10px;
}

.entrytbl td.entry_innerTblWrap {
  padding: 0;
}

.entrytbl .entry_innerTbl td {
  border-bottom: none;
}

.entrytbl .entry_innerTbl label {
  margin-right: 13px;
  padding-bottom: 10px;
  display: inline-block;
  font-size: 1.6rem;
}

input[name="customer_last_name"],
input[name="customer_first_name"],
input[name="customer_last_name_kana"],
input[name="customer_first_name_kana"] {
width: 170px;
}

input[name="zip_code"] {
  width: 162px;
}

input[name="address"] {
  width: 456px;
}

input[name="phone1"],
input[name="reserve_date"],
input[name="phone"],
input[name="event_title"],
input[name="model_title"] {
  width: 330px!important;
}

.customer_name .wpcf7-form-control-wrap {
  margin-right: 10px;
}

/*************** フォーム注釈 ****************/
.required,
.arbitrary,
.empty {
  position: relative;
}

.required .label-required {
  background: var(--color-red);
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  padding: 1px 8px 1px;
  position: absolute;
  right: 0;
  top: 15px;
}

.arbitrary .label-arbitrary {
  background: var(--color-dark);
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  padding: 1px 8px 1px;
  position: absolute;
  right: 0;
  top: 15px;
}

.change_required .required .label-arbitrary {
  display: none;
}

.change_required .arbitrary .label-required {
  display: none;
}

.memberPage.editPage th.required::before {
  display: block;
}

/*注釈*/
.form_caution {
  display: inline-block;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 400;
  color: #999;
  margin-top: 10px;
}

.entrytbl .entry_innerTbl label[for="confirm_password"] {
  display: block;
  font-weight: 400;
}

/*郵便番号リンク*/
.form_link_zip {
  display: inline-block;
  padding: 8px 14px;
  background: var(--color-dark);
  border-radius: 100px;
  color: #fff;
  position: relative;
  font-size: clamp(1.2rem, 2vw, 1.4rem)!important;
  text-decoration: none!important;
  margin-left: 10px;
}

/*ラジオボタン*/
.entrytbl .entry_innerTbl td.radio label {
  display: inline-block;
  background: #F7F7F7;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
  padding: 8px 10px 7px;
  font-weight: 400;
}

.entrytbl .entry_innerTbl td.radio input[type="radio"] {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid #aaa;
  border-radius: 2px;
  background: #fff;
  vertical-align: -1px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.entrytbl .entry_innerTbl td.radio input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-black);
  border-radius: 1px;
  content: '';
}

/*チェックボックス*/
.checkItem {
  display: inline-block;
  background: #F7F7F7;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 7px 10px 8px;
  font-size: 1.6rem;
}

.checkItem input {
  width: 12px;
  height: 12px;
  border: 2px solid #aaa;
  vertical-align: -1px;
  background: #fff;
  margin-right: 7px !important;
}

.checkItem input[type="checkbox"]:checked:before {
  left: -4px;
  top: 8px;
}

.checkItem input[type="checkbox"]:checked:after {
  left: 5px;
  top: 7px;
}

/*datepicker定休日*/
.class-holiday span {
  color: var(--color-red) !important;
}

/*イベントタイトル*/
#select-title{
  width:80%;
}

/*cf7送信ボタン*/
.submit_warning {
  color: var(--color-red);
  font-weight: bold;
  text-align: center;
  margin: var(--gutter-narrow) auto;
}

.submit_box{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.submit_box input[type="submit"]{
  margin-bottom:1em;
  background: var(--color-black);
}

.submit_box input[disabled]{
  background:var(--color-lightgray);
}

/*バリデーションメッセージ表示位置調整*/
.entrytbl .brdr_td:has(.wpcf7-not-valid-tip){
  padding-bottom:3.5em;
  position:relative;
}
.entrytbl .brdr_td:has(.wpcf7-not-valid-tip) .wpcf7-form-control-wrap{
  position: static;
}
.entrytbl .brdr_td .wpcf7-not-valid-tip{
  background: #fff;
  padding: 5px;
  color: var(--color-red);
  font-weight: bold;
  display: block;
  width:80%;
  position:absolute;
  bottom:10px;
  left:20px;
}

.wpcf7-list-item {
  display: inline-block;
  background: #F7F7F7;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 10px 0 0;
  padding: 7px 10px 8px;
  font-size: 1.6rem;
}

.wpcf7-list-item input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border: 2px solid #aaa;
  vertical-align: -1px;
  background: #fff;
  margin-right: 7px !important;
}

.wpcf7-list-item input[type="checkbox"]:checked:before {
  left: -6px;
  top: 8px;
}

.wpcf7-list-item input[type="checkbox"]:checked:after {
  left: 2px;
  top: 7px;
}

.brdr_td.select_arrow::after,
.brdr_td .entry_innerTbl .select_arrow::after {
  right: unset;
  left: 240px;
}

.brdr_td .entry_innerTbl .select_arrow {
  display: flex;
  align-items: center;
}

.brdr_td .entry_innerTbl .select_arrow label {
  padding-bottom: 0;
}

.brdr_td .entry_innerTbl .select_arrow::after {
  left: 320px;
}

.brdr_td > label {
  display: inline-block;
  background: #F7F7F7;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 10px 0 0;
  padding: 7px 10px 8px;
}

.brdr_td > label .wpcf7-list-item {
  border: none;
  padding: 0;
}

.brdr_td.chekbox_multiple .wpcf7-list-item {
  margin-bottom: 10px;
}

/*************** フォーム個人情報保護 ****************/
.form_privacy .privacy_inner {
  border: 1px solid var(--color-lightgray);
  border-radius: 5px;
  margin-bottom: 15px;
}
.form_privacy .privacy_scroll {
  overflow-y: scroll;
  height: 180px;
  padding: 30px;
  font-size: 1.4rem;
  font-weight: 400;
}
.form_privacy .privacy_scroll .ttl {
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.form_privacy .privacy_scroll dt {
  margin: 20px 0 10px;
  font-size: 2rem;
  font-weight: 500;
}
.form_privacy .privacy_inner .consent {
  background: #EDEDED;
  border-radius: 0 0 5px 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_privacy .privacy_inner .consent label {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
}
.form_privacy .privacy_inner .consent .wpcf7-list-item {
  background: none;
  border: none;
  margin-right: 0;
  padding: 0;
}
.form_privacy .privacy_inner .required .label-required {
  position: unset;
  margin-left: 6px;
}
.form_privacy .privacy_caution {
  color: #999;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
/* 物件資料請求、会員登録 */
.reservationPage .form_privacy .privacy_inner input[type="checkbox"],
.signupPage .form_privacy .privacy_inner input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border: 2px solid #aaa;
  vertical-align: -1px;
  background: #fff;
  margin-right: 7px !important;
}
.reservationPage .form_privacy .privacy_inner input[type="checkbox"]:checked:before,
.signupPage .form_privacy .privacy_inner input[type="checkbox"]:checked:before {
  top: 6px;
  left: -5px;
}
.reservationPage .form_privacy .privacy_inner input[type="checkbox"]:checked:after,
.signupPage .form_privacy .privacy_inner input[type="checkbox"]:checked:after {
  top: 6px;
  left: 3px;
}
/* 会員登録 */
.signupPage .formBox .nwnContent .form_privacy .privacy_scroll .ttl {
  font-size: 1.6rem;
  margin-bottom: 25px;
  text-align: left;
}
.signupPage .form_privacy {
  margin-bottom: 40px;
}

/*
===== PC / TABLET FORM SETTINGS ==========================================
*/
@media screen and (min-width: 768px) {

  /*フォームtable*/
  .entrytbl .entry_innerTbl br+label {
    margin-left: 1em;
  }

  .entrytbl th {
    width: 30%;
    padding: 10px 45px 10px 0;
  }

  .entrytbl td {
    padding-left: 20px;
  }

  .entrytbl .entry_innerTbl tr:last-of-type td {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /*************** フォーム注釈 ****************/
  .required::before,
  .arbitrary::after {
    top: 23px;
    right: 0;
  }

  .submit_box .wpcf7-spinner{
    margin-top:10px;
  }
  
}


/*
===== TABLET FORM SETTINGS ==========================================
*/
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .entrytbl th {
    width: 25%;
  }
  .entrytbl .brdr_td {
    width: 75%;
  }
  }


/*
===== SP FORM SETTINGS ==========================================
*/
@media screen and (max-width: 767px) {

  select[multiple] {
    width: 80%;
    max-width: 360px;
  }

  /* セレクトボックス矢印変更 */
  td.select_arrow::after {
    top: 50px;
    right: unset;
    left: 223px;
  }
  
  .brdr_td.select_arrow::after {
    left: 225px;
    top: 15px;
  }

  td.select_arrow.wish_time::after {
    top: 15px;
    left: 220px;
  }

  .brdr_td .entry_innerTbl .select_arrow::after {
    left: 225px;
    top: 50px;
  }

  /*contactform7 css設定*/

  .contactPage .entrytbl td table {
    width: 100% !important;
  }

  .contactPage .entrytbl td span,
  .shop_reservePage .entrytbl td span {
    display: inline-block;
  }

  .contactPage .entrytbl td .font11,
  .shop_reservePage .entrytbl td .font11 {
    display: block;
  }

  .wpcf7-list-item,
  .wpcf7-list-item-label,
  .wpcf7-form-control-wrap {
    width: 100%;
    display: inline !important;
  }

  .wpcf7-form .ajax-loader {
    width: auto !important;
    height: auto !important;
  }

  .wpcf7-not-valid-tip {
    width: 80% !important;
    background: var(--color-red) !important;
    padding: 5px;
    color: #fff !important;
    display: block !important;
  }

  .wpcf7-character-count {
    display: inline-block !important;
  }

  .label_block label {
    display: block !important;
  }

  .brdr_td .entry_innerTbl .select_arrow {
    display: block;
  }

  .brdr_td .entry_innerTbl label {
    font-weight: 400;
  }

  .brdr_td .entry_innerTbl .select_arrow > label {
    display: block;
    margin-bottom: 10px;
  }

  /*==================================================
    FORM OPTIONS
  ==================================================*/
  /* フォームwarning */
  form .warning {
    margin-bottom: 30px;
  }

  form .warning li {
    text-indent: -1em;
    padding-left: 1em;
  }

  /* フォームtable*/
  .entrytbl {
    width: 100%;
    margin: 10px auto;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
  }

  .entrytbl a {
    text-decoration: underline;
  }

  .entrytbl tr {
    display: block;
  }

  .entrytbl th {
    display: flex;
    align-items: center;
    border: none;
    list-style-type: none;
    margin: 0 0 12px 0;
    width: 100%;
  }

  .entrytbl td {
    display: list-item;
    border: none;
    list-style-type: none;
    margin: 0 0 20px 0;
    word-wrap: break-word !important;
    word-break: break-all;
    width: 100%;
  }

  .entrytbl .entry_innerTbl label[for="zip_code"] {
    margin-right: 3px
  }

  .entrytbl .entry_innerTbl tr:last-of-type td {
    margin-bottom: 0;
  }

  .entrytbl td.customer_name {
    display: flex;
  }

  .entrytbl td input[type=text],
  .entrytbl td input[type=email],
  .entrytbl td input[type=password] {
    width: 100%!important;
  }

  .entrytbl td input[name="customer_last_name"], 
  .entrytbl td input[name="customer_first_name"], 
  .entrytbl td input[name="customer_last_name_kana"], 
  .entrytbl td input[name="customer_first_name_kana"] {
    width: 130px!important;
  }

  .entrytbl td input[name="reserve_date"],
  .entrytbl td input[name="event_title"],
  .entrytbl td input[name="model_title"] {
    width: 250px!important;
  }

  .entrytbl td input[name="zip_code"] {
    max-width: 170px;
    width: 50%;
  }

  .entrytbl td span {
    display: inline-block;
  }

  .entrytbl td span.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
  }

  .entrytbl .brdr_td.chekbox_multiple .wpcf7-list-item {
    display: flex;
    width: fit-content;
    height: fit-content;
  }

  .entrytbl .brdr_td.chekbox_multiple .wpcf7-list-item:nth-of-type(even) {
    margin-right: 0;
  }

  .entrytbl .brdr_td.chekbox_multiple .wpcf7-list-item input[type="checkbox"],
  .wpcf7-list-item input[type="checkbox"] {
    margin: 0 5px 0 0!important;
  }

  .wpcf7-list-item input[type="checkbox"] {
    padding: 5px!important;
  }

  .entrytbl .entry_innerTbl {
    width: 100%;
  }

  /*************** フォーム注釈 ****************/
  .required,
  .arbitrary {
    padding-right: 3em !important;
  }

  .required::before,
  .arbitrary::after {
    top: 10px;
    right: 10px;
  }

  .entrytbl td .form_caution {
    display: block;
    margin-top: 0.5em;
  }

  .required .label-required,
  .arbitrary .label-arbitrary {
    margin-left: 5px;
    position: initial;
  }

  /*郵便番号リンク*/
  .form_link_zip {
    margin-left: 5px;
  }

  /*ラジオボタン*/
  #postbox .entrytbl .entry_innerTbl td.radio input[type="radio"] {
    top: 5px;
    margin-right: 7px!important;
    padding: 5px;
  }
  #postbox .entrytbl .entry_innerTbl td.radio label {
    padding: 3px 10px 4px;
  }

  /*チェックボックス*/
  #postbox .checkItem input {
    margin: 0 7px 0 0!important;
  }
  #postbox .checkItem input[type="checkbox"] {
    padding: 5px;
  }

  /*************** フォーム個人情報保護 ****************/
  .form_privacy .privacy_scroll {
    padding: 25px 20px;
  }
  .form_privacy .privacy_inner {
    margin-bottom: 10px;
  }
  .form_privacy .privacy_inner .consent {
    padding: 10px;
  }
  .form_privacy .privacy_inner .required {
    padding-right: 0!important;
  }
  .form_privacy .privacy_inner .required .label-required {
    margin-left: 4px;
  }
  /* 物件資料請求、会員登録 */
  .reservationPage .form_privacy .privacy_inner input[type="checkbox"],
  .signupPage .form_privacy .privacy_inner input[type="checkbox"] {
    padding: 0!important;
    margin: 0 3px 0 0!important;
  }
  .reservationPage .form_privacy .privacy_inner .consent,
  .signupPage .form_privacy .privacy_inner .consent {
    padding: 10px 3px;
  }
  .reservationPage .form_privacy .privacy_inner .consent label,
  .signupPage .form_privacy .privacy_inner .consent label {
    font-size: 1.1rem;
  }
}
