/* checkout upgrade: old header/footer support (PC)
   Source: style.css. Scoped to #fs_CheckoutV2 to avoid affecting other pages. */

#fs_CheckoutV2 #headerarea,
#fs_CheckoutV2 #footerarea {
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    line-height: 1.7;
    color: #3f3a36;
}

#fs_CheckoutV2 #headerarea *,
#fs_CheckoutV2 #footerarea * {
    box-sizing: border-box;
}

#fs_CheckoutV2 #headerarea ul,
#fs_CheckoutV2 #footerarea ul {
    margin: 0;
    padding: 0;
}

#fs_CheckoutV2 #headerarea ul li,
#fs_CheckoutV2 #footerarea ul li {
    list-style: none;
}

#fs_CheckoutV2 #headerarea p,
#fs_CheckoutV2 #footerarea p {
    margin: 0;
}

#fs_CheckoutV2 #headerarea a,
#fs_CheckoutV2 #footerarea a {
    text-decoration: none;
    outline: none;
    color: #3f3a36;
    transition: all 0.5s ease;
}

#fs_CheckoutV2 #headerarea a:hover,
#fs_CheckoutV2 #footerarea a:hover {
    color: #7d5f46;
}

#fs_CheckoutV2 #headerarea a:hover img,
#fs_CheckoutV2 #footerarea a:hover img {
    opacity: 0.75 !important;
}

#fs_CheckoutV2 #headerarea img,
#fs_CheckoutV2 #footerarea img {
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

#fs_CheckoutV2 #headerarea .inner,
#fs_CheckoutV2 #footerarea .inner {
    width: 95%;
    margin: 0 auto;
    max-width: 1200px;
}

#fs_CheckoutV2 #headerarea .flex,
#fs_CheckoutV2 #footerarea .flex {
    display: flex;
}

#fs_CheckoutV2 #headerarea .fxw,
#fs_CheckoutV2 #footerarea .fxw {
    display: flex;
    flex-wrap: wrap;
}

#fs_CheckoutV2 #headerarea .jcsb,
#fs_CheckoutV2 #footerarea .jcsb {
    display: flex;
    justify-content: space-between;
    align-content: baseline;
}

#fs_CheckoutV2 #headerarea .sp,
#fs_CheckoutV2 #footerarea .sp {
    display: none !important;
}


/* ---- Header (from style.css) ---- */

#fs_CheckoutV2 #headerarea .hamburger {
display: none !important;
}

#fs_CheckoutV2 #headerarea {
margin-bottom: 15px;
	background-color: rgba(255, 255, 255, 0.85);
}

#fs_CheckoutV2 #headerarea.scroll {
animation: fadeIn .8s ease-in-out .6s forwards;
   opacity: 0;
}

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

#fs_CheckoutV2 #headerarea.scroll {
position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

#fs_CheckoutV2 #headerarea #header-fixedarea {
background-color: #b1926b;
    margin-bottom: 5px;
    width: 100%;
    overflow: hidden;
}

#fs_CheckoutV2 #headerarea .h-notice-slider-wrap {
width: 100%;
    overflow: hidden;
}

#fs_CheckoutV2 #headerarea .h-notice-slider-track {
display: flex;
    width: 300%; 
    
    animation: step-slide 10s infinite;
}

#fs_CheckoutV2 #headerarea .h-notice-slide {
width: 33.3333%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

#fs_CheckoutV2 #headerarea .h-notice {
font-size: 17px;
    letter-spacing: 2px;
    color: #fff;
    background-color: transparent;
    margin: 0;
    padding: 2px 0;
    text-align: center;
}

#fs_CheckoutV2 #headerarea .h-notice span {
font-size: 0.8em;
}

#fs_CheckoutV2 #headerarea .h-notice a {
color: #fff;
    text-decoration: none;
}

#fs_CheckoutV2 #headerarea .h-notice a:hover {
opacity: 0.7;
}

