/*=================
privacy-policy
==================*/
.pc-area {
    display: flex;
}

.sp-area {
    display: none;
}

@media screen and (max-width: 960px) {
    .pc-area {
        display: none;
    }
    
    .sp-area {
        display: flex;
    }
}
/*=================
単独　CSS
==================*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    color: transparent;
    cursor: pointer;
}

ul,
p {
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

button {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

button:focus {
    outline: 0;
    box-shadow: none;
}

section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.visible {
    visibility: visible;
    opacity: 1;
}

.textAnime {
    clip-path: inset(0 100% 0 0);
    animation: textAnime 0.7s forwards;
    display: inline-block;
}

@keyframes textAnime {
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.textAnime-ver2 {
    clip-path: inset(0 100% 0 0);
    animation: textAnime 1s forwards;
    display: inline-block;
}

@keyframes textAnime-ver2 {
    100% {
        clip-path: inset(0 0 0 0);
    }
}

.max-width-1920 {
    max-width: 1920px;
}

.min-width-390 {
    min-width: 390px;
}

.height-100vh {
    height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.position-bottom {
    bottom: 0;
    left: 0;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}

.column {
    flex-direction: column;
}

.row {
    flex-direction: row;
}

.padding-0 {
    padding: 0;
}

.width100 {
    width: 100%;
}

.margin0 {
    margin: 0;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.inline-block {
    display: inline-block;
}

.border-box {
    box-sizing: border-box;
}

.text-align-center {
    text-align: center;
}

.text-align-left {
    text-align: left;
}

.text-align-justify {
    text-align: justify;
}

.text-align-last-center {
    text-align-last: center;
}

.text-align-last-justify {
    text-align-last: justify;
}

.zindex-1 {
    z-index: -1;
}

.font-last {
    text-align-last: center;
}

.font-palt {
    font-feature-settings: "palt";
}

.pointer-events-none {
    pointer-events: none;
}

.font-color-white {
    color: #FFFFFF;
}

.font-color-main {
    color: #EC6D71;
}

.font-color-sub {
    color: #FCD9DC;
}

.font-color-black {
    color: #3E3A39;
}

.font-thin {
    font-weight: 100;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}