@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000000;
  --white-color: #fff;
  --gray-color: #bababa;
  --text-black-color: #333333;
  --text-gray-color: #707070;
  --primary-color: #33886a;
  --sub-color: #92ad9b;
  --bg-beige-color: #faf6f0;
  --event-gray1-color: #595959;
  --event-gray2-color: #ababab;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width: 350px;
  --content-large-width: 390px;
  --content-pc-width: 500px;
  --content-pc-large-width: 910px;
  --content-pc-x-large-width: 1200px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-opening: 999;
}

/* ---------- base ---------- */

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: normal;
  letter-spacing: 0.02em;
}

.event_body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: normal;
  letter-spacing: 0.02em;
}

body.is-active {
  overflow: hidden;
}

.form_body {
  background-color: var(--bg-beige-color);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}

/* ---------- utility ---------- */
.u_br {
  display: none;
}

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

/* ---------- .form ---------- */

.l_container {
  max-width: 100%;
}

.contact {
  padding: 80px 12px 40px;
  width: 100% !important;
  margin: 0 auto !important;
  justify-self: center !important;
}

.contact.l_container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.confirm.l_container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1212px) {
  .l_container.contact,
  .l_container.confirm {
    width: 100%;
    padding: 80px 16px 40px;
    margin: 0 auto;
  }
}

.contact_title_container {
  position: relative;
  text-align: center;
}

.contact_title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  padding: 0 16px;
  letter-spacing: 0.1em;
  position: relative;
  text-wrap: nowrap;
}

@media screen and (max-width: 1212px) {
  .contact_title {
    font-size: 32px;
  }
}

.contact_title_sub {
  top: -24px;
  left: 50%;
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  transform: translateX(-50%);
  letter-spacing: 0.16em;
}

.contact_title_sub::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background-color: var(--primary-color);
  rotate: -32deg;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.contact_title_sub::after {
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background-color: var(--primary-color);
  rotate: 32deg;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_list {
  margin-top: 64px;
}

.contact_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
  rotate: 0.03deg;
}

.contact_form_heading:not(:first-child) {
  margin-top: 64px;
}

@media screen and (max-width: 450px) {
  .contact_form_heading:not(:first-child) {
    margin-top: 40px;
  }
}

.contact_form_heading_label {
  font-size: 14px;
  color: var(--white-color);
  padding: 2px 12px;
  border-radius: 100vw;
  margin-left: 8px;
}

.contact_form_heading_label.__optional {
  background-color: var(--gray-color);
}

.contact_form_heading_label.__required {
  background-color: var(--primary-color);
}

.contact_form_heading_desc {
  font-size: 16px;
  font-weight: normal;
  margin-left: 8px;
  rotate: 0.03deg;
}

.contact_form_selectbox {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "M PLUS 1p", sans-serif;
  width: 50%;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .contact_form_selectbox {
    width: 100%;
  }
}

.contact_form_selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: var(--black-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.contact_form_selectbox_select {
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  background-color: var(--white-color);
  color: var(--black-color);
  cursor: pointer;
  rotate: 0.03deg;
}

.contact_form_selectbox_select:focus {
  outline: 2px solid var(--primary-color);
  border: 1px solid var(--white-color);
}

.events_checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact_form_events_checkbox_wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact_form_events_label {
  margin-left: 4px;
  font-weight: 500;
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.contact_form_events_checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  appearance: checkbox;
}

.contact_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 4px 8px;
  background-color: var(--primary-color);
}

.contact_form_detail {
  margin-top: 16px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .contact_form_detail {
    margin-top: 12px;
  }
}

.contact_form_detail__other {
  margin-top: 24px;
  rotate: 0.03deg;
}

.contact_form_detail__other.__radio {
  margin-top: 12px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .contact_form_detail__other {
    margin-top: 12px;
  }
}

.contact_form_detail_desc {
  font-size: 18px;
  rotate: 0.03deg;
}

.contact_form_detail_desc.__merchandise,
.contact_form_detail_desc.__to_be_at_gallery,
.contact_form_detail_desc.__events {
  margin-top: 12px;
  line-height: 2em;
}

@media screen and (max-width: 450px) {
  .contact_form_detail_desc.__events {
    font-size: 12px;
  }
}

.contact_form_detail_desc_accent {
  color: var(--primary-color);
}

.contact_form_radio-list {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-flow: column;
}

