@charset "UTF-8";



.btnA a {
margin: 50px auto;

display: block;
width: 100%;
max-width: 240px;
font-size: 14px;
line-height: 1.7;
font-weight: 700;
background-image: linear-gradient(to right, #fff 0%, #fff 50%, #000 50%, #000 100%);
background-repeat: no-repeat;
background-position: 100% 0;
background-size: 200% auto;
color: #fff;
text-align: center;
padding: 12px;
border-radius: 100vw;
position: relative;
border: 2px solid #000;
transition:ease-out 0.4s;
}
.btnA a::after {
position: absolute;
right: 20px;
top: 18px;
content: "";
width: 6px;
height: 6px;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transform:rotate(45deg);
}
.btnA a:hover {
background-position: 0 0;
color: #333;
}
.btnA a:hover::after {
border-color: #000;
}

.fs-c-productActionButton.fs-c-buttonContainer,
.btnB a {
margin: 50px auto;
display: block;
width: 100%;
max-width: 240px;
font-size: 14px;
line-height: 1.7;
font-weight: 700;
background: linear-gradient(90deg, #F5D47A 75%, #DE8E32);
background-repeat: no-repeat;
background-size: 400% auto;
background-position: 100% 0%;
color: #fff;
text-align: center;
padding: 14px;
border-radius: 100vw;
position: relative;
transition:ease-out 0.4s;
}
.fs-c-productActionButton.fs-c-buttonContainer::after,
.btnB a::after {
position: absolute;
right: 20px;
top: 20px;
content: "";
width: 6px;
height: 6px;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transform:rotate(-45deg);
}
.fs-c-productActionButton.fs-c-buttonContainer:hover,
.btnB a:hover {
background-position: 50% 0%;
}




.btnC a {
margin: 50px auto;

display: block;
width: 100%;
max-width: 240px;
font-size: 14px;
line-height: 1.7;
font-weight: 700;
background-image: linear-gradient(to right, #000 0%, #000 50%, transparent 50%, transparent 100%);
background-repeat: no-repeat;
background-position: 100% 0;
background-size: 200% auto;
color: #fff;
text-align: center;
padding: 12px;
border-radius: 100vw;
position: relative;
border: 2px solid #fff;
transition:ease-out 0.4s;
}
.btnC a::after {
position: absolute;
right: 20px;
top: 18px;
content: "";
width: 6px;
height: 6px;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
transform:rotate(-45deg);
}
.btnC a:hover {
background-position: 0 0;
color: #fff;
border-color: #000;
}
.btnC a:hover::after {
border-color: #fff;
}



.nav {
display: flex;
justify-content: center;
margin: 50px auto 50px;
}
.nav li a {
font-size: 1.6rem;
line-height: 1.5;
font-weight: 700;
color: #333;
display: block;
padding: 0 2px 5px;
position: relative;
overflow: hidden;
}
.nav li a::before {
position: absolute;
content: "";
bottom: 0;
left: 0;
height: 2px;
background: #DE8E32;
width: 0;
transition: .3s ease-out;
}
.nav li a:hover:before {
width: 100%;
}


.fnav {
display: flex;
justify-content: center;
margin: 50px auto 50px;
}
.fnav li {
width: 100%;
max-width: 280px;
}
.fnav li a {
display: block;
font-size: 14px;
line-height: 1.5;
position: relative;
color: #333;
display: flex;
align-items: center;
justify-content: space-between;
padding:0 2px 7px;
}
.fnav li a::after {
content: "";
width: 6px;
height: 6px;
border-right: 2px solid #DE8E32;
border-bottom: 2px solid #DE8E32;
transform:rotate(-45deg);
}
.fnav li a::before {
position: absolute;
content: "";
bottom: 0;
right:0;
height: 1px;
background: #333;
width: 100%;
transition: .3s ease-out;
}
.fnav li a:hover::before {
width: 0%;
}


.txt {
text-align: center;
margin: 50px auto 50px;
font-size: 14px;
line-height: 1.7;
}
.txt a {
font-size: 14px;
line-height: 1.7;
color: #DE8E32;
font-weight: 700;
text-decoration: underline;
transition: .3s ease-out;
}
.txt a:hover {
text-decoration: none;
}


.pic {
max-width: 150px;
margin: 50px auto;
background: #fff;
}
.pic:hover img{
transition: .3s ease-out;
opacity: 0.7;
}


