/* [project]/src/components/Header.module.css [app-client] (css) */
.Header-module__hBw1pG__header {
  z-index: 1000;
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  background: #ffffffbf;
  border-bottom: 1px solid #ffffff1a;
  align-items: center;
  width: 100%;
  height: 80px;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.Header-module__hBw1pG__headerScrolled {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #ffffffbf;
  height: 70px;
  box-shadow: 0 4px 30px #00000014;
}

.Header-module__hBw1pG__container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.Header-module__hBw1pG__logo {
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  display: flex;
}

.Header-module__hBw1pG__logoImage {
  object-fit: contain;
  width: auto;
  height: 48px;
}

.Header-module__hBw1pG__logoText {
  color: var(--text);
  letter-spacing: 1px;
  font-size: 1.25rem;
  font-weight: 700;
}

.Header-module__hBw1pG__nav {
  align-items: center;
  gap: 1.25rem;
  display: flex;
}

@media (max-width: 1200px) {
  .Header-module__hBw1pG__nav {
    gap: .75rem;
  }
}

.Header-module__hBw1pG__navItem {
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  padding: 0;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.Header-module__hBw1pG__navItem:hover {
  color: var(--primary);
}

.Header-module__hBw1pG__dropdownContainer {
  align-items: center;
  height: 80px;
  display: flex;
  position: relative;
}

.Header-module__hBw1pG__dropdownTrigger {
  height: 100%;
}

.Header-module__hBw1pG__dropdownMenu {
  background: var(--bg);
  width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: .75rem;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%)translateY(10px);
}

.Header-module__hBw1pG__menuVisible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%)translateY(0);
}

