@charset "UTF-8";
/* ==========================================================================
   Contact Form 7 - CSS for #wpcf7-f2690-p557-o1
   Extracted from: https://tokyobal-takeo.com/yoyaku
   ========================================================================== */

/* ----- Keyframes ----- */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes blink {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* ----- CF7 Base Styles (from contact-form-7 plugin) ----- */

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0px;
  border: 0px;
  overflow-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid rgb(0, 160, 210);
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgb(70, 180, 80);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: rgb(220, 50, 50);
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: rgb(245, 110, 40);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: rgb(255, 185, 0);
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: rgb(220, 50, 50);
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid rgb(220, 50, 50);
  background: rgb(255, 255, 255);
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0px 0px 0px 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: rgb(35, 40, 45);
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0px;
  margin: 0px 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: rgb(251, 251, 252);
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    animation-name: blink;
    animation-duration: 2000ms;
  }
}

.wpcf7 input[type="file"] {
  cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7-reflection > output[hidden] {
  display: none;
}

/* ----- Theme Custom Styles (Set 1) ----- */

.wpcf7,
.con-area01 .wpcf7 {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  border: 1px solid rgb(221, 221, 221);
  background: #fff;
  font-size: 14px;
  box-sizing: border-box;
  margin: 0px auto 2.5em !important;
}

.wpcf7 form,
.con-area01 .wpcf7 form {
  margin: 0;
}

.wpcf7 p,
.con-area01 .wpcf7 p {
  margin-bottom: 0.5em;
  font-size: 14px;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7 textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 12px;
  height: 50px;
  border: 1px solid rgb(204, 204, 204);
  background: #fff;
  line-height: 1.2;
}
.wpcf7 textarea {
  height: 100px;
  min-height: 100px;
}

.wpcf7 select {
  box-sizing: border-box;
  padding: 8px 12px;
  height: 50px;
  border: 1px solid rgb(204, 204, 204);
  background: #fff;
  min-width: 4em;
}
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto;
  max-width: 97%;
  padding: 8px;
  border: 1px solid rgb(204, 204, 204);
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.2;
}

.wpcf7 .wpcf7-list-item {
  display: block;
}


.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border: 1px solid rgb(187, 187, 187);
  outline: none;
}

.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-previous {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 225px;
  height: 48px;
  margin: 30px auto 0px;
  outline: none;
  background-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  border: none !important;
}

.wpcf7 .wpcf7-submit::before,
.wpcf7 .wpcf7-submit::after {
  box-sizing: border-box;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-previous:hover {
  background-color: rgb(102, 102, 102);
}

.wpcf7 .wpcf7-submit .wpcf7-not-valid {
  background: pink;
}

.wpcf7 .wpcf7-submit .wpcf7-response-output {
  margin: 10px 0px 0px;
  padding: 8px 35px 8px 14px;
  border-radius: 4px;
}

.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
  border: 1px solid rgb(238, 211, 215);
  background-color: rgb(242, 222, 222);
  color: rgb(185, 74, 72);
}

.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
  border: 1px solid rgb(188, 232, 241);
  background-color: rgb(217, 237, 247);
  color: rgb(58, 135, 173);
}

.wpcf7 .wpcf7-previous + br {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em;
  padding: 0px;
  border: none;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color: rgb(220, 50, 50);
  font-size: 1em;
}

/* ----- Form Layout Styles ----- */

.wpcf7-form .form-area {
  display: flex;
  border-bottom: 1px dashed rgb(204, 204, 204);
  margin-bottom: 30px;
  padding-bottom: 10px;
  align-items: center;
}

.wpcf7-form .fr-name {
  width: 250px;
}

.wpcf7-form .fr-txt {
  width: calc(100% - 250px);
}

