@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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;
  color: #000;
  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 {
  margin: 0;
  background: linear-gradient(#61d6e5, #35c9dd);
  color: #fff;
  border-bottom: 1px solid #27c5da;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  z-index: 200;
}
.l-header_inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-header_inner {
    padding: 0 0.8em;
  }
}
.l-header_title {
  width: 50%;
  text-align: left;
  font-weight: 900;
}
.l-header_login {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
.l-header a {
  color: #fff;
}
.l-header_env {
  position: absolute;
  top: 0;
  left: 0;
  background: red;
  color: #fff;
  font-size: 2rem;
  padding: 0.5em;
}
@media (max-width: 767px) {
  .l-header_menu {
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 3.2rem;
    height: 2rem;
  }
  .l-header_menu span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 70%;
  }
  .l-header_menu span:nth-of-type(1) {
    top: 0px;
  }
  .l-header_menu span:nth-of-type(2) {
    top: 8px;
  }
  .l-header_menu span:nth-of-type(3) {
    top: 16px;
  }
  .l-header_menu.__active span:nth-of-type(1) {
    top: 2px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
  }
  .l-header_menu.__active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .l-header_menu.__active span:nth-of-type(3) {
    top: 14px;
    left: auto;
    right: 6px;
    bottom: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
  }
}

.l-footer {
  text-align: center;
  padding: 0.5rem;
  font-size: 1.2rem;
  height: 2.4rem;
  background: #1A1A1A;
  color: #fff;
}

.login .l-main {
  flex-direction: column;
  justify-content: center;
}

