@charset "UTF-8";

@font-face {
  font-family: kt;
  src: url(../assets/fonts/kt.ttf);
}

body {
  font-family: kt;
  margin: 0;
  padding: 0;
}

header {
  padding: 10px;
  border-bottom: 2px solid #0088ff;
}
header div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
header h1 {
  font-size: 24px;
  margin: 0;
}
header img {
  vertical-align: middle;
}

.menu {
  display: none;
}
.menu-btn {
  position: absolute;
  right: 70px;
  top: 45px;
  display: flex;
  z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #000000;
  position: absolute;
}
.menu-btn span:before {
  bottom: 10px;
}
.menu-btn span:after {
  top: 10px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #000000;
}
.menu-content ul {
  padding: 70px 10px 0;
  margin-top: 10%;
}
.menu-content ul li {
  border-bottom: solid 1px #000000;
  list-style: none;
}
.menu-content ul li a {
  font-family: kt;
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  padding: 9px 250px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu-content {
  width: 90%;
  height: 200%;
  position: fixed;
  left: 10%;
  top: -85%;
  z-index: 80;
  background-color: #ffffff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
#menu-btn-check:checked ~ .menu-content {
  left: 10%;
  opacity: 1;
  visibility: visible;
}
.menu-bg {
  position: fixed;
  top: 0;
  left: -10px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s;
  z-index: 80;
  pointer-events: none;
}

#menu-btn-check:checked ~ .menu-bg {
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

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

h1 {
  font-size: 2rem;
  margin: 20px 0 10px 0;
  padding-left: 15px;
}

p {
  padding-left: 20px;
}

.header-obj {
  margin: 0 0 0 auto;
}
.header-obj ul {
  list-style: none;
}
.header-obj li {
  display: inline-block;
  padding-right: 20px;
}

.news {
  margin: 10px 0;
  padding: 10px 0;
  text-align: center;
}
.news h1 {
  font-size: 1.5rem;
  margin: 20px 0 10px 0;
  padding-left: 10px;
}
.news ul {
  font-size: 1.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.news li {
  border-bottom: 2px solid #0088ff;
  padding: 10px;
  padding-left: 100px;
  padding-right: 100px;
}
.news-button a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 50px;
  font-size: 1.2rem;
  border: 2px solid #0088ff;
  border-radius: 100px;
  background-color: #0088ff;
  color: #fff;
}
.news-button a::after {
  content: ">";
  position: relative;
  left: 35px;
}

p {
  font-size: 1.2rem;
  margin: 10px 0;
  padding-left: 20px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 355px;
  margin: auto;
  overflow: hidden;
}
.slide-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0;
  transition: all 1s ease-in-out;
  height: 100%;
  object-fit: cover;
}
.center {
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 1;
}
.side {
  width: 40%;
  opacity: 0.3;
  z-index: 1;
}
.left {
  left: 0;
}
.right {
  right: 0;
}

.blue {
  color: #37a2ff;
}

@media screen and (max-width: 480px) {
  .menu {
    display: block;
  }

  .header-obj {
    display: none;
  }

  header div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 5px;
  }

  .slideshow-container {
    zoom: 60%;
  }

  .news ul {
    font-size: 0.8rem;
  }
  .news li {
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .news-button a {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.5rem;
    margin: 20px 0 10px 0;
    padding-left: 15px;
  }

  p {
    font-size: 0.9rem;
    margin: 10px 0;
    padding-left: 20px;
  }

  ul {
    font-size: 0.8rem;
  }
}
