@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600&display=swap');

/* Global CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgba(0, 35, 60, 1.0);
    --secondary-color: rgba(4, 14, 43, 1.0);
}
body{
    overflow-x: hidden;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Noto Sans JP", Arial, sans-serif;
}

.section {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 0; /* Ensure no margins */
    padding: 0; /* Ensure no padding */
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85); /* Semi-transparent black overlay */
    z-index: 0; /* Ensure the overlay is below the content */
}

.logo-container {
    position: absolute;
    top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    height: 80px; /* Adjust the height as needed */
}
@media only screen and (max-width: 600px) {
    .logo {
      height: 50px;
    }
  }

.content {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1; /* Ensure the content is above the overlay */
}
@media only screen and (max-width: 1200px) {
    .content {
      width: 80%;
      padding: 0px;
      font-size: 1.5rem;
    }
  }
@media only screen and (max-width: 600px) {
    .content {
      width: 95%;
      padding: 0px;
      font-size: 1.0rem;
    }
  }
.seo-content{
    display: none;
}