#fs_CheckoutV2 #headerarea .h-notice-u {
text-decoration: underline;
}

@keyframes step-slide {
    0%, 40% { 
        
        transform: translateX(0); 
    }
    50%, 90% { 
        
        transform: translateX(-33.3333%); 
    }
    100% { 
        
        transform: translateX(-66.6666%); 
    }
}

#fs_CheckoutV2 #headerarea .h-top {
margin-bottom: 1px;
}

#fs_CheckoutV2 #headerarea .h-top .pagemaintitle {
font-size: 14px;
	font-weight: normal;
	color: #5c4500;
}

#fs_CheckoutV2 #headerarea .h-guide {
width: 410px;
	padding-left:0;
}

#fs_CheckoutV2 #headerarea .h-guide li {
display: flex;
	-ms-align-items: center;
	align-items: center;
	font-size: 14px;
}

@media screen and (max-width:960px) {
    #fs_CheckoutV2 #headerarea .h-top .pagemaintitle {
font-size:12px;
    }

    #fs_CheckoutV2 #headerarea .h-guide li {
font-size: 13px;
    }

    #fs_CheckoutV2 #headerarea .h-guide {
width:386px;
    }
}

#fs_CheckoutV2 #headerarea .h-guide li::before {
content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 7px;
	border-color: transparent transparent transparent #b1926b;
	margin-right: 5px;
	margin-top: -2px;
}

#fs_CheckoutV2 #headerarea .h-guide li a {
color: #5c4500;
}

#fs_CheckoutV2 #headerarea .h-guide li a:hover {
opacity: 0.7;
}

#fs_CheckoutV2 #headerarea .h-flex {
-ms-align-items: center;
	align-items: center;
	position: relative;
}

#fs_CheckoutV2 #headerarea .h-logo {
width: 15%;
	margin: 15px 0;
	margin-right: auto;
}

#fs_CheckoutV2 #headerarea .h-logo.scroll {
-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
	width: 8%;
	margin: 5px auto;
}

#fs_CheckoutV2 #headerarea .h-nav-area {
width: 80%;
}

#fs_CheckoutV2 #headerarea .h-user-area {
width: 160px;
	-ms-align-items: center;
	align-items: center;
	margin-left: auto;
	margin-bottom: 21px;
	margin-top: 10px;
}

@media screen and (max-width:1000px) {
    #fs_CheckoutV2 #headerarea .h-user-area {
width:135px;
    }
}

#fs_CheckoutV2 #headerarea #topform {
width: 60%;
	margin-right: auto;
	border-bottom: 1px solid #846131;
	position: relative;
}

#fs_CheckoutV2 #headerarea #topsearchbox {
width: 100%;
	border: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 0 5px 20px;
}

#fs_CheckoutV2 #headerarea #topsearchbox::placeholder {
color: rgba(94, 57, 25, 0.66);
}

#fs_CheckoutV2 #headerarea #topform-btn {
width: 20px;
	position:absolute; 
	right: 10px;
	top: 3px;
	background:none;
	border:none;
}

#fs_CheckoutV2 #headerarea #topform-btn:hover {
cursor: pointer;
	opacity: 0.7;
}

#fs_CheckoutV2 #headerarea .h-user {
padding-left:0;
	width: 100%;
}

#fs_CheckoutV2 #headerarea .h-user li {
position: relative;
}

#fs_CheckoutV2 #headerarea .h-user li:nth-of-type(1) {
width: 15%;
	padding-top: 2px;
}

#fs_CheckoutV2 #headerarea .h-user li:nth-of-type(2) {
width: 14%;
}

#fs_CheckoutV2 #headerarea .h-user li:nth-of-type(3) {
width: 17%;
}

#fs_CheckoutV2 #headerarea .h-user li:nth-of-type(4) {
width: 17%;
}

#fs_CheckoutV2 #headerarea .fs-client-cart-count {
background: #e23648;
	border-radius: 1em;
	color: #fff !important;
	font-size: 12px !important;
	line-height: 1;
	padding: .26em .54em .25em;
	position: absolute;
	top: -4px;
	left: 18px;
}

