@charset "utf-8";
/***** 全体 *****/
.c-container {
  background-color: #fff;
  border-radius: 5px;
  margin-block: 0 3rem;
  padding: 3rem;
  min-height: 600px;
}
.c-item {
  margin-bottom: 3rem;
}
.c-item__in {
  margin-bottom: 2rem;
}
.c-item:last-child, .c-item__in:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .c-container {
    margin: 1.5rem;
    padding: 1.5rem;
  }
}
/***** 準備中ページ *****/
.c-under__txt {
  display: flex;
  align-items: center;
  min-height: 200px;
  margin-left: 10rem;
  font-size: 1.8rem;
}
@media screen and (max-width:768px) {
  .c-under__txt {
    font-size: 1.6rem;
    margin-left: 3rem;
  }
}
/***** 見出し *****/
.c-title__main {
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.08em;
  color: var(--base-color);
  margin-block: 3rem 2rem;
  padding: 2rem;
  box-shadow: 0 0 5px #4AA7DC, 0 0 10px #4AA7DC, 0 0 15px #63C6EE;
  background-color: #fff;
  border-radius: 5px;
}
.c-title__large {
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  outline: 2px solid var(--base-color);
  outline-offset: 2px;
  background-color: #fffcd2;
  position: relative;
}
.c-title__medium {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--base-color);
  position: relative;
}
.c-title__medium:before {
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--sub-color);
  content: '';
}
.c-title__small {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 1.5rem;
  padding-left: 1.4rem;
  background-image:
    linear-gradient(var(--base-color) 50%, var(--sub-color) 50%);
  background-repeat: no-repeat;
  background-size: 0.4rem 100%;
}
.c-title__sub {
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--base-color);
  margin-bottom: 1.5rem;
}
@media screen and (max-width:768px) {
  .c-title__main {
    font-size: 2rem;
    margin: calc(60px + 1.5rem) 1.5rem 1.5rem;
    padding: 1rem 1.5rem;
  }
  .c-title__large {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
  }
  .c-title__medium {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
  }
  .c-title__small {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    background-size: 0.3rem 100%;
  }
  .c-title__sub {
    margin-bottom: 1rem;
  }
}
/***** 開催概要 *****/
.p-general__list {
  display: flex;
  margin-bottom: 2rem;
}
.p-general__list dt {
  width: 12em;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--base-color);
  color: var(--base-color);
  font-weight: bold;
}
.p-general__list dd {
  flex: 1;
  padding: 0 0 2rem 2rem;
  border-bottom: 2px solid var(--border-color);
}
@media screen and (max-width:768px) {
  .p-general__list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .p-general__list dt {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 2px solid var(--base-color);
  }
  .p-general__list dd {
    padding: 0;
    border: none;
  }
}
/***** リンク *****/
.p-link__wrap + .p-link__wrap {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dotted var(--border-color);
}
/***** 当番世話人挨拶 *****/
.p-message__txt {
  margin-bottom: 1em;
}
.p-message__indent {
  text-indent: 1em;
}
.p-message__ph {
  display: flex;
  justify-content: center;
  gap: 6rem;
}
.p-message__ph figure {
  width: 200px;
}
.p-message__ph02 {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.p-message__ph02 figure {
  width: 170px;
}
.p-message__right {
  text-align: right;
}
@media screen and (max-width:768px) {
  .p-message__ph {
    gap: 3rem;
  }
  .p-message__ph02 {
    gap: 1.5rem;
  }
  .p-message__right {
    text-align: left;
    font-size: 1.4rem;
  }
}