@charset "UTF-8";
/* main colors */
.page_contents {
  padding: 106px 0 60px;
  position: relative;
}
@media (min-width: 920px) {
  .page_contents {
    padding: 240px 0 96px;
  }
}
.page_contents::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(70.5833333333vw, 847px);
  height: min(71.6666666667vw, 860px);
  background-image: url("../img/common/page_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}
.page_contents .subPage_section_header {
  margin-bottom: 38px;
}
@media (min-width: 920px) {
  .page_contents .subPage_section_header {
    margin-bottom: 78px;
  }
}
.page_contents .subPage_section_header .subPage_section_title {
  margin-bottom: 22px;
}
@media (min-width: 920px) {
  .page_contents .subPage_section_header .subPage_section_title {
    margin-bottom: 80px;
  }
}
.page_contents .subPage_section_header .subPage_section_title_en {
  font-size: 16px;
  font-weight: 700;
  color: #fafafa;
  line-height: 1.25;
  font-family: "Figtree", sans-serif;
  margin-bottom: 4px;
}
@media (min-width: 920px) {
  .page_contents .subPage_section_header .subPage_section_title_en {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
.page_contents .subPage_section_header .subPage_section_title_ja {
  font-size: min(8.5333333333vw, 32px);
  font-weight: 700;
  color: #fafafa;
  line-height: 1.25;
  letter-spacing: -0.045em;
}
@media (min-width: 920px) {
  .page_contents .subPage_section_header .subPage_section_title_ja {
    font-size: min(4.8vw, 48px);
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 920px) {
  .pagination {
    gap: 8px;
  }
}
.pagination .page-number {
  display: inline-block;
  padding: 0 7px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 920px) {
  .pagination .page-number {
    font-size: 20px;
    padding: 0 8px;
  }
}
.pagination .page-number.current {
  opacity: 1;
  font-weight: 700;
}
.pagination .page-number:not(.current) {
  opacity: 0.5;
}
.pagination .page-number.dots {
  pointer-events: none;
  opacity: 0.5;
  transform: translateY(6px);
  font-weight: 900;
}
.pagination .pagination_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 26px;
  border-radius: 999px;
  background: #2b2b2b;
  transition: opacity 0.3s;
}
@media (min-width: 920px) {
  .pagination .pagination_arrow {
    width: 50px;
    height: 40px;
  }
}
@media (min-width: 920px) {
  .pagination .pagination_arrow:hover {
    background: #555;
  }
}
.pagination .pagination_arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.pagination .pagination_arrow .pagination_arrow_icon {
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fafafa;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media (min-width: 920px) {
  .pagination .pagination_arrow .pagination_arrow_icon {
    width: 24px;
    height: 24px;
  }
}

.pagination_arrow-prev {
  margin-right: 4px;
}
@media (min-width: 920px) {
  .pagination_arrow-prev {
    margin-right: 50px;
  }
}
.pagination_arrow-prev .pagination_arrow_icon {
  mask-image: url("../img/page/arrow_prev.svg");
  -webkit-mask-image: url("../img/page/arrow_prev.svg");
}

.pagination_arrow-next {
  margin-left: 4px;
}
@media (min-width: 920px) {
  .pagination_arrow-next {
    margin-left: 50px;
  }
}
.pagination_arrow-next .pagination_arrow_icon {
  mask-image: url("../img/page/arrow_next.svg");
  -webkit-mask-image: url("../img/page/arrow_next.svg");
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
@media (min-width: 920px) {
  .breadcrumbs {
    gap: 12px;
  }
}
.breadcrumbs span {
  font-size: 10px;
  font-weight: 700;
  color: #fafafa;
}
@media (min-width: 920px) {
  .breadcrumbs span {
    font-size: 13px;
  }
}
.breadcrumbs span a {
  padding-bottom: 1px;
  background-image: linear-gradient(to right, #fafafa, #fafafa);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1;
}
@media (min-width: 920px) {
  .breadcrumbs span a:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
.breadcrumbs span:last-child a {
  background-image: none;
}
.breadcrumbs .separator {
  color: #fafafa;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #2b2b2b;
  border-radius: 50%;
}
@media (min-width: 920px) {
  .dot {
    width: 12px;
    height: 12px;
  }
}

.top-left {
  top: 20px;
  left: 20px;
}
@media (min-width: 920px) {
  .top-left {
    top: 30px;
    left: 30px;
  }
}

.top-right {
  top: 20px;
  right: 20px;
}
@media (min-width: 920px) {
  .top-right {
    top: 30px;
    right: 30px;
  }
}

.bottom-left {
  bottom: 20px;
  left: 20px;
}
@media (min-width: 920px) {
  .bottom-left {
    bottom: 30px;
    left: 30px;
  }
}

.bottom-right {
  bottom: 20px;
  right: 20px;
}
@media (min-width: 920px) {
  .bottom-right {
    bottom: 30px;
    right: 30px;
  }
}

.policy_body {
  padding-bottom: 80px;
}
@media (min-width: 920px) {
  .policy_body {
    max-width: 962px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.policy_body .policy_contents {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .policy_body .policy_contents {
    margin-bottom: 35px;
  }
}
.policy_body .policy_contents_link {
  display: flex;
  gap: 4px;
  width: fit-content;
  padding-bottom: 4px;
  margin-bottom: 18px;
}
.policy_body .policy_contents:last-of-type {
  margin-bottom: 0;
}
.policy_body .policy_contents_sub_title {
  font-size: 16px;
}
.policy_body .policy_contents p,
.policy_body .policy_contents ol,
.policy_body .policy_contents ul {
  margin-bottom: 0;
}
.policy_body li {
  line-height: 1.75;
}
.policy_body .policy_title {
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .policy_body .policy_title {
    margin-bottom: 11px;
  }
}
.policy_body p {
  display: block;
  margin-bottom: 40px;
  text-align: justify;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .policy_body p {
    margin-bottom: 60px;
  }
}
.policy_body p.margin-wide {
  margin-bottom: 12px;
}
.policy_body p.margin-narrow {
  margin-bottom: 10px;
}
.policy_body ol {
  margin: 12px 0 0 0;
  padding-left: 20px;
}
.policy_body .policy_list_eng {
  list-style-type: lower-alpha;
}
.policy_body .policy_list_roma {
  list-style-type: lower-roman;
}
.policy_body .policy_list_number li {
  padding-left: 0;
}
.policy_body .policy_list_number li::before {
  display: none;
}
.policy_body .policy_list_dot .policy_list_number li {
  padding-left: 0;
}
.policy_body .policy_list_dot .policy_list_number li::after {
  display: none;
}
.policy_body .bold {
  font-weight: 700;
}

.policy_list_number > li:has(> .policy_list_dot) {
  margin-bottom: 16px;
}

.page-id-1248 {
  background: #D7C7B7;
}
.page-id-1248 .subPage_section_title_en {
  color: #2b2b2b !important;
}
.page-id-1248 .subPage_section_title_ja {
  color: #2b2b2b !important;
}
.page-id-1248 .breadcrumbs span {
  color: #2b2b2b;
}
.page-id-1248 .breadcrumbs span a {
  background-image: linear-gradient(to right, #2b2b2b, #2b2b2b);
}
.page-id-1248 .page_contents::before {
  background-image: url(../img/page/policy_bg.svg);
}

.policy_list_number .policy_list_dot li {
  padding-left: 8px;
  position: relative;
}
@media (min-width: 920px) {
  .policy_list_number .policy_list_dot li {
    padding-left: 14px;
  }
}
.policy_list_number .policy_list_dot li::after {
  position: absolute;
  content: "";
  background-color: #2b2b2b;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  left: 0;
  top: 11px;
}
@media (min-width: 920px) {
  .policy_list_number .policy_list_dot li::after {
    top: 16px;
  }
}

.policy_list_dot li {
  padding-left: 8px;
  position: relative;
}
@media (min-width: 920px) {
  .policy_list_dot li {
    padding-left: 14px;
  }
}
.policy_list_dot li::after {
  position: absolute;
  content: "";
  background-color: #2b2b2b;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  left: 0;
  top: 11px;
}
@media (min-width: 920px) {
  .policy_list_dot li::after {
    top: 16px;
  }
}

.form .form_radio:not(:has(.vertical-item)) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.form .post_main {
  background: #fafafa;
  border-radius: 20px;
}
.form .form_area__content {
  position: relative;
  z-index: 0;
  padding: 40px 24px 20px;
  border-bottom: 1px solid #ebebeb;
}
@media (min-width: 920px) {
  .form .form_area__content {
    padding: 112px 166px 46px;
    margin: 0;
  }
}
.form .form_section + .form .form_section {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .form .form_section + .form .form_section {
    margin-top: 60px;
  }
}
.form .form_section_title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-top: 14px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .form .form_section_title {
    font-size: 28px;
  }
}
.form .form_section_title::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #2b2b2b;
  position: absolute;
  top: 0;
  left: 0;
}
.form .form_label {
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 14px;
}
@media (min-width: 920px) {
  .form .form_label {
    margin-bottom: 6px;
    font-size: 20px;
    gap: 16px;
  }
}
.form .form_label .required,
.form .form_label .any {
  line-height: 1;
  font-size: 10px;
  padding: 5px 6px 6px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  margin-bottom: 3px;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .form .form_label .required,
  .form .form_label .any {
    font-size: 13px;
    padding: 5px 8px;
    margin-bottom: 3px;
  }
}
.form .form_label .required {
  background: #eb7979;
}
.form .form_label .any {
  background: #cccccc;
  color: #2b2b2b;
}
.mw_wp_form_confirm .form .form_label {
  font-weight: 400;
}
.form .form_container {
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .form .form_container {
    margin-bottom: 24px;
  }
}
.form .form_row {
  display: flex;
  gap: 0 8px;
}
@media (min-width: 920px) {
  .form .form_row {
    gap: 0 16px;
  }
}
.form .form_row-address {
  flex-direction: column;
}
.form .form_row-address .form_input_wrap {
  margin-bottom: 8px;
}
.form .form_row-message {
  flex-direction: column;
}
.form .form_row-message .form_input_wrap {
  margin-bottom: 8px;
}
.mw_wp_form_confirm .form .form_row {
  flex-wrap: wrap;
}
.form .form_row-number {
  gap: 12px;
  position: relative;
  align-items: center;
}
@media (min-width: 920px) {
  .form .form_row-number {
    gap: 20px;
  }
}
.form .form_row-number button {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 5px 23px;
}
.form .form_row-number p {
  display: none;
}
.mw_wp_form_confirm .form .form_row-number {
  padding-bottom: 0;
}
@media (min-width: 920px) {
  .mw_wp_form_confirm .form .form_row-number {
    gap: 24px;
  }
}
@media (min-width: 920px) {
  .form .form_row-60 {
    width: 66%;
  }
}
@media (max-width: 599px) {
  .form .form_row-address {
    flex-direction: column;
    gap: 8px;
  }
}
.form .form_row-schedule {
  align-items: center;
}
.form .form_row-schedule::after {
  content: "頃";
  font-weight: 600;
  font-size: 1.125em;
}
.form .form_col-same {
  flex: 1 1 0;
}
.form .form_col-auto {
  flex: 1 1 0;
}
.mw_wp_form_confirm .form .form_col-region {
  width: auto !important;
  flex: 0 0 auto !important;
}
.mw_wp_form_confirm .form .form_col {
  flex: 0 0 auto !important;
}
.form .form_row-number .form .form_col {
  flex: 1 1 0;
}
.form .form_row-number .form .form_col + .form .form_col {
  position: relative;
}
.form .form_row-number .form .form_col + .form .form_col::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #2b2b2b;
  position: absolute;
  left: -4px;
  top: 50%;
  translate: -100% 0;
}
@media (min-width: 920px) {
  .form .form_row-number .form .form_col + .form .form_col::before {
    left: -8px;
  }
}
.mw_wp_form_confirm .form .form_row-number .form .form_col + .form .form_col::before {
  width: 8px;
  left: -8px;
}
.form .form_input_wrap + .form .form_input_wrap {
  margin-top: 8px;
}
.form .form_input_wrap:has(.formError) .form_input_error, .form .form_input_wrap:has(.error) .form_input_error {
  color: #b70000;
}
.form .form_input_wrap-books {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .form .form_input_wrap-books {
    width: 33%;
  }
}
.form .form_input_wrap-books::after {
  content: "冊";
  font-weight: 600;
  font-size: 1.125em;
}
.form .form_input_wrap-cards {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .form .form_input_wrap-cards {
    width: 33%;
  }
}
.form .form_input_wrap-cards::after {
  content: "枚";
  font-weight: 600;
  font-size: 1.125em;
}
.form .form_input_box {
  position: relative;
}
.form .form_input_box input,
.form .form_input_box select,
.form .form_input_box textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  appearance: none;
  padding: 18px 12px 16px;
  position: relative;
  background: #fafafa;
  display: flex;
  align-items: center;
  border: 1px solid #cccccc;
  justify-content: space-between;
  border-radius: 8px;
}
.mw_wp_form_confirm .form .form_input_box input,
.mw_wp_form_confirm .form .form_input_box select,
.mw_wp_form_confirm .form .form_input_box textarea {
  background: none;
  border-bottom: none;
}
@media (min-width: 920px) {
  .form .form_input_box input,
  .form .form_input_box select,
  .form .form_input_box textarea {
    padding-right: 36px;
    padding: 24px 12px 22px;
  }
}
.mw_wp_form_confirm .form .form_input_box input,
.mw_wp_form_confirm .form .form_input_box select,
.mw_wp_form_confirm .form .form_input_box textarea {
  font-weight: 600;
}
.form .form_input_box textarea {
  width: 100%;
  height: 200px;
}
@media (min-width: 920px) {
  .form .form_input_box textarea {
    height: 230px;
  }
}
.form .form_input_box:has(.form_input_label) input,
.form .form_input_box:has(.form_input_label) select {
  padding: 20px 12px 4px;
}
@media (min-width: 920px) {
  .form .form_input_box:has(.form_input_label) input,
  .form .form_input_box:has(.form_input_label) select {
    padding-right: 48px;
  }
}
.form .form_input_box:has(input:focus) {
  background: #f2f2f2;
}
.form .form_input_box:has(input:focus)::after {
  scale: 1 1;
  background-color: #2b2b2b;
}
.form .form_input_box:has(input:focus) .form_input_label {
  color: #2b2b2b;
}
.form .form_input_box-select.form_input_box .form_input_icon {
  pointer-events: none;
}
@media (max-width: 919px) {
  .form .form_input_box-select.form_input_box .form_input_icon {
    display: block;
  }
}
.mw_wp_form_confirm .form .form_input_box-select.form_input_box .form_input_icon {
  display: none !important;
}
.form .form_input_check {
  width: 100%;
}
.mw_wp_form_confirm .form .form_input_check {
  font-weight: 600;
  font-size: 1.25em;
}
.form .form_input_check .postalcode {
  padding: 17px 22px;
}
@media (min-width: 920px) {
  .form .form_input_check .postalcode {
    padding: 24px 22px;
  }
}
.form .form_input_check .address-city {
  padding: 34px 12px 14px !important;
}
.form .form_input_label {
  font-size: 14px;
  position: absolute;
  top: 4px;
  left: 12px;
  z-index: 1;
}
.mw_wp_form_confirm .form .form_input_label {
  display: none;
}
.form .form_input_error {
  font-size: 10px;
  margin-top: 4px;
  line-height: 1.35;
  display: block;
}
@media (min-width: 920px) {
  .form .form_input_error {
    font-size: 12px;
  }
}
.form_row-number .form .form_input_error {
  position: absolute;
  bottom: 0;
  left: 0;
}
.form_row-number:has(.formError) .form .form_input_error, .form_row-number:has(.error) .form .form_input_error {
  color: #2b2b2b;
}
.mw_wp_form_confirm .form .form_input_error {
  display: none;
}
.form .form_modal {
  margin-top: 8px;
  font-size: 10px;
  display: flex;
  gap: 4px;
  align-items: center;
  text-decoration: underline;
}
@media (min-width: 920px) {
  .form .form_modal {
    font-size: 12px;
  }
}
@media (min-width: 920px) {
  .form .form_modal:hover {
    text-decoration: none;
  }
}
.mw_wp_form_confirm .form .form_modal {
  display: none;
}
.form .form_bottom {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 920px) {
  .form .form_bottom {
    margin-top: 42px;
  }
}
.form .form_bottom_wrap {
  padding: 40px 24px 62px;
}
@media (min-width: 920px) {
  .form .form_bottom_wrap {
    padding: 52px 166px 80px;
  }
}
.form .form_bottom_wrap p {
  font-size: 14px;
}
@media (min-width: 920px) {
  .form .form_bottom_wrap p {
    font-size: 18px;
  }
}
.form .form_policy {
  margin-bottom: 10px;
}
@media (min-width: 920px) {
  .form .form_policy {
    margin-bottom: 40px;
  }
}
.form .form_policy_check {
  margin-bottom: 64px;
}
.form .form_policy_check .mwform-checkbox-field-text {
  font-size: 16px;
}
@media (min-width: 920px) {
  .form .form_policy_check .mwform-checkbox-field-text {
    font-size: 18px;
  }
}
.form .form_policy .link_line {
  padding: 0;
}
.form .form_policy p + p {
  margin-top: 1.5em;
}
.mw_wp_form_confirm .form .form_policy {
  display: none;
}
.form .form_submit {
  position: relative;
  border: 1px solid #2b2b2b;
  border-radius: 40px;
  overflow: hidden;
  width: 256px;
  margin: 0 auto;
  transition: background-color 0.3s, border-color 0.3s;
}
.form .form_submit input[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
  box-shadow: none;
  color: #2b2b2b;
  padding: 20px 28px;
  text-align: left;
  font-weight: 600;
  display: block;
  width: 100%;
  transition: color 0.3s;
}
@media (min-width: 920px) {
  .form .form_submit:hover {
    background: #2b2b2b;
    border-color: #2b2b2b;
  }
}
@media (min-width: 920px) {
  .form .form_submit:hover input[type=submit] {
    color: #fff;
  }
}
@media (min-width: 920px) {
  .form .form_submit:hover::after {
    background-color: #fff;
  }
}
.form .form_submit_back {
  width: 196px;
  margin: 40px auto 0;
  position: relative;
  display: none;
}
.mw_wp_form_confirm .form .form_submit_back {
  display: block;
}
.form .form_submit_back input[type=submit] {
  width: 100%;
  display: block;
  color: #2b2b2b;
  cursor: pointer;
  background: none;
  border: none;
  box-shadow: none;
  text-align: left;
  font-size: 1.125em;
}
.form .contact_btn {
  text-align: center;
  display: flex;
  justify-content: center;
}
.form .contact_btn input {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
  background-color: #2b2b2b;
  border: 1px solid #2b2b2b;
  border-radius: 99px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 21px 63px;
}
@media (min-width: 920px) {
  .form .contact_btn input {
    font-size: 20px;
    padding: 27px 77px;
  }
}
@media (min-width: 920px) {
  .form .contact_btn input:hover {
    background-color: #fafafa;
    color: #2b2b2b;
  }
}
.form .form_memo {
  font-size: 0.875em;
  margin-top: 1em;
  line-height: 1.5;
}
.mw_wp_form_confirm .form .form_memo {
  display: none;
}
.form input[type=radio],
.form input[type=checkbox] {
  accent-color: #2b2b2b;
  display: inline-block;
  margin-right: 8px;
  transform: scale(1.5);
}
.form label:has(input[type=radio]),
.form label:has(input[type=checkbox]) {
  cursor: pointer;
}
.form .form_radio input[type=radio] {
  accent-color: #A56F2B;
}
.form .form_radio-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form .form_radio-flex > span {
  flex: 0 0 calc(50% - 4px);
  margin: 0 !important;
}
@media (min-width: 920px) {
  .form .form_radio-flex > span {
    flex-basis: 20%;
  }
}
.mw_wp_form_confirm .form .form_radio {
  font-weight: 600;
  font-size: 1.125em;
}
.form .mw_wp_form .vertical-item + .vertical-item {
  margin-top: 8px !important;
}
.form .mw_wp_form .form_radio {
  position: relative;
}
.form .mw_wp_form .form_radio .error {
  display: block !important;
  font-size: 93%;
  margin-top: 4px;
  line-height: 1.35;
  color: #b70000;
  position: absolute;
  left: 0;
  bottom: -18px;
}
.form .p-country-name {
  display: none;
}
.form .mw_wp_form_confirm .reserve_present,
.form .mw_wp_form_confirm .reserve_merit,
.form .mw_wp_form_confirm .post_side,
.form .mw_wp_form_confirm .side_caution {
  display: none;
}
.form .mw_wp_form_confirm .post_main {
  background: #fafafa;
  border-radius: 20px;
}
.form .mw_wp_form_confirm .form_bottom {
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px solid #ccc;
  padding-top: 40px;
}
@media (min-width: 920px) {
  .form .mw_wp_form_confirm .form_bottom {
    margin-left: -80px;
    margin-right: -80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-direction: row-reverse;
  }
}
.form .mw_wp_form_confirm .form_bottom p {
  font-size: 18px;
}
.form .mw_wp_form_confirm .form_bottom .link_line {
  padding-bottom: 0;
}
.form .mw_wp_form_confirm .form_bottom .form_submit {
  background: #2b2b2b;
}
.form .mw_wp_form_confirm .form_bottom .form_submit::after {
  background: #fff;
}
.form .mw_wp_form_confirm .form_bottom .form_submit input[type=submit] {
  color: #fff;
}
@media (min-width: 920px) {
  .form .mw_wp_form_confirm .form_bottom .form_submit:hover {
    background: #2b2b2b;
  }
}
@media (min-width: 920px) {
  .form .mw_wp_form_confirm .form_bottom .form_submit,
  .form .mw_wp_form_confirm .form_bottom .form_submit_back {
    margin: 0;
  }
}
.form .confirm_head {
  display: none;
  margin-bottom: 32px;
  text-align: center;
}
.mw_wp_form_confirm .form .confirm_head {
  display: block;
}
.form .confirm_head_title {
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 1em;
}
.form .completed_img {
  margin: 0 auto 40px;
  width: 150px;
  height: 150px;
}
.form .completed_container {
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.form .completed_title {
  margin-bottom: 1em;
}
.form .completed_box {
  text-align: left;
  background: #2b2b2b;
  padding: 30px 20px;
  margin: 40px 0;
  border-radius: 4px;
}
@media (min-width: 920px) {
  .form .completed_box {
    padding: 40px;
    margin: 60px 0;
  }
}
.form .completed_box_title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1em;
}
.form .not_title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (min-width: 920px) {
  .form .not_title {
    font-size: 30px;
  }
}
.form .not_text {
  font-weight: 700;
}
.form .not_back {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .form .not_back {
    margin-top: 60px;
  }
}
.form .page_contents_event .post_row {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .form .page_contents_event .post_row {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .form .page_contents_event .post_row {
    gap: 100px;
  }
}
.form button {
  background: none; /* 背景を消す */
  border: none; /* 枠線を消す */
  padding: 0; /* 余白を消す */
  margin: 0; /* マージンを消す */
  font: inherit; /* 親要素のフォントに合わせる */
  color: inherit; /* 親要素の色に合わせる */
  cursor: pointer; /* ポインターカーソルを残す */
  appearance: none; /* OSのスタイルを消す */
}

.form_input_box-select {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (min-width: 920px) {
  .form_input_box-select.address {
    width: 340px;
  }
}
@media (min-width: 920px) {
  .form_input_box-select.message {
    width: 480px;
  }
}

.message-category {
  width: 480px;
}

.form_input_box-select select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  padding-right: 2em;
  color: #2b2b2b;
}

.form_input_icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 10px;
  background: url("../img/page/box_arrow.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.completed_container .complete_top_img {
  max-width: 244px;
  margin: 0 auto -24px;
}
@media (min-width: 920px) {
  .completed_container .complete_top_img {
    width: 332px;
    max-width: none;
    margin: 0 auto -40px;
  }
}
.completed_container .complete_top_text {
  font-size: min(19.2vw, 72px);
  font-weight: 800;
  text-align: center;
  border-bottom: 8px solid #fafafa;
  color: #fafafa;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.05;
  font-family: "Figtree", sans-serif;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .completed_container .complete_top_text {
    font-size: 132px;
    margin-bottom: 10px;
  }
}
.completed_container .completed_title {
  font-size: min(6.4864864865vw, 24px);
  text-align: center;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 10px;
}
@media (min-width: 920px) {
  .completed_container .completed_title {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.completed_container .completed_text {
  text-align: center;
  color: #fafafa;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: -0.05em;
}
@media (min-width: 920px) {
  .completed_container .completed_text {
    font-size: 18px;
  }
}
.completed_container .completed_box {
  background-color: #8f6025;
  border-radius: 16px;
  padding: 30px;
  max-width: 636px;
  margin: 0 auto 60px;
}
@media (min-width: 920px) {
  .completed_container .completed_box {
    font-size: 20px;
    padding: 40px;
    margin: 0 auto 86px;
  }
}
.completed_container .completed_box_title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fafafa;
  margin-bottom: 14px;
}
@media (min-width: 920px) {
  .completed_container .completed_box_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.completed_container .completed_box p {
  font-size: 14px;
  color: #fafafa;
}
@media (min-width: 920px) {
  .completed_container .completed_box p {
    font-size: 16px;
  }
}
.completed_container .completed_back p {
  display: none;
}
.completed_container .completed_back .arrow_btn {
  border: 1px solid #2b2b2b;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 266px;
  padding: 18px 12px;
}
@media (min-width: 920px) {
  .completed_container .completed_back .arrow_btn {
    max-width: 313px;
  }
}

.page-id-1268 .page_contents,
.error404 .page_contents {
  padding: 100px 0 96px;
}
@media (min-width: 920px) {
  .page-id-1268 .page_contents,
  .error404 .page_contents {
    padding: 180px 0 96px;
  }
}
.page-id-1268 .subPage_section_title_ja,
.error404 .subPage_section_title_ja {
  letter-spacing: -0.05em;
}
.page-id-1268 .page_contents::before,
.error404 .page_contents::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: min(70.5833333333vw, 847px);
  height: min(71.6666666667vw, 860px);
  background-image: url(../img/common/page_bg.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.error404 .page_contents {
  padding: 140px 0 96px;
}
@media (min-width: 920px) {
  .error404 .page_contents {
    padding: 240px 0 96px;
  }
}

.not_found_top {
  position: relative;
  width: fit-content;
  margin: 0 auto 10px;
  padding-top: 140px;
}
@media (min-width: 920px) {
  .not_found_top {
    padding: 0;
  }
}
.not_found_top_text {
  font-size: min(44.4444444444vw, 160px);
  font-weight: 800;
  color: #fafafa;
  line-height: 0.75;
  font-family: "Figtree", sans-serif;
}
@media (min-width: 920px) {
  .not_found_top_text {
    font-size: min(16.6666666667vw, 200px);
  }
}
.not_found_top_text:last-of-type {
  font-size: min(14.4444444444vw, 52px);
  font-weight: 800;
  color: #fafafa;
  line-height: 1;
  border-bottom: 8px solid #fafafa;
  font-family: "Figtree", sans-serif;
}
@media (min-width: 920px) {
  .not_found_top_text:last-of-type {
    font-size: min(11vw, 132px);
  }
}
.not_found_top_img {
  max-width: 285px;
  position: absolute;
  right: min(1.4285714286vw, 20px);
  top: -30px;
  z-index: -1;
}
@media (min-width: 920px) {
  .not_found_top_img {
    max-width: min(29.6666666667vw, 356px);
  }
}
.not_found_text {
  font-size: 14px;
  font-weight: 700;
  color: #fafafa;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .not_found_text {
    font-size: 18px;
    margin-bottom: 80px;
  }
}
.not_found_text_bold {
  font-size: min(6.6666666667vw, 24px);
  font-weight: 700;
  color: #fafafa;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 920px) {
  .not_found_text_bold {
    font-size: min(3.6363636364vw, 40px);
  }
}
.not_found .arrow_btn {
  border: 1px solid #2b2b2b;
  max-width: 266px;
  padding: 22px 9px;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 920px) {
  .not_found .arrow_btn {
    max-width: none;
    padding: 18px 32px;
  }
}
@media (min-width: 920px) {
  .not_found .arrow_btn:hover .arrow_btn_circle {
    background-color: #fafafa;
  }
}
@media (min-width: 920px) {
  .not_found .arrow_btn:hover .arrow_btn_circle .arrow {
    background-color: #2b2b2b;
  }
}/*# sourceMappingURL=page.css.map */