/* 
kurashi-ki-ninaru Stylesheet
v1.0.0
Last Updated: 2023-3-01
Work: LAID-BACK DESIGN
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* .loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh!important;
  margin: 0;
  background-color: #f3f3f3;
}

.loadbar {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s linear infinite;
} */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

#toppage {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  border: 20px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ul-style1 li{
  border-bottom: none!important;
  padding: 0!important;
}
.dl-style1 dt{
  font-weight: 600;
}
.btn{
  border: 1px solid #555;
  padding: .5em .8em;
  border-radius: 2px;
  transition: background-color .3s,color .3s;
}
.btn:hover{
  background-color: #555;
  color: #fff;
}
.h3-style1{
  margin: 30px 0;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  margin-bottom: 15vh;
  width: 980px;
  padding: 30px 0;
  margin: 0 auto 3.3% auto;
  font-family: "A1 Mincho";
  flex-direction: column;
  gap: 1.5em;
}

@media (max-width: 960px) {
  header {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px;
    margin-bottom: 45px;
  }
}

.subpage {
  margin-bottom: 15px;
}

.sitetitle {
  text-align: center;
}

.sitetitle h1 {
  font-size: x-large;
}

.sitetitle span {
  font-size: small;
  letter-spacing: 0.1em;
}

.catch{
  position: absolute;
  left: 45px;
  bottom: 45px;
  text-align: left;
  font-size: .8em;
}

@media (max-width: 960px) {
  .sitetitle{
    text-align: center;
  }
  .subpage .sitetitle{
    text-align: left;
  }
  .sitetitle h1 {
    font-size: large;

  }
  .sitetitle span {
    font-size: x-small;
  }
}

.time {
  position: absolute;
  right: 45px;
  bottom: 45px;
  text-align: right;
}

.time span {
  font-size: x-large;
}

.time #colon {
  -webkit-animation-name: timeanime;
          animation-name: timeanime;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.time .season24 {
  display: block;
}

@media (max-width: 960px) {
  .time,.catch {
    display: none;
  }
}

