<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*///////////////////////////////
// contact
////////////____///////////////*/
.bg {
  padding: 30px 0;
  border-radius: 60px;
  background-color: #f5ecf4;
}
@media screen and (min-width: 576px) {
  .bg {
    padding: 40px 0;
    border-radius: 110px;
  }
}
@media screen and (min-width: 768px) {
  .bg {
    padding: 50px 0;
    border-radius: 110px;
  }
}
@media screen and (min-width: 992px) {
  .bg {
    padding: 60px 0;
    border-radius: 210px;
  }
}

.width_box {
  width: 80%;
  max-width: 720px;
}
@media screen and (min-width: 768px) {
  .width_box {
    width: 100%;
    max-width: 720px;
  }
}

.flex_left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 768px) {
  .flex_left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin: 0 0 30px 0;
  }
}

.flex_left label {
  display: flex;
  align-items: center;
  margin-right: 15px;
  gap: 5px;
}
.gender_flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex_left_message {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 768px) {
  .flex_left_message {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    margin: 0 0 30px 0;
  }
}

h1 {
  margin: 55px 0 40px 0;
  color: #981040;
  font-size: 24px;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 576px) {
  h1 {
    margin: 60px 0;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    margin: 80px 0;
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    margin: 100px 0;
    font-size: 50px;
  }
}

.form_title {
  width: 270px;
  color: #981040;
  font-size: 18px;
  font-weight: bold;
}

input.form_text {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  font-size: 16px;
  border: #000 1px solid;
  border-radius: 50px;
}

input[type="radio"].form_radio {
  padding: 10px;
  border: #000 1px solid;
  border-radius: 50px;
  vertical-align: middle;
  background-color: #fff;
  cursor: pointer;
}
input[type="radio"].form_radio:checked {
  border: 1px solid #981040;
  background-color: #981040;
}
input.form_birth1 {
  width: 75px;
  margin: 0 5px 0 0;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  border: #000 1px solid;
  border-radius: 50px;
  box-sizing: border-box;
}
input.form_birth2 {
  width: 55px;
  margin: 0 5px 0 5px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  border: #000 1px solid;
  border-radius: 50px;
  box-sizing: border-box;
}

input.form_stay {
  width: 55px;
  margin: 5px 5px 5px 0;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  border: #000 1px solid;
  border-radius: 50px;
  box-sizing: border-box;
}
.form_stay_box {
  width: 100%;
  max-width: 450px;
}

.form_kibo {
  position: relative;
  display: inline-block;
}

.form_kibo select {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  border: #000 1px solid;
  border-radius: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  background: transparent;
  background-color: #fff;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (max-width: 576px) {
  .form_kibo select {
    width: 100%;
  }
}

.form_kibo::after {
  content: "笆ｼ";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #333;
}
input[type="checkbox"].form_checkbox {
  padding: 10px;
  border: #000 1px solid;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
}
input[type="checkbox"].form_checkbox:checked {
  border: 1px solid #981040;
  background-color: #981040;
}

textarea.form_message {
  width: 100%;
  height: 450px;
  padding: 20px;
  font-size: 16px;
  border: #000 1px solid;
  border-radius: 25px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  textarea.form_message {
    width: 100%;
    max-width: 450px;
    height: 490px;
    padding: 20px;
    border: #000 1px solid;
    border-radius: 25px;
    box-sizing: border-box;
  }
}

textarea.form_remarks {
  width: 100%;
  height: 200px;
  padding: 20px;
  font-size: 16px;
  border: #000 1px solid;
  border-radius: 25px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  textarea.form_remarks {
    width: 100%;
    max-width: 450px;
    height: 200px;
    padding: 20px;
    border: #000 1px solid;
    border-radius: 25px;
    box-sizing: border-box;
  }
}

.form_privacy_policy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_privacy_policy label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
a.form_privacy_policy_link {
  margin-bottom: 20px;
  color: #00ff;
  text-decoration: underline;
  display: inline-block;
}
button.form_submit {
  width: 100%;
  max-width: 265px;
  margin-top: 50px;
  padding: 10px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: #981040 1px solid;
  border-radius: 25px;
  background-color: #981040;
}
button.form_submit:hover {
  color: #981040;
  background-color: #fff;
  cursor: pointer;
}
.autoreply {
  padding-top: 30px;
  font-size: 14px;
}

.form_confirm_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 50px;
}
button.form_confirm_left_button {
  padding: 10px 10px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: #ddd 1px solid;
  border-radius: 25px;
  background-color: #ddd;
}
@media screen and (min-width: 576px) {
  button.form_confirm_left_button {
    width: 80px;
    padding: 10px 20px;
  }
}
button.form_confirm_left_button:hover {
  color: #000;
  border: #ddd 1px solid;
  background-color: #fff;
  cursor: pointer;
}

.form_confirm_title {
  margin-bottom: 50px;
  color: #981040;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
button.form_confirm_center_button {
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 10px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: #981040 1px solid;
  border-radius: 25px;
  background-color: #981040;
}
@media screen and (min-width: 576px) {
  button.form_confirm_left_button {
    padding: 10px 20px;
  }
}
button.form_confirm_center_button:hover {
  color: #981040;
  border: #981040 1px solid;
  background-color: #fff;
  cursor: pointer;
}
.form_email_confirm_error {
  font-size: 14px;
}
.form_email_confirm_flex {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}


/*///////////////////////////
// complete.html
///////////////////////////*/
h1.h1_complete {
  margin: 55px 0 40px 0;
  color: #981040;
  font-size: 23px;
  font-style: normal;
  text-align: center;
  letter-spacing: -2px;
}
@media screen and (min-width: 576px) {
  h1.h1_complete {
    margin: 60px 0;
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  h1.h1_complete {
    margin: 80px 0;
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  h1.h1_complete {
    margin: 100px 0;
    font-size: 50px;
  }
}

a.complete_back {
  margin-top: 50px;
  display: block;
  width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: #74c15b 1px solid;
  border-radius: 25px;
  background-color: #74c15b;
}
a.complete_back:hover {
  color: #74c15b;
  border: #74c15b 1px solid;
  background-color: #fff;
  cursor: pointer;
}</pre></body></html>