@charset "utf-8";
/* ------------------------------------------
  contact
------------------------------------------ */
.header {
  background: rgba(239, 237, 234, 0.8);
}

.footer {
  background: #fff;
}

.pagetop_pc {
  opacity: 1;
}

.form tr,
.form th,
.form td{
  display: block;
}

.contact {
  padding-top: 120px;
  padding-bottom: 150px;
  margin-bottom: 100px;
  background: #efedea;
  padding-right: 20px;
  padding-left: 20px;
}

.contact_container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.contact_ttl {
  font-family: "adobe-garamond-pro", serif;
  font-size: 40px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
  color: #4b4b4b;
  font-weight: 300;
  line-height: 40px;
}

.contact_sub_ttl {
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 60px;
  color: #4b4b4b;
}

.contact_flow {
  max-width: 380px;
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
}

.contact_flow_item {
  position: relative;
}

.contact_flow_item:not(:nth-of-type(3))::after {
  position: absolute;
  content: "";
  width: 85px;
  height: 1px;
  background: #707070;
  right: -92.5px;
  top: 33%;
}

.contact_flow_num {
  width: 59px;
  height: 59px;
  display: grid;
  place-content: center;
  border: 1px solid #4b4b4b;
  border-radius: 50%;
  margin-bottom: 11px;
}

.contact_flow_num p {
  font-family: "adobe-garamond-pro", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #4b4b4b;
  position: relative;
  top: 1px;
  left: 1.5px;
}

.contact_flow_num_color {
  background: #6d352c;
  border-color: #6d352c;
}

.contact_flow_num_color p {
  color: #fff;
}

.contact_flow_ttl {
  color: #4b4b4b;
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
}

.contact_flow_item_color .contact_flow_ttl {
  color: #6d352c;
}

.caution_note {
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #6d352c;
  margin-bottom: 60px;
}

.form {
  width: 100%;
}

.form_item:not(:last-child) {
  margin-bottom: 50px;
}

.form_item:last-child {
  margin-bottom: 100px;
}

.form_item_ttl {
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 14px;
  text-align-last: left;
}

.caution {
  font-size: 21px;
  color: #6d352c;
}

.form_item_select_inner {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
}

.form_item_select_item {
  background: #fff;
  padding: 15px 17px 15px 20px;
  border-radius: 13px;
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.07em;
  position: relative;
  cursor: pointer;
}

.checkmark {
  border: 1px solid rgba(75, 75, 75, 0.3);
  position: absolute;
  right: 17px;
  top: 15px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: #fff;
}

.form_item_select_item input[type="radio"]:checked + .checkmark {
  background: #6d352c;
}

.check2 {
  display: none;
}

/* ラジオボタンがチェックされたときにカスタムチェックマークを表示する */
.form_item_select_item input[type="radio"]:checked + .checkmark .check1 {
  display: none;
}

.form_item_select_item input[type="radio"]:checked + .checkmark .check2 {
  display: block;
}

/* 選択されたラベルのスタイルを変更する */
.form_item_select_item input[type="radio"]:checked + label {
  background-color: #e9e9e9;
  border-color: #adb5bd;
}

.form_item_select_item:nth-of-type(1) {
  width: 169px;
}
.form_item_select_item:nth-of-type(2) {
  width: 235px;
}
.form_item_select_item:nth-of-type(3) {
  width: 273px;
}
.form_item_select_item:nth-of-type(4) {
  width: 209px;
}
.form_item_select_item:nth-of-type(5) {
  width: 206px;
}

.form_item_select_item:nth-of-type(4) input[type="checkbox"] {
  margin-left: 27px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  display: block;
  width: 100%;
  background: #fff;
  color: #4b4b4b;
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 20px;
  border-radius: 13px;
}

.form_age_inner {
  width: 104px !important;
  position: relative;
}

.form_age_inner p {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: #4b4b4b;
  position: absolute;
  bottom: 0;
  right: 0;
}

input[type="number"] {
  display: inline-block;
  width: 80px;
  background: #fff;
  color: #4b4b4b;
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 18px 20px;
  border-radius: 13px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: rgba(75, 75, 75, 0.3);
}

textarea {
  resize: none;
}

.form_sex .form_item_select_inner .form_item_select_item {
  width: 113px;
}

.form_address input:not(:last-child) {
  margin-bottom: 10px;
}

.form_btn {
  max-width: 512px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.form_btn a {
  width: 251px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.button2,
.button4 {
  display: block;
  width: 100%;
  font-family: "Klee One", cursive;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.24em;
  text-align: center;
  background: #6d352c;
  color: #fff;
  border-radius: 47px;
  cursor: pointer;
  width: 251px;
  transition: border 0.4s;
  position: relative;
  border: 1px solid #502200;
  padding: 14px 0;
}

.button1,
.button2 {
  margin: 0 auto;
  transition: border 0.4s;
  position: relative;
  padding: 14px 0;
}

.button1:hover {
  border: 1px solid #502200;
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
}

.button2:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
}

.button3:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
}