@media screen and (max-width: 767px) {
  .wpcf7-form .form-area {
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .wpcf7-form .fr-name {
    width: 100%;
    margin-bottom: 10px;
  }
  .wpcf7-form .fr-txt {
    width: 100%;
  }
}

.wpcf7-form .fr-txt input,
.wpcf7-form .fr-txt textarea {
  width: 100%;
}

.wpcf7-form textarea {
  height: 100px;
}

.wpcf7-form .notes {
  font-size: 14px;
}

/* ----- Page-Specific Styles (yoyaku / .con-area01 .wpcf7) ----- */

#wpcf7-f2690-p557-o1 .wpcf7-not-valid,
.con-area01 .wpcf7 .wpcf7-not-valid {
  background-color: rgb(255, 224, 224);
}

#wpcf7-f2690-p557-o1 .wpcf7-not-valid-tip,
.con-area01 .wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

#wpcf7-f2690-p557-o1 form .wpcf7-response-output,
.con-area01 .wpcf7 form .wpcf7-response-output {
  text-align: left;
  margin: 0 0 0.5em;
  font-size: 0.9em;
  width: 100%;
  border: none;
  color: red;
  font-weight: bold;
  padding: 0;
}

#wpcf7-f2690-p557-o1 .submit .wpcf7-response-output,
.con-area01 .wpcf7 .submit .wpcf7-response-output {
  text-align: center;
  margin-bottom: 3em;
}

#wpcf7-f2690-p557-o1 .tt_yoyaku_number .form-right2,
.con-area01 .wpcf7 .tt_yoyaku_number .form-right2 {
  width: auto;
  display: block;
}

#wpcf7-f2690-p557-o1 .tt_yoyaku_number .wpcf7-form-control-wrap,
.con-area01 .wpcf7 .tt_yoyaku_number .wpcf7-form-control-wrap {
  display: inline-block;
  width: 20%;
  vertical-align: middle;
}
#wpcf7-f2690-p557-o1 .tt_yoyaku_number .wpcf7-form-control-wrap input,
.con-area01 .wpcf7 .tt_yoyaku_number .wpcf7-form-control-wrap input {
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  #wpcf7-f2690-p557-o1 input:not([type="submit"]),
  .con-area01 .wpcf7 .form-right input:not([type="submit"]) {
    width: 100%;
  }
  #wpcf7-f2690-p557-o1 .tt_yoyaku_date .form-right2-right,
  .con-area01 .wpcf7 .tt_yoyaku_date .form-right2-right {
    margin-left: 1em;
  }
  #wpcf7-f2690-p557-o1 .form-right2,
  .con-area01 .wpcf7 .form-right2 {
    flex-wrap: wrap;
  }
}


/* ----- Form structure (yoyaku.html / .con-area01) ----- */

.con-area01 .wpcf7 .form li {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px), print {
  .con-area01 .wpcf7 .form li {
    flex-direction: row;
    align-items: center;
  }
}

.con-area01 .wpcf7 .form-name {
  margin-bottom: 7px;
}

@media screen and (min-width: 992px), print {
  .con-area01 .wpcf7 .form-name {
    margin-bottom: 0;
    margin-right: 50px;
    width: 15%;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 992px), print {
  .con-area01 .wpcf7 .form-right {
    width: 80%;
  }
}

.con-area01 .wpcf7 .form-right2 {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px), print {
  .con-area01 .wpcf7 .form-right2 {
    width: 80%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.con-area01 .wpcf7 .form-right2-left,
.con-area01 .wpcf7 .form-right2-right {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.con-area01 .wpcf7 .form-right3 {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px), print {
  .con-area01 .wpcf7 .form-right3 {
    width: 80%;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.con-area01 .wpcf7 .otona {
  width: 100px;
  margin-right: 50px;
}

.con-area01 .wpcf7 .kodomo {
  width: 100px;
}

.con-area01 .wpcf7 input[type="text"],
.con-area01 .wpcf7 input[type="email"],
.con-area01 .wpcf7 input[type="tel"] {
  border: 1px solid #ccc;
  background: #fff;
  font-size: 16px;
  height: 50px;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.con-area01 .wpcf7 input[type="submit"] {
  font-size: 14px;
  height: 48px;
  width: 225px;
  margin: 30px auto 20px;
  display: block;
  background-color: rgb(51, 51, 51);
  color: #fff;
  border: none;
  cursor: pointer;
}

.con-area01 .wpcf7 textarea {
  border: 1px solid #ccc;
  background: #fff;
  min-height: 100px;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 400px) {
  .con-area01 .wpcf7 .tt_yoyaku_date .form-time1 p {
    font-size: 10px;
  }
}