.login .l-container {
  width: 100%;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
@media (max-width: 767px) {
  .login .l-container {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-login_field {
  padding: 0.5em 0;
}
.l-login_field label {
  margin-bottom: 0.5em;
}

body.__menu_open {
  overflow: hidden;
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: space-between;
  min-height: 100vh;
}

.l-main {
  background: #d7f5f5;
  padding: 3rem;
  display: flex;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .l-main {
    padding: 1rem;
  }
}

.l-container {
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .l-container {
    padding: 0;
  }
}

.l_global_nav {
  order: 1;
}

.l_global_nav_sub {
  order: 2;
}

.l-page_contents {
  order: 3;
  padding: 1em;
}

.l-global_nav_inner {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #d7d7d7;
  position: relative;
}
.l-global_nav_inner li {
  padding: 1em;
  bottom: -1px;
  position: relative;
}
.l-global_nav_inner li.current {
  border-bottom: 2px solid #1A1A1A;
}
.l-global_nav_sub {
  border-bottom: 10px solid #d7d7d7;
  -o-border-image: linear-gradient(to bottom, #d7d7d7 0%, rgba(215, 215, 215, 0) 100%);
     border-image: linear-gradient(to bottom, #d7d7d7 0%, rgba(215, 215, 215, 0) 100%);
  border-image-slice: 5;
}
.l-global_nav_sub_inner {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  align-items: center;
  border-bottom: 1px solid #d7d7d7;
}
.l-global_nav_second {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #d7d7d7;
  position: relative;
  background: #eee;
}
.l-global_nav_second li {
  padding: 1em;
  bottom: -1px;
  position: relative;
}
.l-global_nav_second li.current {
  border-bottom: 2px solid #1A1A1A;
}
@media (max-width: 767px) {
  .l-global_nav {
    position: fixed;
    padding-top: 8rem;
    top: -100vh;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    background: #fff;
    z-index: 100;
    transition: 0.3s;
  }
  .l-global_nav.__active {
    top: 0;
  }
  .l-global_nav_inner {
    flex-direction: column;
    width: 100%;
  }
  .l-global_nav_inner li {
    border-bottom: 1px solid #d7d7d7;
  }
}

.l-contents {
  margin-bottom: 2.4rem;
  position: relative;
}

.l-page_title {
  border-bottom: 2px solid #d7d7d7;
  padding: 0.5em;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .l-page_title {
    font-size: 1.8rem;
  }
}

.l-page_option {
  border: 1px solid #d7d7d7;
  border-radius: 0.5rem;
  margin-bottom: 2.4rem;
  padding: 1em;
}

.l-page_text {
  padding: 0.5em 0;
}

.l-btn_block {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .l-btn_block {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-btn_block {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .l-btn_block {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .l-btn_block {
    flex-direction: column;
  }
}
.l-btn_block.__cols {
  flex-direction: column;
  gap: 2.4rem;
}

.l-heading_title {
  text-align: center;
  font-weight: 900;
  font-size: 2.8rem;
  padding: 2.4rem 0;
}
.l-heading_title.__en {
  font-family: "Montserrat", sans-serif;
}

.l-heading_pretitle {
  text-align: center;
  font-weight: 900;
  font-size: 1.8rem;
  padding: 1.6rem 0;
}
.l-heading_pretitle.__en {
  font-family: "Montserrat", sans-serif;
}

.l-form {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .l-form {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-form {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .l-form {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.l-pager {
  padding: 0 1em;
  margin-bottom: 2.4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-pager {
    padding: 0;
    margin-bottom: 0.8rem;
  }
}
.l-pager_main {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .l-pager_main {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.l-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 3rem;
}
.l-pagination .page_link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  border: 1px solid;
  background-color: #fff;
  border-color: #d7d7d7;
  margin-left: -1px;
}
.l-pagination .active .page_link {
  background: #1A1A1A;
  border: 1px solid #1A1A1A;
  color: #fff;
  z-index: 10;
}

.c-button {
  display: block;
  position: relative;
  border: 4px solid #fff;
  background: #000;
  color: #fff;
  border-radius: 1.6rem;
  padding: 0.5em;
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 3px 6px 0px 0 rgba(19, 71, 138, 0.5);
}
.c-button-block {
  width: 100%;
  max-width: 60%;
  min-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
.c-button.__skyblue {
  background: #57c3ea;
}
.c-button.__darkblue {
  border: 4px solid #13478a;
  background: #13478a;
}
.c-button.__border_darkblue {
  border: 4px solid #13478a;
  background: #fff;
  color: #13478a;
}
.c-button.__border_orange {
  border: 4px solid #f18d00;
  background: #fff;
  color: #f18d00;
  box-shadow: 3px 6px 0px 0 rgba(241, 141, 0, 0.5);
}
.c-button.__large_text {
  font-size: 3.2rem;
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .c-button.__large_text {
    font-size: 2rem;
  }
}

.c-timestamp {
  margin-bottom: calc(1.6rem * 1);
  font-weight: 500;
  font-size: 1.4rem;
  text-align: right;
}

.c-contents_text {
  line-height: 1.6;
  margin-bottom: 1em;
}
.c-contents_text_large {
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 1em;
  font-weight: 700;
  font-size: 2rem;
}

.c-underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.icon_list li,
.c-icon_list_item {
  display: flex;
}
.icon_list li:before,
.c-icon_list_item:before {
  content: attr(data-icon);
  display: block;
  margin-right: 0.2em;
}

.sideline_title {
  position: relative;
  display: flex;
  align-items: center;
}

.title_text {
  flex-shrink: 0;
  padding: 0.5em;
  font-size: 2rem;
}

.sideline_title:before,
.sideline_title:after {
  content: "";
  width: 50%;
  border-bottom: 1px solid #000;
}

.c-rightline_title {
  display: flex;
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: calc(1.6rem * 1);
}
.c-rightline_title span {
  flex-shrink: 0;
  display: inline-block;
  margin-right: 1em;
  width: -moz-fit-content;
  width: fit-content;
}
.c-rightline_title:after {
  content: "";
  width: 100%;
  height: 1px;
  border-top: 1px solid #000;
  position: relative;
  top: 0.5em;
}

.c-underline_title {
  width: 100%;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: calc(1.6rem * 1);
  padding-bottom: 0.4em;
  border-bottom: 1px solid #000;
}

.c-requireditem {
  display: grid;
  gap: 1.6rem;
  grid-template: auto;
  grid-template-areas: "title title" "requireditem anyitem " "requireditem anyitem ";
}
.c-requireditem .__title {
  grid-area: title;
}
.c-requireditem .__item {
  grid-area: requireditem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
}
.c-requireditem .__item .required_item {
  color: #e60012;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: calc(1.6rem * 1);
}
.c-requireditem .__any_item {
  grid-area: anyitem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .c-requireditem {
    grid-template-areas: "title title" "requireditem requireditem " "anyitem anyitem ";
  }
}

.c-precautions {
  text-align: left;
}
.c-precautions div {
  line-height: 1.4;
}
.c-precautions .icon_list li {
  display: flex;
  align-items: baseline;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.c-ticket_price {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .c-ticket_price {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-ticket_price {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) {
  .c-ticket_price {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.c-ticket {
  text-align: center;
}
@media (min-width: 1024px) {
  .c-ticket_contents {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-ticket_contents {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) {
  .c-ticket_contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
.c-ticket_cautions {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .c-ticket_cautions {
    margin-top: calc(7.2rem * 1);
    margin-bottom: calc(7.2rem * 1);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .c-ticket_cautions {
    margin-top: calc(5.6rem * 1);
    margin-bottom: calc(5.6rem * 1);
  }
}
@media (max-width: 767px) {
  .c-ticket_cautions {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}
@media (max-width: 767px) {
  .c-ticket_cautions {
    max-width: 100vw;
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
.c-ticket_caution {
  margin-bottom: calc(1.6rem * 4);
  font-weight: 500;
  font-size: 1.8rem;
}

.c-pipeline {
  display: inline-block;
  padding: 0 0.5em;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 30rem;
  min-height: 3em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  padding: 0.8em;
  transition: all 0.3s;
  /* 管理画面form 対策*/
}
.c-btn.__regist {
  background: #c00000;
  color: #fff;
}
.c-btn.__draft {
  background: #333;
  color: #fff;
}
.c-btn.__back {
  background: #333;
  color: #fff;
}
.c-btn.__entry {
  background: #1473e6;
  color: #fff;
}
.c-btn.__remind {
  background: #b4b4b4;
  color: #fff;
}
.c-btn.file_label {
  border-radius: 0;
  color: #1A1A1A;
  color: #fff;
}
.c-btn.__event {
  background: linear-gradient(#61d6e5, #35c9dd);
  color: #fff;
}
.c-btn:hover {
  border-radius: 0;
  opacity: 0.7;
}
.c-btn.__disabled {
  background: #8a8a8a;
  border-radius: 0;
  pointer-events: none;
}

.p-link_remark {
  padding: 1em 0.5em;
}

.p-login {
  /* Label */
  /* Underline */
  /* Highlight */
}
.p-login_main {
  align-items: center;
}
.p-login_container {
  width: 100%;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding: 3.2rem;
  min-width: 30rem;
}
@media (max-width: 767px) {
  .p-login_container {
    padding: 3.2rem 1.6rem;
    min-width: 90vw;
  }
}
.p-login_logo {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-login_logo {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-login_logo {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-login_logo {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-login_group {
  position: relative;
  margin-bottom: 45px;
}
.p-login_description {
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-login_description {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-login_description {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-login_description {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-login_input {
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  background: #fff;
  color: #636363;
  width: 100%;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #757575;
  /* active */
  /* active */
}
.p-login_input:focus {
  outline: none;
}
.p-login_input:focus ~ .p-login_label, .p-login_input.__used ~ .p-login_label {
  top: -20px;
  transform: scale(0.75);
  left: -30px;
}
.p-login_input:focus ~ .p-login_bar:before, .p-login_input:focus ~ .p-login_bar:after {
  width: 50%;
}
.p-login_label {
  color: #b4b4b4;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: all 0.2s ease;
  display: flex;
  gap: 0.5em;
}
.p-login_label img {
  height: 1em;
}
.p-login_bar {
  position: absolute;
  display: block;
  top: 48px;
  width: 100%;
}
.p-login_bar:before, .p-login_bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #4a89dc;
  transition: all 0.2s ease;
}
.p-login_bar:before {
  left: 50%;
}
.p-login_bar:after {
  right: 50%;
}
.p-login_highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.p-header_login {
  border-right: 1px solid #27c5da;
  border-left: 1px solid #27c5da;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .p-header_login {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1.5fr) 1fr;
  }
}
.p-header_link {
  border-right: 1px solid #27c5da;
  border-left: 1px solid #27c5da;
  width: 20rem;
  text-align: center;
  padding: 1em;
}
@media (max-width: 767px) {
  .p-header_link {
    width: auto;
    display: grid;
    align-items: center;
    padding: 1em 0.2em;
  }
}

.p-mypage_main {
  flex-direction: column;
  gap: 3.2rem;
}
.p-mypage_container {
  background: transparent;
}
.p-mypage_wrap {
  background: #fff;
  display: grid;
  gap: 1.6rem;
  padding: 6.4rem;
  background: #fff;
}

.p-event .__icon {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 0.5em 1em;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.8rem;
}
.p-event .__icon.__status1 {
  background: #c00000;
}
.p-event .__icon.__status2 {
  background: #32c8dc;
}
.p-event .__icon.__status3 {
  background: #666;
}
.p-event_description .__image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 450/300;
}
.p-event_description .__item {
  display: grid;
  grid-template-columns: 8em 1fr;
  padding: 0.5em;
  gap: 1em;
  border-bottom: 1px solid #1A1A1A;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-event_description .__item {
    grid-template-columns: 1fr;
  }
}
.p-event_description .__text {
  line-height: 1.6;
  padding: 0.5em;
  border-bottom: 1px solid #1A1A1A;
}
.p-event_description .__contact {
  line-height: 1.6;
  padding: 0.5em;
}
.p-event_description .__contact_title {
  font-weight: 700;
  font-size: rem;
}
.p-event_description .__contact_item {
  text-indent: 1em;
  font-weight: 700;
  font-size: 2rem;
}
.p-event_description .__next {
  padding: 1.6rem;
  display: flex;
  justify-content: center;
}
.p-event_description .__docs {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: flex-start;
  grid-column-end: span 2;
  margin-inline: auto;
}
.p-event_status_icon {
  display: block;
  padding: 0.5em 0.5em;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  align-self: center;
  margin: auto;
}
.p-event_status_icon.__unfill {
  border: 1px solid #ffe541;
  background: #ffe541;
}
.p-event_status_icon.__isfill {
  color: #fff;
  color: #32c8dc;
  border: 1px solid #32c8dc;
}
.p-event_status_icon.__refill {
  color: #24cf6c;
  border: 1px solid #24cf6c;
}
.p-event_files {
  display: flex;
  gap: 0.5em;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  padding: 0.5em;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
}
.p-event_files:before {
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  display: block;
  text-decoration: none;
}
.p-event_complete_text {
  line-height: 1.6;
}

.p-event_list {
  display: grid;
  gap: 1.6rem;
  padding: 6.4rem;
  background: #fff;
}
@media (max-width: 767px) {
  .p-event_list {
    padding: 1.6rem;
  }
}
.p-event_list_empty {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-event_list_empty {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-event_list_empty {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-event_list_empty {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-event_taking_list {
  padding-bottom: 4rem;
}
.p-event_taking_list:not(:last-of-type) {
  margin-bottom: calc(1.6rem * 2.4);
}
.p-event_taking_list_title {
  margin-bottom: calc(1.6rem * 1);
  font-weight: 700;
  font-size: 2rem;
}
.p-event_taking_list .p-event_description {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.2rem;
}
.p-event_taking_list .p-event_description .__next {
  grid-column-end: span 2;
}
@media (max-width: 767px) {
  .p-event_taking_list .p-event_description {
    grid-template-columns: 1fr;
  }
  .p-event_taking_list .p-event_description .__next {
    grid-column-end: auto;
  }
}

.p-event_partake_list:not(:last-of-type) {
  margin-bottom: calc(1.6rem * 2);
}
.p-event_partake_list_icon {
  display: flex;
  justify-content: center;
}
.p-event_partake_list_title {
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  padding: 1.6rem;
  line-height: 1.6;
  border-bottom: 1px solid #000;
}
.p-event_partake_list_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}
@media (min-width: 1024px) {
  .p-event_partake_list_item {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-event_partake_list_item {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-event_partake_list_item {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-event_partake_list_item {
    grid-template-columns: 1fr;
  }
}
.p-event_partake_list_docs {
  border: 4px solid #f0f0f0;
  padding: 2.4rem;
}
@media (max-width: 767px) {
  .p-event_partake_list_docs {
    padding: 2.4rem 0.8rem;
  }
}
.p-event_partake_list_docs .__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .p-event_partake_list_docs .__head {
    gap: 1.6rem;
    flex-direction: column;
  }
}
.p-event_partake_list_docs .__head .__title {
  font-weight: 700;
  font-size: 1.8rem;
}
.p-event_partake_list_docs .__head .__switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid #969696;
  border-radius: 5px;
}
.p-event_partake_list_docs .__head .__switch_btn {
  cursor: pointer;
  padding: 0.5em;
  width: 5em;
  color: #969696;
  text-align: center;
  transition: all 0.3s;
}
.p-event_partake_list_docs .__head .__switch_btn.__active {
  cursor: default;
  background: #969696;
  color: #fff;
}
@media (min-width: 1024px) {
  .p-event_partake_list_docs .__docs_list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-event_partake_list_docs .__docs_list {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-event_partake_list_docs .__docs_list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-event_partake_list_docs .__docs_list .__item {
  display: grid;
  grid-template-columns: 1fr 4fr;
  padding: 0.5em;
  border-bottom: 1px dashed #969696;
}
@media (max-width: 767px) {
  .p-event_partake_list_docs .__docs_list .__item {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
}
.p-event_partake_list_docs .__docs_list .__detail {
  display: grid;
  gap: 0.5em;
  padding: 0.5em;
}
.p-event_partake_list_docs .__docs_list .__name {
  line-height: 1.6;
}
.p-event_partake_list_docs .__not_open {
  margin-block: 2.4rem;
}

.p-format_frame {
  display: block;
  background: #fff;
  padding: 3.2rem;
}
.p-format_col {
  line-height: 1.4;
  padding: 1.6rem;
}
.p-format_col:not(:last-of-type) {
  margin-bottom: 2.4rem;
}
.p-format_input_block {
  line-height: 1.4;
  padding: 0 0 1.6rem 0;
}
.p-format_block {
  position: relative;
}
.p-format_loop_remove {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: 900;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-format_loop_remove {
    background: #1A1A1A;
    color: #fff;
    width: 3.2rem;
    text-align: center;
    padding: 0.2em;
    border-radius: 4px;
    top: -12px;
  }
}
.p-format_add_block {
  margin-top: calc(1.6rem * 1);
  margin-bottom: calc(1.6rem * 1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-format_loop_parent {
  counter-reset: number 0;
}
.p-format_loop_parent .p-format_block {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 2.4rem 1.6rem;
  position: relative;
}
.p-format_loop_parent .p-format_block:not(:last-of-type) {
  margin-bottom: calc(1.6rem * 1);
}
.p-format_loop_parent .p-format_block:before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  top: -1rem;
  left: 1rem;
  display: block;
  background: #c92339;
  color: #fff;
  width: 4rem;
  padding: 0.2em 0.5em;
  text-align: center;
}
.p-format_add_btn {
  background: #1A1A1A;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
  cursor: pointer;
}
.p-format_table_row {
  display: flex;
  justify-content: space-between;
}
.p-format_table_col {
  width: 100%;
  padding: 0.8rem;
}
.p-format_table.__border .p-format_table_row {
  border: 1px solid #1A1A1A;
}
.p-format_table.__border .p-format_table_row:not(:last-of-type) {
  border-bottom: none;
}
.p-format_table.__border .p-format_table_col:not(:last-of-type) {
  border-right: 1px solid #1A1A1A;
}
.p-format_image img {
  max-width: 100%;
}
.p-format_image .__image {
  text-align: center;
}
.p-format_image .__image ~ .__caption {
  margin-top: 0.8rem;
}
.p-format_multi_input {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.5em;
}
.p-format .l_heading {
  display: block;
  font-weight: 700;
  font-size: 2.4rem;
  padding-left: 0;
}
.p-format .m_heading {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 0.5em;
  padding-left: 0;
}
.p-format .s_heading {
  display: block;
  font-weight: 700;
  font-size: rem;
  border-left: 3px solid #d7d7d7;
  padding: 0;
  padding-left: 0.5em;
}
.p-format .style_bg_red {
  background: #c92339;
  color: #fff;
}
.p-format .style_bg_black {
  background: #000;
  color: #fff;
}
.p-format .style_bg_darkgray {
  background: #999;
  color: #fff;
}
.p-format .style_bg_gray {
  background: #eeeeee;
  color: #666;
}
.p-format .style_bg_white {
  background: #fff;
  color: #000;
}
.p-format .style_color_red {
  color: #c92339;
}
.p-format .style_color_black {
  color: #000;
}
.p-format .style_weight_bold {
  font-weight: 700;
}
.p-format .style_weight_normal {
  font-weight: 500;
}
.p-format .style_font_l {
  font-size: 140%;
}
.p-format .style_font_m {
  font-size: 100%;
}
.p-format .style_font_s {
  font-size: 80%;
}
.p-format .style_text_underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-format .style_pos_left {
  text-align: left;
}
.p-format .style_pos_right {
  text-align: right;
}
.p-format .style_pos_center {
  text-align: center;
}
.p-format .style_line_border {
  border: 1px solid #000;
  padding: 0.5em;
}
.p-format .__image1 {
  display: grid;
  grid-template-columns: 1fr;
}
.p-format .__image2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
.p-format .__image3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.p-format_file_btn_block {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.p-format_total_area {
  text-align: right;
  font-weight: 700;
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .p-format_total_area {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-format_total_area {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-format_total_area {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-format_master_list {
  margin-bottom: calc(1.6rem * 2);
}
.p-format_master_list_remark {
  font-size: 90%;
}
.p-format_master_list .__head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 0.2em;
}
.p-format_master_list .__head .__cols {
  text-align: center;
  background: #d7d7d7;
}
@media (max-width: 767px) {
  .p-format_master_list .__head {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-format_master_list .__cols {
  padding: 0.5em;
  border-bottom: #8a8a8a 1px solid;
}
.p-format_master_list .__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 0.2em;
}
@media (max-width: 767px) {
  .p-format_master_list .__row {
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: #1A1A1A 1px solid;
  }
}
@media (max-width: 767px) {
  .p-format_master_list .__sp_cont:before {
    content: attr(data-title) ":";
    font-size: 80%;
  }
}
.p-format_master_list .__sp_cont_vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media (max-width: 767px) {
  .p-format_master_list .__sp_cont_vertical:before {
    content: attr(data-title) ":";
    font-size: 80%;
  }
}
.p-format_master_list.__gus .__head {
  grid-template-columns: 2fr 1fr 1fr 2fr;
}
@media (max-width: 767px) {
  .p-format_master_list.__gus .__head {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-format_master_list.__gus .__head .__col4 {
    display: none;
  }
}
.p-format_master_list.__gus .__row {
  grid-template-columns: 2fr 1fr 1fr 2fr;
}
.p-format_master_list.__gus .__row .__col3 {
  text-align: right;
}
@media (max-width: 767px) {
  .p-format_master_list.__gus .__row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-format_master_list.__gus .__row .__col4 {
    grid-row-end: span 3;
    border-bottom: #fff 1px solid;
    font-size: 90%;
  }
}
.p-format_master_list.__electricity .__head {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .p-format_master_list.__electricity .__head {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-format_master_list.__electricity .__head .__col4 {
    display: none;
  }
}
.p-format_master_list.__electricity .__row {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.p-format_master_list.__electricity .__row .__cols {
  display: flex;
  align-items: center;
}
.p-format_master_list.__electricity .__row .__col4, .p-format_master_list.__electricity .__row .__col5 {
  text-align: right;
  justify-content: center;
  align-items: end;
}
@media (max-width: 767px) {
  .p-format_master_list.__electricity .__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "col1  col1" "col2 col3" "col4  col5";
  }
  .p-format_master_list.__electricity .__row .__col1 {
    grid-area: col1;
    background: #d7d7d7;
  }
  .p-format_master_list.__electricity .__row .__col2 {
    grid-area: col2;
  }
  .p-format_master_list.__electricity .__row .__col3 {
    grid-area: col3;
  }
  .p-format_master_list.__electricity .__row .__col4 {
    grid-area: col4;
    border-bottom: #fff 1px solid;
  }
  .p-format_master_list.__electricity .__row .__col5 {
    grid-area: col5;
    border-bottom: #fff 1px solid;
  }
}
.p-format_master_list.__money {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.p-format_master_list.__money .__head {
  grid-template-columns: 2fr 1fr 1fr 2fr;
}
@media (max-width: 767px) {
  .p-format_master_list.__money .__head {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}
.p-format_master_list.__money .__row {
  grid-template-columns: 2fr 1fr 1fr 2fr;
}
.p-format_master_list.__money .__row .__cols {
  text-align: right;
}
@media (max-width: 767px) {
  .p-format_master_list.__money .__row {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    border-bottom: #fff 1px solid;
  }
}
.p-format_master_list.__rental_item_chubo .__head, .p-format_master_list.__rental_item_ippan .__head {
  grid-template-columns: 25rem 19rem 1fr 15rem 0.7fr 1fr;
}
@media (max-width: 767px) {
  .p-format_master_list.__rental_item_chubo .__head, .p-format_master_list.__rental_item_ippan .__head {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .p-format_master_list.__rental_item_chubo .__head .__col4, .p-format_master_list.__rental_item_ippan .__head .__col4 {
    display: none;
  }
}
.p-format_master_list.__rental_item_chubo .__row, .p-format_master_list.__rental_item_ippan .__row {
  grid-template-columns: 25rem 19rem 1fr 15rem 0.7fr 1fr;
}
.p-format_master_list.__rental_item_chubo .__row .__cols, .p-format_master_list.__rental_item_ippan .__row .__cols {
  display: flex;
  align-items: center;
}
.p-format_master_list.__rental_item_chubo .__row .__col1, .p-format_master_list.__rental_item_chubo .__row .__col2, .p-format_master_list.__rental_item_chubo .__row .__col3, .p-format_master_list.__rental_item_ippan .__row .__col1, .p-format_master_list.__rental_item_ippan .__row .__col2, .p-format_master_list.__rental_item_ippan .__row .__col3 {
  justify-content: center;
  align-items: start;
}
.p-format_master_list.__rental_item_chubo .__row .__col4, .p-format_master_list.__rental_item_chubo .__row .__col5, .p-format_master_list.__rental_item_chubo .__row .__col6, .p-format_master_list.__rental_item_ippan .__row .__col4, .p-format_master_list.__rental_item_ippan .__row .__col5, .p-format_master_list.__rental_item_ippan .__row .__col6 {
  text-align: right;
  justify-content: center;
  align-items: end;
}
@media (max-width: 767px) {
  .p-format_master_list.__rental_item_chubo .__row, .p-format_master_list.__rental_item_ippan .__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "col1  col1" "col2 col2" "col3  col4" "col5 col6";
  }
  .p-format_master_list.__rental_item_chubo .__row .__col1, .p-format_master_list.__rental_item_ippan .__row .__col1 {
    grid-area: col1;
    background: #d7d7d7;
  }
  .p-format_master_list.__rental_item_chubo .__row .__col2, .p-format_master_list.__rental_item_ippan .__row .__col2 {
    grid-area: col2;
  }
  .p-format_master_list.__rental_item_chubo .__row .__col3, .p-format_master_list.__rental_item_ippan .__row .__col3 {
    grid-area: col3;
  }
  .p-format_master_list.__rental_item_chubo .__row .__col4, .p-format_master_list.__rental_item_ippan .__row .__col4 {
    grid-area: col4;
  }
  .p-format_master_list.__rental_item_chubo .__row .__col5, .p-format_master_list.__rental_item_ippan .__row .__col5 {
    grid-area: col5;
    border-bottom: #fff 1px solid;
  }
  .p-format_master_list.__rental_item_chubo .__row .__col6, .p-format_master_list.__rental_item_ippan .__row .__col6 {
    grid-area: col6;
    border-bottom: #fff 1px solid;
  }
}

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 {
  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: #d7d7d7;
  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 rgb(183, 143, 0);
}
.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 #d13535;
}
.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 .inline_area input[type=text],
.p-form .inline_area input[type=date],
.p-form .inline_area input[type=time],
.p-form .inline_area input[type=password],
.p-form .inline_area textarea,
.p-form .inline_area select {
  display: inline-block;
}
.p-form .inner_list label {
  margin-bottom: 0;
}
.p-form .datetime, .p-form .date_picker, .p-form .time_picker {
  display: inline-flex;
  position: relative;
  width: 15em;
  align-items: center;
  cursor: pointer;
}
.p-form .datetime:after, .p-form .date_picker:after, .p-form .time_picker:after {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  margin-left: 0.5em;
  font-size: 2.4rem;
  color: #999;
}
.p-form .__mindate .datetime {
  width: 12em;
}
.p-form .clear_icon {
  position: relative;
}
.p-form .close_icon_block {
  display: none;
}
.p-form .clear_icon .close_icon_block {
  display: block;
  font-size: 1.4rem;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 75%;
  color: #999;
  top: 50%;
  transform: translateY(-50%);
}
.p-form .multi_line {
  vertical-align: top;
  gap: 0.4rem;
}
.p-form .__colum2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-form .__colum2 {
    flex-direction: column;
    gap: 0.8rem;
  }
  .p-form .__colum2 .__colum2_size {
    width: 100%;
  }
}
.p-form .__colum3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .p-form .__colum3 {
    flex-direction: column;
    gap: 0.8rem;
  }
  .p-form .__colum3 .__colum2_size {
    width: 100%;
  }
}
.p-form .wrap_block {
  display: block;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  width: 100%;
}
@media (max-width: 767px) {
  .p-form .wrap_block {
    padding: 0em;
  }
}
.p-form .file_upload_block {
  display: block;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  padding: 6px;
  margin-bottom: 1.6rem;
  width: 100%;
}
.p-form .colum2 .file_upload_block {
  width: 49%;
}
.p-form .field_title {
  margin-bottom: 0.5rem;
  display: block !important;
  font-size: 80%;
}
.p-form .file_label {
  width: -moz-fit-content;
  width: fit-content;
  background: #d7d7d7;
  border: 1px solid #8a8a8a;
  color: #000;
}
.p-form .file_label input[type=file] {
  display: none;
}
.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].__small {
  width: 25%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__small {
    width: 30%;
  }
}
.p-form input[type=text].__inline {
  display: inline-block;
}
.p-form .__disabled {
  background: #eee !important;
  pointer-events: none;
}

.p-form_main_title {
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: calc(1.6rem * 1);
  display: flex;
  gap: 0.5em;
}
.p-form_title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: calc(1.6rem * 0.5);
  padding-bottom: calc(1.6rem * 0.5);
  display: flex;
  gap: 0.5em;
  border-bottom: 1px solid #000;
}
.p-form_group {
  padding: 1.6rem 0;
}
.p-form_input_block:not(:last-of-type) {
  margin-bottom: 1em;
}
.p-form_input_block_side {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.p-form_input_label {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: calc(1.6rem * 0.5);
  margin-top: calc(1.6rem * 0.5);
  display: flex;
  gap: 0.5em;
}
.p-form.__required:before,
.p-form .__required:before {
  content: "必須";
  color: #c92339;
  font-size: 80%;
}
.p-form.__any:before,
.p-form .__any:before {
  content: "任意";
  color: #8a8a8a;
  font-size: 80%;
}
.p-form.__choice:before,
.p-form .__choice:before {
  content: attr(data-title);
  color: #1473e6;
  font-size: 80%;
}
.p-form_title_remark {
  padding: 0.5em;
  margin-bottom: 0.5em;
  background: rgba(234, 96, 0, 0.1882352941);
  display: flex;
  gap: 0.5em;
}
.p-form_title_remark:before {
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  font-weight: 900;
}
.p-form_input_confirm {
  background: #eeeeee;
  padding: 0.5em;
  margin: 0.5em 0;
  width: 100%;
}
.p-form_message {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.p-form_message_center {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-form_is_detail .p-form_title_remark {
  display: none;
}
.p-form_is_detail .p-format_add_block,
.p-form_is_detail .p-format_loop_remove {
  display: none;
}

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-mb5 {
  margin-bottom: 0.5rem !important;
}

.-mb10 {
  margin-bottom: 1rem !important;
}

.-mb20 {
  margin-bottom: 2rem !important;
}

.-mt5 {
  margin-top: 0.5rem !important;
}

.-mt10 {
  margin-top: 1rem !important;
}

.-mt20 {
  margin-top: 2rem !important;
}

.-tac {
  text-align: center;
}

.hp_bold {
  font-weight: 700;
}

.hp_white {
  color: #fff;
}

.hp_black {
  color: #000;
}

.hp_tac {
  text-align: center;
}

@media (max-width: 767px) {
  .hp_sp_tal {
    text-align: left;
  }
}

.hp_tal {
  text-align: left;
}

@media (max-width: 767px) {
  .hp_sp_padding {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.hp_bg_white {
  background: #fff;
}
.hp_bg_white .__note {
  color: #000;
}

.hp_bg_radius {
  border-radius: 1.4rem;
}

.hp_contents_padding {
  padding: 2.4rem;
}

.hp_image_org_width img {
  width: auto !important;
}

.hp_fontL {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .hp_fontL {
    font-size: 1.8rem;
  }
}

.hp_fontS {
  font-size: 80%;
}

.hp_notice {
  font-size: 80%;
}

.hp_hide {
  display: none;
}