@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanjp.min.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanmp.min.css");

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: YakuHanJP, YakuHanMP, "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, source-han-sans-japanese, sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    color: #212121;
    outline: none;
}

@font-face {
    font-family: "FunctionsPro";
    src: url('/fonts/FPro-book.eot');
    src: url('/fonts/FPro-book_iefix.eot') format('embedded-opentype'),
        url('/fonts/FPro-book.woff') format('woff'),
        url('/fonts/FPro-book.ttf') format('truetype'),
        url('/fonts/FPro-book.svg#icon') format('svg');
    font-style: normal;
}

a {
    text-decoration: none;
    display: block;
}

ol,
ul,
li {
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
    margin: 0;
    padding: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering:auto; }

.clear {
    clear: both;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
    overflow: hidden;
}

.clearfix {
    display: block;
}

html,
body {
    font-size: 100%;
}

input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    border: none;
    -webkit-appearance: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.animated {
    animation-fill-mode: both;
    visibility: hidden;
}

.animated.infinite {
    animation-iteration-count: infinite;
}


@keyframes my-fadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
        transform-origin: center center;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transform-origin: center center;
        visibility: visible;
    }
}

.my-fadeIn {
    animation-name: my-fadeIn;
}

@keyframes my-fadeIn2 {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0);
        transform-origin: center center;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transform-origin: center center;
        visibility: visible;
    }
}

.my-fadeIn2 {
    animation-name: my-fadeIn2;
}


@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-delay: 0.6s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes bodyFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bodyFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body {
    animation: bodyFadeIn 0.8s ease-in-out 0s 1 normal !important;
}