@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: 2rem;
  border-radius: var(--rad-round);
  cursor: pointer;
  border: none;
  line-height: 1;
  transition: .3s;
}

input[type="submit"]:hover,
button:not(.btn_search):hover {
  opacity: 0.8;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  -webkit-appearance: button;
  appearance: button;
  /* text-indent: .01px; */
  text-overflow: "";
  padding: 8px;
  /* font-weight: bold; */
  border: 1px solid #ccc;
  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:  var(--rad-common);
}

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: 2px solid #ccc;
  vertical-align: -8px;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  margin-right: 5px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  background: #e2e2e2;
  /* background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%); */
  background: #fff;
  cursor: pointer;
  transition: all 150ms ease;
}

input[type="checkbox"]:checked {
  background: var(--color-main);
  /* background: linear-gradient(to bottom, #666666 0%, #333 100%); */
  border: 2px solid var(--color-main);
}

input[type="checkbox"]:checked:before {
  position: absolute;
  left: 2px;
  top: 1px;
  display: block;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20448%20512%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M438.6%2C105.4c12.5%2C12.5%2C12.5%2C32.8%2C0%2C45.3L182.6%2C406.7c-12.5%2C12.5-32.8%2C12.5-45.3%2C0L9.3%2C278.7c-12.5-12.5-12.5-32.8%2C0-45.3s32.8-12.5%2C45.3%2C0l105.4%2C105.3%2C233.4-233.3c12.5-12.5%2C32.8-12.5%2C45.3%2C0h0Z%22%2F%3E%3C%2Fsvg%3E');
}

/* ラジオボタン */
.radioItem,
.radioList .wpcf7-list-item {
	display: flex !important;
  position: relative;
  align-items: center;
  line-height: 1;
  margin-bottom: .8rem;
}

.radioList .wpcf7-list-item {
  margin-left: 0;
}

.radioItem:last-child,
.radioList .wpcf7-list-item:last-child {
 margin-bottom: 0; 
}

.radioItem input[type="radio"],
.radioList .wpcf7-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radioItem input[type="radio"] + .radio-label:before,
.radioList .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label:before {
  content: '';
  background: #fff;
  border-radius: 100%;
  border: 2px solid #ccc;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: relative;
  top: -0.1em;
  margin-right: .5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 150ms ease;
}

.radioItem input[type="radio"]:checked + .radio-label:before,
.radioList .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background-color: var(--color-main);
  box-shadow: inset 0 0 0 3px #f4f4f4;
}

.radioItem input[type="radio"]:focus + .radio-label:before,
.radioList .wpcf7-list-item input[type="radio"]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: var(--color-main);
}

.radioItem input[type="radio"]:disabled + .radio-label:before,
.radioList .wpcf7-list-item input[type="radio"]:disabled + .wpcf7-list-item-label:before {
  box-shadow: inset 0 0 0 3px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.radioItem input[type="radio"]:disabled + .radio-label,
.radioList .wpcf7-list-item input[type="radio"]:disabled + .wpcf7-list-item-label {
  color: var(--color-darkgray);
}

.radioItem input[type="radio"] + .radio-label:empty:before,
.radioList .wpcf7-list-item input[type="radio"] + .wpcf7-list-item-label:empty:before {
	margin-right: 0;
}

label {
  cursor: pointer;
}

button:not(.btn_search) {
  transition: .3s;
}


/*==================================================
  FORM OPTIONS
==================================================*/
/*フォームtable*/
.entrytbl {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid var(--color-gray);
  border-left: 1px solid var(--color-gray);
  table-layout: fixed;
}

.entrytbl .brdr_td {
  border-bottom: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
  position: relative;
}

.entrytbl th {
  border-bottom: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
  font-weight: bold;
  background: var(--color-palegray);
}

.entrytbl td {
  border-bottom: 1px solid var(--color-gray);
  border-right: 1px solid var(--color-gray);
}

.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;
}

.entry_item {
  display: inline-block;
  margin: 0 1em 0 0;
}

.inputColum.flex {
  flex-flow: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}

.inputColumRow.flex {
  flex-flow: row;
  gap: 20px;
}

.inputColumRow3.flex {
  flex-flow: row wrap;
  gap: 10px;
}

.inputColum_item {
  flex: 1;
}

#postbox .entrytbl input {
  margin: 0;
}

#postbox .entrytbl span[class^="font"] {
  margin: 0 5px;
  white-space: nowrap;
}


#postbox .entrytbl p[class^="font"] {
  margin: 0 0 1em;
}

/* パスワード変更 */
.change_password .inputColum .inputColum_item:first-child {
  padding-top: 20px;
}


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

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

.required::before {
  content: "必須";
  background: var(--color-red);
  border-radius: var(--rad-common);
}

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

/*注釈*/
.form_caution {
  display: inline-block;
  font-size: 0.8em;
  color: var(--color-darkgray);
}
p.form_caution {
  display: block;
}

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

/*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;
}

/* Contact Form 7のローディング画像削除 */
.btnSend .wpcf7-spinner {
  display: none !important;
}

/* プライバシーポリシー */
.privacypolicyBox {
  padding: var(--gutter) 0 var(--gutter-narrow);
  text-align: center;
  border-top: 1px solid var(--color-gray);
}

.privacypolicyBox .section__sub {
  margin: 1em 0;
}

.privacypolicyBox .privacypolicyBox__block {
  text-align: left;
  border: 1px solid var(--color-gray);
  border-radius: var(--rad-common);
  padding: 20px;
  height: 30vh;
  overflow-y: scroll;
}

.privacypolicyBox .privacypolicyBox__block .termSection:first-child {
  margin-top: 0;
}

/* 詳細条件 ボカし付きアコーディオン */
.blurWrapper {
  overflow: hidden;
  height: 90px;
  transition: height 0.5s ease;
  margin-bottom: 50px;
}

.blurWrapper .desired {
  filter: blur(4px);
  transition: filter 0.3s ease;
  transform: scale(0.98);
}

/* 展開時 */
.blurWrapper.open {
  height: auto;
}

.blurWrapper.open .desired {
  filter: none;
}

/* 上に重ねる moreWrapper */
.wrapperContainer {
  position: relative;
}

.moreWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 10px;
  z-index: 10;
  text-align: center;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.9) 100%);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.moreWrapper p {
  padding-bottom: 1em;
  font-weight: bold;
  color: var(--color-main);
  animation: 1.4s fuwafuwa infinite ease-in-out;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}


.show_more {
  cursor: pointer;
}

/* .blurWrapper.open 時は通常のレイアウトに戻す */
.blurWrapper.open + .moreWrapper {
  display: none;
}

.blurWrapper .sectionTtlBox {
  align-items: baseline;
}

/* reCAPTCHAを非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

/* DM受け取りのチェックボックス */
.mailDmSetting label {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.mailDmSetting input[type="checkbox"] {
  flex: 0 0 auto;
}

.mailDmSetting span {
  flex: 1;
}

/*
===== 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-right: 4em !important;
    position: relative;
  }

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

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


/*
===== TABLET FORM SETTINGS ==========================================
*/
@media screen and (max-width: 1024px) {
  .entrytbl th {
    width: 30%;
  }

}


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

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

  /* 希望条件 > 都道府県などの2カラム */
  #postbox .inputColum_item select.input100pr {
    width: 100%;
    margin: 2px 0;
  }

  /*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-red) !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;
  }

  /*************** 送信ボタン ****************/
  .btnSend {
    flex-flow: wrap;
  }
}
