@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 900;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #00B5AD;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #009690;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}
button:focus {
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mx-3 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mx-5 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.floating {
  animation: float 6s ease-in-out infinite;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F8FAFB;
}

::-webkit-scrollbar-thumb {
  background: #00B5AD;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #009690;
}

header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  header nav {
    padding: 0 1rem;
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #00B5AD;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}
.logo-icon {
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .logo-icon {
    width: 100px;
  }
}
.logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}
.nav-menu a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.nav-menu a:hover {
  color: #00B5AD;
}
.nav-menu .mypage-btn {
  display: inline-block;
  background: #00B5AD;
  color: #FFFFFF;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 181, 173, 0.3);
}
.nav-menu .mypage-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.nav-menu .mypage-btn:hover {
  background: #009690;
  color: #FFFFFF;
}

.btn {
  display: inline-block;
  background: #00B5AD;
  color: #FFFFFF;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.btn-primary {
  display: inline-block;
  background: #00B5AD;
  color: #FFFFFF;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #00B5AD;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border: 2px solid #00B5AD;
}
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.btn-outline:hover {
  background: #00B5AD;
  color: #FFFFFF;
}
.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}
.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  background: #00B5AD;
  color: #FFFFFF;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 181, 173, 0.3);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.cta-button:hover {
  background: #009690;
  box-shadow: 0 8px 30px rgba(0, 181, 173, 0.4);
}

.card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.card-header {
  background: linear-gradient(135deg, #00B5AD 0%, #4DD0C7 100%);
  color: #FFFFFF;
  padding: 1.5rem;
  margin: -6rem 1.5rem;
  border-radius: 15px 15px 0 0;
}
.card-body {
  padding: 0;
}
.card-footer {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #F8FAFB;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  background: #E8F5F4;
  color: #00B5AD;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #2C3E50;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-desc {
  color: #6C757D;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

footer {
  background: #2C3E50;
  color: #FFFFFF;
  padding: 3rem 2rem 1rem;
}
footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  footer .footer-content {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr;
  }
}
footer .footer-section a h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}
footer .footer-section ul {
  list-style: none;
}
footer .footer-section ul li {
  margin-bottom: 0.5rem;
}
footer .footer-section a {
  color: #B0B8C1;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
footer .footer-section a:hover {
  color: #00B5AD;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #B0B8C1;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #E8F5F4;
  color: #00B5AD;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}
.badge-primary {
  background: #00B5AD;
  color: #FFFFFF;
}
.badge-secondary {
  background: #4DD0C7;
  color: #FFFFFF;
}
.badge-accent {
  background: #FF6B6B;
  color: #FFFFFF;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #E8F5F4;
  color: #00B5AD;
  border-radius: 15px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.icon-box-large {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}
.icon-box-small {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
}

.hero {
  margin-top: 70px;
  padding: 80px 2rem 100px;
  background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E8F5F4 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77, 208, 199, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-container {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #2C3E50;
}
.hero-content h1 span {
  color: #00B5AD;
  display: inline-block;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #6C757D;
  margin-bottom: 3rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-points .point-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.hero-points .point-item .point-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #E8F5F4;
  color: #00B5AD;
  border-radius: 50%;
  font-size: 0.9rem;
}
.hero-cta {
  display: inline-block;
  background: #00B5AD;
  color: #FFFFFF;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 181, 173, 0.3);
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.hero-cta:hover {
  background: #009690;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 181, 173, 0.4);
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}
.hero-image .hero-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.purpose-section {
  padding: 5rem 2rem;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .purpose-section {
    padding: 4rem 1rem;
  }
}
.purpose-section .purpose-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .purpose-section .purpose-grid {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .purpose-section .purpose-grid {
    grid-template-columns: 1fr;
  }
}
.purpose-section .purpose-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid #E8F5F4;
  cursor: pointer;
}
.purpose-section .purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.purpose-section .purpose-card:hover {
  border-color: #00B5AD;
}
.purpose-section .purpose-card .purpose-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: #E8F5F4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.purpose-section .purpose-card h3 {
  margin-bottom: 1rem;
  color: #2C3E50;
  font-size: 1.25rem;
}
.purpose-section .purpose-card p {
  color: #6C757D;
  font-size: 0.9rem;
  line-height: 1.8;
}
.purpose-section .purpose-message {
  text-align: center;
  margin-top: 3rem;
}
.purpose-section .purpose-message p {
  font-size: 1.25rem;
  color: #00B5AD;
  font-weight: 700;
}

.dx-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #00B5AD 0%, #4DD0C7 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dx-section {
    padding: 4rem 1rem;
  }
}
.dx-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,128C672,107,768,85,864,96C960,107,1056,149,1152,165.3C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
}
.dx-section .dx-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
}
@media (max-width: 768px) {
  .dx-section .dx-content {
    padding: 0 1rem;
  }
}
.dx-section .dx-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
.dx-section .dx-subtitle {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}
.dx-section .dx-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .dx-section .dx-stats {
    grid-template-columns: 1fr;
  }
}
.dx-section .dx-stats .stat-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dx-section .dx-stats .stat-card .stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.dx-section .dx-stats .stat-card .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.training-section {
  padding: 5rem 2rem;
  background: #F8FAFB;
}
@media (max-width: 768px) {
  .training-section {
    padding: 4rem 1rem;
  }
}
.training-section .training-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .training-section .training-container {
    padding: 0 1rem;
  }
}
.training-section .skill-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .training-section .skill-categories {
    grid-template-columns: 1fr;
  }
}
.training-section .skill-categories .skill-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.training-section .skill-categories .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.training-section .skill-categories .skill-card .skill-header {
  padding: 0.5rem;
  background: #00B5AD;
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.training-section .skill-categories .skill-card .skill-items {
  list-style: none;
}
.training-section .skill-categories .skill-card .skill-items li {
  padding: 0.5rem 0;
  color: #6C757D;
  font-size: 0.9rem;
  border-bottom: 1px solid #F8FAFB;
}
.training-section .skill-categories .skill-card .skill-items li:last-child {
  border-bottom: none;
}

.steps-section {
  padding: 5rem 2rem;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .steps-section {
    padding: 4rem 1rem;
  }
}
.steps-section .steps-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .steps-section .steps-container {
    padding: 0 1rem;
  }
}
.steps-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .steps-section .steps-grid {
    grid-template-columns: 1fr;
  }
}
.steps-section .steps-grid .step-card {
  background: #FFFFFF;
  border: 2px solid #E8F5F4;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.steps-section .steps-grid .step-card:hover {
  border-color: #00B5AD;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.steps-section .steps-grid .step-card .step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #00B5AD;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
}
.steps-section .steps-grid .step-card .step-icon {
  font-size: 3rem;
  color: #00B5AD;
  margin: 1rem 0;
}
.steps-section .steps-grid .step-card .step-title {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
  color: #2C3E50;
}
.steps-section .steps-grid .step-card .step-desc {
  color: #6C757D;
  font-size: 0.9rem;
  line-height: 1.8;
}

