@charset "UTF-8";
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

ul,
li,
ol {
  list-style: none;
}

body {
  background: linear-gradient(135deg, #0f1755 0%, #192385 20%, #3949ab 40%, #1e3c72 60%, #2a5298 80%, #ff9d2f 100%);
  background-size: 400% 400%;
  /* -webkit-animation: luxuryGradient 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
          animation: luxuryGradient 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite; */
  color: white;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

@-webkit-keyframes luxuryGradient {
  0% {
    background-position: 0% 25%;
    -webkit-filter: saturate(100%) brightness(100%);
            filter: saturate(100%) brightness(100%);
  }
  25% {
    background-position: 25% 50%;
    -webkit-filter: saturate(110%) brightness(105%);
            filter: saturate(110%) brightness(105%);
  }
  50% {
    background-position: 100% 75%;
    -webkit-filter: saturate(120%) brightness(110%);
            filter: saturate(120%) brightness(110%);
  }
  75% {
    background-position: 75% 100%;
    -webkit-filter: saturate(110%) brightness(105%);
            filter: saturate(110%) brightness(105%);
  }
  100% {
    background-position: 0% 25%;
    -webkit-filter: saturate(100%) brightness(100%);
            filter: saturate(100%) brightness(100%);
  }
}

@keyframes luxuryGradient {
  0% {
    background-position: 0% 25%;
    -webkit-filter: saturate(100%) brightness(100%);
            filter: saturate(100%) brightness(100%);
  }
  25% {
    background-position: 25% 50%;
    -webkit-filter: saturate(110%) brightness(105%);
            filter: saturate(110%) brightness(105%);
  }
  50% {
    background-position: 100% 75%;
    -webkit-filter: saturate(120%) brightness(110%);
            filter: saturate(120%) brightness(110%);
  }
  75% {
    background-position: 75% 100%;
    -webkit-filter: saturate(110%) brightness(105%);
            filter: saturate(110%) brightness(105%);
  }
  100% {
    background-position: 0% 25%;
    -webkit-filter: saturate(100%) brightness(100%);
            filter: saturate(100%) brightness(100%);
  }
}

/* Add a subtle shimmer effect */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
}

.breadcrumbs a {
  text-decoration: none;
  color: #fff;
}

/* Header Styles */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 7px;
}

.logo img {
  margin-right: 10px;
  width: 40px;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.btn {
  background-color: #64b5f6;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #2196f3;
}

/* Hero Section */
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
}

.hero-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  opacity: 0;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

/* About Section */
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0;
}

.about-content,
.about-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}

h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Curriculum Section */
.curriculum {
  padding: 50px 0;
}

.courses {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.course {
  background-color: #4e6bec;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.course-icon {
  margin-bottom: 20px;
}

.course h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.course p {
  font-size: 16px;
}

/* Testimonials Section */
.testimonials {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.testimonial-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  opacity: 0;
}

.testimonial-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

blockquote {
  font-size: 22px;
  margin-bottom: 20px;
  font-style: italic;
}

cite {
  font-size: 18px;
  font-style: normal;
}

/* Responsive Navigation */
.hamburger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  z-index: 1000;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  header {
    position: relative;
  }
  .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: #333694;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 999;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  nav ul li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  nav ul li a {
    font-size: 20px;
    padding: 10px;
    display: block;
  }
  .btn {
    margin-top: 10px;
    width: 80%;
  }
  /* Hamburger Animation */
  .hamburger-menu.active .bar:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
            transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-5px, -6px);
            transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Footer Styles */