.button4:hover {
  opacity: 1;
  background-image: linear-gradient(72deg, #6d352c 45%, #fff 60%, #6d352c 45%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s ease-out;
  animation-delay: -0.6s;
}

.form_age_txt {
  display: inline-block;
  margin-top: auto;
  font-family: "Klee One", cursive;
  font-size: 14px;
}

@media screen and (max-width: 430px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 80px;
    margin-bottom: 100px;
  }

  .contact_container {
    max-width: 327px;
  }

  .contact_flow {
    max-width: 280px;
    margin-bottom: 40px;
  }

  .contact_flow_item:not(:nth-of-type(3))::after {
    width: 30px;
    right: -40.5px;
  }

  .contact_sub_ttl {
    margin-bottom: 40px;
  }

  .caution_note {
    margin-bottom: 40px;
  }

  .form_item_select_inner {
    display: block;
  }

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

  .form_item_select_item:nth-of-type(5) {
    margin-bottom: 0;
  }

  .form_item:not(:last-child) {
    margin-bottom: 30px;
  }

  .form_sex .form_item_select_inner {
    display: flex;
  }

  .form_sex .form_item_select_inner .form_item_select_item {
    margin-bottom: 0;
  }

  .form_item:not(:last-child) {
    margin-bottom: 40px;
  }

  .form_btn a {
    height: 50px;
  }
}

/* ------------------------------------------
  confirm
------------------------------------------ */
.confirm_item {
  padding-bottom: 40.5px;
  margin-bottom: 40.5px;
  border-bottom: 1px solid #fff;
}

.confirm_content {
  padding-bottom: 0;
  margin-bottom: 100px;
  border-bottom: none;
}

.confirm_txt {
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4b4b4b;
}

.confirm_item span {
  margin-left: 10px;
}

.button1,
.button3 {
  display: block;
  font-family: "Klee One", cursive;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.24em;
  text-align: center;
  color: #6d352c;
  border-radius: 47px;
  cursor: pointer;
  transition: 0.2s ease-in;
  border: 1px solid #6d352c;
  width: 251px;
}

.button1:hover {
  opacity: 0.7;
}

@media screen and (max-width: 430px) {
  .form_btn {
    display: block;
  }

  .button3 {
    margin: 0 auto 30px;
  }

  .button4 {
    margin: 0 auto;
  }

  .confirm_content {
    margin-bottom: 80px;
  }
}

/* ------------------------------------------
  conpletion
------------------------------------------ */
.confirm_container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.completion_inner {
  max-width: 650px;
  margin: 0 auto;
}

.completion_ttl {
  color: #4b4b4b;
  font-size: 40px;
  letter-spacing: 0.1em;
  font-family: "Klee One", cursive;
  margin-bottom: 40px;
  line-height: 44px;
  font-weight: 300;
}

.completion_txt {
  color: #4b4b4b;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-family: "Klee One", cursive;
  margin-bottom: 40px;
}

.completion_caution {
  background: #fff;
  padding: 50px 40px;
  color: #4b4b4b;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-family: "Klee One", cursive;
  margin-bottom: 100px;
}

.completion_caution span {
  color: #6d352c;
}



.t-contact__form-privacy {
  gap: 30px;
  flex-direction: row;
  justify-content: center;
}

.m-contact__form-group {
  display: flex !important;
  justify-content: center;
  margin-bottom: 80px;
}

.m-contact__button-wrapper {
  margin-top: 60px;
  text-align: center;
}

.m-contact__form-group th{
  width: auto !important;
}

.m-contact__button {
  padding: 20px 69.5px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.t-contact__form-privacy input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: #fff;
  /* border: 1px solid var(--color_gold); */
  border-radius: 0;
  border: 1px solid #4b4b4b;
  /* background: var(--color__white); */
  position: relative;
  opacity: 1;
}

.t-contact__form-privacy input[type="checkbox"]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}
/* .t-contact__form-privacy input[type=checkbox]:checked {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
} */
.t-contact__form-privacy input[type="checkbox"]:checked {
  background: #6d352c;
  border: 1px solid transparent;
}
.t-contact__form-privacy input[type="checkbox"]:checked:after {
  opacity: 1;
}

.t-contact__form-privacy .m-contact__form-label a {
  display: inline;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.m-contact__form-label {
  position: relative;
  width: fit-content;
  color: #333;
  font-family: "Klee One", cursive;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 430px) {
  .completion_caution p:nth-of-type(1) {
    margin-bottom: 30px;
  }

  .completion_ttl {
    margin-bottom: 20px;
    font-size: 26px;
  }

  .completion_txt {
    letter-spacing: 0.07em;
  }

  .confirm_container {
    max-width: 335px;
  }

  .completion_caution {
    margin-bottom: 40px;
  }

  .m-contact__form-label{
    font-size: 16px;
  }
}


#formWrap{
  text-align: left;
  font-family: "Klee One", cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 17px;
  color: #4B4B4B;
  margin-bottom: 100px;
}

#formWrap table,
#formWrap tbody,
#formWrap th,
#formWrap tr,
#formWrap td{
  width: 100%;
}

#formWrap th{
  margin-bottom: 20px;
}

#formWrap tr{
  padding: 40.5px 0;
}

#formWrap tr:first-of-type{
  padding-top: 0;
}

#formWrap tr:last-of-type{
  padding-bottom: 0;
}

#formWrap tr:not(:last-of-type){
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 430px){
  #formWrap{
    margin-bottom: 80px;
  }
}