/*=================
単独　CSS
==================*/
*,
*::before,
*::after {
    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;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
}

button {
    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%;
}

textarea,
input {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font: inherit;
    color: inherit;
    line-height: normal;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    outline: none;
    font: inherit;
    color: inherit;
}

select:hover,
select:focus,
select:active {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    border-bottom: 1px solid #FFFFFF;
    background: none;
    outline: none;
    box-shadow: none;
}

.pc-active {
    display: flex;
}

.mobile-active {
    display: none;
}

@media screen and (max-width:600px) {
    .pc-active {
        display: none;
    }

    .mobile-active {
        display: flex;
    }

    .swipe-fix {
        margin: 50px 0 0 0;
        padding: 0 0 50px 0;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.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-375 {
    min-width: 375px;
}

.height-100vh {
    height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.position-bottom {
    bottom: 0;
    left: 0;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}

.opacity-0 {
    opacity: 0;
}

.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;
}

.justify-content-space-between {
    justify-content: space-between;
}

.align-items-start {
    align-items: flex-start;
}

.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-justify {
    text-align-last: justify;
}

.text-align-last-center {
    text-align-last: center;
}

.zindex-1 {
    z-index: -1;
}

.font-last {
    text-align-last: center;
}

.font-palt {
    font-feature-settings: "palt";
}

.font-halt {
    font-feature-settings: "halt";
}

.font-middle-line {
    text-decoration: line-through;
}

.pointer-events-none {
    pointer-events: none;
}

.font-thin {
    font-weight: 100;
}

.font-extralight {
    font-weight: 200;
}

.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;
}