.Header-module__hBw1pG__dropdownItem {
  color: var(--text);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

.Header-module__hBw1pG__dropdownItem:hover {
  background: var(--bg-offset);
  color: var(--primary);
  padding-left: 1.25rem;
}

.Header-module__hBw1pG__dropdownSubItem {
  color: #636e72;
  padding: .6rem 1.25rem .6rem 2.2rem;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  display: block;
  position: relative;
}

.Header-module__hBw1pG__dropdownSubItem:before {
  content: "∟";
  color: #dfe6e9;
  position: absolute;
  left: 1.1rem;
}

.Header-module__hBw1pG__dropdownSubItem:hover {
  color: var(--primary);
  background: #fbfbfc;
  padding-left: 2.5rem;
}

.Header-module__hBw1pG__mobileMenuBtn {
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  display: none;
}

@media (max-width: 768px) {
  .Header-module__hBw1pG__nav {
    display: none;
  }

  .Header-module__hBw1pG__mobileMenuBtn {
    display: block;
  }

  .Header-module__hBw1pG__logoText {
    font-size: 1rem;
  }
}

.Header-module__hBw1pG__mobileNav {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 1001;
  background: #fffffffa;
  width: 280px;
  max-width: 80%;
  height: 100vh;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
  position: fixed;
  top: 0;
  right: 0;
  overflow-y: auto;
  transform: translateX(100%);
  box-shadow: -10px 0 30px #0000001a;
}

.Header-module__hBw1pG__mobileNavOpen {
  transform: translateX(0);
}

.Header-module__hBw1pG__mobileBackdrop {
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  background: #0000004d;
  width: 100%;
  height: 100vh;
  transition: all .4s;
  position: fixed;
  top: 0;
  left: 0;
}

.Header-module__hBw1pG__mobileBackdropVisible {
  opacity: 1;
  visibility: visible;
}

.Header-module__hBw1pG__mobileNavContent {
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  display: flex;
}

.Header-module__hBw1pG__mobileMenuItem {
  border-bottom: 1px solid #0000000d;
  padding-bottom: 1rem;
}

.Header-module__hBw1pG__mobileMenuLink, .Header-module__hBw1pG__mobileMenuTrigger {
  width: 100%;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.Header-module__hBw1pG__mobileSubMenu {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-left: 1.5rem;
  display: flex;
}

.Header-module__hBw1pG__mobileSubItem {
  color: #636e72;
  font-size: 1rem;
  text-decoration: none;
  transition: color .3s;
}

.Header-module__hBw1pG__mobileSubItem:hover {
  color: var(--primary);
}

.Header-module__hBw1pG__mobileGrandSubMenu {
  flex-direction: column;
  gap: .8rem;
  padding: .5rem 0 .8rem 1rem;
  display: flex;
}

.Header-module__hBw1pG__mobileGrandSubItem {
  color: #636e72;
  opacity: .8;
  font-size: .95rem;
  text-decoration: none;
}

.Header-module__hBw1pG__rightSection {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.Header-module__hBw1pG__loginBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
  border: none;
  border-radius: 20px;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  box-shadow: 0 4px 12px #06c75540;
}

.Header-module__hBw1pG__loginBtn:hover {
  background: linear-gradient(135deg, #05b34c 0%, #00a000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #06c75559;
}

.Header-module__hBw1pG__userBadgeContainer {
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.Header-module__hBw1pG__userBadgeBtn {
  cursor: pointer;
  background: #ffffffe6;
  border: 1px solid #00000014;
  border-radius: 24px;
  align-items: center;
  gap: .6rem;
  padding: .35rem .75rem .35rem .4rem;
  transition: all .25s;
  display: flex;
  box-shadow: 0 2px 8px #0000000d;
}

.Header-module__hBw1pG__userBadgeBtn:hover {
  background: #fff;
  border-color: #06c755;
  box-shadow: 0 4px 12px #06c75526;
}

.Header-module__hBw1pG__userAvatar {
  object-fit: cover;
  color: #fff;
  background: #06c755;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
}

.Header-module__hBw1pG__userName {
  color: #2c3e50;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100px;
  font-size: .9rem;
  font-weight: 700;
  overflow: hidden;
}

.Header-module__hBw1pG__roleTag {
  border-radius: 12px;
  padding: .15rem .5rem;
  font-size: .75rem;
  font-weight: 700;
}

.Header-module__hBw1pG__roleStudent {
  color: #0369a1;
  background: #e0f2fe;
}

.Header-module__hBw1pG__roleTeacher {
  color: #b45309;
  background: #fef3c7;
}

.Header-module__hBw1pG__userDropdown {
  z-index: 1005;
  background: #fff;
  border: 1px solid #00000014;
  border-radius: 16px;
  width: 240px;
  padding: .75rem;
  animation: .2s Header-module__hBw1pG__fadeIn;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 10px 30px #00000026;
}

.Header-module__hBw1pG__userDropdownHeader {
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: .5rem;
  padding: .75rem;
}

.Header-module__hBw1pG__dropdownTitle {
  color: #0f172a;
  font-size: .95rem;
  font-weight: 800;
}

.Header-module__hBw1pG__dropdownSub {
  color: #64748b;
  margin-top: .2rem;
  font-size: .8rem;
}

.Header-module__hBw1pG__dropdownItemBtn {
  color: #334155;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: .6rem;
  width: 100%;
  padding: .65rem .75rem;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.Header-module__hBw1pG__dropdownItemBtn:hover {
  color: #06c755;
  background: #f8fafc;
}

.Header-module__hBw1pG__logoutBtn {
  color: #ef4444;
}

.Header-module__hBw1pG__logoutBtn:hover {
  color: #dc2626;
  background: #fef2f2;
}

.Header-module__hBw1pG__mobileAuthCard {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  padding: 1rem;
}

.Header-module__hBw1pG__mobileUserHeader {
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  display: flex;
}

.Header-module__hBw1pG__mobileLogoutBtn {
  color: #991b1b;
  cursor: pointer;
  background: #fee2e2;
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: .6rem;
  font-size: .9rem;
  font-weight: 700;
}

/* [project]/src/components/auth/LineLoginModal.module.css [app-client] (css) */
.LineLoginModal-module__AA6ELq__overlay {
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  background: #0f172a99;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 1.25rem;
  animation: .25s cubic-bezier(.16, 1, .3, 1) LineLoginModal-module__AA6ELq__fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

@keyframes LineLoginModal-module__AA6ELq__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.LineLoginModal-module__AA6ELq__modalCard {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #fffffff2;
  border: 1px solid #fffc;
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  animation: .3s cubic-bezier(.16, 1, .3, 1) LineLoginModal-module__AA6ELq__slideUp;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px #00000040, 0 0 30px #06c75526;
}

@keyframes LineLoginModal-module__AA6ELq__slideUp {
  from {
    opacity: 0;
    transform: translateY(20px)scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.LineLoginModal-module__AA6ELq__closeBtn {
  color: #64748b;
  cursor: pointer;
  z-index: 10;
  background: #0000000d;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.LineLoginModal-module__AA6ELq__closeBtn:hover {
  color: #0f172a;
  background: #0000001a;
  transform: rotate(90deg);
}

.LineLoginModal-module__AA6ELq__headerBanner {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #06c755 0%, #00b900 100%);
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.LineLoginModal-module__AA6ELq__headerBanner:after {
  content: "";
  background: #fff;
  border-radius: 50% 50% 0 0;
  height: 40px;
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -20px;
}

.LineLoginModal-module__AA6ELq__lineLogoCircle {
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto .75rem;
  display: flex;
  box-shadow: 0 8px 20px #00000026;
}

.LineLoginModal-module__AA6ELq__lineLogoIcon {
  fill: #06c755;
  width: 38px;
  height: 38px;
}

.LineLoginModal-module__AA6ELq__modalTitle {
  letter-spacing: -.02em;
  margin: 0 0 .25rem;
  font-size: 1.4rem;
  font-weight: 800;
}

.LineLoginModal-module__AA6ELq__modalSubtitle {
  opacity: .9;
  margin: 0;
  font-size: .85rem;
}

.LineLoginModal-module__AA6ELq__bodyContent {
  padding: 1.5rem 1.75rem 2rem;
}

.LineLoginModal-module__AA6ELq__roleTabs {
  background: #f1f5f9;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  padding: 4px;
  display: flex;
}

.LineLoginModal-module__AA6ELq__tabBtn {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  padding: .75rem .5rem;
  font-size: .95rem;
  font-weight: 600;
  transition: all .25s;
  display: flex;
}

.LineLoginModal-module__AA6ELq__tabActive {
  color: #0f172a;
  background: #fff;
  box-shadow: 0 4px 12px #00000014;
}

.LineLoginModal-module__AA6ELq__roleDesc {
  color: #64748b;
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  line-height: 1.5;
}

.LineLoginModal-module__AA6ELq__lineLoginBtn {
  color: #fff;
  cursor: pointer;
  background: #06c755;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
  height: 52px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  display: flex;
  box-shadow: 0 8px 20px #06c7554d;
}

.LineLoginModal-module__AA6ELq__lineLoginBtn:hover {
  background: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px #06c75566;
}

.LineLoginModal-module__AA6ELq__lineLoginBtn:active {
  transform: translateY(0);
}

.LineLoginModal-module__AA6ELq__footerNotes {
  color: #94a3b8;
  text-align: center;
  margin-top: 1.25rem;
  font-size: .75rem;
  line-height: 1.4;
}

/* [project]/src/components/Footer.module.css [app-client] (css) */
.Footer-module__S6Hkya__footer {
  color: #2d3436;
  background: #f1f2f6;
  border-top: 1px solid #eee;
  padding: 5rem 2rem 2rem;
}

.Footer-module__S6Hkya__grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.Footer-module__S6Hkya__logoArea {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.Footer-module__S6Hkya__logo {
  align-items: center;
  display: flex;
}

.Footer-module__S6Hkya__logoImage {
  object-fit: contain;
  width: auto;
  height: 100px;
}

.Footer-module__S6Hkya__desc {
  opacity: .7;
  font-size: .9rem;
  line-height: 1.8;
}

.Footer-module__S6Hkya__title {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
}

.Footer-module__S6Hkya__title:after {
  content: "";
  background: var(--primary);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.Footer-module__S6Hkya__links {
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  display: flex;
}

.Footer-module__S6Hkya__links a {
  opacity: .7;
  transition: var(--transition);
}

.Footer-module__S6Hkya__links a:hover {
  opacity: 1;
  color: var(--primary);
  transform: translateX(5px);
}

.Footer-module__S6Hkya__contactInfo {
  opacity: .7;
  flex-direction: column;
  gap: 1rem;
  font-size: .9rem;
  display: flex;
}

.Footer-module__S6Hkya__bottom {
  text-align: center;
  opacity: .5;
  border-top: 1px solid #0000000d;
  margin-top: 5rem;
  padding-top: 2rem;
  font-size: .875rem;
}

/*# sourceMappingURL=src_components_0co7kxp._.css.map*/