@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: pretty;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

:root {
  --bs-border-color:#ccc ;
}

@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  color: #332000;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  position: relative;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
}

a {
  text-decoration: none;
  color: #694b2d;
}

a:hover img {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

.sortable {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sortable li {
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  cursor: move;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.sortable li:nth-child(even) {
  background-color: #f7f7f7;
}

.error {
  color: #aa3300;
}

.event-box {
  margin-top: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  display: none;
}
.event-box .event-header {
  position: relative;
  padding: 15px 15px 10px;
}
.event-box .event-header .category {
  position: absolute;
  top: -5px;
  left: 15px;
  transform: rotate(-5deg);
  background-color: #555;
  text-align: center;
  font-size: 0.875rem;
  line-height: 4em;
  width: 4em;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.event-box .event-header h2 {
  font-weight: bold;
  font-size: 1.75rem;
  padding: 5px 70px;
}
@media (max-width: 767px) {
  .event-box .event-header h2 {
    font-size: 1.5rem;
  }
}
.event-box .event-header .message {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 1rem;
}
.event-box .event-meta {
  padding: 0 15px;
}
.event-box .event-meta ul {
  border-top: 1px solid #ccc;
  list-style: none;
  margin: 0 0 5px;
  padding: 5px 0 0;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .event-box .event-meta ul li {
    display: inline-block;
  }
  .event-box .event-meta ul li + li {
    margin-left: 15px;
  }
}
.event-box .event-body {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  margin: 5px 15px 10px;
  box-shadow: 0 0 5px #ccc inset;
  color: #332000;
}
.event-box .event-res {
  padding: 0 15px;
}
.event-box .event-res .row {
  display: flex;
  gap: 30px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .event-box .event-res .row {
    flex-direction: column;
    gap: 8px;
  }
}
.event-box .event-res form {
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.event-box .event-res form .comment-box {
  display: flex;
  align-items: center;
  flex: 1;
}
.event-box .event-res form .comment-box label {
  width: 5em;
}
.event-box .event-footer {
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 0 0 10px 10px;
}
.event-box .close-message {
  background-color: #777;
  color: white;
  display: inline-block;
  padding: 2px 8px;
}
.event-box .before-message {
  background-color: #00b9c3;
  color: white;
  display: inline-block;
  padding: 2px 8px;
}
.event-box .open-message {
  background-color: #aa3300;
  color: white;
  display: inline-block;
  padding: 2px 8px;
}
.event-box .limit {
  display: flex;
  justify-content: space-between;
  margin: 3px 0;
}
.event-box .limit p {
  font-size: 0.75rem;
  text-align: right;
}

body.admin .event-box {
  display: block;
}

body.member div.event-box[data-roles~=member] {
  display: block;
}

body.assosiate_member div.event-box[data-roles*=assosiate] {
  display: block;
}

body.special_member div.event-box[data-roles*=special_member] {
  display: block;
}

body.course_g div.event-box[data-groups~=course_g] {
  display: block;
}

body.group_A div.event-box[data-groups~=group_A] {
  display: block;
}

.event-box.closed {
  background-color: #f6f6ef;
  filter: brightness(0.95);
}
.event-box.closed .event-res {
  display: none;
}

.event-box.before {
  background-color: #e6f9fc;
  color: #999;
}
.event-box.before .event-res {
  display: none;
}

.event-box.answered {
  background-color: #fdede2;
}

.event-box.pending {
  background-color: #fff3cd;
}

.event-box.festival {
  background-color: #aa3300;
  color: white;
  padding-bottom: 15px;
}
.event-box.festival .event-body {
  margin: 0 15px;
}
.event-box.festival .event-body strong {
  font-size: 1.375rem;
}
.event-box.festival .event-footer {
  padding-bottom: 0;
  background-color: inherit;
}

.event-box.general-meeting {
  background-color: #f4f4ee;
  color: #332000;
  padding-bottom: 15px;
}
.event-box.general-meeting .category {
  background-color: #aa3300;
}
.event-box.general-meeting .event-body {
  margin: 0 15px;
}
.event-box.general-meeting .event-body strong {
  font-size: 1.375rem;
}

.readonly {
  pointer-events: none;
  opacity: 0.6;
}

.select-btn {
  display: flex;
}
@media (min-width: 768px) {
  .select-btn {
    width: 300px;
  }
}
.select-btn label {
  background-color: white;
  border-width: 1px 0 1px 1px;
  border-color: #ccc;
  border-style: solid;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
  display: flex;
  justify-content: center;
  width: 33.3333333333%;
  align-items: center;
}
.select-btn label:hover {
  background-color: #efefef;
}
.select-btn input[type=radio] {
  display: none; /* ラジオボタンを非表示にする */
}
.select-btn input[type=radio]:checked + label {
  background: #ffebb5; /* マウス選択時の背景色を指定する */
}

.select-btn label:first-of-type {
  border-radius: 5px 0 0 5px;
}

.select-btn label:last-of-type {
  border-radius: 0 5px 5px 0;
  border-right: 1px solid #ccc;
}

.select-btn input[type=radio]:checked + label {
  background-color: #ffebb5;
}

.select-btn label.checked {
  background-color: #ffebb5;
}

table.table-no thead {
  border-bottom: 2px solid #ccc;
}
table.table-no thead th {
  text-align: center;
  background-color: #f4f4ee;
}
table.table-no thead th.cell_num {
  width: 2em;
}
table.table-no thead th.cell_status {
  width: 3.5em;
}
table.table-no thead th.cell_status_edit {
  width: 316px;
}
table.table-no thead th.cell_name {
  width: 8em;
}
table.table-no tbody td.cell_num {
  width: auto;
  text-align: right;
}
table.table-no tbody td.cell_status {
  text-align: center;
}
table.table-no tbody td.cell_name {
  white-space: nowrap;
}
table.table-no tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.event-box {
  transition: opacity 0.5s ease, height 0.5s ease;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table thead th {
  background-color: #f8f9fa;
}

/* テーブル全体のスタイル */
.table-wrapper {
  position: relative;
  max-height: 500px; /* テーブル全体の高さを制限 */
  overflow: auto; /* スクロール可能に */
  border: 1px solid #ccc; /* 枠線 */
}
.table-wrapper thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-wrapper tbody td:first-child,
.table-wrapper thead tr:first-child th:first-child {
  position: sticky;
  left: 0;
  background-color: #f8f9fa;
  z-index: 2;
  width: 8ch;
  white-space: nowrap;
}
.table-wrapper th, .table-wrapper td {
  padding: 5px 10px;
  border: 1px solid #ddd;
  text-align: center;
  white-space: nowrap;
  min-width: 4ch;
}
.table-wrapper tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.table-wrapper tbody tr:hover {
  background-color: #f1f1f1;
}
.table-wrapper th.cell_date {
  font-size: 0.9em;
  font-weight: normal;
  line-height: 1.2;
}

#header {
  padding: 15px;
  background-color: #aa3300;
  color: white;
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 70px;
}
#header #header-L h1 {
  font-size: 2.25rem;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  #header #header-L h1 {
    font-size: 1.75rem;
  }
}
#header #header-L h1 a {
  text-decoration: none;
  color: white;
  text-decoration: none;
}
#header #header-R {
  display: flex;
  flex-direction: column;
  justify-content: right;
  gap: 0;
  align-items: flex-end;
}
#header #header-R a {
  color: #694b2d;
  text-decoration: none;
}
#header #header-R #user_menu, #header #header-R #admin_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
#header #header-R #user_menu li, #header #header-R #admin_menu li {
  border-top: 1px solid #ccc;
}
#header #header-R #user_menu li a, #header #header-R #admin_menu li a {
  padding: 10px 20px;
  display: block;
}
#header #header-R #user_menu li a:hover, #header #header-R #admin_menu li a:hover {
  background-color: #b47328;
  color: white;
}
#header #header-R #admin_menu {
  background-color: #e1e1dc;
}
#header #header-R .user-name {
  background-color: #694b2d;
  color: white;
  padding: 10px 20px;
  font-weight: bold;
}
#header #header-R a#add_event {
  color: white !important;
  font-size: 1.75rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 65px;
}
@media (max-width: 767px) {
  #header #header-R a#add_event {
    right: 55px;
  }
}

