.login-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: whitesmoke;
}
@media screen and (max-width: 400px) {
  .login-form {
    padding: 0 10px;
  }
}
.login-form .login-form-area {
  box-sizing: border-box;
  width: 100%;
  max-width: 650px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
}
.login-form .login-form-area h2 {
  font-size: 1.2rem;
  text-align: center;
}
.login-form .login-form-area .login-mailaddress,
.login-form .login-form-area .login-password {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1rem;
  text-align: center;
}
.login-form .login-form-area .login-mailaddress label,
.login-form .login-form-area .login-password label {
  display: inline-block;
  width: 11em;
  text-align: right;
}
.login-form .login-form-area .login-mailaddress input,
.login-form .login-form-area .login-password input {
  width: calc(100% - 12em);
  padding: 8px;
  margin-left: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-form .login-form-area .login-mailaddress input:focus,
.login-form .login-form-area .login-password input:focus {
  border-color: #4CAF50;
  outline: none;
}
@media screen and (max-width: 400px) {
  .login-form .login-form-area .login-mailaddress label,
  .login-form .login-form-area .login-password label {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  .login-form .login-form-area .login-mailaddress input,
  .login-form .login-form-area .login-password input {
    width: 100%;
    margin-left: 0;
  }
}
.login-form .login-form-area .login-button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.login-form .login-form-area .login-button:hover {
  background-color: #45a049;
}
.login-form .login-form-area .password-reset-info {
  font-size: 0.875rem;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.login-footer {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}
.login-footer p {
  margin: 0;
  padding: 0;
}

.user-info-area .user-info-table {
  width: 100%;
}
.user-info-area .user-info-table th, .user-info-area .user-info-table td {
  padding: 5px 10px;
  border-bottom: 1px dotted #ddd;
  text-align: left;
}
.user-info-area .user-info-table th {
  width: 150px;
  vertical-align: top;
}
.user-info-area .user-info-table tr:last-child th, .user-info-area .user-info-table tr:last-child td {
  border-bottom: none;
}
.user-info-area .user-info-setting {
  margin: 0;
  padding: 0;
  text-align: right;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-list .news-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.news-list .news-item:last-child {
  border-bottom: none;
}
.news-list .news-item .news-date {
  font-size: 0.875rem;
  color: #444;
  margin-right: 10px;
}
.news-list .news-item .news-title {
  font-size: 1rem;
  font-weight: bold;
}

.event-reserved-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.event-reserved-list .event-reserved-item {
  border: 1px solid #888888;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.event-reserved-list .event-reserved-item .event-reserved-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.event-reserved-list .event-reserved-item .event-reserved-date {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 5px;
}
.event-reserved-list .event-reserved-item .event-reserved-description {
  padding: 5px;
  font-size: 1rem;
  color: #333;
}
.event-reserved-list .event-reserved-item .event-reserved-subtitle {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

.event-section {
  margin-top: 20px;
}
.event-section .event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.event-section .event-list .event-item {
  border: 1px solid #888888;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.event-section .event-list .event-item:last-child {
  border-bottom: none;
}
.event-section .event-list .event-item .event-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.event-section .event-list .event-item .event-date {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 5px;
}
.event-section .event-list .event-item .event-description {
  padding: 5px;
  font-size: 1rem;
  color: #333;
}

.top-card-title-area {
  background: #e2ffe1;
  margin-bottom: 0;
  padding: 10px;
}

.top-card-infomation-area {
  padding: 10px 20px;
}

.event-reserved-area .top-card-title-area {
  background: #ffe1e1;
}

.beneficiary-submit-box {
  display: none;
}

.eventcalendar-table tr.saturday th, .eventcalendar-table tr.saturday td {
  background-color: #e0f7ff;
}
.eventcalendar-table tr.sunday th, .eventcalendar-table tr.sunday td {
  background-color: #ffe0e0;
  border-bottom: 1px solid #000;
}
.eventcalendar-table tr.eventday th, .eventcalendar-table tr.eventday td {
  background-color: #4CAF50;
  color: white;
  font-weight: bold;
  border: 1px solid black;
  border-width: 1px 0;
}
.eventcalendar-table tr.eventday th a, .eventcalendar-table tr.eventday td a {
  color: white;
}

.archive-sharefolder-list {
  border-top: 2px solid #aaa;
  margin-top: 20px;
  padding-top: 20px;
}
.archive-sharefolder-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #aaa;
}
.archive-sharefolder-list li img {
  margin: 10px 0;
  width: 700px;
  max-width: 100% !important;
  height: auto;
  border: 1px solid #000;
}

.gallery-items {
  margin: 10px 0;
  padding: 0;
}
.gallery-items li {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #aaa;
  list-style-type: none;
}
.gallery-items li:last-child {
  border-bottom: none;
}
.gallery-items li .gallery-item-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.gallery-items li .gallery-item-date {
  font-size: 0.9rem;
  color: whitesmoke;
  margin-bottom: 5px;
}
.gallery-items li .gallery-item-link {
  width: 100%;
  display: block;
  padding: 8px 12px;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
.gallery-items li .gallery-item-link:hover {
  background-color: rgb(0, 110.7, 229.5);
}/*# sourceMappingURL=page.css.map */