@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap);
@charset "UTF-8";
html {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  height: 100%;
  background-color: #DEDED6;
  color: #1A1A1A;
}
body.env-test {
  background-color: cornsilk;
}

h1 {
  font-size: 14px;
  color: #1A1A1A;
  padding: 10px 12px;
  margin: 10px 0 8px 0;
  font-weight: 400;
  border-radius: 12px;
  position: relative;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.14), -2px -2px 5px rgba(255, 255, 255, 0.95);
  border-left: none;
  display: flex;
  align-items: center;
}
h1::before {
  content: "";
  margin-right: 8px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
}
h1.word-search::before {
  content: "\f002";
}
h1.haiku-list::before {
  content: "\f03a";
}
h1.haiku-detail::before {
  content: "\f70e";
}
@media (min-width: 370px) {
  h1 {
    font-size: 16px;
    padding: 14px 16px;
    margin: 12px 0 10px 0;
  }
  h1::before {
    margin-right: 10px;
    font-size: 18px;
  }
}
@media (min-width: 450px) {
  h1 {
    font-size: 18px;
    padding: 16px 20px;
  }
  h1::before {
    font-size: 20px;
  }
}
@media (min-width: 800px) {
  h1 {
    font-size: 20px;
  }
  h1::before {
    font-size: 22px;
  }
}

h2 {
  font-size: 12px;
  color: #1A1A1A;
  padding: 10px 12px;
  margin: 14px 0 10px 0;
  font-weight: 500;
  border-radius: 12px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.14), -2px -2px 5px rgba(255, 255, 255, 0.95);
  border-left: none;
  display: flex;
  align-items: center;
}
h2::before {
  content: "";
  margin-right: 6px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
}
h2.haiku-list::before {
  content: "\f03a";
}
@media (min-width: 370px) {
  h2 {
    font-size: 14px;
    padding: 12px 16px;
    margin: 16px 0 12px 0;
  }
  h2::before {
    margin-right: 8px;
    font-size: 16px;
  }
}
@media (min-width: 450px) {
  h2 {
    font-size: 16px;
    padding: 14px 18px;
    margin: 18px 0 14px 0;
  }
}
@media (min-width: 800px) {
  h2 {
    font-size: 18px;
    padding: 16px 22px;
    margin: 22px 0 16px 0;
  }
}

.tomato {
  color: #ff6347;
  font-weight: 500;
}

.seagreen {
  color: #2e8b57;
  font-weight: 500;
}

.container1 {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
}
@media (min-width: 800px) {
  .container1 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.container1 .right {
  text-align: right;
  font-size: 14px;
  margin-right: 24px;
  margin-bottom: 8px;
  margin-top: 8px;
  color: #1A1A1A;
  align-self: flex-end;
}
.container1 .right .button_small {
  margin-left: 8px;
}

header {
  display: flex;
  align-items: center;
  padding: 8px 8px;
  background: #DEDED6;
  border-radius: 0 0 12px 12px;
  margin-bottom: 16px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  width: 100%;
  position: relative;
  flex-wrap: wrap;
}
@media (min-width: 370px) {
  header {
    padding: 8px 8px;
  }
}
header .logo {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 32px;
  height: 32px;
  padding: 0 8px;
  min-width: 220px;
  max-width: 240px;
  width: auto;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 12px;
  background: #DEDED6;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.14), -1px -1px 3px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
  display: flex;
  align-items: center;
}
header .logo i {
  margin-right: 8px;
  font-size: 14px;
}
@media (min-width: 1200px) {
  header .logo i {
    margin-right: 8px;
    font-size: 16px;
  }
}
header .logo a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
header .logo a:hover {
  color: hsl(0, 0%, -4.8039215686%);
}
header .logo:hover {
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.14), inset -2px -2px 4px rgba(255, 255, 255, 0.95);
}
@media (min-width: 370px) {
  header .logo {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
    padding: 0 16px;
    min-width: 280px;
    max-width: 300px;
  }
  header .logo a {
    max-width: 260px;
  }
}
@media (min-width: 450px) {
  header .logo {
    font-size: 16px;
    min-width: 290px;
  }
}
@media (min-width: 1200px) {
  header .logo {
    font-size: 16px;
    padding: 0 24px;
    min-width: 310px;
    max-width: 330px;
  }
  header .logo a {
    max-width: 260px;
  }
  header .logo a:hover {
    color: hsl(0, 0%, -4.8039215686%);
  }
}

.pc_menu {
  display: none;
  flex: 1 1 auto;
  margin-left: auto;
}
@media (min-width: 1080px) {
  .pc_menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  .pc_menu nav {
    display: flex;
    justify-content: flex-end;
    width: auto;
  }
  .pc_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-end;
  }
  .pc_menu li {
    line-height: 1.4;
    min-height: 30px;
    display: flex;
    align-items: center;
  }
  .pc_menu a {
    display: block;
    font-size: 14px;
    padding: 0 16px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    color: #1A1A1A;
    text-decoration: none;
    border-radius: 12px;
    background: #DEDED6;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
    transition: all 0.25s ease-in-out;
    white-space: nowrap;
  }
  .pc_menu a:hover {
    box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  }
  .pc_menu a i {
    margin-right: 4px;
  }
  .pc_menu li:nth-child(1) a,
  .pc_menu li:nth-child(2) a,
  .pc_menu li:nth-child(3) a,
  .pc_menu li:nth-child(4) a {
    min-width: 70px;
    padding: 0 8px;
  }
  .pc_menu li:nth-child(6) a,
  .pc_menu li:nth-child(7) a {
    min-width: 80px;
    padding: 0 8px;
  }
  .pc_menu .dropdown {
    position: relative;
  }
  .pc_menu .dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 0 8px;
  }
  .pc_menu .dropdown .dropdown-toggle.icon-only {
    gap: 4px;
  }
  .pc_menu .dropdown .dropdown-toggle.icon-only .dropdown-caret {
    font-size: 8px;
    line-height: 1;
    position: relative;
    top: 0;
  }
  .pc_menu .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .pc_menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 130px;
    background: #DEDED6;
    border-radius: 12px;
    box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
    padding: 4px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  }
  .pc_menu .dropdown-menu li {
    width: 100%;
    margin: 0;
    margin-bottom: 4px;
  }
  .pc_menu .dropdown-menu li:last-child {
    margin-bottom: 0;
  }
  .pc_menu .dropdown-menu a {
    height: auto;
    line-height: 1.5;
    padding: 8px 8px;
    text-align: left;
    box-shadow: none;
    border-radius: 6px;
  }
  .pc_menu .dropdown-menu a:hover {
    background: rgb(210.6283783784, 210.6283783784, 199.8716216216);
    box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  }
}

.sp_menu {
  margin-left: auto;
  flex: 0 0 auto;
}
@media (min-width: 1080px) {
  .sp_menu {
    display: none;
  }
}
.sp_menu #open {
  font-size: 24px;
  line-height: 56px;
  cursor: pointer;
  color: #1A1A1A;
  transition: color 0.25s ease-in-out;
}
.sp_menu #open:hover {
  color: hsl(0, 0%, -4.8039215686%);
}
@media (min-width: 370px) {
  .sp_menu #open {
    font-size: 28px;
    line-height: 64px;
  }
}
.sp_menu #open.hide {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(220, 220, 220, 0.98);
  text-align: center;
  padding: 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
  z-index: 100;
  overflow-y: auto;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
  color: #1A1A1A;
  z-index: 100;
}
.overlay.show li {
  opacity: 1;
  transform: none;
}
.overlay.show li.li-1 {
  transition-delay: 0.1s;
}
.overlay.show li.li-2 {
  transition-delay: 0.2s;
}
.overlay.show li.li-3 {
  transition-delay: 0.3s;
}
.overlay.show li.li-4 {
  transition-delay: 0.4s;
}
.overlay.show li.li-5 {
  transition-delay: 0.5s;
}
.overlay.show li.li-6 {
  transition-delay: 0.6s;
}
.overlay.show li.li-7 {
  transition-delay: 0.7s;
}
.overlay.show li.li-8 {
  transition-delay: 0.8s;
}
.overlay.show li.li-9 {
  transition-delay: 0.9s;
}
.overlay.show li.li-10 {
  transition-delay: 1s;
}
.overlay.show li.li-11 {
  transition-delay: 1.1s;
}
.overlay.show li.li-12 {
  transition-delay: 1.2s;
}
.overlay.show li.li-13 {
  transition-delay: 1.3s;
}
.overlay.show li.li-14 {
  transition-delay: 1.4s;
}
.overlay.show li.li-15 {
  transition-delay: 1.5s;
}
.overlay #close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  cursor: pointer;
  color: #1A1A1A;
}
.overlay ul {
  list-style-type: none;
  width: 200px;
  margin: 0 auto;
  padding: 0;
}
.overlay ul li {
  text-align: left;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.overlay ul li a {
  color: #1A1A1A;
  text-decoration: none;
  display: block;
  padding: 8px 16px;
  border-radius: 12px;
  background: #DEDED6;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  width: 100%;
}
.overlay ul li a:hover {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
}

.user-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 8px 16px 8px;
  padding: 0;
}
@media (min-width: 600px) {
  .user-nav-container {
    margin: 8px 16px 16px 16px;
  }
}
.user-nav-container .breadcrumbs-container {
  flex: 1;
}
.user-nav-container .breadcrumbs-container .breadcrumbs {
  margin: 0;
  padding: 0;
}
.user-nav-container .user-info {
  text-align: right;
  font-size: 14px;
  color: #1A1A1A;
  white-space: nowrap;
}
.user-nav-container .user-info .button_small {
  margin-left: 8px;
  padding: 4px 8px;
  background: #DEDED6;
  border: none;
  border-radius: 12px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.14), -2px -2px 4px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.user-nav-container .user-info .button_small:hover {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
}