.contact_form_radio-item {
  display: flex;
  align-items: stretch;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  background: var(--white-color);
  border-radius: 4px;
}

.contact_form_input.__short {
  width: 50%;
}

.contact_form_input:focus {
  outline: 2px solid var(--primary-color);
  border: 1px solid var(--white-color);
}

.contact_form_input_files {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_form_input_file_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact_form_input_files_desc {
  font-size: 16px;
}

.contact_form_input_unit {
  margin-left: 8px;
  font-weight: bold;
  font-size: 18px;
}

.contact_form_radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-color);
  border-radius: 50%;
  margin-top: 7px;
}

/* 内側のマル */
.contact_form_radio:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
}
/* 選択された時の内側のマルの色 */
.contact_form_radio:checked:before {
  background: var(--primary-color);
}

.contact_form_label {
  padding-left: 12px;
  font-size: 18px;
  rotate: 0.03deg;
  line-height: 1.8em;
}

@media screen and (max-width: 450px) {
  .contact_form_label {
    font-size: 16px;
  }
}

.contact_form_label:hover {
  cursor: pointer;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 16px;
  border: 1px solid var(--gray-color);
  background: var(--white-color);
  border-radius: 4px;
}

.contact_form_textarea:focus {
  outline: 2px solid var(--primary-color);
  border: 1px solid var(--white-color);
}

.contact_form_textarea::placeholder {
  color: var(--gray-color);
}

.contact_form_privacy-policy-wrapper {
  margin-top: 8px;
  border-radius: 4px;
  rotate: 0.03deg;
  background-color: rgba(235, 235, 235, 0.493);
  border: 1px solid var(--gray-color);
  padding: 8px;
}

.contact_form_privacy-policy {
  font-size: 16px;
}

@media screen and (max-width: 450px) {
  .contact_form_privacy-policy {
    font-size: 12px;
  }
}

.contact_form_agreement {
  margin-top: 24px;
}

.contact_form_agreement_desc {
  text-align: center;
  font-size: 16px;
  rotate: 0.03deg;
}

.contact_form_agreement-inner {
  height: 48px;
  padding: 8px;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(235, 235, 235, 0.493);
  margin-top: 8px;
}

.contact_form_checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  appearance: checkbox;
}

.contact_form_agreement-txt {
  margin-left: 16px;
  font-size: 16px;
  font-weight: bold;
  rotate: 0.03deg;
}

.contact_form_agreement-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact_form_btn-wrapper {
  margin: 56px auto 0;
  width: 140px;
  height: 50px;
}

.contact_form_button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
  font-size: 18px;
  padding: 24px 0;
  background-color: var(--primary-color);
  border-radius: 100vh;
  transition: 0.8s;
  color: var(--white-color);
  border: solid 1.5px var(--primary-color);
  rotate: 0.03deg;
  letter-spacing: 0.1em;
}

.contact_form_button:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.contact_form_error {
  margin-top: 8px;
  font-size: 16px;
  color: var(--error-color);
}

/* input type = numberのスピナー非表示 */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  text-align: right;
}

/* confirm */
.confirm {
  margin: 0 auto;
  padding: 80px 12px 40px;
}

.confirm_form {
  margin-top: 80px;
}

.confirm_form_list {
  margin-top: 64px;
}

.confirm_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  rotate: 0.03deg;
}

.confirm_form_heading:not(:first-child) {
  margin-top: 64px;
}

@media screen and (max-width: 450px) {
  .confirm_form_heading:not(:first-child) {
    margin-top: 40px;
  }
}

.confirm_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 4px 8px;
  background-color: var(--primary-color);
}

.confirm_form_detail {
  margin-top: 16px;
}

@media screen and (max-width: 450px) {
  .confirm_form_detail {
    margin-top: 12px;
  }
}

.confirm_form_selectbox {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "M PLUS 1p", sans-serif;
  width: 50%;
  rotate: 0.03deg;
  pointer-events: none;
}

.confirm_form_selectbox_select {
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  background-color: #e9e9e9;
  color: var(--black-color);
  cursor: pointer;
  rotate: 0.03deg;
}

