* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

img {
  display: block;
}

body {
  background: #f9f9f9;
  color: #333;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  margin-right: 20px;
  font-size: 20px;
  color: #858383;
}
header .logo:hover {
  color: black;
}

.main-page header nav a {
  margin-left: 25px;
  font-weight: 500;
  color: #858383;
}
.main-page header nav a:hover {
  color: black;
}

footer {
  background: #eee;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.main-page #main {
  background: #e0f7fa;
  padding: 100px 0;
  text-align: center;
}
.main-page #main h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.main-page #main button {
  margin-top: 20px;
  padding: 15px 30px;
  background: #00bfa5;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background 0.3s;
  cursor: pointer;
}
.main-page #main button:hover {
  background: #00897b;
}
.main-page .section {
  padding: 80px 0;
}
.main-page .title {
  margin-bottom: 20px;
}
.main-page #about p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.main-page #about p:last-child {
  margin-bottom: 0;
}
.main-page #projects .project-list {
  display: flex;
  margin-top: 40px;
}
.main-page #projects .project-list:nth-child(even) {
  justify-content: flex-end;
}
.main-page #projects .project-list .project-item {
  height: 100%;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.main-page #projects .project-list .project-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.5s;
}
.main-page #projects .project-list .project-item h3 {
  margin-bottom: 10px;
}
.main-page #projects .project-list .project-item img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.5s;
}
.main-page #projects .project-list .project-item:hover img {
  transform: scale(1);
}
.main-page #projects .project-list .project-item .project-link {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #333;
  transition: 0.3s;
}
.main-page #projects .project-list .project-item .project-link:hover {
  background-color: #333;
  color: white;
}
.main-page #projects .project-list .project-item p {
  margin-bottom: 15px;
  font-size: 15px;
}
.main-page #projects .project-list .project-item i {
  margin-right: 5px;
}
.main-page .swiper {
  height: 110px;
}
.main-page .swiper .swiper-slide {
  height: 100px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-page .swiper .swiper-slide img {
  width: 70px;
  height: auto;
  transition: transform 0.3s ease;
}
.main-page .swiper .swiper-slide img:hover {
  transform: scale(1.2);
}
.main-page .contact li {
  margin-bottom: 10px;
}
.main-page .contact li i {
  font-size: 20px;
  margin-right: 10px;
}
.main-page .contact li span {
  font-size: 15px;
  letter-spacing: 1px;
}
.main-page .contact li a {
  display: inline-block;
}
.main-page .contact .github-btn {
  height: 50px;
  margin-top: 15px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
}
.main-page .contact .github-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.main-page #scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  padding: 10px 15px;
  font-size: 20px;
  background: #00bfa5;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
  z-index: 10;
}
.main-page #scrollToTopBtn:hover {
  background: #00897b;
}

.note-page main {
  padding: 20px;
}
.note-page main .nav {
  width: 100%;
  margin-bottom: 10px;
  margin-right: 20px;
  display: flex;
  flex-direction: row-reverse;
}
.note-page main .nav li {
  margin-right: 20px;
  width: 100px;
  height: 26px;
}
.note-page main .nav li a {
  display: block;
  width: 100px;
  height: 100%;
  font-weight: bold;
  font-size: 10px;
  line-height: 25px;
  color: #aaa;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.note-page main .nav li.on a {
  background: linear-gradient(45deg, #67acfa, #586bf8);
  box-shadow: 0px 5px 20px rgba(0, 110, 255, 0.527);
  color: #fff;
}
.note-page main section {
  width: 100%;
}
.note-page main section article {
  width: 25%;
  box-sizing: border-box;
  padding: 15px;
  cursor: pointer;
}
.note-page main section article:hover {
  transition: transform 0.5s;
  transform: scale(1.1);
}
.note-page main section article div {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 15px;
}
.note-page main section article div img {
  width: 100%;
  border-radius: 5px;
}
.note-page main section article div h2 {
  margin-top: 15px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px;
  color: #444;
  margin-bottom: 5px;
}
.note-page main section article div p {
  font-size: 10px;
  line-height: 1.2;
  color: #777;
  margin-bottom: 15px;
}
.note-page #scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  padding: 10px 15px;
  font-size: 20px;
  background: #0069bf;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
  z-index: 10;
}
.note-page #scrollToTopBtn:hover {
  background: #003789;
}

.note-detail-page main {
  padding: 20px;
}
.note-detail-page .note-detail {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}
.note-detail-page .note-detail .note-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}
.note-detail-page .note-detail h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #444;
}
.note-detail-page .note-detail iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: white;
  display: block;
  margin: 30px 0;
}
.note-detail-page .note-detail iframe.swiper-promotion {
  height: 690px;
}
.note-detail-page .note-detail iframe.swiper-coverflow {
  height: 590px;
}
.note-detail-page .note-detail img {
  padding: 15px;
}
.note-detail-page .note-detail pre {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 5px;
  font-size: 13px;
  overflow-x: auto;
}
.note-detail-page .note-detail pre code {
  font-family: "Courier New", monospace;
}
.note-detail-page .note-detail p {
  margin-bottom: 15px;
  font-size: 14px;
}
.note-detail-page .note-detail ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.note-detail-page .note-detail ul li {
  font-size: 14px;
}
.note-detail-page .note-detail .scss-code {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.note-detail-page .note-detail .scss-code > div {
  flex: 1;
} /*# sourceMappingURL=main.css.map */