main {
  padding: 0;
  margin: 0 8px;
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
}
@media (min-width: 600px) {
  main {
    margin: 0 16px;
  }
}
main .greeting {
  margin-bottom: 24px;
}
main summary {
  font-size: 12px;
  margin-top: 4px;
  cursor: pointer;
}
main details {
  margin: 24px 0;
}
main details p {
  margin-top: 16px;
}

.toppage {
  width: 90%;
  margin: 8px auto;
  padding: 16px;
  text-align: center;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
}
.toppage > details > summary {
  display: flex;
  justify-content: flex-start;
}
.toppage p {
  text-align: left;
  margin-bottom: 8px;
  font-size: 14px;
}
.toppage .tomato {
  color: #ff6347;
  font-weight: 500;
}
@media (min-width: 600px) {
  .toppage {
    width: 95%;
  }
  .toppage p {
    font-size: 16px;
  }
}

footer {
  padding: 8px 16px;
  margin: 24px 0 8px 0;
  font-size: 12px;
  line-height: 1.75;
  margin-top: auto;
  margin-bottom: 24px;
}
footer #message {
  margin: 24px auto;
  padding: 16px;
  width: 90%;
  background: #DEDED6;
  border-radius: 12px;
  border: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  text-align: center;
}
@media (min-width: 800px) {
  footer #message {
    width: 70%;
    padding: 24px;
  }
}
footer #message p {
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
footer .copy {
  margin: 24px auto 16px auto;
  padding: 16px 24px;
  width: 90%;
  background: #DEDED6;
  border-radius: 12px;
  font-size: 14px;
  border: none;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  text-align: center;
}
@media (min-width: 800px) {
  footer .copy {
    width: 70%;
    padding: 16px 24px;
    font-size: 16px;
  }
}
footer .button_right {
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
  margin: 16px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.haijin-status, .haijin_status {
  margin: 16px 0;
  padding: 16px;
  background: hsl(0, 0%, 101.568627451%);
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  color: #7B7B7B;
  font-weight: 500;
}
.haijin-status--public, .haijin_public_status {
  margin: 0;
  padding: 4px;
  background-color: rgb(160.6842105263, 160.6842105263, 157.3157894737);
  border-radius: 12px;
}
.haijin-status--public h3, .haijin_public_status h3 {
  font-size: 20px;
}
.haijin-status--public h3 a, .haijin_public_status h3 a {
  color: rgb(6.1052631579, 6.1052631579, 5.8947368421);
  text-decoration: underline;
}

.haijin-relation__user-card, .relation .user_haijin {
  border: 1px solid #5A5A5A;
  padding: 16px 8px;
  margin-bottom: 24px;
  background: #E8E8E0;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.haijin-relation__user-card:hover, .relation .user_haijin:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.haijin-relation__user-card:focus-within, .relation .user_haijin:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.haijin-relation__user-card .link, .relation .user_haijin .link {
  font-size: 110%;
}
.haijin-relation__user-card .link:hover, .relation .user_haijin .link:hover {
  font-weight: bold;
}
.haijin-relation__heading, .relation h3 {
  border: 1px solid #5A5A5A;
  border-radius: 8px;
  background: rgb(242.8611111111, 242.8611111111, 238.6388888889);
  padding: 8px 16px;
  margin: 4px;
  margin-bottom: 8px;
  font-size: 16px;
}
.haijin-relation__identity, .relation .whoami {
  background: #E8E8E0;
  border: 1px solid #1A1A1A;
  margin: 4px;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.haijin-relation__identity:hover, .relation .whoami:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.haijin-relation__identity:focus-within, .relation .whoami:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.haijin-relation__identity p, .relation .whoami p {
  border-radius: 8px;
  background: rgb(242.8611111111, 242.8611111111, 238.6388888889);
  padding: 16px;
  line-height: 1.6;
  font-size: 14px;
}
.haijin-relation__button-right, .relation .button_right {
  margin-top: 0;
}
.haijin-relation__self-label, .relation .himself {
  border: 1px solid #1A1A1A;
  border-radius: 8px;
  background: rgb(242.8611111111, 242.8611111111, 238.6388888889);
  font-size: 16px;
  font-weight: bold;
}
.haijin-relation__add-section, .relation .rel_add {
  margin: 16px 8px 24px 8px;
}
.haijin-relation__add-section .button, .relation .rel_add .button {
  font-size: 14px;
  padding: 12px;
}
.haijin-relation__inquiry, .relation .whoareyou {
  background: rgb(238.5166666667, 238.5166666667, 232.7833333333);
  border: 1px solid #1A1A1A;
  margin: 4px;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.haijin-relation__inquiry:hover, .relation .whoareyou:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.haijin-relation__inquiry:focus-within, .relation .whoareyou:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.haijin-relation__inquiry p, .relation .whoareyou p {
  padding: 16px 8px;
  font-size: 16px;
  color: darkgreen;
}

.haijin-history, .histories {
  margin: 32px 0;
  background: rgb(226.5486486486, 226.5486486486, 219.6513513514);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.haijin-history:hover, .histories:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.haijin-history:focus-within, .histories:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.haijin-history__heading, .histories h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.haijin-history__table, .histories table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.haijin-history__table th, .histories table th,
.haijin-history__table td,
.histories table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
}
.haijin-history__table th, .histories table th {
  background-color: rgb(215.177027027, 215.177027027, 205.522972973);
  font-weight: 600;
  color: #1A1A1A;
}
.haijin-history__table tr.bg-gray-200, .histories table tr.bg-gray-200 {
  background-color: rgb(210.6283783784, 210.6283783784, 199.8716216216);
}
.haijin-history__table tr.bg-gray-100, .histories table tr.bg-gray-100 {
  background-color: rgb(217.4513513514, 217.4513513514, 208.3486486486);
}

.admin-menu {
  margin: 32px 0;
  border: 2px solid #4a6dff;
  background: rgb(233.3716216216, 233.3716216216, 228.1283783784);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.admin-menu:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.admin-menu:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.admin-menu__heading {
  color: #4a6dff;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
}
.admin-menu__heading i {
  margin-right: 8px;
}
.admin-menu__links, .admin-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-menu__links .button, .admin-links .button {
  background-color: #4a6dff;
  color: white;
  background-color: #E8E8E0;
  color: #1A1A1A;
  border-radius: 8px;
  border: none;
  padding: 8px 16px;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  outline: none;
}
.admin-menu__links .button:hover, .admin-links .button:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-3px);
}
.admin-menu__links .button:focus, .admin-links .button:focus {
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.15);
}
.admin-menu__links .button:active, .admin-links .button:active {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  transform: translateY(2px);
}
.admin-menu__links .button:disabled, .admin-links .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.admin-menu__links .button:hover, .admin-links .button:hover {
  background-color: rgb(23, 67.861878453, 255);
}

form {
  width: 100%;
  margin: 16px 0;
}
form div {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
form input[type=radio] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  outline: none !important;
  border: 2px solid #c0c0c0 !important;
  position: relative !important;
  cursor: pointer !important;
  margin-right: 5px !important;
  vertical-align: middle !important;
  background-color: #ffffff !important;
}
form input[type=radio]:checked {
  border-color: #888888 !important;
  background-color: transparent !important;
  background-image: none !important;
}
form input[type=radio]:checked::before, form input[type=radio]:checked::after {
  background-color: transparent !important;
  background-image: none !important;
}
form input[type=radio]:checked::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #888888 !important;
}
form input[type=radio]:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #888888 !important;
}
form input[type=radio]:hover {
  border-color: #888888 !important;
}
form label {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 0 !important;
  cursor: pointer !important;
}
form section.radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0;
}
form section.radio label.option {
  display: flex;
  align-items: center;
  margin-right: 16px;
  font-size: 14px;
  cursor: pointer;
}
form section:not(.radio) {
  font-weight: 500;
  margin-bottom: 0;
  color: #1A1A1A;
}
form input[type=text],
form input[type=search],
form select {
  line-height: 1.8;
  height: 40px;
  width: 95%;
  padding: 8px 16px !important;
  font-size: 16px !important;
  border-radius: 8px !important;
  border: none !important;
  background-color: rgb(244.4, 244.4, 244.4);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.8);
  color: #1A1A1A;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  form input[type=text],
  form input[type=search],
  form select {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  form input[type=text],
  form input[type=search],
  form select {
    max-width: 1200px;
  }
}
form textarea {
  line-height: 1.8;
  height: 120px;
  width: 95%;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background-color: rgb(244.4, 244.4, 244.4);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.8);
  color: #1A1A1A;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  form textarea {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  form textarea {
    max-width: 1200px;
  }
}
form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.14), inset -3px -3px 6px rgba(255, 255, 255, 0.95);
  border-color: rgb(187.8851351351, 187.8851351351, 171.6148648649) !important;
}
form summary {
  font-size: 12px;
  margin-top: 4px;
  cursor: pointer;
  color: #1A1A1A;
}
form hr {
  margin: 20px 0 16px 0;
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(187.8851351351, 187.8851351351, 171.6148648649), transparent);
}
form .search-buttons-horizontal {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 16px;
  width: 100%;
}
@media (min-width: 450px) {
  form .search-buttons-horizontal {
    margin-top: 20px;
    gap: 16px !important;
  }
}
form .search-button-container {
  display: block !important;
  margin: 0 !important;
}
form .search-button {
  font-size: 13px;
  color: #1A1A1A;
  min-width: 80px;
  max-width: 120px;
  width: auto;
  height: 40px;
  background: #DEDED6;
  line-height: 1.6;
  margin: 0;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background-color: #E8E8E0;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 450px) {
  form .search-button {
    min-width: 90px;
    max-width: 130px;
    font-size: 14px;
    padding: 10px 18px;
  }
}
form .search-button:hover {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.14), inset -3px -3px 6px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%);
}
form .search-button.clear {
  background-color: rgb(210.6283783784, 210.6283783784, 199.8716216216);
}
form .search-form {
  float: right;
  margin-top: 20px;
}
form .search-form .button,
form .search-form .submit {
  font-size: 13px;
  color: #1A1A1A;
  min-width: 90px;
  height: 40px;
  background: #DEDED6;
  line-height: 1.6;
  margin: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background-color: #E8E8E0;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  cursor: pointer;
}
form .search-form .button:hover,
form .search-form .submit:hover {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.14), inset -3px -3px 6px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%);
}
form .search-form .clear {
  background-color: rgb(210.6283783784, 210.6283783784, 199.8716216216);
}
form #search {
  float: right;
  margin-top: 20px;
}
form #search .button,
form #search .submit {
  font-size: 13px;
  color: #1A1A1A;
  min-width: 90px;
  height: 40px;
  background: #DEDED6;
  line-height: 1.6;
  margin: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background-color: #E8E8E0;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  cursor: pointer;
}
form #search .button:hover,
form #search .submit:hover {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.14), inset -3px -3px 6px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%);
}
form #search .clear {
  background-color: rgb(210.6283783784, 210.6283783784, 199.8716216216);
}
form .form-group {
  margin-bottom: 1rem;
}
form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: #1A1A1A;
}
form .form-group .form-control, form .form-group .form-group__haijin-value, form .form-group .form-group__haijin-input {
  line-height: 1.8;
  height: 40px;
  width: 95%;
  padding: 8px 16px !important;
  font-size: 16px !important;
  border-radius: 8px !important;
  border: none !important;
  background-color: #DEDED6;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.14), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  form .form-group .form-control, form .form-group .form-group__haijin-value, form .form-group .form-group__haijin-input {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  form .form-group .form-control, form .form-group .form-group__haijin-value, form .form-group .form-group__haijin-input {
    max-width: 1200px;
  }
}
form .form-group p {
  line-height: 1.8;
  padding: 8px 16px;
  font-size: 16px;
  background-color: #DEDED6;
  border: none;
  border-radius: 8px;
  margin: 0;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.14), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
}
form .form-group .whoami-text {
  line-height: 1.8;
  padding: 8px 16px;
  font-size: 16px;
  background-color: #DEDED6;
  border: none;
  border-radius: 8px;
  margin: 0;
  width: 95%;
  min-height: 100px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.14), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
}
form .form-group .whoami-text br {
  display: block;
  margin: 0;
  content: "";
}

