@charset "UTF-8";

:root {
    --color-primary: #f0a5a8;
    --color-secondary: #ea8e90;
    --color-black: #333333;
    --color-white: #ffffff;
    --font-family-jp: 'Noto Sans JP', sans-serif;
    --content-width: min(1220px, 90vw);
    --max-width: min(1400px, 100vw);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-family-jp), sans-serif;
    font-size: min(17px, 3.8vw);
    line-height: 1.82;
    color: var(--color-white);
    background-color: var(--color-black);
    font-feature-settings: "palt";
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color: inherit;
    text-decoration: none;
}
ul, ol {
    list-style: none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.main_visual {
    position: relative;
    width: 100%;
    height: 100vh;
}
.mv_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mv_img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
h1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 70px;
}