footer {
  color: white;
  padding: 50px 0 20px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.footer-logo svg {
  margin-right: 10px;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.footer-nav,
.footer-contact,
.footer-social {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 15px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #64b5f6;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: white;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-align: center;
}

.footer-nav ul li a:hover {
  color: #64b5f6;
}

.footer-contact p {
  margin-bottom: 15px;
}

.contact-link {
  color: #64b5f6;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #64b5f6;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* Footer Responsive Styles */
@media screen and (max-width: 768px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-nav,
  .footer-contact,
  .footer-social {
    margin-bottom: 30px;
    padding: 0;
  }
  .footer-social {
    margin-bottom: 0;
  }
  .social-icons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  footer {
    padding: 30px 0 15px;
  }
  .footer-logo {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .footer-nav h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .social-icons a {
    font-size: 18px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
  /* Hero Section Responsive */
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 30px 0;
  }
  .hero-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
  .hero-image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
  }
  .hero-image img {
    max-width: 80%;
  }
  h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
  /* About Section Responsive */
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
  .about-content,
  .about-right {
    padding: 10px 0;
  }
  h2 {
    font-size: 28px;
  }
  /* Curriculum Section Responsive */
  .courses {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .course {
    padding: 20px;
  }
  /* Testimonials Section Responsive */
  .testimonials {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
    padding: 30px 0;
  }
  .testimonial-content {
    margin-top: 20px;
  }
  blockquote {
    font-size: 18px;
  }
  .testimonial-image {
    margin-bottom: 20px;
    text-align: center;
  }
}

/* Small Phones */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-image img {
    max-width: 100%;
  }
  .course-icon svg {
    width: 50px;
    height: 50px;
  }
  .course h3 {
    font-size: 20px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 16px;
  }
  .testimonial-image img {
    width: 120px;
    height: 120px;
  }
}

.btn-border-anim {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 16px 32px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 30px;
}

.btn-border-anim::before,
.btn-border-anim::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #64b5f6;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.btn-border-anim::before {
  top: 0;
  left: 0;
}

.btn-border-anim::after {
  bottom: 0;
  right: 0;
}

.btn-border-anim span::before,
.btn-border-anim span::after {
  content: '';
  position: absolute;
  height: 0;
  width: 2px;
  background-color: #64b5f6;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.btn-border-anim span::before {
  top: 0;
  right: 0;
}

.btn-border-anim span::after {
  bottom: 0;
  left: 0;
}

.btn-border-anim:hover::before,
.btn-border-anim:hover::after {
  width: 100%;
}

.btn-border-anim:hover span::before,
.btn-border-anim:hover span::after {
  height: 100%;
}

.btn-border-anim:hover {
  background: rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

.btn-neon {
  position: relative;
  padding: 12px 28px;
  background: transparent;
  color: #00e5ff;
  border: 2px solid #00e5ff;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  -webkit-box-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff, 0 0 30px #00e5ff;
          box-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff, 0 0 30px #00e5ff;
  cursor: pointer;
}

.btn-neon:hover {
  background: #00e5ff;
  color: #050801;
  -webkit-box-shadow: 0 0 5px #00e5ff, 0 0 25px #00e5ff, 0 0 50px #00e5ff, 0 0 100px #00e5ff;
          box-shadow: 0 0 5px #00e5ff, 0 0 25px #00e5ff, 0 0 50px #00e5ff, 0 0 100px #00e5ff;
}

.btn-pulse {
  position: relative;
  background-color: #64b5f6;
  color: white;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  cursor: pointer;
}

.btn-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.6s ease, height 0.6s ease;
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-pulse:hover {
  background-color: #2196f3;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.btn-pulse:hover::before {
  width: 300px;
  height: 300px;
}

.btn-pulse:active {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

/* ============================================
   カード型ニュースレイアウト
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-container {
  margin-bottom: 80px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.section-description {
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.news-card-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.news-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.news-card-image {
  height: 180px;
  background-color: #3949ab;
  position: relative;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.news-card:hover .news-card-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #64b5f6;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.news-card-content {
  padding: 20px;
}

.news-card-title {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.news-card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.news-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #64b5f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.read-more {
  color: #64b5f6;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.read-more:hover {
  color: #2196f3;
}

.read-more i {
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.read-more:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.btn {
  background-color: #64b5f6;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.btn:hover {
  background-color: #2196f3;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.btn-view-all {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.no-news {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .section-container {
    padding: 30px 20px;
  }
  .section-title {
    font-size: 24px;
  }
  .news-card-layout {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

/* オンデマンド学習ページスタイル */
/* ヒーローセクション */
.on-demand-hero {
  background: linear-gradient(135deg, #0f1755 0%, #3949ab 50%, #2a5298 100%);
  padding: 80px 0 50px;
  text-align: center;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-title {
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.page-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* コンテンツコンテナ */
.on-demand-content {
  margin-bottom: 60px;
}

/* コース検索・フィルターセクション */
.course-filter-section {
  margin-bottom: 40px;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.search-box input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 15px;
  border-radius: 25px 0 0 25px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
}

@media (max-width: 768px) {
  .search-box input {
    width: 100%;
  }
}

.search-box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box button {
  background-color: #64b5f6;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: #2196f3;
}

.filter-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 15px;
}

.filter-label {
  color: white;
  font-weight: bold;
  margin-right: 10px;
}

.tag-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.tag-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tag-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.tag-btn.active {
  background-color: #64b5f6;
  font-weight: bold;
}

/* セクションタイトル */
.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  color: white;
}

/* コース一覧グリッド */
.courses-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(350px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* コースカード */
.course-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.course-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.course-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.course-card:hover .course-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.course-level {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.course-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #64b5f6;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.course-new-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #ff5252;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.course-content {
  padding: 20px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.course-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
  color: white;
}

.course-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.course-meta i {
  margin-right: 5px;
  color: #64b5f6;
}

.course-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.course-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instructor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.instructor-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #64b5f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.instructor-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.btn-enroll {
  background-color: rgba(100, 181, 246, 0.2);
  color: #64b5f6;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-enroll:hover {
  background-color: #64b5f6;
  color: white;
}

/* ページネーション */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  gap: 8px;
}

.page-btn {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.page-btn.active {
  background-color: #64b5f6;
  color: white;
}

.page-btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-btn.next {
  width: auto;
  padding: 0 12px;
}

.page-dots {
  color: white;
  margin: 0 5px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  .courses-grid {
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .on-demand-hero {
    padding: 60px 0 40px;
  }
  .page-title {
    font-size: 24px;
  }
  .page-description {
    font-size: 16px;
  }
  .courses-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .course-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .filter-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .filter-label {
    margin-bottom: 10px;
  }
  .section-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .on-demand-hero {
    padding: 50px 0 30px;
  }
  .page-title {
    font-size: 24px;
  }
  .course-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .btn-enroll {
    width: 100%;
    text-align: center;
  }
}

/* ページネーションスタイル */
.news-list-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  gap: 5px;
}

.news-list-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 0 10px;
}

.news-list-pagination .page-numbers.current {
  background-color: #64b5f6;
  color: white;
}

.news-list-pagination .page-numbers:hover:not(.current) {
  background-color: rgba(255, 255, 255, 0.2);
}

.news-list-pagination .prev,
.news-list-pagination .next {
  padding: 0 10px;
}

.news-list-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.news-list-pagination li {
  margin: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .news-list-pagination .page-numbers {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* NEXSUSコンタクトフォームセクション専用CSS */
/* コンタクトヘッダーセクション */
.contact-disc {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.sub-ttl.white.page-ttl {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  color: white;
  letter-spacing: 1px;
}

.sub-ttl.white.page-ttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.text-ttl-ja {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.en-small {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-style: italic;
}

/* パンくずリスト */
.breadcrumbs {
  margin-bottom: 30px;
  padding: 15px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #64b5f6;
}

/* コンタクトフォームセクション */
.contact-form {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* Contact Form 7用カスタマイズ */
.wpcf7 {
  max-width: 800px;
  margin: 0 auto;
}

.wpcf7 label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.wpcf7-form p {
  margin-bottom: 25px;
}

.wpcf7-form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-email {
  width: 100%;
}

.wpcf7-textarea {
  min-height: 150px;
  resize: vertical;
}

/* 送信ボタン */
.wpcf7-submit {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  width: auto;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.wpcf7-submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
          box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.wpcf7-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.wpcf7-spinner {
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* バリデーションエラー */
.wpcf7-not-valid-tip {
  color: #ff5252;
  font-size: 13px;
  margin-top: 5px;
}

.wpcf7-response-output {
  margin: 30px 0 0 0 !important;
  padding: 12px 15px !important;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 1px solid rgba(255, 82, 82, 0.5) !important;
  background-color: rgba(255, 82, 82, 0.1);
  color: #ff5252;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(76, 175, 80, 0.5) !important;
  background-color: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .contact-disc,
  .contact-form {
    padding: 30px 20px;
  }
  .sub-ttl.white.page-ttl {
    font-size: 32px;
  }
  .wpcf7-form-control {
    padding: 12px 15px;
  }
  .wpcf7-submit {
    padding: 12px 25px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contact-disc,
  .contact-form {
    padding: 25px 15px;
  }
  .sub-ttl.white.page-ttl {
    font-size: 28px;
  }
  .text-ttl-ja {
    font-size: 14px;
  }
  .wpcf7-form p {
    margin-bottom: 20px;
  }
}

.line-url {
  color: #fff;
  font-weight: bold;
  border-bottom: solid 2px #fff;
}

/* NEXSUSログインページ専用CSS */
/* ログインヘッダーセクション - コンタクトページと同じスタイルを継承 */
.contact-disc {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.sub-ttl.white.page-ttl {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  color: white;
  letter-spacing: 1px;
}

.sub-ttl.white.page-ttl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.text-ttl-ja {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* ログインフォームセクション */
.contact-form {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 80px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* パスワードリセットフォーム用スタイル */
.swpm-pw-reset-widget-form {
  max-width: 100%;
  margin: 0 auto;
}

.swpm-pw-reset-widget-inside {
  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;
}

.swpm_label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.swpm-text-field {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swpm-text-field:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ログインボタン */
.swpm-pw-reset-submit {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
  margin-top: 10px;
}

.swpm-pw-reset-submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
          box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.swpm-pw-reset-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* 処理中メッセージ */
#swpm_pass_reset_processing_msg {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* エラーメッセージや通知 */
.swpm-reset-pw-error,
.swpm-reset-pw-success {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  margin: 20px 0;
}

.swpm-reset-pw-error {
  border: 1px solid rgba(255, 82, 82, 0.5);
  background-color: rgba(255, 82, 82, 0.1);
  color: #ff5252;
}

.swpm-reset-pw-success {
  border: 1px solid rgba(76, 175, 80, 0.5);
  background-color: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

/* 通常ログイン用のスタイル補完 */
.swpm-login-widget-form {
  max-width: 100%;
  margin: 0 auto;
}

.swpm-login-widget-inside {
  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;
}

.swpm-login-username-label,
.swpm-login-password-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ログインボタン - input要素への適用 */
.swpm-login-form-submit {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
  margin-top: 10px;
}

.swpm-login-form-submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
          box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.swpm-login-form-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.swpm-forgot-pass-link {
  text-align: right;
  margin-top: 5px;
}

.swpm-forgot-pass-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.swpm-forgot-pass-link a:hover {
  color: #64b5f6;
  text-decoration: underline;
}

.swpm-join-us-link {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.swpm-join-us-link a {
  color: #64b5f6;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.swpm-join-us-link a:hover {
  color: #2196f3;
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .contact-disc,
  .contact-form {
    padding: 30px 20px;
  }
  .sub-ttl.white.page-ttl {
    font-size: 32px;
  }
  .swpm-text-field {
    padding: 12px 15px;
  }
  .swpm-pw-reset-submit,
  .swpm-login-submit {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contact-disc,
  .contact-form {
    padding: 25px 15px;
  }
  .sub-ttl.white.page-ttl {
    font-size: 28px;
  }
  .text-ttl-ja {
    font-size: 14px;
  }
}

/* シンプルで確実なアプローチ */
.swpm-remember-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
}

/* チェックボックス自体のスタイリング */
#swpm-rememberme {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

/* チェックされた状態 */
#swpm-rememberme:checked {
  background-color: #64b5f6;
  border-color: #64b5f6;
}

/* チェックマーク */
#swpm-rememberme:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ホバー効果 */
#swpm-rememberme:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(100, 181, 246, 0.5);
}

/* フォーカス時の効果 */
#swpm-rememberme:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
}

/* ラベルのスタイリング */
.swpm-rememberme-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swpm-rember-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.swpm-rememberme-label:hover .swpm-rember-label {
  color: white;
}

/* NEXSUSメンバーシップ登録案内ページ用CSS */
/* ヒーローセクション - 既存のコンタクトディスクスタイルを拡張 */
.membership-hero {
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.membership-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 85, 0.8) 0%, rgba(25, 35, 133, 0.8) 50%, rgba(33, 150, 243, 0.5) 100%);
  z-index: -1;
}

.membership-hero .sub-ttl.white.page-ttl {
  font-size: 48px;
  margin-bottom: 30px;
}

.membership-hero .sub-ttl.white.page-ttl::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120px;
}

.membership-hero .text-ttl-ja {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

/* セクションコンテナ拡張 */
.section-container {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 50px 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* メンバーシップ特典 */
.benefits-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 25px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-align: center;
}

.benefit-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 36px;
  color: #64b5f6;
  margin-bottom: 20px;
  height: 60px;
  width: 60px;
  background: rgba(100, 181, 246, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
}

.benefit-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

.benefit-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

/* プラン */
.plans-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.plan-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.featured-plan {
  border: 2px solid #64b5f6;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 10px 30px rgba(100, 181, 246, 0.3);
          box-shadow: 0 10px 30px rgba(100, 181, 246, 0.3);
  z-index: 1;
}

.featured-plan:hover {
  -webkit-transform: scale(1.05) translateY(-10px);
          transform: scale(1.05) translateY(-10px);
}

.plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #64b5f6;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.plan-header {
  padding: 30px 25px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.plan-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.plan-price {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.price-amount {
  font-size: 36px;
  font-weight: bold;
  color: #64b5f6;
}

.price-period,
.price-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.plan-features {
  padding: 30px 25px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.plan-features li i {
  color: #64b5f6;
  margin-right: 10px;
  font-size: 16px;
}

.plan-footer {
  padding: 0 25px 30px;
  text-align: center;
}

.plan-btn {
  width: 100%;
  padding: 12px 0;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  font-weight: 600;
}

.featured-plan .plan-btn {
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

/* FAQ セクションのスタイル */
.faq-container {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(100, 181, 246, 0.1);
  border-radius: 50%;
  color: #64b5f6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  padding: 0 25px;
}

.faq-answer-content {
  padding-bottom: 20px;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* FAQ アクティブスタイル */
.faq-item.active .faq-question {
  background: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-toggle i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-item.active .faq-toggle {
  background: rgba(100, 181, 246, 0.3);
}

/* 全体的なスペーシング改善 */
.section-container {
  padding: 60px 50px;
  margin-bottom: 80px;
}

.benefits-grid {
  gap: 40px;
  margin-top: 50px;
}

.benefit-card {
  padding: 35px 30px;
  height: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.plans-container {
  gap: 40px;
  margin-top: 60px;
}

.plan-header {
  padding: 40px 30px 30px;
}

.plan-features {
  padding: 35px 30px;
}

.plan-footer {
  padding: 0 30px 40px;
}

/* モダンなCTAセクション */
.cta-container {
  padding: 70px 50px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.9) 0%, rgba(25, 118, 210, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
}

.cta-title,
.cta-text,
.cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-text {
  margin-bottom: 30px;
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 50px;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 16px 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 16px;
  text-align: center;
}

/* アニメーションの洗練 */
.benefit-card:hover,
.plan-card:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: rgba(100, 181, 246, 0.2);
}

/* セクションタイトルの強化 */
.section-title {
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

/* レスポンシブ改善 */
@media screen and (max-width: 768px) {
  .section-container {
    padding: 50px 30px;
  }
  .section-title {
    font-size: 28px;
  }
  .cta-container {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 480px) {
  .section-container {
    padding: 40px 25px;
  }
  .section-title {
    font-size: 24px;
  }
  .cta-container {
    padding: 40px 25px;
  }
}

/* レスポンシブ */
@media screen and (max-width: 991px) {
  .plans-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .plan-card,
  .featured-plan {
    max-width: 450px;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 30px;
  }
  .featured-plan {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .featured-plan:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@media screen and (max-width: 768px) {
  .section-container {
    padding: 40px 25px;
  }
  .membership-hero .sub-ttl.white.page-ttl {
    font-size: 36px;
  }
  .membership-hero .text-ttl-ja {
    font-size: 16px;
  }
  .benefits-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .cta-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .section-container {
    padding: 30px 20px;
  }
  .membership-hero .sub-ttl.white.page-ttl {
    font-size: 30px;
  }
  .benefit-card {
    padding: 25px 20px;
  }
  .plan-card,
  .featured-plan {
    max-width: 100%;
  }
  .cta-container {
    padding: 40px 25px;
  }
  .cta-title {
    font-size: 24px;
  }
  .cta-text {
    font-size: 16px;
  }
}

/* NEXSUSプロフィール編集フォーム専用CSS */
/* フォーム全体のスタイリング */
#swpm-profile-form {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* フォーム行のスタイリング */
.swpm-form-row {
  margin-bottom: 25px;
}

/* ラベルのスタイリング */
.swpm-form-label-wrap {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* 入力フィールドのスタイリング */
.swpm-form-field {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swpm-form-field:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ユーザー名表示 */
.swpm-form-username-input-wrap {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  width: 95%;
}

.swpm-form-username-input-wrap input {
  width: 100% !important;
  background: transparent;
}

/* セレクトボックスのスタイリング */
.swpm-profile-form-country {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23ffffff"/></svg>');
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.swpm-profile-form-country:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.swpm-profile-form-country option {
  background-color: #1a237e;
  color: white;
}

/* 会員レベル表示 */
.swpm-form-membership-level-input-wrap {
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* 送信ボタン */
.swpm-profile-submit-button {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.swpm-profile-submit-button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
          box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.swpm-profile-submit-button:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .swpm-form-field,
  .swpm-profile-form-country,
  .swpm-form-username-input-wrap,
  .swpm-form-membership-level-input-wrap {
    padding: 12px 15px;
  }
  .swpm-profile-submit-button {
    padding: 12px 25px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .swpm-form-row {
    margin-bottom: 20px;
  }
  .swpm-form-label-wrap {
    font-size: 14px;
  }
}

/* エラーメッセージのスタイリング */
.swpm-error {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  margin: 20px 0;
  border: 1px solid rgba(255, 82, 82, 0.5);
  background-color: rgba(255, 82, 82, 0.1);
  color: #ff5252;
}

/* 成功メッセージのスタイリング */
.swpm-success {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  margin: 20px 0;
  border: 1px solid rgba(76, 175, 80, 0.5);
  background-color: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

/* NEXSUSログイン済みウィジェット専用CSS */
/* ウィジェット全体のスタイリング */
.swpm-login-widget-logged {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ログイン情報の各行 */
.swpm-logged-username,
.swpm-logged-status,
.swpm-logged-membership,
.swpm-logged-expiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ラベルのスタイリング */
.swpm-logged-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  width: 150px;
  min-width: 150px;
  font-size: 15px;
}

/* 値のスタイリング */
.swpm-logged-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* アクティブな状態表示 */
.swpm-logged-status-value {
  color: #4CAF50;
  font-weight: 600;
}

/* プロフィール編集リンク */
.swpm-edit-profile-link {
  margin-bottom: 15px;
}

.swpm-edit-profile-link a {
  display: inline-block;
  background: rgba(100, 181, 246, 0.2);
  color: #64b5f6;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.swpm-edit-profile-link a:hover {
  background-color: #64b5f6;
  color: white;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
          box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
}

/* ログアウトリンク */
.swpm-logged-logout-link {
  text-align: center;
}

.swpm-logged-logout-link a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.swpm-logged-logout-link a:hover {
  background-color: rgba(255, 82, 82, 0.2);
  color: #ff5252;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* 下部マージンの調整 */
.swpm-margin-bottom-10 {
  margin-bottom: 15px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .swpm-login-widget-logged {
    padding: 25px 20px;
  }
  .swpm-logged-username,
  .swpm-logged-status,
  .swpm-logged-membership,
  .swpm-logged-expiry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .swpm-logged-label {
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .swpm-logged-value {
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .swpm-login-widget-logged {
    padding: 20px 15px;
  }
}

.swpm-logged-username-value::after {
  display: inline-block;
  content: '様';
  color: #fff;
  font-weight: bold;
  padding-left: 5px;
}

.profile-edit-wrapper {
  padding: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* NEXSUS著者プロフィールページ専用CSS */
/* プロフィールヒーローセクション */
.profile-hero {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 85, 0.7) 0%, rgba(57, 73, 171, 0.7) 50%, rgba(42, 82, 152, 0.7) 100%);
  z-index: -1;
  border-radius: 15px;
}

.profile-title {
  font-size: 42px;
  font-weight: bold;
  color: white;
  margin: 0;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.profile-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  border-radius: 3px;
}

/* プロフィールコンテナ */
.author-profile-container {
  margin-bottom: 60px;
}

/* プロフィール情報セクション */
.profile-info-section {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* プロフィールヘッダー */
.profile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(100, 181, 246, 0.5);
}

.profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-header-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.profile-header-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.profile-occupation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.occupation-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.job-tag {
  background-color: rgba(33, 150, 243, 0.3);
  color: #64b5f6;
}

.side-job-tag {
  background-color: rgba(76, 175, 80, 0.3);
  color: #81c784;
}

.profile-company {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.profile-company i {
  color: #64b5f6;
  margin-right: 5px;
}

.profile-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SNSリンク */
.profile-social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.profile-social-links a {
  text-decoration: none;
}

.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.line-link:hover {
  background-color: #06C755;
  color: white;
}

.twitter-link:hover {
  background-color: #1DA1F2;
  color: white;
}

.instagram-link:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.facebook-link:hover {
  background-color: #3b5998;
  color: white;
}

/* プロフィール詳細情報 */
.profile-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.profile-section {
  padding-bottom: 20px;
}

.profile-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 15px;
  color: white;
  border-left: 3px solid #64b5f6;
}

.profile-info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.profile-info-item {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.profile-info-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.info-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.info-value {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.profile-text-content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 15px;
}

/* 投稿セクション */
.author-posts-section,
.author-courses-section {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.section-title {
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  color: white;
}

.no-posts-message {
  padding: 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.view-all-courses {
  text-align: center;
  margin-top: 30px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .profile-hero {
    padding: 30px 20px;
  }
  .profile-title {
    font-size: 28px;
  }
  .profile-info-section,
  .author-posts-section,
  .author-courses-section {
    padding: 30px 20px;
  }
  .profile-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .profile-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .profile-occupation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profile-info-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .profile-hero {
    padding: 25px 15px;
  }
  .profile-title {
    font-size: 24px;
  }
  .profile-info-section,
  .author-posts-section,
  .author-courses-section {
    padding: 25px 15px;
  }
  .profile-header-info h2 {
    font-size: 22px;
  }
  .profile-image {
    width: 120px;
    height: 120px;
  }
  .section-title {
    font-size: 20px;
  }
}

/* ユーザーリスト用スタイル */
.user-list-hero {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
}

.user-list-title {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.user-list-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.user-list-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

/* フィルターセクション */
.user-filter-section {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 40px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.search-box input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 15px;
  border-radius: 25px 0 0 25px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
}

.search-box input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-box button {
  background-color: #64b5f6;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.search-box button:hover {
  background-color: #2196f3;
}

.clear-filters {
  display: inline-block;
  margin-bottom: 20px;
  color: #64b5f6;
  text-decoration: none;
  font-size: 14px;
}

.clear-filters:hover {
  text-decoration: underline;
}

.filter-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 15px;
}

.filter-label {
  color: white;
  font-weight: bold;
  margin-right: 10px;
}

.tag-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.tag-btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.tag-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.tag-btn.active {
  background-color: #64b5f6;
  font-weight: bold;
}

/* ユーザーカードグリッド */
.users-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  padding-top: 50px;
}

.user-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  height: 100%;
}

.user-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.user-card-link {
  display: block;
  text-decoration: none;
  color: white;
  height: 100%;
}

.user-card-image {
  height: 180px;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.user-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.user-card:hover .user-card-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.user-card-content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100% - 180px);
}

.user-card-name {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.user-card-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.job-tag,
.side-job-tag {
  background-color: rgba(100, 181, 246, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
}

.side-job-tag {
  background-color: rgba(255, 152, 0, 0.2);
}

.user-card-view-profile {
  margin-top: auto;
  color: #64b5f6;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.user-card-view-profile i {
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.user-card:hover .user-card-view-profile i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.no-users-found {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  grid-column: 1 / -1;
}

/* ページネーション */
.user-list-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.user-list-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.user-list-pagination li {
  margin: 0;
}

.user-list-pagination a,
.user-list-pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 0 10px;
}

.user-list-pagination span.current {
  background-color: #64b5f6;
  color: white;
}

.user-list-pagination a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .user-list-title {
    font-size: 28px;
  }
  .user-list-description {
    font-size: 16px;
  }
  .users-grid {
    -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  .filter-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .filter-label {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .users-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .user-card-image {
    height: 150px;
  }
}

/* 拡張フィルター機能用スタイル */
.filter-accordion {
  margin-top: 20px;
}

.filter-toggle {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.filter-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.filter-toggle i {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.filter-toggle.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filter-panel {
  display: none;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group-job {
  display: none;
}

.filter-heading {
  font-size: 16px;
  color: white;
  margin-bottom: 10px;
  font-weight: 500;
}

.filter-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.filter-options select {
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-size: 14px;
}

.filter-options select option {
  color: #000;
}

.filter-options select:focus {
  outline: none;
  border-color: #64b5f6;
}

.gender-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.gender-options label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.gender-options input[type="radio"] {
  margin-right: 6px;
}

.filter-options label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.filter-options input[type="checkbox"] {
  margin-right: 6px;
}

.filter-actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.btn-apply-filter {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-apply-filter:hover {
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.search-results-count {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: right;
  position: absolute;
}

/* ユーザーカード追加スタイル */
.user-card-info {
  margin-bottom: 15px;
}

.user-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.age-tag,
.gender-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.user-card-excerpt {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .gender-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.search-target-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}

.search-target-options label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

.search-target-options label input {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .search-target-options label {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

/* 
* 利用規約・プライバシーポリシーページ用スタイル
* このスタイルはNEXSUSの既存デザインに合わせています
*/
/* 共通ページコンテナ */
.terms-page-container,
.privacy-page-container {
  padding: 50px 0;
  color: white;
}

/* ヘッダーセクション */
.terms-header,
.privacy-header {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-align: center;
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  letter-spacing: 1px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.page-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* コンテンツコンテナ */
.terms-content,
.privacy-content {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 40px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* セクションスタイル */
.terms-section,
.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section:last-child,
.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h2,
.privacy-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #64b5f6;
  padding-left: 15px;
  border-left: 3px solid #64b5f6;
}

.terms-section p,
.privacy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.terms-section ol,
.privacy-section ol,
.terms-section ul,
.privacy-section ul {
  padding-left: 30px;
  margin-bottom: 20px;
}

.terms-section li,
.privacy-section li {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.terms-section ul li,
.privacy-section ul li {
  list-style-type: disc;
}

.terms-section ol li,
.privacy-section ol li {
  list-style-type: decimal;
}

/* リンクスタイル */
.terms-content a,
.privacy-content a {
  color: #64b5f6;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.terms-content a:hover,
.privacy-content a:hover {
  color: #2196f3;
  text-decoration: underline;
}

/* 強調テキスト */
.terms-content strong,
.privacy-content strong {
  color: #ff9d2f;
  font-weight: bold;
}

/* お問い合わせ情報 */
.contact-info {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-top: 15px;
}

.contact-info li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.contact-info li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #64b5f6;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.contact-info li:first-child:before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.contact-info li:last-child:before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/></svg>');
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .terms-header,
  .privacy-header,
  .terms-content,
  .privacy-content {
    padding: 30px 20px;
  }
  .page-title {
    font-size: 24px;
  }
  .terms-section h2,
  .privacy-section h2 {
    font-size: 22px;
  }
  .terms-section p,
  .privacy-section p,
  .terms-section li,
  .privacy-section li {
    font-size: 15px;
  }
  .terms-section ol,
  .privacy-section ol,
  .terms-section ul,
  .privacy-section ul {
    padding-left: 20px;
  }
}

@media screen and (max-width: 480px) {
  .terms-header,
  .privacy-header,
  .terms-content,
  .privacy-content {
    padding: 25px 15px;
  }
  .page-title {
    font-size: 24px;
  }
  .page-description {
    font-size: 14px;
  }
  .terms-section h2,
  .privacy-section h2 {
    font-size: 20px;
    padding-left: 10px;
  }
  .terms-section,
  .privacy-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .contact-info {
    padding: 15px;
  }
}

/**
 * Simple Membership Plugin フォーム用スタイル
 * NEXSUSデザインに合わせた調整
 */
/* 利用規約・プライバシーポリシーチェックボックス部分のスタイル */
.swpm-terms-row,
.swpm-pp-row {
  margin-bottom: 25px;
  position: relative;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swpm-terms-row div label .swpm-form-field,
.swpm-pp-row div label .swpm-form-field {
  padding: 0;
}

.swpm-terms-row label,
.swpm-pp-row label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.swpm-terms-row input[type="checkbox"],
.swpm-pp-row input[type="checkbox"] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swpm-terms-row input[type="checkbox"]:checked,
.swpm-pp-row input[type="checkbox"]:checked {
  background-color: #64b5f6;
  border-color: #64b5f6;
}

.swpm-terms-row input[type="checkbox"]:checked::after,
.swpm-pp-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swpm-terms-row input[type="checkbox"]:hover,
.swpm-pp-row input[type="checkbox"]:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(100, 181, 246, 0.5);
}

.swpm-terms-row a,
.swpm-pp-row a {
  color: #64b5f6;
  text-decoration: none;
  margin-left: 5px;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.swpm-terms-row a:hover,
.swpm-pp-row a:hover {
  color: #2196f3;
  text-decoration: underline;
}

/* エラーメッセージスタイル */
.swpm-form-desc {
  margin-top: 8px;
  font-size: 14px;
}

.swpm-terms-row.error,
.swpm-pp-row.error {
  border: 1px solid rgba(255, 82, 82, 0.5);
  background-color: rgba(255, 82, 82, 0.1);
}

.swpm-form-desc ul {
  padding-left: 20px;
  margin: 0;
}

.swpm-form-desc li {
  color: #ff5252;
  font-size: 13px;
  list-style-type: none;
  position: relative;
}

.swpm-form-desc li:before {
  content: '!';
  position: absolute;
  left: -20px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #ff5252;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
}

/* 同意後のスタイル変更 */
.swpm-terms-row:not(.error) input[type="checkbox"]:checked ~ span,
.swpm-pp-row:not(.error) input[type="checkbox"]:checked ~ span {
  color: white;
}

.swpm-terms-row:not(.error) input[type="checkbox"]:checked,
.swpm-pp-row:not(.error) input[type="checkbox"]:checked {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .swpm-terms-row,
  .swpm-pp-row {
    padding: 15px;
  }
  .swpm-terms-row label,
  .swpm-pp-row label {
    font-size: 14px;
  }
  .swpm-form-desc li {
    font-size: 12px;
  }
}

/* フォーム全体のスタイル調整 */
.swpm-registration-widget-form,
.swpm-login-widget-form {
  max-width: 100%;
  margin: 0 auto;
}

.swpm-form-row {
  margin-bottom: 20px;
}

.swpm-form-row label {
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.swpm-text-field,
.swpm-password-field,
.swpm-email-field {
  width: 100% !important;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swpm-text-field:focus,
.swpm-password-field:focus,
.swpm-email-field:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

.swpm-join-us-submit {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.swpm-join-us-submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
          box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
}

.swpm-join-us-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.swpm-registration-success,
.swpm-registration-complete,
.swpm-registration-error {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
}

.swpm-registration-success,
.swpm-registration-complete {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4CAF50;
}

.swpm-registration-error {
  background-color: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.5);
  color: #ff5252;
}

.non-member-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.non-member-login a {
  top: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .non-member-login {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

/* コースカテゴリーグリッド */
.categories-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.category-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.category-card:hover .category-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.category-content {
  padding: 20px;
}

.category-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: white;
}

.category-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.category-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.course-count i {
  color: #64b5f6;
  margin-right: 5px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .categories-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

/* NEXSUSコース進捗ボタン用CSS */
/* 進捗ボタンコンテナ */
.nexsus-progress-container {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

/* 進捗ボタン共通スタイル */
.nexsus-progress-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  min-width: 120px;
}

/* 未完了状態のボタン */
.nexsus-progress-btn.yet {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nexsus-progress-btn.yet:hover {
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 完了状態のボタン */
.nexsus-progress-btn.done {
  background-color: #64b5f6;
  color: white;
}

.nexsus-progress-btn.done:hover {
  background-color: #2196f3;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

/* ステータスアイコン */
.status-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

/* 未完了アイコン */
.nexsus-progress-btn.yet .status-icon {
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* 完了アイコン（チェックマーク） */
.nexsus-progress-btn.done .status-icon {
  background-color: white;
}

.nexsus-progress-btn.done .status-icon::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #2196f3;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 進捗メッセージ */
.nexsus-progress-message {
  font-size: 13px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.nexsus-progress-message.show {
  opacity: 1;
}

/* ログイン通知 */
.nexsus-login-notice {
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 15px 0;
}

.nexsus-login-notice a {
  color: #64b5f6;
  text-decoration: none;
  font-weight: bold;
}

.nexsus-login-notice a:hover {
  text-decoration: underline;
}

/* コースカードのスタイル（リスト表示時） */
.course-card.course-completed {
  background: rgba(100, 181, 246, 0.1) !important;
}

/* 学習進捗バー（オプション） */
.nexsus-progress-bar-container {
  margin: 15px 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 10px;
  overflow: hidden;
}

.nexsus-progress-bar {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  width: 0%;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

/* 管理画面用スタイル */
.user-details-row td {
  padding: 15px;
  background: #f9f9f9;
}

.user-details-row ul {
  margin-left: 20px;
}

/* NEXSUSコース完了ラベル用CSS */
/* コースカード全体のスタイル（完了時） */
.course-card.course-completed {
  background: rgba(100, 181, 246, 0.1);
}

/* 受講済みバッジのスタイル */
.course-completed-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #64b5f6;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* タイトル横のチェックマーク */
.completed-check {
  color: #64b5f6;
  margin-left: 8px;
  font-weight: bold;
}

/* コースステータス（コースメタ内） */
.course-status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(100, 181, 246, 0.15);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.course-status i {
  color: #64b5f6;
  margin-right: 5px;
}

/* 復習ボタンのスタイル（受講済みの場合） */
.course-completed .btn-enroll {
  background-color: #64b5f6;
  color: white;
}

.course-completed .btn-enroll:hover {
  background-color: #2196f3;
}

/* カテゴリーページ専用のホバーエフェクト */
.course-card.course-completed:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(100, 181, 246, 0.2);
          box-shadow: 0 15px 30px rgba(100, 181, 246, 0.2);
}

/* 受講済みコースの画像エフェクト（オプション） */
.course-card.course-completed .course-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0) 100%);
  pointer-events: none;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .course-completed-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

.course-link {
  text-decoration: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.related-courses {
  display: none;
}

@media (max-width: 768px) {
  .course-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .course-content {
    padding: 0;
  }
  .course-card a .course-content {
    padding: 20px;
  }
}

.course-featured-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
/*# sourceMappingURL=style.css.map */