@charset "UTF-8";
body {
  font-family: sans-serif;
  background-color: #fff;
  margin: 0;
}
body header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto 30px;
  position: relative;
}
body header.index {
  height: 300px;
}
body header.index::before {
  background-image: url(../assets/img/kfaz_title.jpg);
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
body header.index::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(50, 76, 84, 0.568627451);
  z-index: 1;
  pointer-events: none;
}
body header.index .header-img,
body header.index .header-text {
  position: relative;
  z-index: 2;
}
body header .header-img {
  display: flex;
  flex-direction: column;
}
body header .header-img .img {
  width: auto;
  max-width: 600px;
  image-rendering: crisp-edges;
}
body header .header-img .caption {
  text-align: end;
  font-size: small;
}
body header .header-text {
  top: 50%;
  transform: translateY(-50%);
}
body header .header-text h1 {
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}
body header .header-text p {
  text-align: justify;
  color: #fff;
  padding: 0;
}
body main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%;
  margin: 0 20%;
  max-width: 50%;
  gap: 2rem;
}
@media (max-width: 500px) {
  body main {
    margin: 0;
    max-width: 100%;
    gap: 1.5rem;
  }
}
body footer {
  background-color: #0d63b2;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
body footer p.cc {
  font-size: small;
}
body footer a {
  color: #fff;
  text-decoration: underline;
}
body ul,
body ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
body section {
  width: 100%;
}
body table {
  width: 100%;
  border-collapse: collapse;
  border: #999 1px solid;
}
body table th,
body table td {
  vertical-align: top;
  padding: 15px;
}
body table th {
  border: #999 1px solid;
}
body table.noboder {
  border: none;
}
body table.noboder td {
  border: none;
}
body table.noboder th {
  border: #999 1px solid;
  border-bottom: none;
}
body table.last {
  border-bottom: #999 1px solid;
}
body table .index {
  font-weight: bold;
  text-align: justify;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body table.inner th,
body table.inner td {
  border: none;
  padding: 0;
}
body table.inner .index {
  font-weight: normal;
}
body table.timeline {
  border: #999 1px solid;
}
body table.timeline th {
  background-color: #0d63b2;
  color: #fff;
  text-align: center;
}
body table.timeline tr.even {
  background-color: #f5f5f5;
}
body table.timeline tr.odd {
  border: #999 1px dotted;
  background-color: #fff;
}
body table.timeline th,
body table.timeline td {
  vertical-align: middle;
  border: none;
}
body table.timeline th + th,
body table.timeline td + td {
  border-left: #999 1px dotted;
}
body table.timeline td.row-2 {
  text-align: center;
  padding: 10px 15px;
}
body table.timeline td.row-2:first-child {
  border-left: none;
}
body a {
  color: #0f78d8;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body h2 {
  text-align: justify;
  font-size: medium;
  margin-bottom: 1.5rem;
}
body p {
  text-align: justify;
  margin: 0;
}

.noborder {
  padding: 0;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
  border: 0;
}

.btnArea {
  width: 300px;
  text-align: center;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.btnArea li {
  line-height: 1;
  width: 100%;
  text-align: center;
}
.btnArea li.disabled {
  opacity: 0.33;
}
.btnArea li .button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 3rem;
  padding: 0 2em;
  overflow: hidden;
  font-weight: bold;
  background-color: #0f78d8;
  border: #0f78d8 1px solid;
  border-radius: 50vw;
}
.btnArea li .button a {
  color: #fff;
  text-decoration: none;
}
.btnArea li .button::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: width 0.3s ease;
}
.btnArea li .button:hover::before {
  width: 100%;
}
.btnArea li .button:hover a {
  color: #0f78d8;
}
.btnArea li .button:not(:hover)::before {
  width: 0;
}
.btnArea li .deadline p {
  text-align: center;
}

.inner-list {
  margin-top: 1.5rem;
}
.inner-list li {
  margin-bottom: 0.7rem;
}
.inner-list li::before {
  content: "○";
  margin-right: 0.2rem;
  color: #222;
}

.picture {
  text-align: center;
}
.picture img {
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
  border: 1px solid #999;
}

section.who ul {
  margin-left: 1.5rem;
}
section.who ul li {
  margin-bottom: 0.2rem;
}

section.organizer div {
  margin: 1.5rem 0;
}

iframe.map {
  width: 90%;
  height: 250px;
  border: none;
  /* 画面幅が768px以下の時（タブレット・スマホ） */
}
@media (max-width: 768px) {
  iframe.map {
    width: 100%; /* 横幅いっぱいにする */
    height: 250px; /* 高さを調整 */
  }
}

.side-pic {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  /* 小さい画面では高さを抑える */
}
.side-pic .facility-pic {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.side-pic .facility-pic .pic-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.side-pic .facility-pic .full {
  flex-basis: 100%;
}
.side-pic .facility-pic a {
  min-height: 200px;
}
.side-pic .facility-pic a:hover img {
  filter: brightness(1.2); /* 明るさを1.2倍に */
  transition: 0.3s;
}
.side-pic .facility-pic a img {
  width: auto;
  height: 260px;
  border-radius: 4px;
  border: 1px solid #999;
}
.side-pic .facility-pic .break {
  flex-basis: 100%;
  height: 0;
}
.side-pic .facility-pic .thumb-caption {
  background: #0d63b2;
  color: #fff;
  padding: 0.5rem 0.6rem;
  font-size: 0.95rem;
  text-align: center;
}
@media (max-width: 600px) {
  .side-pic .facility-pic img {
    height: 140px;
  }
  .side-pic .side-pic .facility-pic {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.when-where a:hover img {
  filter: brightness(1.1); /* 明るさを1.2倍に */
  transition: 0.3s;
}
.when-where img.map {
  width: auto;
  max-width: 90%;
  border-radius: 4px;
  border: 1px solid #999;
}

.registration-wrapper {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-around;
}/*# sourceMappingURL=style.css.map */