#admin_menu, #add_event {
  display: none;
}

body.admin #admin_menu, body.admin #add_event {
  display: block;
}

#main {
  padding: 50px 0;
}

#footer {
  padding: 15px;
  background-color: #332000;
  color: white;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.page_header {
  margin-bottom: 30px;
}
.page_header h1 {
  font-size: 1.75rem;
  text-align: center;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 15px 0;
  font-weight: bold;
}

.page_footer {
  margin-top: 30px;
  border-top: 2px solid #ccc;
  padding-top: 20px;
  text-align: center;
}

.month_nav {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.jump-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.jump-menu select {
  width: auto;
}

.btn-default {
  background-color: white;
  border-color: #ccc;
}
.btn-default:hover {
  background-color: #ccc;
}

.btn {
  white-space: nowrap;
}

.btn-del {
  font-size: 1.25rem;
}

.btn-box {
  text-align: center;
  margin-top: 30px;
}

.btn-box-w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.files-section h2 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 10px;
  background-color: #694b2d;
  color: white;
  padding: 5px 8px;
  border-radius: 5px;
}

.upload-section {
  background-color: #f4f4ee;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 50px;
}
.upload-section h2 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.upload-section dl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.upload-section dl dt {
  width: 5em;
  margin: 0;
  padding: 0;
}
.upload-section dl dd {
  flex: 1;
  margin: 0;
  padding: 0;
}
.upload-section .btn-box-w {
  margin-top: 0;
}

