/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

figure {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 3px solid transparent;
    
    &.btnPrimary {
        background-color: #1e3a8a;
        color: white;
        
        &:hover {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
        }
    }
    
    &.btnSecondary {
        background-color: #cecfcf;
        color: #1e3a8a;
        
        &:hover {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
        }
    }
}

/* Section Headers */
.sectionHeader {
    text-align: center;
    margin-bottom: 60px;

    .sectionTitle0 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 30px;
        font-family: 'Comfortaa', cursive;
    }

      .sectionTitle00 {
        font-size: 2rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-top: 30px;
        margin-bottom: 10px;
        font-family: 'Comfortaa', cursive;
    }

        .sectionTitle000 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #231815;
          margin-top: 30px;
        margin-bottom: 10px;
        font-family: 'Comfortaa', cursive;
          line-height: 1.5;
    }
  
    .sectionTitle {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 16px;
        font-family: 'Comfortaa', cursive;
    }
    
    .sectionSubtitle {
        font-size: 1.1rem;
        color: #475569;
        font-weight: 300;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .sectionHeader {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

    .sectionTitle {
        font-size: 3.5rem;
        font-weight: 700;
        color: #1e3a8a;
        font-family: 'Comfortaa', cursive;
          text-align: center;
      padding: 0px 0px;
      line-height: 1.5;
    }

    .sectionTitle2 {
        font-size: 2rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 10px;
        font-family: 'Comfortaa', cursive;
          text-align: center;
      margin-top: 20px;
      padding: 30px 20px;
      line-height: 1.5;
    }

    .sectionTitle0 {
        font-size: 2rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-bottom: 2px;
        font-family: 'Comfortaa', cursive;
      padding: 30px 20px;
    }

      .sectionTitle00 {
        font-size: 2rem;
        font-weight: 700;
        color: #1e3a8a;
        margin-top: 20px;
        margin-bottom: 6px;
        font-family: 'Comfortaa', cursive;
        padding: 30px 20px;
    }

        .sectionTitle000 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #231815;
          margin-top: 0px;
        margin-bottom: 0px;
        font-family: 'Comfortaa', cursive;
          line-height: 1.5;
          padding: 30px 20px;
    }