.confirm_form_selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: var(--black-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.confirm_form_detail__other {
  margin-top: 24px;
  rotate: 0.03deg;
}

.confirm_form_detail__other.__radio {
  margin-top: 12px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .confirm_form_detail__other {
    margin-top: 12px;
  }
}

.confirm_img-box {
  display: flex;
  gap: 24px;
}

.confirm_img-container {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.confirm_img-wrapper {
  width: auto;
  height: 320px;
  margin-top: 4px;
  rotate: 0.03deg;
  font-size: 16px;
}

.confirm_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confirm_img_title {
  font-size: 18px;
  text-align: left;
  rotate: 0.03deg;
}

.confirm_form_radio-list {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-flow: column;
}

.confirm_form_radio-item {
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 450px) {
  .confirm_form_radio-item {
    width: 100%;
  }
}

.confirm_form_input {
  font-size: 16px;
  width: 100%;
  min-height: 48px;
  height: auto;
  padding: 8px;
  border: 1px solid var(--gray-color);
  background: #e9e9e9;
  border-radius: 4px;
  word-break: break-all;
}

.confirm_form_input.__short {
  width: 50%;
}

.confirm_form_input:focus {
  outline: none;
}

.confirm_form_input:hover {
  cursor: not-allowed;
}

.confirm_form_input_unit {
  margin-left: 8px;
  font-weight: bold;
  font-size: 18px;
}

.confirm_form_radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-color);
  border-radius: 50%;
  pointer-events: none;
  margin-top: 7px;
}

.confirm [data-lastpass-icon-root] {
  display: none !important;
}

[data-lastpass-root] {
  display: none !important;
}

/* 内側のマル */
.confirm_form_radio:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
}
/* 選択された時の内側のマルの色 */
.confirm_form_radio:checked:before {
  background: var(--gray-color);
}

.confirm_form_label {
  padding-left: 12px;
  font-size: 18px;
  rotate: 0.03deg;
  line-height: 1.8em;
}

.confirm_form_label:hover {
  pointer-events: none;
}

.confirm_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 16px;
  border: 1px solid var(--gray-color);
  background: var(--white-color);
  background: #e9e9e9;
  border-radius: 4px;
}

.confirm_form_textarea:focus {
  outline: none;
}

.confirm_form_textarea:hover {
  cursor: not-allowed;
}

.confirm_form_agreement {
  margin-top: 64px;
  text-align: center;
  rotate: 0.03deg;
}

.confirm_form_agreement-inner {
  height: 48px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--gray-color);
}

.confirm_form_checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  appearance: checkbox;
}

.confirm_form_agreement-txt {
  margin-left: 16px;
  font-size: 16px;
  font-weight: bold;
}

.confirm_form_agreement-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.confirm_btn-container {
  display: flex;
  max-width: 640px;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .confirm_btn-container {
    flex-direction: column-reverse;
    margin-top: 56px;
    align-items: center;
    gap: 24px;
  }
}

.confirm_form_btn-wrapper {
  margin: 56px auto 0;
  width: 140px;
  height: 50px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .confirm_form_btn-wrapper {
    margin: 0;
  }
}

.confirm_form_button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
  font-size: 18px;
  padding: 24px 0;
  background-color: var(--primary-color);
  border-radius: 100vh;
  transition: 0.8s;
  color: var(--white-color);
  border: solid 1.5px var(--primary-color);
}

.confirm_form_button:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.confirm_form_button.__back {
  color: var(--primary-color);
  border: solid 1.5px var(--primary-color);
  background-color: var(--white-color);
}

.confirm_form_button.__back:hover {
  color: var(--white-color);
  border: solid 1.5px var(--primary-color);
  background-color: var(--primary-color);
}

.confirm_form_error {
  margin-top: 8px;
  font-size: 16px;
  color: var(--error-color);
}

.precautions {
  margin: 10px;
  font-size: 11px;
}

.l_footer.form_footer {
  font-size: 14px;
  background-color: var(--white-color);
}

@media screen and (max-width: 450px) {
  .l_footer.form_footer {
    font-size: 12px;
  }
}

/* send */
.send {
  padding-top: 80px;
}

.send_copy-container {
  margin-top: 80px;
}

.send_copy {
  margin-top: 80px;
  text-align: center;
  rotate: 0.03deg;
}

.send_copy-error {
  margin-top: 24px;
  text-align: center;
  rotate: 0.03deg;
}

.send_copy_top {
  margin-top: 24px;
  text-align: center;
  padding-bottom: 24px;
  rotate: 0.03deg;
}

.m_link__to-top {
  transition: 0.5s;
}

.m_link__to-top:hover {
  color: var(--primary-color);
  opacity: 0.7;
}
