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

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

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

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  font-weight: bold;
  padding: 20px;
  border-radius: 0;
  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: 10px;
  font-weight: bold;
  border: 1px solid #aaaaaa;
  background: #fff;
  -moz-box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.5s;
  border-radius: 6px;
}

/*placeholderの色を変更*/
textarea::placeholder {
  color: var(--color-lightgray);
}

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-lightblue);
  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 {
  background: #666666;
  background: linear-gradient(to bottom, #666666 0%, #333 100%);
  border: 1px solid var(--color-black);
}

input[type="checkbox"]:checked:before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  content: "";
  width: 10px;
  height: 4px;
  background: #ffffff;
  -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: 9px;
  top: 16px;
  content: "";
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
  width: 16px;
  height: 4px;
  background: #ffffff;
  -webkit-transform: rotate(-53deg);
  transform: rotate(-53deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

/*==================================================
  FORM OPTIONS
==================================================*/
/*フォームtable*/
.entrytbl {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #E6E6E6;
}

.entrytbl a {
  text-decoration: underline;
}

.entrytbl .brdr_td {
  border-bottom: 1px solid #E6E6E6;
}

.entrytbl th {
  border-bottom: 1px solid #E6E6E6;
  font-weight: bold;
}

.entrytbl td {
  border-bottom: 1px solid #E6E6E6;
}

.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: 1em;
}


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

.required::before,
.arbitrary::after {
  display: inline-block;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 100%;
  padding: 5px;
  position: absolute;
  color: #FFF;
}

.required::before {
  content: "必須";
  background: var(--color-winered);
}

.arbitrary::after {
  content: "任意";
  background: var(--color-darkgray);
}

/*注釈*/
.form_caution {
  display: inline-block;
  font-size: 0.8em;
}

/*郵便番号リンク*/
.form_link_zip {
  display: inline-block;
  padding: 0.5em;
  background: var(--color-darkgray);
  border-radius: 3px;
  color: #fff;
  position: relative;
  font-size: 0.9em;
}

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

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

/*cf7送信ボタン*/
.submit_warning {
  color: var(--color-winered);
  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-winered);
  font-weight: bold;
  display: block;
  width:80%;
  position:absolute;
  bottom:10px;
  left:20px;
}

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

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

  .entrytbl .brdr_td {
    padding: 20px;
  }

  .entrytbl th {
    width: 25%;
    padding: 20px;
  }

  .entrytbl td {
    padding: 20px;
  }

  .entrytbl .entry_innerTbl td {
    padding: 20px;
  }

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

  .required::before,
  .arbitrary::after {
    top: 20px;
    left: 5px;
  }

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


/*
===== TABLET FORM SETTINGS ==========================================
*/
@media screen and (min-width: 768px) and (max-width: 1080px) {
  input[name="customer_last_name"],
  input[name="customer_first_name"],
  input[name="customer_last_name_kana"],
  input[name="customer_first_name_kana"] {
  width: 34%;
  }
  }


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

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

  /*contactform7 css設定*/

  .wpcf7-form textarea{
    width:90% !important;
  }


  .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-winered) !important;
    padding: 5px;
    color: #fff !important;
    display: block !important;
  }

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

  .label_block label {
    display: block !important;
    margin-bottom: 5px;
  }

  /* フォームtable*/
  .entrytbl {
    width: 98%;
    margin: 10px auto;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #E6E6E6;
    table-layout: fixed;
    background-color: #FFF;
  }

  .entrytbl a {
    text-decoration: underline;
  }

  .entrytbl tr {
    display: block;
  }

  .entrytbl th {
    background-color: var(--color-palegray);
    font-weight: bold;
    border-radius: 0px;
    display: list-item;
    border: none;
    list-style-type: none;
    margin: 0px;
    padding: 1em;
    width: 100%;
  }

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

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

  .entrytbl td.entry_innerTblWrap {
    padding: 10px;
  }

  .entrytbl .entry_innerTbl {
    width: 100%;
  }

  .entrytbl .entry_innerTbl td {
    padding: 10px;
  }

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

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

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

  /*郵便番号リンク*/
  .form_link_zip {
    margin-top: 1em;
  }
}