.cta-section {
  padding: 5rem 2rem;
  background: #E8F5F4;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1rem;
  }
}
.cta-section .cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 700px;
}
@media (max-width: 768px) {
  .cta-section .cta-content {
    padding: 0 1rem;
  }
}
.cta-section .cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .cta-section .cta-title {
    font-size: 1.5rem;
  }
}
.cta-section .cta-desc {
  font-size: 1.1rem;
  color: #6C757D;
  margin-bottom: 3rem;
}

.company-section {
  padding: 5rem 2rem;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .company-section {
    padding: 4rem 1rem;
  }
}
.company-section .company-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 800px;
  text-align: center;
}
@media (max-width: 768px) {
  .company-section .company-content {
    padding: 0 1rem;
  }
}
.company-section .company-info {
  background: #F8FAFB;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 2rem;
}
.company-section .company-info .company-table {
  width: 100%;
  text-align: left;
}
.company-section .company-info .company-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.company-section .company-info .company-table tr:last-child {
  border-bottom: none;
}
.company-section .company-info .company-table th {
  padding: 1rem;
  width: 30%;
  color: #6C757D;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company-section .company-info .company-table th {
    width: auto;
  }
}
.company-section .company-info .company-table td {
  padding: 1rem;
  color: #2C3E50;
}
.company-section .company-info .company-table td a {
  color: #00B5AD;
}
.company-section .company-info .company-table td a:hover {
  color: #009690;
}