#fs_CheckoutV2 #headerarea .fs-client-cart-count.fs-client-cart-count--0 {
display: none;
}

#fs_CheckoutV2 #headerarea .h-user li img {
width: 100%;
}

#fs_CheckoutV2 #headerarea .slidemenu {
position: absolute;
	display: none;
	top: 63px;
	right: 0%;
	width: 330px;
	background: #ececec;
	padding: 15px 15px 13px;
	box-sizing: border-box;
	z-index: 99;
}

#fs_CheckoutV2 #headerarea .searchbox {
flex:1;
}

#fs_CheckoutV2 #headerarea .search-text-box {
border: none;
	padding: 6px 10px 5px;
	box-sizing: border-box;
	height: 33px;
	position: relative;
	font-size: 14px;
	width: 100%;
}

#fs_CheckoutV2 #headerarea .keyarea {
display: flex;
}

#fs_CheckoutV2 #headerarea .submit01 {
margin-left:10px;
	width: 81px;
	height: 33px;
	background: #b1926b;
	border: none;
	color: #fff;
	line-height: 33px;
	font-size: 13px;
	cursor: pointer;
	border-radius: inherit;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li {
text-align: center;
	border-bottom: 2px solid rgba(176, 144, 105, 0.54);
	padding-bottom: 3px;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li:hover {
-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
	border-bottom: 3px solid rgba(132, 103, 68, 1);
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li:nth-of-type(1) {
width: 22%;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li:nth-of-type(2) {
width: 13%;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li:nth-of-type(3) {
width: 18%;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li:nth-of-type(4) {
width: 18%;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li:nth-of-type(5) {
width: 18%;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li > a,
#fs_CheckoutV2 #headerarea #h-nav > ul > li {
display: block;
	font-size: 17px;
	color: #5c4500;
}

#fs_CheckoutV2 #headerarea .h-nav__drop {
position: relative;
}

#fs_CheckoutV2 #headerarea .h-nav__hover {
cursor: pointer;
	font-size: 17px;
	color: #5c4500;
}

#fs_CheckoutV2 #headerarea .h-nav__hover span {
position: relative;
}

#fs_CheckoutV2 #headerarea .h-nav__hover span::before {
font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	content: "";
	font-size: 10px;
	color: #5c4500;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -20px;
}

#fs_CheckoutV2 #headerarea .h-nav__second li a {
padding: 10px 0;
	display: block;
	font-size: 14px;
	color: #5c4500;
	font-weight: bold;
}

#fs_CheckoutV2 #headerarea .h-nav__second li a:hover {
color: #fff ;
	opacity: 1;
	background-color: #b1926b;
}

#fs_CheckoutV2 #headerarea #h-nav > ul > li a:hover {
opacity: 0.7;
}

#fs_CheckoutV2 #headerarea.scroll .h-notice,
#fs_CheckoutV2 #headerarea.scroll .h-top,
#fs_CheckoutV2 #headerarea.scroll .h-user-area {
display: none;
}

#fs_CheckoutV2 #headerarea .h-nav__hoverarea01 {
width: 10%;
	height: 45px;
	background-color:  transparent;
	position: absolute;
	top: 70%;
	left: 40%;
	cursor: pointer;
}

#fs_CheckoutV2 #headerarea .h-nav__hoverarea02 {
width: 15%;
	height: 45px;
	background-color: transparent;
	position: absolute;
	top: 70%;
	left: 52%;
	cursor: pointer;
}

