
@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%;
}

@media screen and (min-width: 769px) {
div.more{
display: flex;
align-items: center;
justify-content: center;
gap: 15px
}
}

@media screen and (max-width: 768px) {
div.more{
display: flex;
flex-direction: column;
gap: 15px;
align-items: center
}
}

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

a.view{
width: 260px;
height: 50px;
border-radius: 25px;
background: var(--orange);
display: block;
text-align: center;
line-height: 50px;
font-size:16px;
position: relative;
}

a.more:after,a.view: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
}

a.more:hover,a.view:hover{
opacity: 0.7
}

input[type="submit"]{
width: 260px;
height: 50px;
border-radius: 25px;
background: #222;
display: block;
text-align: center;
line-height: 50px;
font-size:16px;
position: relative;
margin: 0px auto
}

:root {
--red: #b80909;
--blue:#0960b8;
--gray:#999;
--orange:#fd7406;
}