@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

:root {
    --white: #FFFFFF;
    --cardwhite:#F4F4F4;
    --lightgreen: #3F8181;
    --green: #286363;
}

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    min-width: 375px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    color: var(--white);
    font-family: "Shippori Mincho";
    font-weight: 700;
    font-style: normal;
    font-size: 1.6rem;
    line-height: normal;
    text-align: center;
}

img {
    width: 100%;
}

.fadeIn {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
}
  
.fadeInActive {
    opacity: 1;
    transform: translateY(0);
}