@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  scroll-behavior: smooth;
  background: #2A867A;
  background: linear-gradient(180deg, rgb(42, 134, 122) 0%, rgb(60, 171, 94) 32%, rgb(212, 191, 81) 100%);
  background-attachment: fixed;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease;
}
a:active, a:visited {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.6;
  transition: all 0.5s ease;
}

.pc {
  display: block;
}
@media screen and (max-width: 640px) and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .sp {
    display: inline-block !important;
  }
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  color: #FFF;
  flex-wrap: wrap;
  padding: 0 0 25px;
  justify-content: left;
}
header .logo {
  width: 50%;
  display: block;
  margin: 10px;
  max-width: 270px;
}
header .logout {
  margin: 0 20px 0 auto;
  color: #FFF;
  font-size: 14px;
  border: 1px solid;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  line-height: 1;
}
header .logout::before {
  font-family: "Material Icons";
  content: "\e9ba";
  font-size: 18px;
}
header .name {
  width: 40%;
  font-size: 15px;
}
header h1 {
  width: 100%;
  color: #FFF;
  font-size: 18px;
  border-left: 4px solid #ffff00;
  width: 93%;
  margin: 3px auto 7px auto;
  padding: 0 0 0 7px;
  box-sizing: border-box;
}

footer small {
  display: block;
  text-align: center;
  padding: 3rem 0 4rem 0;
}
footer .footer_navi {
  position: fixed;
  bottom: 0;
  opacity: 0;
  transform: translateY(100px);
  width: 83%;
}
footer .footer_navi.UpMove {
  animation: UpAnime 0.8s forwards;
}
footer .footer_navi.DownMove {
  animation: DownAnime 0.8s forwards;
}
footer .footer_navi p {
  font-size: 10px;
  background: #FFF;
  text-align: center;
}
footer .footer_navi ul {
  display: grid;
  grid-template-columns: repeat(3, 33.3%);
  font-size: 12px;
  text-align: center;
  align-items: center;
  width: 100%;
}
footer .footer_navi ul li {
  border: 2px solid #FFF;
}
footer .footer_navi ul li a {
  display: flex;
  width: 100%;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EEEEEE;
}

#wrapper {
  width: 96%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 23% 74%;
  max-width: 1100px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: flex-start;
}
#wrapper.login {
  display: block;
}

.btn {
  width: 100%;
  background-color: #EFEFEF;
  border-radius: 7px;
  margin: 10px 0 3px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.btn a,
.btn button {
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  color: #FFF;
  line-height: 1;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
  box-sizing: border-box;
}
.btn a::after,
.btn button::after {
  font-family: "Material Icons";
  content: "\e5cc";
  font-size: 19px;
}
.btn.orange {
  background-color: #f77c00;
}
.btn.orange a,
.btn.orange button {
  color: #FFF;
}
.btn.blue {
  background-color: #0059b9;
}
.btn.blue a,
.btn.blue button {
  color: #FFF;
}
.btn.gray {
  background-color: #c9c9c9;
}
.btn.gray a,
.btn.gray button {
  color: #000;
}
.btn.white {
  background-color: #FFF;
  border: #666 solid 1px;
}
.btn.white a,
.btn.white button {
  color: #000;
}
.btn.cancel {
  background-color: #f71900;
}
.btn.cancel a,
.btn.cancel button {
  color: #FFF;
}
.btn.cancel a::before,
.btn.cancel button::before {
  font-family: "Material Icons";
  content: "\e5cd";
  font-size: 19px;
}
.btn.cancel a::after,
.btn.cancel button::after {
  content: none;
}
.btn.restart {
  margin: 15px 0;
}
.btn.restart a::before,
.btn.restart button::before {
  font-family: "Material Icons";
  content: "\e5cb";
  font-size: 19px;
}
.btn.restart a::after,
.btn.restart button::after {
  content: none;
}
.btn.input {
  padding: 10px;
  border: 1px solid;
  margin: 0 auto;
  display: block;
}

.label {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin: 0 0 20px;
  font-weight: 700;
}
.label.end {
  background-color: #EFEFEF;
  border: 1px solid #CCC;
  color: #666;
}

.link {
  padding: 0;
  font-size: 15px;
  border: 1px solid #FFF;
  line-height: 1;
  margin: 0 0 20px 0;
  width: -moz-fit-content;
  width: fit-content;
}
.link a {
  color: #FFF;
  padding: 7px 10px;
  display: flex;
  font-size: 14px;
}
.link a::before {
  font-family: "Material Icons";
  content: "\e5cb";
  font-size: 16px;
}

.page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 640px) {
  .page-top {
    bottom: 0;
  }
}
.page-top a {
  background: #000;
  color: #FFF;
  font-size: 12px;
  padding: 7px 15px 11px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-top a::before {
  font-family: "Material Icons";
  content: "\e5ce";
}
.page-top {
  /*　上に上がる動き　*/
}
.page-top.UpMove {
  animation: UpAnime 0.8s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-top {
  /*　下に下がる動き　*/
}
.page-top.DownMove {
  animation: DownAnime 0.8s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

.Pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0 40px 0;
}
.Pagination li {
  background-color: #FFF;
}
.Pagination li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.Pagination li a.isActive {
  background-color: #000;
  color: #FFF;
}
.Pagination li > span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #999;
}
.Pagination li.left {
  border-radius: 20px 0 0 20px;
}
.Pagination li.right {
  border-radius: 0 20px 20px 0;
}

.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 90vw;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: toast-in 0.3s ease-out;
}
.toast--success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}
.toast--error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}
.toast--warning {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}
.toast--info {
  background: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}
.toast--hiding {
  animation: toast-out 0.3s ease-in forwards;
}

.toast__message {
  flex: 1;
  font-size: 0.9rem;
}

.toast__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
}
.toast__close:hover {
  opacity: 1;
}

@keyframes toast-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes toast-out {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.field-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.has-error {
  border-color: #dc3545 !important;
}
.has-error:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}/*# sourceMappingURL=common.css.map */