#fs_CheckoutV2 #headerarea .h-nav__hoverarea03 {
width: 100%;
	height: 30px;
	background-color: transparent;
	position: absolute;
	top: 90%;
	left: 0;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu01 {
display: none;
	position: absolute;
	background-color: #fff;
	width: 110%;
	top: 115%;
	left: 50%;
	transform: translateX(-50%);
	border: 2px solid #ad8c68;
	padding: 40px 50px;
	text-align: left;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu02 {
display: none;
	position: absolute;
	background-color: #fff;
	width: 80%;
	top: 115%;
	left: 50%;
	transform: translateX(-50%);
	border: 2px solid #ad8c68;
	padding: 40px 50px;
	text-align: left;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__list01 > li {
width: 30%;
	margin-right: 5%;
	margin-bottom: 30px;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__list01  > li:nth-of-type(3n) {
margin-right: 0;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__list02 > li {
width: 45%;
	margin-right: 10%;
	margin-bottom: 30px;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__list02  > li:nth-of-type(2n) {
margin-right: 0;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__ttl {
font-size: 20px;
	font-weight: bold;
	padding: 0 0 2px 30px;
	border-bottom: 1px dashed #5c4500;
	margin-bottom: 15px;
	text-align: left;
	position: relative;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__ttl a {
color:#5c4500;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__ttl::before {
content: "";
	display: inline-block;
	background-color: #b0926d;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 45%;
	transform: translateY(-50%);
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__ttl::after {
content: "";
	display: inline-block;
	background-color: #ffe4c7;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 4px;
	top: 52%;
	transform: translateY(-50%);
	z-index: -1;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link {
padding-left: 25px;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li {
font-size: 13px;
	position: relative;
	padding-left: 20px;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li::before {
content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 10px;
	border-color: transparent transparent transparent #b0926d;
	position: absolute;
	top: 3px;
	left: 0;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li:not(:last-child) {
margin-bottom: 20px;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li a {
display: block;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li a:hover {
color: #b0926d;
}

@media screen and (max-width:1330px) {
    #fs_CheckoutV2 #headerarea .h-nav__megamenu01 {
width: 100%;
    }
}

@media screen and (max-width:1100px) {
    #fs_CheckoutV2 #headerarea .h-nav__megamenu__ttl {
font-size: 17px;
    }
}

@media screen and (max-width:1050px) {
    #fs_CheckoutV2 #headerarea #h-nav > ul > li > a,
#fs_CheckoutV2 #headerarea #h-nav > ul > li {
font-size: 15px;
    }
}

@media screen and (max-width:1030px) {
    #fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li::before {
border-width: 4px 0 4px 6px;top:5px;
    }

    #fs_CheckoutV2 #headerarea .h-nav__megamenu__link > li {
padding-left:11px;
    }
}

@media screen and (max-width:960px) {
    #fs_CheckoutV2 #headerarea .h-nav__hover {
font-size: 12px;
    }

    #fs_CheckoutV2 #headerarea #h-nav > ul > li > a,
#fs_CheckoutV2 #headerarea #h-nav > ul > li {
font-size: 13px;
    }

    #fs_CheckoutV2 #headerarea .h-nav__megamenu__list02 > li {
width:48%;margin-right: 4%;
    }

    #fs_CheckoutV2 #headerarea .h-nav__megamenu__link a {
font-size:12px;
    }
}

@media screen and (max-width:930px) {
    #fs_CheckoutV2 #headerarea .h-nav__megamenu__ttl {
font-size: 15px;
    }
}

#fs_CheckoutV2 #headerarea .menu__mega {
position: relative;
}

#fs_CheckoutV2 #headerarea .menu__mega span {
position: relative;
	cursor: pointer;
}

#fs_CheckoutV2 #headerarea .menu__mega span::before {
font-family: "Font Awesome 5 Pro";
	font-weight: 300;
	content: "";
	font-size: 10px;
  width: 10px;
  height: 6px;
  position: absolute;
  right: -25px;
  top: 20%;
  transform: translateY(-50%);
  color:#b1926b;
}

@media screen and (max-width:960px) {
    #fs_CheckoutV2 #headerarea .menu__mega span::before {
right:-17px;
    }
}

