body {
    font-family: 'Noto Sans JP', serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
a {
    text-decoration: none;
}
.navbar {
    padding-bottom: 0;
    padding-top: 0;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -4px 2px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.75);
    background-color: #ffffff;
}
.navbar-toggler {
    border: 2px solid #3399ff; /* Default state with transparent border */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 2px #3399ff ;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%233399ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
a.nav-link.active {
    font-weight: 500;
    color: #3399ff!important;
}
.video-background {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* Adjust height to account for navbar */
    margin-top: 60px; /* Push down by the height of the navbar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black with 50% opacity */
    z-index: 1;
}
.video-content {
    position: relative;
    margin-bottom: 150px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 10;
    display: none; /* Hide content initially */
}
.video-content h1, .video-content h3 {
    -moz-text-shadow: 8px 5px 6px rgba(0, 0, 0, 0.8);
    -webkit-text-shadow: 8px 5px 6px rgba(0, 0, 0, 0.8);
    -ms-text-shadow: 8px 5px 6px rgba(0, 0, 0, 0.8);
    text-shadow: 8px 5px 6px rgba(0, 0, 0, 0.8);
    opacity: 0.7;
}
#company {
    background-color: #f0f4ff; /* Light blue-gray */
    padding: 20px;
    border-radius: 10px;
    height: 100hv;
}
#contact {
    height: 100vh;
}
.parallax-window {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
}
.services {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.color h2, .services h2 {
    color: 	#3399ff;
}
.table-custom {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}
.table-custom th, .table-custom td {
    padding: 10px;
}
.table-custom th {
    background-color: #3399ff;
    color: #ffffff;
}
.table-custom td {
    color: #4a4a4a;
}
h2 {
    color: #333333;
}
.contact-form-container {
    background-color: #ffffff; /* White background for the form */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 50px auto;
}
.btn-custom {
    background-color: #ffb800; /* Main color */
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.btn-custom:hover {
    background-color: #e6a700; /* Darker shade for hover effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}
.btn-custom a {
    color: #ffffff;
    text-decoration: none;
}
.footer {
    background-color: #3399ff; /* Soft blue */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}
.footer a {
    color: #ffffff;
}
.anchorSpace div {
    margin: 5px auto;
}
/* Full-screen background image */
.image-background {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('yokohama.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Example: Dark overlay */
}

/* Content on top of the image */
.image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