@-webkit-keyframes timeanime {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes timeanime {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.breadcrumb {
  padding: 10px 0;
  list-style: none;
  font-size: small;
}

.breadcrumb a {
  color: #555;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #aaa;
  text-decoration: none;
}

.badge-up {
  background: #888;
  color: #fff;
  padding: 0 0.5em;
  font-size: .75em;
  margin-left: 0.5em;
}

.img-border img {
  border: 1px solid #ddd;
}

.s-nav {
  padding-top: 15px;
  background-color: #efefef;
}

.s-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.s-nav ul li {
  display: block;
  padding: 3px 10px;
  border-radius: 3px 3px 0 0;
  font-size: .9em;
}

.s-nav ul li a:hover {
  font-weight: bold;
}

.s-nav ul .active {
  font-weight: bold;
  background-color: #fff;
}

.gnav .nav-toggle {
  display: none;
}

.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.gnav ul li {
  font-size: 14px;
  text-align: center;
  letter-spacing: .1em;
}

.gnav ul li a {
  -webkit-transition: color .3s;
  transition: color .3s;
}

.gnav ul li a span {
  font-size: 11px;
  display: block;
  letter-spacing: 0.1em;
}

.gnav ul li a:hover {
  color: #eeeeee;
}

@media (max-width: 960px) {
  .gnav .nav-toggle:checked ~ .btn-burger {
    background-color: #fff;
  }
  .gnav .nav-toggle:checked ~ .btn-burger .icon {
    background: transparent;
  }
  .gnav .nav-toggle:checked ~ .btn-burger .icon:before {
    background-color: #555;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 0px;
  }
  .gnav .nav-toggle:checked ~ .btn-burger .icon:after {
    background-color: #555;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 0;
  }
  .gnav .nav-toggle:checked ~ div {
    position: fixed;
    opacity: .9;
    z-index: 998;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .gnav .nav-toggle:checked ~ div ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
    opacity: 1;
  }
  .gnav .nav-toggle:checked ~ div ul li a {
    display: block;
    padding: 0.2em;
    color: #555;
    font-size: 16px;
  }
  .gnav .nav-toggle:checked ~ div ul li a span {
    color: #aaa;
    margin-top: 0.15em;
    display: block;
    font-size: 15px;
    font-weight: normal;
    font-size: .8em;
  }
  .gnav ul {
    display: none;
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .gnav .btn-burger {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #555;
    z-index: 999;
  }
  .gnav .btn-burger > .icon, .gnav .btn-burger .icon::before, .gnav .btn-burger .icon::after {
    position: absolute;
    -webkit-transition: .2s;
    transition: .2s;
    height: 2px;
    width: 30px;
    background-color: #fff;
    border-radius: 1px;
    display: block;
    content: '';
    cursor: pointer;
    margin: auto;
  }
  .gnav .btn-burger .icon {
    right: 10px;
    top: 24px;
  }
  .gnav .btn-burger .icon::before {
    top: 8px;
  }
  .gnav .btn-burger .icon::after {
    top: -8px;
  }
}

.info {
  font-size: 12px;
  text-align: center;
  margin-bottom: 3em;
  text-decoration: underline;
}

canvas {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#toppage main {
  margin: 0 auto;
}

main {
  max-width: 960px;
  margin: auto;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main small.res-info {
  margin: 15px;
  display: block;
}

main .his-img img {
  margin: 15px 0;
  width: 100%;
  height: auto;
}

main .news {
  margin: 0 auto 30px auto;
}

main .news h2 {
  margin: 30px 0;
  font-family: "A1 Mincho";
  text-align: center;
}
main .news h3 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}

main .news p hr{
  margin: 1em 0;
}

main .news p a{
  text-decoration: underline;
}
main .news p a:hover{
  text-decoration: none;
  color: #888;
}

main .news section {
  background-color: #f5f5f5;
  border: 3px solid #fff;
  word-break: break-all;
  -webkit-box-shadow: 0 0 12px 1px #eee;
          box-shadow: 0 0 12px 1px #eee;
  color: #555;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

main .news section img{
  width: 100%;
  height: auto;
}

main .news section dl {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.75em;
  -webkit-column-gap: 1em;
          column-gap: 1em;
}

main .news section dl dt {
  font-weight: bold;
  width: 3em;
}

main .news section dl dd {
  display: block;
  width: calc(100% - 4em);
}

main .news section time {
  font-size: 12px;
}

main .news section:not(:last-child) {
  margin-bottom: 30px;
}

main .record ul li {
  margin: 0.2em;
  padding: 0.5em;
  border-bottom: 1px solid #ccc;
}

main .record ul li:last-child {
  border-bottom: 0px;
}

main .table-scroll {
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 30px;
}

main .table-scroll::-webkit-scrollbar {
  height: 5px;
}

main .table-scroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}

main .table-scroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

main .history-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.8em;
  position: relative;
}

main .history-table td,
main .history-table th {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

main .history-table tr:nth-child(even) {
  background-color: #efefef;
}

main .history-table .t-th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.mailto {
  text-decoration: underline;
}

.minutes_ul a {
  text-decoration: underline;
}

.minutes_ul a:hover {
  opacity: .3;
}

.minutes_new{
display: flex;
flex-direction: column;
font-size: 1.15em;
gap: .25em;
}

.attention {
  border: 1px solid red;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: red;
  font-size: .8em;
}

.attention ul {
  list-style-type: disc;
  padding-left: 2em;
}

.attention ul li {
  border-bottom: 0px !important;
}

li a + small {
  margin-left: .5em;
}

footer {
  text-align: center;
  font-family: sans-serif;
}

footer p {
  font-size: x-small;
}

footer p:last-child {
  margin-bottom: 30px;
}

footer p a {
  text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */

.col-2{
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}