.contact-section {
  padding: 5rem 2rem;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1rem;
  }
}
.contact-section .contact-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.page-header {
  margin-top: 70px;
  background: linear-gradient(135deg, #00B5AD 0%, #4DD0C7 100%);
  padding: 60px 2rem;
  text-align: center;
  color: #FFFFFF;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.breadcrumb a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.2s ease;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb span:not(:last-child) {
  margin: 0 0.25rem;
}

.subpage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .subpage-content {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .subpage-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.subpage-title {
  font-size: 1.5rem;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #00B5AD;
}
@media (max-width: 768px) {
  .subpage-title {
    font-size: 1.25rem;
  }
}

.info-box {
  background: #F8FAFB;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
}
.info-box h3 {
  color: #00B5AD;
  margin-bottom: 1rem;
}

.subpage-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.subpage-table th,
.subpage-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #E8F5F4;
}
.subpage-table th {
  background: #E8F5F4;
  font-weight: 700;
  width: 30%;
}
@media (max-width: 576px) {
  .subpage-table th {
    display: block;
    width: 100%;
    background: #00B5AD;
    color: #FFFFFF;
  }
}
.subpage-table td {
  color: #6C757D;
}
@media (max-width: 576px) {
  .subpage-table td {
    display: block;
    width: 100%;
    padding-left: 2rem;
    margin-bottom: 1rem;
  }
}
.subpage-table tr:last-child th,
.subpage-table tr:last-child td {
  border-bottom: none;
}

.update-date {
  text-align: right;
  color: #6C757D;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E8F5F4;
  font-size: 0.9rem;
}
.update-date p {
  margin: 0.25rem 0;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .privacy-content {
    padding: 4rem 2rem;
  }
}

.privacy-section {
  margin-bottom: 3rem;
}
.privacy-section h2 {
  font-size: 1.5rem;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #00B5AD;
}
@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.25rem;
  }
}
.privacy-section h3 {
  font-size: 1.25rem;
  color: #2C3E50;
  margin: 2rem 0 1rem;
}
@media (max-width: 768px) {
  .privacy-section h3 {
    font-size: 1.1rem;
  }
}
.privacy-section p {
  color: #6C757D;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.privacy-section ul,
.privacy-section ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}
.privacy-section ul li,
.privacy-section ol li {
  color: #6C757D;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style: disc;
}
.privacy-section ol li {
  list-style: decimal;
}