form.auth-form {
  width: 100%;
  margin: 0;
}
form.auth-form .mt-1,
form.auth-form .mt-4 {
  margin-top: 1rem;
}
form.auth-form .mt-3 {
  margin-top: 0.75rem;
}
form.auth-form .w-full {
  width: 100%;
}
form.auth-form .block {
  display: block;
}
form.auth-form input[type=email],
form.auth-form input[type=password],
form.auth-form input[type=text] {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgb(240.1945945946, 240.1945945946, 236.6054054054);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.8);
  color: #1A1A1A;
  font-size: 14px;
  transition: all 0.3s ease;
}
form.auth-form input[type=email]:focus,
form.auth-form input[type=password]:focus,
form.auth-form input[type=text]:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.5), inset -2px -2px 4px rgba(255, 255, 255, 0.8);
}
form.auth-form select {
  width: 95%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgb(244.4, 244.4, 244.4);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.8);
  color: #1A1A1A;
  font-size: 14px;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  form.auth-form select {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  form.auth-form select {
    max-width: 1200px;
  }
}
form.auth-form select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.5), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}
form.auth-form textarea {
  width: 95%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: rgb(244.4, 244.4, 244.4);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.8);
  color: #1A1A1A;
  font-size: 14px;
  min-height: 80px;
  transition: all 0.3s ease;
}
@media (min-width: 800px) {
  form.auth-form textarea {
    width: 90%;
  }
}
@media (min-width: 1200px) {
  form.auth-form textarea {
    max-width: 1200px;
  }
}
form.auth-form textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.5), inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}
form.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
}
form.auth-form .flex {
  display: flex;
}
form.auth-form .items-center {
  align-items: center;
}
form.auth-form .justify-end {
  justify-content: flex-end;
}
form.auth-form .justify-between {
  justify-content: space-between;
}
form.auth-form a {
  color: rgb(0.5, 0.5, 0.5);
  text-decoration: none;
  margin-right: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}
form.auth-form a:hover {
  color: hsl(0, 0%, -14.8039215686%);
  text-decoration: underline;
}

