
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,500;1,500&family=Noto+Serif+JP:wght@600&family=Cinzel&family=Zen+Old+Mincho:wght@700&display=swap');

@font-face {
font-family: 'impact';
src: url('fonts/Impact.woff2') format('woff2'),
url('fonts/Impact.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}

/*--------------------初期化--------------------*/

body{
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "hiragino-kaku-gothic-pron", sans-serif;
font-weight: 300;
font-style: normal;
color:#000;
background: #fff;
font-feature-settings: "palt";
letter-spacing: 0.08em
}

body {
animation: fadeIn 0.8s ease 0s 1 normal;
-webkit-animation: fadeIn 0.8s ease 0s 1 normal;
}

@keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}

*{
margin:0px;
padding:0px;
box-sizing:border-box;
outline: 0;
}

ul,li{
list-style:none;
}

ul{
width:100%;
}

img{
width: 100%;
max-width:100%;
display:block;
}

a{
text-decoration: none;
color:#000;
}

a:hover{
cursor:pointer;
text-decoration: underline
}

i{
display: block;
font-style: normal
}

/*--------------------loadingWrap--------------------*/

div.loadingWrap{
width: 100%;
height: 100%;
background: #fff;
position: fixed;
top:0px;
left: 0px;
z-index: 999
}

div.loadingWrap img {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: all 3s ease; 
opacity: 0; 
}