.privacy-info {
  background: #F8FAFB;
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
}
.privacy-info h3 {
  color: #00B5AD;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.privacy-table th,
.privacy-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #E8F5F4;
}
.privacy-table th {
  background: #E8F5F4;
  font-weight: 700;
  width: 30%;
  color: #2C3E50;
}
.privacy-table td {
  color: #6C757D;
}
.privacy-table td a {
  color: #00B5AD;
}
.privacy-table td a:hover {
  color: #009690;
}
.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 576px) {
  .privacy-table th,
  .privacy-table td {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
  }
  .privacy-table th {
    background: #00B5AD;
    color: #FFFFFF;
    margin-top: 0.5rem;
  }
  .privacy-table td {
    padding-left: 2rem;
    border-bottom: none;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding: 5rem 2rem;
}
@media (max-width: 768px) {
  .contact-container {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 4rem 2rem;
  }
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-intro p {
  color: #6C757D;
  font-size: 1.1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .contact-intro p {
    font-size: 1rem;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-form-section {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact-form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  color: #2C3E50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #00B5AD;
}
@media (max-width: 768px) {
  .form-title {
    font-size: 1.25rem;
  }
}

.cf7-wrapper {
  margin-bottom: 2rem;
}

.wpcf7 form {
  margin: 0;
}
.wpcf7 p {
  margin-bottom: 1.5rem;
}
.wpcf7 label {
  display: block;
  color: #2C3E50;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.wpcf7 label .wpcf7-form-control-wrap::before {
  content: "必須";
  color: #FF6B6B;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #E8F5F4;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=tel],
  .wpcf7 input[type=url],
  .wpcf7 input[type=number],
  .wpcf7 input[type=date],
  .wpcf7 textarea,
  .wpcf7 select {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 input[type=date]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #00B5AD;
  box-shadow: 0 0 0 3px rgba(0, 181, 173, 0.1);
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: #B0B8C1;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #B0B8C1;
}
.wpcf7 textarea {
  resize: vertical;
  min-height: 150px;
}
.wpcf7 select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .wpcf7 .wpcf7-radio,
  .wpcf7 .wpcf7-checkbox {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.wpcf7 .wpcf7-radio .wpcf7-list-item,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-radio .wpcf7-list-item label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  color: #6C757D;
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}
.wpcf7 .wpcf7-radio .wpcf7-list-item label input,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input {
  margin-right: 0.5rem;
  accent-color: #00B5AD;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  accent-color: #00B5AD;
}
.wpcf7 input[type=submit] {
  display: inline-block;
  background: linear-gradient(135deg, #00B5AD 0%, #4DD0C7 100%);
  color: #FFFFFF;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  padding: 1rem 3rem;
  box-shadow: 0 5px 20px rgba(0, 181, 173, 0.3);
  border: none;
  cursor: pointer;
}
.wpcf7 input[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.wpcf7 input[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 181, 173, 0.3);
}
.wpcf7 input[type=submit]:disabled {
  background: #B0B8C1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background: url("data:image/gif;base64,R0lGODlhEAAQAPQAAP///wAAAPDw8IqKiuDg4EZGRnp6egAAAFhYWCQkJKysrL6+vhQUFJycnAQEBDY2NmhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAAFdyAgAgIJIeWoAkRCCMdBkKtIHIngyMKsErPBYbADpkSCwhDmQCBethRB6Vj4kFCkQPG4IlWDgrNRIwnO4UKBXDufzQvDMaoSDBgFb886MiQadgNABAokfCwzBA8LCg0Egl8jAggGAA1kBIA1BAYzlyILczULC2UhACH5BAkKAAAALAAAAAAQABAAAAV2ICACAmlAZTmOREEIyUEQjLKKxPHADhEvqxlgcGgkGI1DYSVAIAWMx+lwSKkICJ0QsHi9RgKBwnVTiRQQgwF4I4UFDQQEwi6/3YSGWRRmjhEETAJfIgMFCnAKM0KDV4EEEAQLiF18TAYNXDaSe3x6mjidN1s3IQAh+QQJCgAAACwAAAAAEAAQAAAFeCAgAgLZDGU5jgRECEUiCI+yioSDwDJyLKsXoHFQxBSHAoAAFBhqtMJg8DgQBgfrEsJAEAg4YhZIEiwgKtHiMBgtpg3wbUZXGO7kOb1MUKRFMysCChAoggJCIg0GC2aNe4gqQldfL4l/Ag1AXySJgn5LcoE3QXI3IQAh+QQJCgAAACwAAAAAEAAQAAAFdiAgAgLZNGU5joQhCEjxIssqEo8bC9BRjy9Ag7GILQ4QEoE0gBAEBcOpcBA0DoxSK/e8LRIHn+i1cK0IyKdg0VAoljYIg+GgnRrwVS/8IAkICyosBIQpBAMoKy9dImxPhS+GKkFrkX+TigtLlIyKXUF+NjagNiEAIfkECQoAAAAsAAAAABAAEAAABWwgIAICaRhlOY4EIgjH8R7LKhKHGwsMvb4AAy3WODBIBBKCsYA9TjuhDNDKEVSERezQEL0WrhXucRUQGuik7bFlngzqVW9LMl9XWvLdjFaJtDFqZ1cEZUB0dUgvL3dgP4WJZn4jkomWNpSTIyEAIfkECQoAAAAsAAAAABAAEAAABX4gIAICuSxlOY6CIgiD8RrEKgqGOwxwUrMlAoSwIzAGpJpgoSDAGifDY5kopBYDlEpAQBwevxfBtRIUGi8xwWkDNBCIwmC9Vq0aiQQDQuK+VgQPDXV9hCJjBwcFYU5pLwwHXQcMKSmNLQcIAExlbH8JBwttaX0ABAcNbWVbKyEAIfkECQoAAAAsAAAAABAAEAAABXkgIAICSRBlOY7CIghN8zbEKsKoIjdFzZaEgUBHKChMJtRwcWpAWoWnifm6ESAMhO8lQK0EEAV3rFopIBCEcGwDKAqPh4HUrY4ICHH1dSoTFgcHUiZjBhAJB2AHDykpKAwHAwdzf19KkASIPl9cDgcnDkdtNwiMJCshACH5BAkKAAAALAAAAAAQABAAAAV3ICACAkkQZTmOAiosiyAoxCq+KPxCNVsSMRgBQ+A2CBDIwxPtCchcRg5vCBEMq2FhUWUpF7WCQIBKIriBJDAgMC4RjukPVgsGgg+wJwgfDXUcM6EvTDB2cXBzb294YwsHaH8sYGwJYXhiZH91ZWZbXoKGhpCVlJWAIQA7") no-repeat center center;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}
.wpcf7 .ajax-loader.is-active {
  visibility: visible;
}
.wpcf7 .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem;
  border: 2px solid;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #46b450;
  color: #46b450;
  background: #f0fff4;
}
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
  border-color: #FF6B6B;
  color: #FF6B6B;
  background: #fff5f5;
}
.wpcf7 .wpcf7-spam-blocked {
  border-color: #ffb900;
  color: #ffb900;
  background: #fffbf0;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
  border-color: #ffb900;
  color: #ffb900;
  background: #fffbf0;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #FF6B6B;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #FF6B6B !important;
}

.form-notes {
  margin-top: 2rem;
}
.form-notes .form-note {
  background: #F8FAFB;
  border-left: 4px solid #00B5AD;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}
.form-notes .form-note p {
  color: #6C757D;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}
.form-notes .form-note p i {
  color: #00B5AD;
  margin-right: 0.5rem;
}
.form-notes .form-note p a {
  color: #00B5AD;
  text-decoration: underline;
}
.form-notes .form-note p a:hover {
  color: #009690;
}

.contact-info-section {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: -moz-fit-content;
  height: fit-content;
}
.contact-info-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .contact-info-section {
    order: -1;
  }
}
@media (max-width: 768px) {
  .contact-info-section {
    order: -1;
  }
}

.info-title {
  font-size: 1.25rem;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-title i {
  color: #00B5AD;
}

.info-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E8F5F4;
}
.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  color: #00B5AD;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-label i {
  width: 20px;
  text-align: center;
}

.info-value {
  color: #6C757D;
  font-size: 1rem;
  line-height: 1.7;
  padding-left: calc(20px + 0.5rem);
}

.contact-methods {
  background: #F8FAFB;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.method-title {
  font-size: 1.1rem;
  color: #2C3E50;
  margin-bottom: 1rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #6C757D;
}
.method-item i {
  color: #00B5AD;
  width: 20px;
  text-align: center;
}

.contact-support {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #E8F5F4 0%, transparent 100%);
  border-radius: 10px;
}
.contact-support .support-title {
  font-size: 1.1rem;
  color: #2C3E50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-support .support-title i {
  color: #00B5AD;
}
.contact-support p {
  color: #6C757D;
  line-height: 1.8;
  margin: 0;
}

.faq-link {
  display: block;
  background: linear-gradient(135deg, #E8F5F4 0%, #F8FAFB 100%);
  border: 2px solid #00B5AD;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: #00B5AD;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}
.faq-link:hover {
  background: #00B5AD;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.faq-link i {
  margin-right: 0.5rem;
}

.contact-additional {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #E8F5F4;
}
.contact-additional .additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact-additional .additional-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-additional .additional-grid {
    grid-template-columns: 1fr;
  }
}
.contact-additional .additional-card {
  text-align: center;
  padding: 2rem;
  background: #F8FAFB;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.contact-additional .additional-card:hover {
  background: #FFFFFF;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.contact-additional .additional-card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #00B5AD 0%, #4DD0C7 100%);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.contact-additional .additional-card h3 {
  font-size: 1.25rem;
  color: #2C3E50;
  margin-bottom: 1rem;
}
.contact-additional .additional-card p {
  color: #6C757D;
  line-height: 1.8;
  margin: 0;
}

.price-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .price-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .price-wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .price-wrapper .contact-form-section {
    margin-bottom: 5rem;
  }
}

.price-section {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.price-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .price-section {
    padding: 40px 0 0 0;
  }
}

.grant-section {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.grant-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .grant-section {
    padding: 32px;
  }
}
.grant-section_body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .grant-section_body {
    display: block;
  }
}
.grant-section_body__content {
  padding: 20px 0;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .grant-section_body__content {
    padding: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .nav-menu.mobile-active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
  }
  .mobile-menu-toggle {
    display: block !important;
    font-size: 1.5rem;
    color: #00B5AD;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
  }
  .mobile-menu-toggle.active {
    color: #009690;
  }
  .hero {
    padding: 60px 1rem 80px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
  }
  .hero-image {
    display: none;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-desc {
    font-size: 0.9rem;
  }
  .purpose-grid,
  .dx-stats,
  .skill-categories,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .hero {
    margin-top: 60px;
    padding: 40px 1rem 60px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .hero-points .point-item {
    font-size: 0.9rem;
  }
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .section {
    padding: 4rem 1rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }
  .section-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .purpose-card,
  .skill-card,
  .step-card {
    padding: 1.5rem;
  }
  .dx-section .dx-title {
    font-size: 1.25rem;
  }
  .dx-section .dx-subtitle {
    font-size: 0.9rem;
  }
  .dx-section .dx-stats .stat-card {
    padding: 1.5rem;
  }
  .dx-section .dx-stats .stat-card .stat-number {
    font-size: 2rem;
  }
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 0.5rem;
  }
  .company-table th {
    background: #F8FAFB;
    font-weight: 700;
  }
  .company-table td {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 3rem;
  }
}
@media print {
  header,
  footer,
  .hero-image,
  .cta-section,
  .contact-section {
    display: none;
  }
  body {
    font-size: 12pt;
  }
  a {
    text-decoration: underline;
  }
  .section {
    page-break-inside: avoid;
  }
}