.container--auth {
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 20px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
  width: 90%;
  margin: 16px auto;
  max-width: 800px;
}
.container--auth:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.container--auth:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.container--auth h2 {
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.5rem;
}
.container--auth h2 i {
  margin-right: 8px;
  color: rgb(0.5, 0.5, 0.5);
}
@media (min-width: 800px) {
  .container--auth {
    padding: 30px;
  }
}
.container--auth .section-header {
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgb(199.2567567568, 199.2567567568, 185.7432432432);
}
.container--auth .section-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.container--auth .section-header .section-description {
  font-size: 0.875rem;
  color: #4d4d4d;
  margin: 0;
}
.container--auth .field-help {
  font-size: 0.75rem;
  color: rgb(102.5, 102.5, 102.5);
  margin-top: 0.25rem;
}
.container--auth .haiku-entry {
  background-color: rgb(228.822972973, 228.822972973, 222.477027027);
  border: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3), inset -1px -1px 3px rgba(255, 255, 255, 0.6);
}
.container--auth .haiku-entry h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
}
.container--auth .haiku-entry .mb-3 {
  margin-bottom: 0.75rem;
}
.container--auth .navigation-section {
  border-top: 1px solid rgb(199.2567567568, 199.2567567568, 185.7432432432);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.container--completion {
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 2rem;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
  max-width: 800px;
  margin: 2rem auto;
}
.container--completion:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.container--completion:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.container--completion .completion-header {
  text-align: center;
  margin-bottom: 3rem;
}
.container--completion .completion-header .icon-container {
  margin-bottom: 1rem;
}
.container--completion .completion-header .icon-container i {
  font-size: 4rem;
  color: #3A3A38;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.container--completion .completion-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 0.5rem 0;
}
.container--completion .completion-header .haijin-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(0, 0%, -4.8039215686%);
  margin: 0;
}
.container--completion .completion-message {
  background: rgb(173.2105263158, 173.2105263158, 170.2894736842);
  border: 1px solid rgb(122.8684210526, 122.8684210526, 118.6315789474);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.125rem;
  color: hsl(60, 1.7543859649%, -17.6470588235%);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2), inset -1px -1px 3px rgba(255, 255, 255, 0.4);
}

.content-container {
  margin: 24px auto;
  padding: 20px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.14), -3px -3px 6px rgba(255, 255, 255, 0.95);
  max-width: 1200px;
  width: 95%;
}
.content-container .toparea {
  margin-bottom: 20px;
}
.content-container .toparea h1 {
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.content-section {
  margin: 24px auto;
  padding: 20px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.14), -3px -3px 6px rgba(255, 255, 255, 0.95);
  max-width: 800px;
  width: 95%;
}
.content-section h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: rgb(0.5, 0.5, 0.5);
}
.content-section .form-container {
  padding: 16px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.14), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.checkbox-container {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.checkbox-container .neumorphic-checkbox {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #1A1A1A;
  flex: 1;
}
.checkbox-container .neumorphic-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .neumorphic-checkbox input:checked ~ .checkmark {
  background-color: rgb(249.2918918919, 249.2918918919, 247.9081081081);
  border: 1.5px solid hsl(0, 0%, -9.8039215686%);
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.15), inset -1px -1px 2px rgba(255, 255, 255, 0.3);
}
.checkbox-container .neumorphic-checkbox input:checked ~ .checkmark:after {
  display: block;
  border: solid #1A1A1A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-container .neumorphic-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: rgb(240.1945945946, 240.1945945946, 236.6054054054);
  border-radius: 4px;
  border: 1px solid rgb(51.5, 51.5, 51.5);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1), inset -1px -1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.checkbox-container .neumorphic-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-container .neumorphic-checkbox:hover .checkmark {
  border-color: rgb(0.5, 0.5, 0.5);
  background-color: hsl(60, 10.8108108108%, 100.4901960784%);
  box-shadow: inset 1.5px 1.5px 2.5px rgba(0, 0, 0, 0.15), inset -1px -1px 2px rgba(255, 255, 255, 0.35);
}
.checkbox-container .neumorphic-checkbox .checkbox-label {
  padding: 2px 0;
  line-height: 1.4;
}
.checkbox-container .neumorphic-link {
  margin-left: 10px;
  color: rgb(0.5, 0.5, 0.5);
  text-decoration: none;
  position: relative;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.checkbox-container .neumorphic-link:hover {
  color: hsl(0, 0%, -14.8039215686%);
  text-decoration: underline;
}

.neumorphic-alert {
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 1.5rem;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
  margin: 1rem 0;
  border: 1px solid rgb(214.6222222222, 214.6222222222, 200.5777777778);
}
.neumorphic-alert:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.neumorphic-alert:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.neumorphic-alert .alert-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.neumorphic-alert .alert-header .alert-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  color: hsl(0, 0%, -9.8039215686%);
}
.neumorphic-alert .alert-header .alert-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.4;
}
.neumorphic-alert .alert-content {
  margin-left: 36px;
  color: rgb(51.5, 51.5, 51.5);
  line-height: 1.6;
}
.neumorphic-alert .alert-content p {
  margin-bottom: 1rem;
}
.neumorphic-alert .alert-content p:last-child {
  margin-bottom: 0;
}
.neumorphic-alert .alert-content strong {
  font-weight: 600;
  color: #1A1A1A;
}
.neumorphic-alert .alert-content .alert-link {
  color: hsl(0, 0%, -4.8039215686%);
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}
.neumorphic-alert .alert-content .alert-link:hover {
  color: hsl(0, 0%, -19.8039215686%);
  text-decoration: none;
}
.neumorphic-alert .alert-actions {
  margin-left: 36px;
  margin-top: 1.5rem;
}
.neumorphic-alert .alert-actions .neumorphic-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #DEDED6;
  border: none;
  border-radius: 12px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.14), -2px -2px 5px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.neumorphic-alert .alert-actions .neumorphic-button:hover {
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.14), inset -2px -2px 4px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%);
}
.neumorphic-alert .alert-actions .neumorphic-button:active {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.14), inset -3px -3px 6px rgba(255, 255, 255, 0.95);
}
.neumorphic-alert.alert-success .alert-icon {
  color: rgb(32.0526315789, 32.0526315789, 30.9473684211);
}
.neumorphic-alert.alert-success .alert-title {
  color: rgb(6.1052631579, 6.1052631579, 5.8947368421);
}

.neumorphic-info-box {
  background: #DEDED6;
  border-radius: 18px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.14), -3px -3px 8px rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  margin: 1rem 0;
  border: 1px solid rgb(210.6283783784, 210.6283783784, 199.8716216216);
}
.neumorphic-info-box .info-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.neumorphic-info-box .info-header .info-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: rgb(0.5, 0.5, 0.5);
  font-size: 18px;
}
.neumorphic-info-box .info-header .info-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.4;
}
.neumorphic-info-box .info-content {
  color: rgb(38.75, 38.75, 38.75);
  line-height: 1.6;
}
.neumorphic-info-box .info-content p {
  margin-bottom: 0.75rem;
}
.neumorphic-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.button {
  margin: 3px 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background-color: #DEDED6;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.14), -3px -3px 6px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 450px) {
  .button {
    margin: 4px 0;
    padding: 10px 16px;
    font-size: 15px;
  }
}
.button:hover {
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.14), inset -3px -3px 6px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%);
}
.button:active {
  transform: scale(0.98);
}
.button.button-primary {
  background-color: #4f46e5;
  color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -1px -1px 3px rgba(255, 255, 255, 0.1);
}
.button.button-primary:hover {
  background-color: #4338ca;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.1);
}
.button.button-secondary {
  background-color: #6b7280;
  color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -1px -1px 3px rgba(255, 255, 255, 0.1);
}
.button.button-secondary:hover {
  background-color: #4b5563;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.1);
}
.button.button-success {
  background-color: #3A3A38;
  color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -1px -1px 3px rgba(255, 255, 255, 0.1);
}
.button.button-success:hover {
  background-color: rgb(32.0526315789, 32.0526315789, 30.9473684211);
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.1);
}
.button.button--danger {
  background-color: #5B5B5B;
  color: white;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -1px -1px 3px rgba(255, 255, 255, 0.1);
}
.button.button--danger:hover {
  background-color: rgb(65.5, 65.5, 65.5);
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.1);
}
.button.button-gray {
  background-color: rgb(210.6283783784, 210.6283783784, 199.8716216216);
  color: #1A1A1A;
}
.button.button-gray:hover {
  background-color: rgb(203.8054054054, 203.8054054054, 191.3945945946);
}
.button.button--active {
  background-color: #4f46e5;
  color: white;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3), inset -1px -1px 2px rgba(255, 255, 255, 0.1);
}

