@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@keyframes blinkBorder {
  0% {
    border: 1px dashed #cc2200;
  }
  100% {
    border: 1px dashed #efefef;
  }
}
/* Animations */
@keyframes inputHighlighter {
  from {
    background: #4a89dc;
  }
  to {
    width: 0;
    background: transparent;
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body,
body.__parts_body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
}

html,
body {
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
a.-inner {
  color: #641344;
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.l-header {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 1023px) {
  .l-header {
    margin: 0;
  }
}

.l-footer {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.l-wrapper {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: url(../images/bg_pc.png) no-repeat center 5rem, linear-gradient(180deg, rgb(253, 239, 245) 33rem, rgb(255, 255, 255) 60rem);
  overflow: hidden;
}
@media (max-width: 1023px) {
  .l-wrapper {
    background: url(../images/bg_pc.png) no-repeat center top/contain, linear-gradient(180deg, rgb(253, 239, 245) 33rem, rgb(255, 255, 255) 60rem);
  }
}

.l-main {
  padding: 4rem 0;
}
@media (max-width: 1023px) {
  .l-main {
    padding: 2.4rem 5vw;
  }
}
.l-main_inner {
  display: grid;
  gap: 3.2rem;
}
.l-main__confirm {
  padding: 8rem 2.4rem;
}

.p-main {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.p-main_inner {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.p-main_inner__confirm {
  background: #fff;
  padding: 2.4rem 1.6rem;
}
.p-main_title {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #a64a97;
  text-align: center;
  border-radius: 1.2rem;
  padding: 1.6rem;
}
.p-main_desc {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-main_desc {
    font-weight: 400;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-main_desc {
    font-weight: 400;
    font-size: 1.6rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.p-main_date {
  text-align: center;
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .p-header img {
    width: 100%;
  }
}
.p-header img {
  width: 100%;
  max-width: 128rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1280/975;
  max-height: 85vh;
}

.p-footer {
  border-top: 1px solid #000;
  padding: 1em;
  line-height: 1.4;
}
.p-footer .__upper {
  font-weight: 600;
  font-size: 2rem;
}
.p-footer .__lower {
  font-weight: 400;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-footer .__upper {
    font-weight: 600;
    font-size: 1.6rem;
  }
  .p-footer .__lower {
    font-weight: 400;
    font-size: 1.4rem;
  }
}

button {
  cursor: pointer;
}

label {
  /* margin-bottom: 1em; */
  display: inline-block;
  display: flex;
  align-items: center;
}

.p-form button, .p-form input, .p-form textarea {
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
}
.p-form input[type=text],
.p-form input[type=date],
.p-form input[type=time],
.p-form input[type=password],
.p-form textarea, .p-form select {
  font-size: 2rem;
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid;
  background-color: #fff;
  border-color: #000;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.p-form input[type=text]:focus,
.p-form input[type=date]:focus,
.p-form input[type=time]:focus,
.p-form input[type=password]:focus,
.p-form textarea:focus, .p-form select:focus {
  border: 1px solid #a64a97;
}
.p-form input[type=text].__error,
.p-form input[type=date].__error,
.p-form input[type=time].__error,
.p-form input[type=password].__error,
.p-form textarea.__error, .p-form select.__error {
  border: 1px solid #ea5504;
}
.p-form textarea {
  height: 10em;
}
.p-form textarea.multi_text {
  height: 4em;
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  transform: scale(1.5, 1.5);
  margin-right: 0.5em;
}
.p-form input[type=time] {
  width: 6em;
}
.p-form input[type=text].__half {
  width: 48%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__half {
    width: 100%;
  }
}
.p-form input[type=text].__short {
  width: 25%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__short {
    width: 30%;
  }
}
.p-form input[type=text].__inline {
  display: inline-block;
}
.p-form .__disabled {
  background: #eee !important;
}

.p-form {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.p-form_inner {
  display: grid;
  gap: 2.4rem;
}
.p-form_input {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 1.6rem;
  align-items: center;
  font-weight: 400;
  font-size: 2rem;
}
.p-form_input .__heading {
  font-weight: 400;
  font-size: 2rem;
  -moz-text-align-last: justify;
       text-align-last: justify;
  width: 7em;
}
.p-form_input .__input_multi {
  display: flex;
  gap: 1em;
  align-items: center;
}
@media (max-width: 767px) {
  .p-form_input {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }
  .p-form_input .__heading {
    font-weight: 400;
    font-size: 1.6rem;
    -moz-text-align-last: left;
         text-align-last: left;
    width: 100%;
  }
}
.p-form_notice {
  font-weight: 400;
  font-size: 2.1rem;
  text-align: center;
  padding: 1em 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_notice {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-form_notice {
    font-weight: 400;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4;
  }
}
.p-form_btn {
  background: #e84566;
  border-radius: 1.4rem;
  padding: 0.5em 1em;
  width: 90%;
  max-width: 48rem;
  transition: all 0.3s;
  color: #fff;
  font-weight: 700;
  font-size: 3.2rem;
}
.p-form_btn_block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-block: 4rem;
}
.p-form_btn.__back {
  background: #666;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1.6rem;
}
.p-form_btn:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .p-form_btn {
    font-weight: 700;
    font-size: 2.4rem;
  }
  .p-form_btn img {
    width: 40%;
  }
}
.p-form_btn.__send {
  pointer-events: none;
  background: #666;
}
.p-form_btn .__spiner {
  color: #fff;
  font-size: 2.4rem;
  display: inline-block;
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .p-form_btn .__spiner {
    font-size: 1.5em;
  }
}
.p-form_complete {
  border: 1px solid #a64a97;
  padding: 1em;
  margin-bottom: 1em;
}

.message_section {
  margin-bottom: 1.6rem;
}

.message {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.message_inline {
  font-size: 1.4rem;
  padding: 0.5rem 0.75rem;
}

.success {
  color: #18603a;
  background-color: #d5f1de;
  border-color: #c4ebd1;
}

.error {
  color: #772b35;
  background-color: #fadddd;
  border-color: #f8cfcf;
}

@media (min-width: 1024px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
  .event_consent.sp_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none;
  }
  .pc_only {
    display: none;
  }
}
.ellipsis {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.h_mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .h_mb0 {
    margin-bottom: 0rem !important;
  }
}

.h_mt0 {
  margin-top: 0rem !important;
}

.h_pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .h_pb0 {
    padding-bottom: 0rem !important;
  }
}

.h_mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .h_mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.h_mt10 {
  margin-top: 1.6rem !important;
}

.h_pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .h_pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.h_mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .h_mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.h_mt20 {
  margin-top: 3.2rem !important;
}

.h_pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .h_pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.h_mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .h_mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.h_mt30 {
  margin-top: 4.8rem !important;
}

.h_pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .h_pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.h_mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .h_mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.h_mt40 {
  margin-top: 6.4rem !important;
}

.h_pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .h_pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.h_mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .h_mb50 {
    margin-bottom: 4rem !important;
  }
}

.h_mt50 {
  margin-top: 8rem !important;
}

.h_pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .h_pb50 {
    padding-bottom: 4rem !important;
  }
}

.h_mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .h_mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.h_mt60 {
  margin-top: 9.6rem !important;
}

.h_pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .h_pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.h_mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .h_mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.h_mt70 {
  margin-top: 11.2rem !important;
}

.h_pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .h_pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.h_mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .h_mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.h_mt80 {
  margin-top: 12.8rem !important;
}

.h_pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .h_pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.h_mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .h_mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.h_mt90 {
  margin-top: 14.4rem !important;
}

.h_pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .h_pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.h_mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .h_mb100 {
    margin-bottom: 8rem !important;
  }
}

.h_mt100 {
  margin-top: 16rem !important;
}

.h_pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .h_pb100 {
    padding-bottom: 8rem !important;
  }
}