#fs_CheckoutV2 #headerarea #h-nav .menu__mega:hover {
cursor: pointer;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level {
visibility: hidden;
	opacity: 0;
	text-shadow: none;
	position: absolute;	
	box-sizing: border-box;
	background: #fff;
	border-radius: 3px;
	border: 2px solid #ad8c68;
	top:26px;
	transition: .1s;
	z-index: -1;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__mega:hover .menu__second-level {
visibility: visible;
	opacity: 1;
	z-index:998;
	transition: .3s;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level li {
text-align:center;
	left:0;
	font-size: 10px;
	line-height: 1.4;
	box-sizing: border-box;
}

#fs_CheckoutV2 #headerarea .h-nav__megamenu__link a {
display: block;
	letter-spacing: 0;
	text-shadow: none;
	color: #5c4500;
	font-weight: normal;
	font-size: 14px;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level li a:hover {
color: #89683c;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level li:last-child {
border-bottom: none;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms1 {
padding: 35px 40px 35px;
	width: 90vw;
	max-width: 1200px;
	box-sizing: border-box;
	justify-content: space-around;
	cursor: default;
	left: 4.5vw;
	transform: translateX(-50%);
}

@media screen and (max-width:1300px) {
    #fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms1 {
left: 9vw;
    }
}

#fs_CheckoutV2 #headerarea.scroll #h-nav .menu__second-level.ms1 {
position: fixed;
	top: 45px;
	right: 0;
	bottom: 25px;
	overflow-x: hidden;
	overflow-y: hidden;
	left: 50%;
	transform: translateX(-50%);
	padding: 35px 40px 35px;
	box-sizing: border-box;
	max-height: 582px;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms1 ul {
padding-left: 15px;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms1 li {
border-bottom: none;
	text-align: left;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms2 {
padding: 35px 40px 35px;
	width: 60vw;
	max-width: 1200px;
	box-sizing: border-box;
	justify-content: space-around;
	left: -2.8;
	transform: translateX(-50%);
	cursor: default;
}

#fs_CheckoutV2 #headerarea.scroll #h-nav .menu__second-level.ms2 {
position: fixed;
	left: 50%;
	transform: translateX(-50%);
	top: 45px;
	right: 0;
	bottom: 25px;
	overflow-x: hidden;
	overflow-y: hidden;
	padding: 35px 40px 35px;
	box-sizing: border-box;
	max-height: 618px;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms2 ul {
padding-left: 15px;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms2 li {
border-bottom: none;
	text-align: left;
}

#fs_CheckoutV2 #headerarea .fixscroll {
width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	padding-right: 17px;
}

#fs_CheckoutV2 #headerarea .fixscroll.scroll {
overflow-y: scroll;
}

#fs_CheckoutV2 #headerarea .menu__second-level-flex {
display: flex;
	flex-wrap: wrap;
}

#fs_CheckoutV2 #headerarea .menu__second-level-flex-child {
width: 30%;
	margin-right: 5%;
}

#fs_CheckoutV2 #headerarea .menu__second-level-flex-child:first-child {
margin-bottom: 30px;
}

#fs_CheckoutV2 #headerarea .menu__second-level-flex-child:nth-of-type(3n) {
margin-right: 0;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms3 {
width: 280px;
	left: 50%;
	transform: translateX(-50%);
	padding: 18px 10px 16px;
}

#fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms3 .h-nav__second li a:hover {
color: #fff ;
	opacity:1;
}

#fs_CheckoutV2 #headerarea .h-nav__second li {
border-bottom: 1px dashed #5c4500;
}

@media screen and (max-width:1100px) {
    #fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms2 {
width:80vw;
    }
}

@media screen and (max-width:1030px) {
    #fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms1 {
width:95vw;left:7vw;padding: 35px 20px 35px;
    }

    #fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms1 ul {
padding-left:5px;
    }

    #fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms2 {
padding: 35px 20px 35px;
    }

    #fs_CheckoutV2 #headerarea #h-nav .menu__second-level.ms2 ul {