.button--small {
  padding: 5px 10px;
  font-size: 12px;
  min-width: 80px;
  max-width: 150px;
}
@media (min-width: 450px) {
  .button--small {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.button--compact {
  padding: 10px 18px;
  font-size: 14px;
  min-width: auto;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  justify-content: center;
  flex-shrink: 0;
}
.button--compact i {
  margin-right: 8px;
  font-size: 13px;
}

.button--haiku-add {
  padding: 12px 20px;
  font-size: 15px;
  min-width: auto;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  justify-content: center;
  flex-shrink: 0;
}
.button--haiku-add i {
  margin-right: 10px;
  font-size: 14px;
}

.button--neumorphic {
  background-color: #E8E8E0;
  color: #1A1A1A;
  border-radius: 8px;
  border: none;
  padding: 8px 16px;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  outline: none;
}
.button--neumorphic:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-3px);
}
.button--neumorphic:focus {
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.15);
}
.button--neumorphic:active {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  transform: translateY(2px);
}
.button--neumorphic:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--neumorphic.button--compact {
  padding: 10px 18px;
  font-size: 14px;
}

.button-group {
  display: flex;
  margin: 12px 0;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
}
.button-group .button,
.button-group .button-group__item {
  margin: 3px;
}
.button-group--right {
  justify-content: flex-end;
}
.button-group--right .button,
.button-group--right .button-group__item {
  margin-left: 6px;
  margin: 0 0 0 6px;
}
.button-group--center {
  justify-content: center;
}
.button-group--left {
  justify-content: flex-start;
}
.button-group--left .button,
.button-group--left .button-group__item {
  margin-right: 6px;
  margin: 0 6px 0 0;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.action-buttons .button {
  min-width: 180px;
}
@media (max-width: 640px) {
  .action-buttons {
    flex-direction: column;
  }
}

.options-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.neumorphic-menu {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: rgb(240.1945945946, 240.1945945946, 236.6054054054);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.14), -2px -2px 4px rgba(255, 255, 255, 0.95);
}
.neumorphic-menu h3 {
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.subtle-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: transparent;
  color: rgb(102.5, 102.5, 102.5);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgb(210.6283783784, 210.6283783784, 199.8716216216);
}
.subtle-link i {
  margin-right: 6px;
  font-size: 12px;
}
.subtle-link:hover {
  color: rgb(51.5, 51.5, 51.5);
  background-color: rgb(228.822972973, 228.822972973, 222.477027027);
  border-color: rgb(203.8054054054, 203.8054054054, 191.3945945946);
}
.subtle-link:active {
  transform: scale(0.98);
}

.neumorphic-text {
  color: #1A1A1A;
}

.limit-info .limit-message {
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: rgb(233.3716216216, 233.3716216216, 228.1283783784);
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}
.limit-info .limit-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .limit-info .limit-details {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.limit-info .limit-details .limit-period {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}
.limit-info .limit-details .limit-count {
  font-size: 1rem;
  color: #1A1A1A;
}
.limit-info .limit-details .limit-count strong {
  color: #4f46e5;
  font-size: 1.1rem;
}
.limit-info .limit-details .limit-reset {
  font-size: 0.85rem;
  color: #6b7280;
}

.applications-table {
  margin-top: 16px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  overflow: hidden;
}
.applications-table table {
  border-collapse: collapse;
  width: 100%;
  background: #DEDED6;
}
.applications-table table th,
.applications-table table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
}
.applications-table table th {
  background-color: rgb(215.177027027, 215.177027027, 205.522972973);
  font-weight: 600;
  color: #1A1A1A;
  font-size: 16px;
}
.applications-table table td {
  font-size: 14px;
  color: rgb(38.75, 38.75, 38.75);
}
.applications-table table tr {
  transition: background-color 0.15s ease-in-out;
}
.applications-table table tr.pending {
  background-color: hsl(0, 0%, 101.568627451%);
}
.applications-table table tr.approved {
  background-color: rgb(160.6842105263, 160.6842105263, 157.3157894737);
}
.applications-table table tr.rejected {
  background-color: #c1c1c1;
}
.applications-table table tr:hover {
  background-color: rgb(233.3716216216, 233.3716216216, 228.1283783784);
}

.haikus-table {
  margin-top: 16px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  overflow: hidden;
}
.haikus-table table {
  border-collapse: collapse;
  width: 100%;
}
.haikus-table table th,
.haikus-table table td {
  padding: 12px;
  text-align: left;
  border: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
}
.haikus-table table th {
  background-color: rgb(215.177027027, 215.177027027, 205.522972973);
  font-weight: 600;
  color: #1A1A1A;
  font-size: 16px;
}
.haikus-table table td {
  font-size: 14px;
  color: rgb(38.75, 38.75, 38.75);
}
.haikus-table .haiku-text {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 16px;
}

.haijin-card, .haijin-list__item, .haijin-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: #DEDED6;
  border: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.haijin-card:hover, .haijin-list__item:hover, .haijin-item:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.haijin-card:focus-within, .haijin-list__item:focus-within, .haijin-item:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
@media (max-width: 768px) {
  .haijin-card, .haijin-list__item, .haijin-item {
    flex-direction: column;
    align-items: stretch;
  }
}
.haijin-card__details, .haijin-details {
  flex: 1;
}
.haijin-card__name, .haijin-name {
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.haijin-card__kana, .haijin-name .haijin-kana {
  font-size: 16px;
  font-weight: 400;
  color: #4d4d4d;
}
.haijin-card__meta, .haijin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.haijin-card__meta-item, .haijin-meta .meta-item {
  font-size: 14px;
  color: rgb(64.25, 64.25, 64.25);
  background: rgb(233.3716216216, 233.3716216216, 228.1283783784);
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), -1px -1px 2px rgba(255, 255, 255, 0.5);
}
.haijin-card__profile, .haijin-profile {
  font-size: 14px;
  color: rgb(51.5, 51.5, 51.5);
  line-height: 1.5;
}
.haijin-card__actions, .haijin-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
@media (max-width: 768px) {
  .haijin-card__actions, .haijin-actions {
    flex-direction: row;
    min-width: unset;
  }
}
.haijin-card__avatar, .haijin-avatar {
  flex-shrink: 0;
}
.haijin-card__avatar i, .haijin-avatar i {
  font-size: 4rem;
  color: #4d4d4d;
}

.haijin-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.haijin-list__item, .haijin-item {
  background: rgb(226.5486486486, 226.5486486486, 219.6513513514);
}

.haijin-info-section {
  margin: 32px 0;
  background: rgb(226.5486486486, 226.5486486486, 219.6513513514);
  border-left: 4px solid #4A4A48;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.haijin-info-section:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.haijin-info-section:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.haijin-info-section__heading, .haijin-info-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.info-grid__item, .info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-grid__item label, .info-item label {
  font-weight: 600;
  color: #1A1A1A;
}
.info-grid__item span, .info-item span {
  color: rgb(64.25, 64.25, 64.25);
}

.application-info,
.haijin-info,
.haikus-info,
.action-buttons {
  margin-bottom: 32px;
  border: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
  background-color: rgb(226.5486486486, 226.5486486486, 219.6513513514);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.application-info:hover,
.haijin-info:hover,
.haikus-info:hover,
.action-buttons:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.application-info:focus-within,
.haijin-info:focus-within,
.haikus-info:focus-within,
.action-buttons:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.application-info h2,
.haijin-info h2,
.haikus-info h2,
.action-buttons h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.completion-details {
  margin-bottom: 3rem;
}
.completion-details__heading, .completion-details h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 24px;
  text-align: center;
}
.completion-details__registration-info, .registration-info {
  display: flex;
  justify-content: center;
}