.member-list h2 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 10px;
  background-color: #694b2d;
  color: white;
  padding: 5px 8px;
  border-radius: 5px;
}
.member-list #member-form select {
  width: auto;
}
.member-list #member-form .group-selection {
  width: 16em;
  font-size: small;
}

.add-member {
  background-color: #f4f4ee;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .add-member {
    padding: 15px;
  }
}
.add-member h2 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.add-member form {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .add-member form {
    flex-wrap: wrap;
  }
}
.add-member select {
  width: auto;
}
.add-member .group-selection {
  min-width: 8em;
}

.add_festival {
  background-color: #f4f4ee;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 50px;
}
.add_festival h2 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.festival_list h2 {
  text-align: center;
  font-size: 1.375rem;
  margin-bottom: 10px;
  background-color: #694b2d;
  color: white;
  padding: 5px 8px;
  border-radius: 5px;
}

.dete-select {
  padding: 15px;
  border-radius: 20px;
  background-color: #f4f4ee;
  margin-bottom: 30px;
}
.dete-select .inner {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.dete-select .inner select {
  width: auto;
}
.dete-select .inner + .inner {
  margin-top: 10px;
}

#login-page {
  width: 100vw;
  height: 100vh;
  background-color: #aa3300;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
#login-page img {
  margin: 0 auto 20px;
  width: 200px;
}
#login-page h1 {
  text-align: center;
  font-family: serif;
  font-weight: bold;
  letter-spacing: 0.1em;
}
#login-page h2 {
  text-align: center;
}
#login-page .login-box {
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  background-color: white;
  color: #332000;
}
#login-page .login-box dl {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}
#login-page .login-box dl dt {
  width: 6em;
  margin: 0;
  padding: 0;
}
#login-page .login-box dl dd {
  flex: 1;
  margin: 0;
  padding: 0;
}

.event-form dl {
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;
  padding: 20px 20px 25px;
}
.event-form dl dt {
  margin: 0;
  padding: 0 0 5px;
  position: relative;
}
.event-form dl dt.required:before {
  content: "*";
  color: #aa3300;
  position: absolute;
  top: 0;
  left: -10px;
}
.event-form dl dd {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .event-form dl {
    display: flex;
  }
  .event-form dl dt {
    width: 6em;
    margin: 0;
    padding: 8px 0 0;
  }
  .event-form dl dd {
    flex: 1;
    margin: 0;
    padding: 0;
  }
}
.event-form .radio-row, .event-form .checkbox-row {
  display: flex;
  gap: 1em;
}
@media (min-width: 768px) {
  .event-form .radio-row, .event-form .checkbox-row {
    padding: 8px 0;
  }
}
.event-form .att {
  font-size: 0.875rem;
  color: #b47328;
  margin-top: 5px;
}
.event-form .suggest-box {
  background-color: #f4f4ee;
  padding: 5px;
  margin-top: 5px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-form .suggest-box .quick-fill {
  background-color: white;
  border-radius: 20px;
  border: none;
  padding: 2px 15px;
  font-size: 0.875rem;
}

/* 全体調整CSS */
.hamburger-menubox * {
  font-size: 16px;
}

.hamburger-menubox li {
  font-size: 14px;
}

/* hamburgerここから */
/* inputを非表示 */
.input-hidden {
  display: none;
}

/* label */
.hamburger-switch {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0; /* ハンバーガーアイコンの位置（上から） */
  z-index: 9999;
  width: 70px; /* アイコン（クリック可能領域）の幅 */
  height: 70px; /* アイコン（クリック可能領域の）高さ */
}
@media (max-width: 767px) {
  .hamburger-switch {
    width: 60px;
  }
}

/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch {
  position: fixed;
}

/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after {
  width: 30px;
  height: 3px;
  background: white; /* ハンバーガーアイコンの色 */
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  content: "";
}

.hamburger-switch-line1 {
  transform: translate(-50%, -50%);
}

.hamburger-switch-line1:before {
  transform: translate(-50%, -400%);
}

.hamburger-switch-line1:after {
  transform: translate(-50%, 300%);
}

/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-switch .hamburger-switch-line1 {
  width: 0;
}

#hamburger-demo1:checked ~ .hamburger-switch .hamburger-switch-line1:before {
  transform: rotate(45deg) translate(-40%, 400%);
}

#hamburger-demo1:checked ~ .hamburger-switch .hamburger-switch-line1:after {
  transform: rotate(-45deg) translate(-40%, -400%);
}

