@charset "UTF-8";

/* ------------------------------------
 * special_root
 * ------------------------------------ */
:root {
  /* Color */
  --color-bg: #9BE1FD;
  --color-white: #fff;
  --color-text: #3A3023;
  --color-yellow: #FFBB00;
  --color-orange: #FE8300;
  --color-aqua: #00B0EA;

  --color-btn-body: #FFBB00;
  --color-btn-text: #3A3023;
  --font-base: "M PLUS 2", sans-serif;
}

/* ------------------------------------
 * special_add
 * ------------------------------------ */
 .special-bg {
  background-color: var(--color-bg);
  background-image:
    linear-gradient(to right, rgba(40, 180, 220, 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(40, 180, 220, 0.25) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position-x: center;
}

.u-coming-soon {
  font-size: 36px;
  font-weight: var(--font-weight-900);
  color: var(--color-aqua);
  text-align: center;
}

 /*-------
//nav
-------*/

.c-nav-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block-start: 14px;
  padding-block-end: 15px;
  text-decoration: none;
}

.c-nav-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 4px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: #FE9C00;
  border: 1px solid var(--color-btn-text);
  border-radius: 120px;
}

.c-nav-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: var(--color-yellow);
  border: 1px solid var(--color-btn-text);
  border-radius: 120px;
}

.c-nav-button__text {
  position: relative;
  z-index: 2;
  color: var(--color-btn-text);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-900);
  line-height: 1;
  white-space: nowrap;
}


/*-------
//container
-------*/
.p-event-container {
  position: relative;
  background-color: #F2FFFF;
  border: solid 1px var(--color-text);
}

.p-event-container::before,
.p-event-container::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img_b2x7kepi/pin.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  top: -8px;
}

.p-event-container::before {
  left: 4px;
}

.p-event-container::after {
  right: 4px;
  transform: scaleX(-1);
}

.c-event-heading__text {
  display: inline-block;
  width: fit-content;
  margin-inline: auto;
  margin-block-end: 16px;
}

.c-event-heading__text img {
  height: 30px;
}

.c-event-heading__sub {
  margin-block-end: 4px;
}

.c-event-heading__sub img {
  height: 18px;
}

.c-line {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  margin-block-end: 16px;
}

.c-line img {
  width: 100%;
}

.p-event-text { 
  text-align: center;
}

.p-event-text--about {
  font-size: var(--font-size-14);
  text-align: left;
}

.p-event-lead {
  text-align: center;
}

.p-event__detail__title {
  background-color: var(--color-yellow);
  border-radius: 120px;
}

.p-event__detail__text a {
  color: var(--color-orange);
}
