
@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap');

body{
width:100%;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Zen Kaku Gothic New", serif;
color:#000;
font-weight: 600
}

body {
animation: fadeIn 0.4s ease 0s 1 normal;
-webkit-animation: fadeIn 0.4s 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;
}

i{
font-style: normal;
}

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

a{
color: #fff;
text-decoration: none;
transition: 0.4s
}

h1,h2,h3,h4,h5,h6{
font-weight: 600;
line-height: 100%;
}

div.more{
display: flex;
align-items: center;
justify-content: center
}

a.more{
width: 260px;
height: 50px;
border-radius: 25px;
background: #ff554c;
display: block;
text-align: center;
line-height: 50px;
font-size:16px;
position: relative
}

a.more:after{
content: "";
width: 14px;
height: 14px;
position: absolute;
right: 26px;
top:50%;
transform: translateY(-50%);
background: url(../img/icon/arrow.png) no-repeat center;
background-size: cover
}