.items {
  clear: both;
  margin: 16px 0;
  margin-top: 8px;
}
@media (min-width: 450px) {
  .items {
    margin: 24px 0;
    margin-top: 8px;
  }
}
.items ul.parent,
.items ul.parent_double {
  padding: 0;
  margin-bottom: 16px;
  display: flex;
  flex-flow: column;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.items ul.parent:hover,
.items ul.parent_double:hover {
  transform: translateY(-2px);
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
}
.items ul.parent li {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 450px) {
  .items ul.parent li {
    padding: 16px 16px;
    font-size: 16px;
    line-height: 1.75;
  }
}
.items ul.parent .long {
  flex: 1;
  display: inline;
  width: 100%;
}
.items ul.parent .long .button {
  width: auto;
  max-width: 100%;
  min-width: auto;
  white-space: normal;
  overflow: visible;
  text-overflow: ellipsis;
  padding-right: 16px;
}
@media (min-width: 480px) {
  .items ul.parent .long .button {
    padding-right: 16px;
  }
}
.items ul.parent .long .small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.items ul.parent .short {
  display: flex;
  flex-direction: column;
  padding: 0;
  flex: 1;
}
@media (min-width: 800px) {
  .items ul.parent .short {
    display: flex;
    flex-direction: row;
  }
  .items ul.parent .short .short_col_1 {
    flex: 1;
  }
  .items ul.parent .short .short_col_2 {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .items ul.parent {
    display: flex;
    flex-flow: row;
  }
  .items ul.parent .long {
    width: 40%;
  }
  .items ul.parent .short {
    justify-content: space-between;
  }
  .items ul.parent .short .short_col_2 {
    margin-right: auto;
  }
}
.items ul.parent_double .col1,
.items ul.parent_double .col2,
.items ul.parent_double .col3 {
  font-size: 14px;
  padding: 8px 16px;
}
@media (min-width: 450px) {
  .items ul.parent_double .col1,
  .items ul.parent_double .col2,
  .items ul.parent_double .col3 {
    font-size: 16px;
    padding: 16px 16px;
  }
}
.items ul.parent_double .col1 .button {
  width: auto;
  max-width: 100%;
  min-width: auto;
  white-space: normal;
  overflow: visible;
  text-overflow: ellipsis;
  padding-right: 16px;
}
@media (min-width: 480px) {
  .items ul.parent_double .col1 .button {
    padding-right: 16px;
  }
}
@media (min-width: 800px) {
  .items ul.parent_double {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-auto-flow: dense;
  }
  .items ul.parent_double .col1 {
    width: 100%;
  }
  .items ul.parent_double .col2 {
    padding-top: 16px;
    width: auto;
    margin-right: auto;
  }
  .items ul.parent_double .hidden {
    display: none;
  }
  .items ul.parent_double .col3 {
    padding-top: 16px;
    grid-column-start: span 2;
    width: 100%;
  }
}
.items .button {
  margin: 4px 0;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background-color: #DEDED6;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  display: inline-block;
  text-align: left;
  white-space: normal;
}
@media (min-width: 450px) {
  .items .button {
    margin: 4px 0;
    padding: 8px 16px;
    font-size: 16px;
  }
}
.items .button:hover {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%);
}
.items .button:active {
  transform: scale(0.98);
}
.items .small {
  font-size: 90%;
  color: rgba(26, 26, 26, 0.8);
  display: block;
  margin-top: 4px;
}
@media (min-width: 450px) {
  .items .small {
    margin-top: 4px;
  }
}
.items .context,
.items .context-main,
.items .context-other,
.items .context_hj,
.items .context_kd,
.items .boudai-context {
  white-space: nowrap;
}
.items .context mark,
.items .context-main mark,
.items .context-other mark,
.items .context_hj mark,
.items .context_kd mark,
.items .boudai-context mark {
  background-color: rgba(255, 255, 0, 0.4) !important;
  padding: 2px 0;
  border-radius: 2px;
  font-weight: bold;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

body .page {
  margin: 24px 4px;
  display: flex !important;
  justify-content: center;
}
@media (min-width: 450px) {
  body .page {
    margin: 24px 4px;
  }
}
body .page nav {
  display: block !important;
  width: 100%;
}
body .page .pagination {
  margin: 0;
  padding: 0;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  list-style: none;
  width: 100%;
}
@media (min-width: 450px) {
  body .page .pagination {
    gap: 8px;
  }
}
body .page .page-link {
  color: #1A1A1A !important;
  background: #DEDED6 !important;
  border: none;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 12px;
  display: block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
  font-size: 14px;
}
@media (min-width: 450px) {
  body .page .page-link {
    padding: 8px 16px;
    font-size: 16px;
  }
}
body .page .page-link:hover {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  color: hsl(0, 0%, -4.8039215686%) !important;
}
body .page .page-item.active .page-link {
  color: #1A1A1A !important;
  background: #E8E8E0 !important;
  font-weight: bold;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2);
}
body .page .page-item.disabled .page-link {
  color: rgba(26, 26, 26, 0.5) !important;
  background: #DEDED6 !important;
  pointer-events: none;
  box-shadow: none;
  opacity: 0.5;
}
@media (max-width: 480px) {
  body .page .pagination .page-item {
    display: none !important;
  }
  body .page .pagination .page-item:first-child, body .page .pagination .page-item:last-child, body .page .pagination .page-item.active, body .page .pagination .page-item:nth-child(2), body .page .pagination .page-item:nth-last-child(2) {
    display: block !important;
  }
  body .page .pagination .page-item:first-child .page-link:after {
    content: " 前へ";
  }
  body .page .pagination .page-item:last-child .page-link:before {
    content: "次へ ";
  }
}

.status-pending {
  color: #9D9D9D;
  font-weight: bold;
  font-size: 16px;
}

.status-approved {
  color: #3A3A38;
  font-weight: bold;
  font-size: 16px;
}

.status-rejected {
  color: #5B5B5B;
  font-weight: bold;
  font-size: 16px;
}

.status-unknown {
  color: #8A8A8A;
  font-weight: bold;
  font-size: 16px;
}

.alert {
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), -1px -1px 2px rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.5;
}
.alert.alert-success {
  background-color: rgb(160.6842105263, 160.6842105263, 157.3157894737);
  color: hsl(60, 1.7543859649%, -12.6470588235%);
  border-color: rgb(109.8947368421, 109.8947368421, 106.1052631579);
}
.alert.alert-danger {
  background-color: rgb(180.25, 180.25, 180.25);
  color: rgb(14.5, 14.5, 14.5);
  border-color: rgb(129.25, 129.25, 129.25);
}
.alert.alert-danger ul {
  margin: 0;
  padding-left: 28px;
}
.alert.alert-danger ul li {
  margin-bottom: 4px;
}
.alert.alert-warning {
  background-color: rgb(233.5, 233.5, 233.5);
  color: #7B7B7B;
  border-color: rgb(182.5, 182.5, 182.5);
}
.alert.alert-warning .flex {
  display: flex;
}
.alert.alert-warning .items-center {
  align-items: center;
}
.alert.alert-warning .mb-2 {
  margin-bottom: 8px;
}
.alert.alert-warning .mr-2 {
  margin-right: 8px;
}
.alert.alert-info {
  background-color: rgb(254.043902439, 254.3902439024, 254.956097561);
  color: rgb(5.5536585366, 49.3658536585, 120.9463414634);
  border-color: rgb(156.5219512195, 192.1951219512, 250.4780487805);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal .modal-content {
  background: #DEDED6;
  border-radius: 12px;
  padding: 28px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.modal .modal-content h4 {
  margin-bottom: 28px;
  color: #1A1A1A;
  font-size: 20px;
}
.modal .modal-content form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .modal-content form input[type=password] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  background-color: #DEDED6;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.14), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
  font-size: 16px;
}

.error_input {
  font-size: 14px;
  color: #ff6347;
  margin-left: 32px;
}

.input-container {
  display: inline-block;
  margin-right: 10px;
}

.scrollTop {
  position: fixed;
  right: 28px;
  bottom: 30px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  z-index: 1;
}
.scrollTop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #DEDED6;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  color: #1A1A1A;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.scrollTop a:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.14), -4px -4px 8px rgba(255, 255, 255, 0.95);
}
.scrollTop a:active {
  transform: translateY(0);
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
}
.scrollTop a i {
  font-size: 24px;
}