/* メニューエリア */
.hamburger-menuwrap {
  position: fixed;
  background: #f4f4ee; /* メニューエリアの背景色 */
  z-index: 9998;
  transition: 0.3s;
  top: 70px;
  right: -14em;
  width: 14em;
}

/* メニューリスト */
.hamburger-menulist {
  padding-left: 5% !important; /* !important不要な場合もあり */
  list-style: none;
}

.hamburger-menulist li a {
  text-decoration: none;
  color: #333; /* メニューリストの文字色 */
  display: block;
  padding: 0.5em 0;
}

/* メニューエリア･アニメーション */
/* 右から */
#hamburger-demo1:checked ~ .hamburger-menuwrap {
  right: 0;
}

/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block;
}

.pass-change dl {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.pass-change dl dt {
  width: 11em;
  margin: 0;
  padding: 0;
}
.pass-change dl dd {
  flex: 1;
  margin: 0;
  padding: 0;
}

.form-switch {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 8px;
  line-height: 1;
  gap: 0.5rem;
}
.form-switch .form-check-input {
  margin-top: 0;
}

.setting-box dt {
  font-size: 1.25rem;
}
.setting-box dt span {
  font-size: 0.875rem;
  font-weight: normal;
}
.setting-box dl {
  margin-bottom: 24px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: white;
  padding: 20px;
  margin: 10% auto;
  max-width: 500px;
}

.close {
  float: right;
  cursor: pointer;
}

#save-message {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#proxyModal .modal-title {
  font-size: 2.25rem;
  font-weight: bold;
  font-family: serif;
}
#proxyModal #proxyEventDate {
  font-size: 1.5rem;
}
#proxyModal #proxyEventTitle {
  font-size: 1.5rem;
  color: #aa3300;
}
#proxyModal label {
  font-weight: bold;
}
#proxyModal .form-check {
  padding-left: 3em;
}
#proxyModal .form-check label {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.5;
}
#proxyModal #proxyConfirm {
  width: 2em;
  height: 2em;
  margin-left: -3em;
}

.response-rate {
  color: #666;
}

.table-proxy {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}
.table-proxy th, .table-proxy td {
  padding: 8px;
  border: 1px solid #ccc;
  text-align: left;
  background-color: white;
}
.table-proxy th {
  background-color: #efefef;
}

.proxy-summary {
  background-color: #f4f4ee;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}
.proxy-summary h4 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: bold;
}
.proxy-summary p {
  text-align: right;
}

.category-checkboxes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.form-check-inline {
  margin-right: 15px;
}
.form-check-inline label {
  font-weight: bold;
  margin-bottom: 5px;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
}

.proxy-box {
  margin-bottom: 10px;
}

.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 30px;
}
@media (max-width: 767px) {
  .month-navigation {
    flex-direction: column;
    gap: 10px;
  }
}
.month-navigation .btn {
  width: 6em;
}
.month-navigation select {
  width: auto !important;
}

.proxy-content {
  border: 1px solid #ccc;
  padding: 30px;
}
.proxy-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.proxy-content .form-check {
  font-size: 1.25rem;
}
.proxy-content .form-check label {
  line-height: 1.5;
}
.proxy-content .form-check input {
  width: 24px !important;
  height: 24px !important;
  margin-right: 5px;
  margin-top: 3px;
}
.proxy-content .sign-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
}
.proxy-content .sign-box input {
  width: 10em;
}

.proxy-content.active {
  background-color: white;
  opacity: 1;
}

.proxy-content.disabled {
  background-color: white;
  opacity: 0.5;
}

#general-meeting-stats .num {
  display: block;
  font-size: 2.25rem;
}
#general-meeting-stats .col {
  text-align: center;
}

@media (max-width: 767px) {
  .card-body .row {
    align-items: flex-end;
  }
}

.festival_list_table .cell_year {
  font-weight: bold;
  font-size: 1.5rem;
}
.festival_list_table .cell_year span {
  font-size: 1.125rem;
}
.festival_list_table .cell_actions {
  text-align: right;
}
@media (max-width: 767px) {
  .festival_list_table thead {
    display: none;
  }
  .festival_list_table tbody tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .festival_list_table tbody tr .cell_year {
    width: 50%;
    order: 1;
  }
  .festival_list_table tbody tr .cell_date {
    width: 50%;
    order: 3;
  }
  .festival_list_table tbody tr .cell_responses {
    width: 50%;
    order: 4;
  }
  .festival_list_table tbody tr .cell_actions {
    width: 50%;
    order: 2;
  }
}
.festival_list_table th {
  text-align: center;
}

#festival-section, #general-meeting-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px dotted #ccc;
}/*# sourceMappingURL=style.css.map */