padding-left:5px;
    }
}

@media screen and (max-width:960px) {
    #fs_CheckoutV2 #headerarea .menu__second-level-flex-child {
width: 32%;margin-right: 2%;
    }
}

/* ---- Footer (from style.css) ---- */

#fs_CheckoutV2 #footerarea .instatitle {
margin-bottom: 30px;
	text-align: center;
	margin-top: 70px;
}

#fs_CheckoutV2 #footerarea .instatitle h2 {
font-size: 26px;
	font-weight: normal;
	letter-spacing: 5px;
	color: #5c4500;
}

#fs_CheckoutV2 #footerarea .instatitle span {
display: block;
	letter-spacing: 3px;
	font-size:17px;
}

#fs_CheckoutV2 #footerarea .instatitle span a:hover {
text-decoration: underline;
}

#fs_CheckoutV2 #footerarea {
position: relative;
	z-index: 1;
	background:#fff;
}

#fs_CheckoutV2 #footerarea .noscriptfooter {
margin-top: 100px;
}

#fs_CheckoutV2 #footerarea .footer-banner {
margin-bottom: 30px;
	margin-top: 80px;
}

#fs_CheckoutV2 #footerarea .product-banner__list {
justify-content: center;
}

#fs_CheckoutV2 #footerarea .product-banner__list li {
width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
}

#fs_CheckoutV2 #footerarea .product-banner__list li:nth-of-type(3n) {
margin-right: 0;
}

#fs_CheckoutV2 #footerarea .footer-img {
width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	z-index: -1;
}

#fs_CheckoutV2 #footerarea .footer-bg {
padding-top: 20px;
	z-index: 333;
	position: relative;
}

#fs_CheckoutV2 #footerarea .footer-bg::before {
content: "";
	display: inline-block;
	background: url(../images/common/white-round.png) no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	width: 300px;
	height: 69px;
	position: absolute;
	bottom: 99%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

#fs_CheckoutV2 #footerarea .footer-position {
margin-top: -60px;
	z-index: 5;
}

#fs_CheckoutV2 #footerarea .footer-logo {
width: 20%;
	margin: 0 auto 20px;
}

#fs_CheckoutV2 #footerarea .footer-logo img {
width: 100%;
}

#fs_CheckoutV2 #footerarea .footer-contact {
width: 200px;
	margin: 0 auto;
	padding-left:0;
}

#fs_CheckoutV2 #footerarea .footer-contact li a {
color: #84620c;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-flow: column; 
	vertical-align: top;
	font-size: 29px;
}

#fs_CheckoutV2 #footerarea .footer-contact li a i.fa-facebook-f {
font-size:26px;
}

#fs_CheckoutV2 #footerarea .footer-contact li a:hover {
opacity: 0.7;
}

#fs_CheckoutV2 #footerarea .footer-contact li a img {
width: 18px;
	height: auto;
}

#fs_CheckoutV2 #footerarea .footer-guide {
width: 350px;
	margin: -18px 15px 10px auto;
	padding-left:0;
}

@media screen and (max-width:1020px) {
    #fs_CheckoutV2 #footerarea .footer-guide {
margin: 20px auto 10px;
    }
}

#fs_CheckoutV2 #footerarea .footer-guide li a {
color: #84620c;
}

#fs_CheckoutV2 #footerarea .footer-guide li a:hover {
opacity: 0.7;
}

#fs_CheckoutV2 #footerarea .copyright {
color: #fff;
	background-color: #84620c;
	text-align: center;
	padding: 5px 0;
}
/* PCヘッダーメニューの文字化け矢印修正 */
#fs_CheckoutV2 #headerarea #h-nav > ul > li.menu__mega > span::before {
	content: "" !important;
	width: 6px;
	height: 6px;
	border-right: 1px solid #b1926b;
	border-bottom: 1px solid #b1926b;
	transform: translateY(-70%) rotate(45deg);
	top: 50%;
	right: -17px;
	font-family: initial !important;
}