.post {
  width: 98%;
  margin: 0 auto 8px auto;
  background: #DEDED6;
  padding: 8px;
  border-radius: 16px;
}
.post .post__create,
.post .post__review-create {
  margin: 8px 0;
  padding: 12px 4px;
  border: solid 1px #8d8d8d;
  background: #E8E8E0;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.post .post__create:hover,
.post .post__review-create:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.post .post__create:focus-within,
.post .post__review-create:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.post .post__info-create {
  margin: 8px 0;
  padding: 12px 4px;
  border: solid 1px #666;
  background: #DEDED6;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.post .post__info-create:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.post .post__info-create:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.post .post__create h1,
.post .post__info-create h1,
.post .post__review-create h1 {
  margin: 0px 8px 16px 8px;
  color: #000;
  background: rgb(221.1388888889, 221.1388888889, 209.3611111111);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 12px 24px;
}
.post .post__create h3,
.post .post__info-create h3,
.post .post__review-create h3 {
  font-size: 16px;
  font-weight: bold;
}
.post .post__create .post__confirm-area,
.post .post__create .post__info-confirm-area,
.post .post__create .post__review-confirm-area,
.post .post__info-create .post__confirm-area,
.post .post__info-create .post__info-confirm-area,
.post .post__info-create .post__review-confirm-area,
.post .post__review-create .post__confirm-area,
.post .post__review-create .post__info-confirm-area,
.post .post__review-create .post__review-confirm-area {
  margin: 8px;
  padding: 4px 4px 8px 4px;
  border: 1px solid #888;
  border-radius: 16px;
}
.post .post__create .post__confirm-content,
.post .post__create .post__confirm-info-content,
.post .post__create .post__confirm-review-content,
.post .post__info-create .post__confirm-content,
.post .post__info-create .post__confirm-info-content,
.post .post__info-create .post__confirm-review-content,
.post .post__review-create .post__confirm-content,
.post .post__review-create .post__confirm-info-content,
.post .post__review-create .post__confirm-review-content {
  margin: 8px;
  padding: 8px 8px 16px 8px;
  border: 1px solid #888;
  background: #E8E8E0;
  border-radius: 12px;
}
.post .post__create .post__title,
.post .post__create .post__diary-title,
.post .post__create .post__topic-title,
.post .post__info-create .post__title,
.post .post__info-create .post__diary-title,
.post .post__info-create .post__topic-title,
.post .post__review-create .post__title,
.post .post__review-create .post__diary-title,
.post .post__review-create .post__topic-title {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
  border-bottom: 3px double #333;
  padding: 8px 16px;
  margin: 16px 8px;
  background-color: #E8E8E0;
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
  transform: scale(0.98);
}
.post .post__create .post__body,
.post .post__create .post__diary-body,
.post .post__create .post__topic-body,
.post .post__info-create .post__body,
.post .post__info-create .post__diary-body,
.post .post__info-create .post__topic-body,
.post .post__review-create .post__body,
.post .post__review-create .post__diary-body,
.post .post__review-create .post__topic-body {
  font-size: 14px;
  padding: 16px;
  margin: 16px 8px;
  border: 1px solid rgb(166.5, 166.5, 166.5);
  border-radius: 12px;
}

.post__main {
  padding: 24px 16px;
  border: 1px solid #888;
  background: #DEDED6;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.post__main:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.post__main:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.post__main .post__content {
  margin: 0 0 8px 0;
  padding: 8px 8px 16px 8px;
  border: 1px solid #888;
  background: #fff;
  border-radius: 12px;
}
.post__main .post__content .post__title,
.post__main .post__content .post__diary-title,
.post__main .post__content .post__topic-title {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0 16px 0;
  padding: 12px 20px;
  background: #f8f8f8;
  border-radius: 12px;
  color: #1A1A1A;
}
.post__main .post__content .post__body,
.post__main .post__content .post__diary-body,
.post__main .post__content .post__topic-body {
  font-size: 14px;
  line-height: 2;
  padding: 8px 16px;
}
.post__main .post__content .post__body h2,
.post__main .post__content .post__diary-body h2,
.post__main .post__content .post__topic-body h2 {
  font-size: 16px;
  font-weight: bold;
  margin: 24px 0 8px 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #1A1A1A;
}
.post__main .post__supplement {
  margin: 0;
  padding: 8px 16px 16px 16px;
  border: 1px solid #888;
  background: #fff;
  border-radius: 12px;
}
.post__main .post__supplement p:not(.post__reference-thanks) {
  font-size: 16px;
  margin: 16px 0;
}
.post__main .post__ai-summary {
  margin: 8px;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.post__main .post__ai-summary:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.post__main .post__ai-summary:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.post__main .post__ai-summary p {
  margin-bottom: 12px;
  font-size: 14px;
  color: #5A5A5A;
}

.post__reference-section {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 16px 0;
  margin: 8px 0;
}
.post__reference-section .post__reference-title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 18px;
}
.post__reference-section .post__reference-links a {
  display: block;
  margin: 4px 0;
  color: rgb(51.5, 51.5, 51.5);
  text-decoration: none;
  font-size: 16px;
}
.post__reference-section .post__reference-links a:hover {
  text-decoration: underline;
  color: #222;
}
.post__reference-section .post__reference-links a i {
  margin-right: 6px;
}
.post__reference-section .post__reference-thanks {
  font-size: 14px;
  margin-top: 8px;
  color: #5A5A5A;
  line-height: 1.4;
}

.post__comment {
  margin: 8px 0 8px 4px;
  padding: 12px 0 4px 0;
  background: #DEDED6;
  border: solid 1px #666;
  border-radius: 12px;
}
@media (min-width: 800px) {
  .post__comment {
    margin: 8px 0 8px 8px;
    padding: 12px 0 4px 8px;
    border-radius: 12px;
  }
}
.post__comment .confirm_body {
  background-color: #fff;
}
.post__comment .confirm_body .cnfirm_content {
  border-radius: 12px;
  margin-top: 8px;
  background-color: rgb(176.095890411, 176.095890411, 173.904109589);
}
.post__comment .button_right {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 24px;
}
.post__comment p {
  margin-left: 4px;
  padding: 12px;
  font-size: 14px;
  border: solid 1px #333;
  border-radius: 12px;
}

.request-section {
  border: 1px solid #444;
  background: #E8E8E0;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.request-section:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.request-section:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.request-section > p {
  border: none !important;
  margin: 8px 16px 0;
  padding: 0;
  font-weight: bold;
}
.request-section .request-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 8px 8px;
  padding: 6px;
}
.request-section .request-options label {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-size: 14px;
}
.request-section .request-options input[type=radio] {
  margin: 0;
  width: 16px;
  height: 16px;
}
@media (min-width: 450px) {
  .request-section .request-options {
    flex-direction: row;
    gap: 16px;
    margin: 4px 16px 8px;
  }
  .request-section .request-options label {
    padding: 0;
    font-size: inherit;
  }
}

.comment {
  border: 1px solid #888;
  margin: 8px 4px 8px 16px;
  background: #fff;
  background-color: #E8E8E0;
  border-radius: 16px;
  border: none;
  padding: 24px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
.comment:hover {
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
  transform: translateY(-2px);
}
.comment:focus-within {
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95), 0 0 0 3px rgba(74, 74, 72, 0.1);
}
.comment .comment_header {
  margin-bottom: 16px;
}
.comment .comment_header .local_id {
  background: #DEDED6;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 4px 16px;
  margin-right: 16px;
  display: inline-block;
  align-self: flex-start;
}
.comment .comment_body {
  text-align: left;
  font-size: 14px;
  padding: 16px;
  margin: 16px 8px;
  border: 1px solid #999;
  border-radius: 12px;
}

.target {
  background: #DEDED6;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 8px;
  position: relative;
}
.target:hover {
  cursor: pointer;
}

.balloon {
  position: absolute;
  z-index: 1;
  bottom: 100%;
  margin-bottom: 8px;
  background-color: #fff;
  border: 1px solid #333;
  padding: 8px;
  min-width: 80vw;
}

.request_baloon {
  z-index: 1;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 8px;
  margin: 8px;
  color: #5B5B5B;
  font-size: 14px;
  font-weight: bold;
}
.request_baloon .request_button {
  font-size: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #DEDED6;
  color: #333;
  padding: 2px;
  margin: 8px 16px 4px 16px;
}
.request_baloon .request_button:hover {
  background: #333;
  color: #fff;
}

.request_status p,
.revision_status p {
  margin: 16px 8px;
  color: #4A4A48;
  font-size: 12px;
}

.alert-danger {
  color: #5B5B5B;
  font-size: 14px;
  font-weight: bold;
}

.number {
  clear: both;
  width: 95%;
  margin: 8px auto;
  padding: 8px;
  font-size: 14px;
  line-height: 1.4;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.number p {
  margin: 0;
}
.number .tomato {
  font-weight: 500;
}
@media (min-width: 450px) {
  .number {
    margin: 12px auto;
    padding: 10px;
    font-size: 15px;
  }
}
@media (min-width: 800px) {
  .number {
    width: 90%;
    margin: 17px auto;
    padding: 12px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.desc {
  padding: 16px 8px;
  margin: 12px 0;
  border-radius: 12px;
  background-color: rgba(233.3716216216, 233.3716216216, 228.1283783784, 0.2);
}
.desc h3 {
  position: relative;
  font-size: 15px;
  padding: 16px 16px;
  margin: 8px 0;
  border-radius: 12px;
  transition: all 0.25s ease-in-out;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), -1px -1px 2px rgba(255, 255, 255, 0.2);
}
.desc h3:nth-child(odd) {
  background-color: rgba(240.1945945946, 240.1945945946, 236.6054054054, 0.7);
}
.desc h3:nth-child(even) {
  background-color: rgba(210.6283783784, 210.6283783784, 199.8716216216, 0.7);
}
.desc h3:hover {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), -2px -2px 4px rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.desc h3 .h3h {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  width: 90px;
  color: hsl(0, 0%, -4.8039215686%);
  margin-right: 8px;
}
@media (min-width: 800px) {
  .desc h3 .h3h {
    width: 120px;
  }
}
.desc h3 .h3h::after {
  position: absolute;
  left: 98px;
  color: rgb(0.5, 0.5, 0.5);
}
@media (min-width: 800px) {
  .desc h3 .h3h {
    width: 120px;
  }
  .desc h3 .h3h::after {
    left: 128px;
  }
}
.desc .detail {
  margin: 8px auto;
  padding: 16px 24px;
  background: hsl(60, 10.8108108108%, 100.4901960784%);
  border-radius: 16px;
  color: #1A1A1A;
  font-size: 14px;
}
.desc .detail .h3h {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}
.desc .detail p {
  margin-bottom: 8px;
  color: #ff6347;
}
@media (min-width: 800px) {
  .desc {
    padding: 8px 16px;
    margin: 8px;
  }
}

.detail-info {
  margin: 28px 0;
}
.detail-info .info-section {
  margin-bottom: 16px;
  line-height: 1.6;
}
.detail-info .info-section .label {
  font-weight: 500;
  color: rgb(0.5, 0.5, 0.5);
  margin-right: 8px;
}
.detail-info .info-section .content {
  color: #1A1A1A;
}
.detail-info a {
  color: #4a6dff;
  text-decoration: none;
}
.detail-info a:hover {
  text-decoration: underline;
}
.detail-info .description {
  margin: 28px 0;
  padding: 16px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.14), inset -2px -2px 5px rgba(255, 255, 255, 0.95);
}
.detail-info .description h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.detail-info .description p {
  line-height: 1.6;
}
.detail-info .reference {
  margin: 16px 0;
}
.detail-info .reference .ref-title {
  font-weight: 500;
  margin-bottom: 8px;
}
.detail-info .reference .ref-list {
  margin-left: 16px;
}
.detail-info .reference .ref-list a {
  display: block;
  margin-bottom: 6px;
}
.detail-info .action-buttons {
  margin: 28px 0;
}
.detail-info .action-buttons .button {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 8px 16px;
  background: #DEDED6;
  color: #1A1A1A;
  border: none;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.detail-info .action-buttons .button:hover {
  box-shadow: inset 8px 8px 14px rgba(0, 0, 0, 0.14), inset -8px -8px 14px rgba(255, 255, 255, 0.95);
}
.detail-info .appreciation {
  margin-top: 30px;
}
.detail-info .appreciation h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.reference_section {
  margin: 28px 0;
  padding: 16px;
  background: #DEDED6;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  width: 100%;
}
.reference_section h3,
.reference_section p,
.reference_section .reference_title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #1A1A1A;
}
.reference_section .reference_links {
  margin-left: 4px;
}
.reference_section .reference_links a {
  display: block;
  margin: 6px 0;
  color: #1A1A1A;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.reference_section .reference_links a:hover {
  color: hsl(0, 0%, -9.8039215686%);
  text-decoration: underline;
}
.reference_section .reference_links a i {
  margin-right: 6px;
}

.adv {
  padding: 8px 24px;
  margin: 16px;
  background: rgb(233.3716216216, 233.3716216216, 228.1283783784);
  border: 1px solid rgb(203.8054054054, 203.8054054054, 191.3945945946);
  border-radius: 16px;
}
@media (min-width: 800px) {
  .adv {
    display: flex;
    justify-content: space-between;
  }
}
.adv h3 {
  font-size: 15px;
  padding: 8px 16px;
  margin: 0;
  border-radius: 8px;
}
.adv h3 .advh {
  display: inline-block;
  font-size: 16px;
  width: 48px;
}
.adv .url {
  margin: 8px 24px;
  display: flex;
  justify-content: flex-end;
}

.filter-section {
  margin-bottom: 1rem;
}
.filter-section .flex {
  display: flex;
}
.filter-section .gap-4 {
  gap: 1rem;
}

.pagination-container {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.no-applications {
  text-align: center;
  padding: 2rem;
  color: rgb(64.25, 64.25, 64.25);
}

.privacy {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  background: rgb(228.822972973, 228.822972973, 222.477027027);
  border-radius: 16px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.14), -12px -12px 24px rgba(255, 255, 255, 0.95);
}
@media (min-width: 450px) {
  .privacy {
    padding: 32px;
  }
}
.privacy h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 32px;
  padding: 24px;
  background: #DEDED6;
  border-radius: 16px;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
@media (min-width: 450px) {
  .privacy h1 {
    font-size: 32px;
  }
}
.privacy h1:hover {
  transform: translateY(-2px);
  box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.2), -14px -14px 28px rgb(255, 255, 255);
}
.privacy h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 32px 0 16px 0;
  padding: 16px 24px;
  background: rgb(226.5486486486, 226.5486486486, 219.6513513514);
  border-radius: 12px;
  border-left: 4px solid #4A4A48;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.14), -5px -5px 10px rgba(255, 255, 255, 0.95);
  transition: all 0.25s ease-in-out;
}
@media (min-width: 450px) {
  .privacy h2 {
    font-size: 24px;
  }
}
.privacy h2:hover {
  transform: translateX(4px);
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.14), -9px -9px 18px rgba(255, 255, 255, 0.95);
}
.privacy h3 {
  font-size: 14px;
  font-weight: 500;
  color: rgb(0.5, 0.5, 0.5);
  margin: 16px 0 8px 0;
  padding: 8px 16px;
  background: rgb(224.2743243243, 224.2743243243, 216.8256756757);
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15), -2px -2px 4px rgba(255, 255, 255, 0.15);
  transition: all 0.15s ease-in-out;
}
@media (min-width: 450px) {
  .privacy h3 {
    font-size: 16px;
  }
}
.privacy h3:hover {
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.15), inset -2px -2px 4px rgba(255, 255, 255, 0.15);
}
.privacy p {
  font-size: 14px;
  line-height: 1.75;
  color: rgb(38.75, 38.75, 38.75);
  margin-bottom: 16px;
  padding: 16px;
  background: rgb(224.2743243243, 224.2743243243, 216.8256756757);
  border-radius: 8px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.08), inset -1px -1px 2px rgba(255, 255, 255, 0.08);
}
@media (min-width: 450px) {
  .privacy p {
    font-size: 16px;
    padding: 24px;
  }
}
.privacy ol {
  list-style: none;
  counter-reset: cnt;
  padding-left: 0;
  margin-bottom: 24px;
  background: rgb(224.2743243243, 224.2743243243, 216.8256756757);
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.1), inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}
@media (min-width: 450px) {
  .privacy ol {
    padding: 24px;
  }
}
.privacy li {
  position: relative;
  counter-increment: cnt;
  font-size: 14px;
  line-height: 1.75;
  color: rgb(38.75, 38.75, 38.75);
  margin-bottom: 8px;
  padding: 8px 8px 8px 32px;
  background: #DEDED6;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.12), -1px -1px 2px rgba(255, 255, 255, 0.12);
}
@media (min-width: 450px) {
  .privacy li {
    font-size: 16px;
    padding: 16px 16px 16px 48px;
  }
}
.privacy li:last-child {
  margin-bottom: 0;
}
.privacy li::before {
  content: "(" counter(cnt) ")";
  position: absolute;
  left: 8px;
  top: 8px;
  font-weight: 600;
  color: #4A4A48;
}
@media (min-width: 450px) {
  .privacy li::before {
    left: 16px;
    top: 16px;
  }
}
.privacy .h3p {
  margin: 8px 0 24px 0;
  padding: 16px;
}
@media (min-width: 450px) {
  .privacy .h3p {
    padding: 24px;
  }
}
