/* ==================================================
   Global
================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}


/* ==================================================
   Header
================================================== */

#header {
    background-color: #f5f5f5;
}

#header .py-4 {
    text-align: center;
    font-weight: 600;
}


/* ==================================================
   Main
================================================== */

#main {
    min-height: 500px;
}
/* ==================================================
   Content Container
================================================== */

.content-container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==================================================
   Footer
================================================== */

#footer {
    background-color: #f5f5f5;
}

#footer .py-4 {
    text-align: center;
    font-weight: 600;
}


/* ==================================================
   Links
================================================== */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/* ==================================================
   Images
================================================== */

img {
    max-width: 100%;
    height: auto;
}
/* ==================================================
   HERO
================================================== */

.hero {
    width: 100%;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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


/* ==================================================
   HERO Overlay
================================================== */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.35);
}


/* ==================================================
   HERO Content
================================================== */

.hero-content {
    color: #fff;
}

.hero-content h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-content p {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.15em;
}
