html { font-size: 62.5%;}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.0rem;
	font-weight: 500;
	color: #333333;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

_:-ms-lang(x)::-ms-backdrop, body {
	font-family: "メイリオ", sans-serif!important;
	font-weight: 400;
}



/**************************************
input
**************************************/
select{
	width: 100%;
	height: 36px;
	box-sizing: border-box;
	font-size: 1.6rem;
	line-height: 34px;
	padding: 0 50px 0 19px;
	background: #FFFFFF;
	border: 1px solid #cccccc;
	border-radius: 4px;
	vertical-align: middle;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background-image: url("../img/common/icon_arrow_bottom_black.svg");
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 10px auto;
}


select > option:checked{
	background-color: #eeeeee;
	position: relative;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="email"]{
	width: 100%;
	height: 36px;
	box-sizing: border-box;
	line-height: 16px;
	font-size: 1.6rem;
	padding: 9px 19px 9px;
	background: #FFFFFF;
	border-radius: 4px;
	border: 1px solid #cccccc;
	vertical-align: middle;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea{
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	font-size: 1.6rem;
	line-height: 1.4;
	padding: 9px 19px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
	vertical-align: middle;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


:placeholder-shown { color: #999999; }
::-webkit-input-placeholder { color: #999999; }
:-moz-placeholder { color: #999999; opacity: 1; }
::-moz-placeholder { color: #999999; opacity: 1; }
:-ms-input-placeholder { color: #999999; }

input[type="text"].err,
input[type="tel"].err,
input[type="number"].err,
input[type="password"].err,
input[type="email"].err,
select.err,
option.err,
textarea.err{
	border: 1px solid #e35555;
}

input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled,
select:disabled,
option:disabled,
textarea:disabled{
	background-color: #efefef;
	color: #999999;
}

input[type="radio"],
input[type="checkbox"]{vertical-align: middle;}

/** radioBox *********************/
label.radioBox{cursor: pointer;}
label.radioBox + label.radioBox{margin-left: 40px;}
label.radioBox > input , li.registAddreList > input {display: none;}


label.radioBox > span{
    display: inline-block;
    text-align: left;
    min-height: 24px;
    font-size: 1.6rem;
	line-height: 1.7;
	padding-left: 34px;
    vertical-align: middle;
    position: relative;
}

label.radioBox.small > span{
	min-height: 16px;
	padding-left: 26px;
    font-size: 1.4rem;
	line-height: 1.7;
}

label.radioBox > span::before{
	content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: 1px;
	z-index: 2;
}
label.radioBox.small > span::before{
	width: 16px;
	height: 16px;
	top: 2px;
}

label.radioBox > span::after{
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
	border-radius: 50%;
	background: #e35555;
    position: absolute;
    left: 6px;
    top: 7px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}
label.radioBox.small > span::after{
    width: 8px;
    height: 8px;
	left: 4px;
	top: 6px;
}

label.radioBox > input:checked + span::after{
    opacity: 1;
    transform: scale(1);
}

label.radioBox > input:disabled + span::before{background-color: #efefef;}
label.radioBox > input:checked:disabled + span::after{opacity: 0;}

/** checkBox *********************/

label.checkBox{
	cursor: pointer;
    max-width: max-content;
    display: inline-table;
	}
label.checkBox + label.checkBox{margin-left: 40px;}
label.checkBox > input{display: none;}

label.checkBox > span{
    display: inline-block;
    text-align: left;
    min-height: 20px;
    font-size: 1.6rem;
	line-height: 1.7;
	padding-left: 30px;
    vertical-align: middle;
    position: relative;
}
label.checkBox.small > span{
	min-height: 16px;
	padding-left: 26px;
    font-size: 1.4rem;
	line-height: 1.7;
}

label.checkBox > span::before{
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
	border-radius: 4px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: 3px;
	z-index: 2;
}
label.checkBox.small > span::before{
	width: 16px;
	height: 16px;
	top: 3px;
}

label.checkBox > span::after{
    content: ' ';
    display: block;
    width: 16px;
    height: 16px;
	background: url("../img/common/icon_checked.svg") center center no-repeat;
	background-size: 16px auto;
    position: absolute;
    left: 2px;
    top: 5px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}
label.checkBox.small > span::after{
    width: 12px;
    height: 12px;
	background-size: 12px auto;
	left: 2px;
	top: 5px;
}

label.checkBox > input:checked + span::after{
    opacity: 1;
    transform: scale(1);
}

label.checkBox > input:disabled + span::before{background-color: #efefef;}
label.checkBox > input:disabled + span::after{ opacity: 0;}





/**************************************
btn
**************************************/
/*** btnWhite ***********/
.btnWhite{}

.btnWhite > a,
.btnWhite > button,
.btnWhite > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
	border: 1px solid #333333;
	border-radius: 4px;
    color: #333333;
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.btnWhite.small > a,
.btnWhite.small > button,
.btnWhite.small > span{
    height: 40px;
    font-size: 1.6rem;
	border: 1px solid #333333;
}

.btnWhite > a:hover,
.btnWhite > button:hover,
.btnWhite > span:hover{
	background: #333333;
	color: #FFFFFF;
}

.btnWhite > a:disabled,
.btnWhite > button:disabled,
.btnWhite > a:disabled:hover,
.btnWhite > button:disabled:hover{
	color: #999999;
	border-color: #999999;
	background: #FFFFFF;
	box-shadow: none;
	cursor: default;
}


#cartInner .btnWhite > a,
#cartInner .btnWhite > button,
#cartInner .btnWhite > span,
#headLogin .btnWhite > a,
#headLogin .btnWhite > button,
#headLogin .btnWhite > span{
    height: 40px;
    font-size: 1.6rem;
	border: none;
	box-shadow: 2px 2px 0 rgba(37,37,37,1);
}
#headCart .btnWhite > a:hover,
#headCart .btnWhite > button:hover,
#headCart .btnWhite > span:hover,
#headLogin .btnWhite > a:hover,
#headLogin .btnWhite > button:hover,
#headLogin .btnWhite > span:hover{
	background: #444444;
	color: #FFFFFF;
}


.btnWhite span.otherSiteLink::after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 10px;
	background: url("../img/common/icon_open_blank.svg") left 0 no-repeat;
	background-size: 12px auto;
	vertical-align: middle;
}

.btnWhite > a:hover span.otherSiteLink::after{
	background: url("../img/common/icon_open_blank_white.svg") left 0 no-repeat;
	background-size: 12px auto;
}


/*** btnBlack ***********/
.btnBlack{}

.btnBlack > a,
.btnBlack > button,
.btnBlack > span,
button.clickOnAddToCartContentAsset{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
	border: 2px solid #333333;
	border-radius: 4px;
    background: #333333;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.btnBlack.small > a,
.btnBlack.small > button,
.btnBlack.small > span,
button.clickOnAddToCartContentAsset.small{
    height: 40px;
    font-size: 1.6rem;
	border: 1px solid #333333;
}


.btnBlack > a:hover,
.btnBlack > button:hover,
.btnBlack > span:hover,
button.clickOnAddToCartContentAsset:hover{
	background: #FFFFFF;
	color: #333333;
}


.btnBlack > a:disabled,
.btnBlack > button:disabled,
.btnBlack > a:disabled:hover,
.btnBlack > button:disabled:hover,
button.clickOnAddToCartContentAsset:disabled:hover{
	color: #FFFFFF;
	border-color: #999999;
	background: #999999;
	box-shadow: none;
	cursor: default;
}

/*** btnCustom ***********/
button.clickOnAddToCartContentAsset.btnCustom01,
button.clickOnAddToCartContentAsset.btnCustom02,
button.clickOnAddToCartContentAsset.btnCustom03,
button.clickOnAddToCartContentAsset.btnCustom04,
button.clickOnAddToCartContentAsset.btnCustom05{
    width: auto;
    max-width: 100%;
    height: auto;
    line-height: 1.2;
    padding: 0.65em 2em !important;
    border-radius: 3em;
    outline:none;
    color:#FFF;
}
button.clickOnAddToCartContentAsset.btnCustom06,
button.clickOnAddToCartContentAsset.btnCustom07,
button.clickOnAddToCartContentAsset.btnCustom08,
button.clickOnAddToCartContentAsset.btnCustom09,
button.clickOnAddToCartContentAsset.btnCustom10,
button.clickOnAddToCartContentAsset.btnCustom11{
    width: auto;
    max-width: 100%;
    height: auto;
    line-height: 1.2;
    padding: 0.65em 2em !important;
    border-radius: 4px;
    outline:none;
    color:#FFF;
}

button.clickOnAddToCartContentAsset.btnCustom01{
  border: solid 2px #D6062D;
  background: #BC0000;
  background: -moz-linear-gradient(top,  #fe9797 0%, #ea1010 27%, #940000 100%);
  background: -webkit-linear-gradient(top,  #fe9797 0%,#ea1010 27%,#940000 100%);
  background: linear-gradient(to bottom,  #fe9797 0%,#ea1010 27%,#940000 100%);
}
button.clickOnAddToCartContentAsset.btnCustom01{
  border: solid 2px #D6062D;
  background: #BC0000;
  background: -moz-linear-gradient(top,  rgba(254, 151, 151, 1) 0%, rgba(234, 16, 16, 1) 27%, rgba(148, 0, 0, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(254, 151, 151, 1) 0%, rgba(234, 16, 16, 1) 27%, rgba(148, 0, 0, 1, 1) 100%);
  background: linear-gradient(to bottom,  rgba(254, 151, 151, 1) 0%,rgba(234, 16, 16, 1) 27%,rgba(148, 0, 0, 1) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom02{
  border: solid 2px #0F0F0F;
  background: #2D2D2D;
  background: -moz-linear-gradient(top,  rgba(185, 185, 185, 1) 0%, rgba(112, 112, 112, 1) 27%, rgba(5, 5, 5, 1) 100%);
  background: -webkit-linear-gradient(top,  rgba(185, 185, 185, 1) 0%,rgba(112, 112, 112, 1) 27%,rgba(5, 5, 5, 1) 100%);
  background: linear-gradient(to bottom,  rgba(185, 185, 185, 1) 0%,rgba(112, 112, 112, 1) 27%,rgba(5, 5, 5, 1) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom03{
  border: solid 2px #002671;
  background: #0136B1;
  background: -moz-linear-gradient(top,  rgba(88, 126, 232, 1) 0%, rgba(5, 61, 208, 1) 27%, rgba(0, 50, 151, 1) 100%);
  background: -webkit-linear-gradient(top,  rgba(88, 126, 232, 1) 0%,rgba(5, 61, 208, 1) 27%,rgba(0, 50, 151, 1) 100%);
  background: linear-gradient(to bottom,  rgba(88, 126, 232, 1) 0%,rgba(5, 61, 208, 1) 27%,rgba(0, 50, 151, 1) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom04{
  border: solid 2px #E1010C;
  background: #C0470A;
  background: -moz-linear-gradient(top,  rgba(251, 178, 110, 1) 0%, rgba(230, 117, 26, 1) 27%, rgba(170, 48, 3, 1) 100%);
  background: -webkit-linear-gradient(top,  rgba(251, 178, 110, 1) 0%,rgba(230, 117, 26, 1) 27%,rgba(170, 48, 3, 1) 100%);
  background: linear-gradient(to bottom,  rgba(251, 178, 110, 1) 0%,rgba(230, 117, 26, 1) 27%,rgba(170, 48, 3, 1) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom05{
  border: solid 2px #129900;
  background: #159301;
  background: -moz-linear-gradient(top,  rgba(166, 239, 153, 1) 0%, rgba(30, 192, 2, 1) 27%, rgba(14, 113, 0, 1) 100%);
  background: -webkit-linear-gradient(top,  rgba(166, 239, 153, 1) 0%,rgba(30, 192, 2, 1) 27%,rgba(14, 113, 0, 1) 100%);
  background: linear-gradient(to bottom,  rgba(166, 239, 153, 1) 0%,rgba(30, 192, 2, 1) 27%,rgba(14, 113, 0, 1) 100%);
}

button.clickOnAddToCartContentAsset.btnCustom06{
  border: solid 2px #002F6C;

  background: #002F6C;
}
button.clickOnAddToCartContentAsset.btnCustom07{
border: solid 2px #BC0000;
  background: #BC0000;
}

button.clickOnAddToCartContentAsset.btnCustom08{
 border: solid 2px #2D2D2D;
  background: #2D2D2D;
}

button.clickOnAddToCartContentAsset.btnCustom09{
border: solid 2px #0136B1;
  background: #0136B1;
}

button.clickOnAddToCartContentAsset.btnCustom10{
border: solid 2px #C0470A;
  background: #C0470A;
}

button.clickOnAddToCartContentAsset.btnCustom11{
  border: solid 2px #159301;
  background: #159301;
}

button.clickOnAddToCartContentAsset.btnCustom06::before,
button.clickOnAddToCartContentAsset.btnCustom07::before,
button.clickOnAddToCartContentAsset.btnCustom08::before,
button.clickOnAddToCartContentAsset.btnCustom09::before,
button.clickOnAddToCartContentAsset.btnCustom10::before,
button.clickOnAddToCartContentAsset.btnCustom11::before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_white.svg") center center no-repeat;
	background-size: 29px auto;
}
button.clickOnAddToCartContentAsset.btnCustom01:hover{
  background: -moz-linear-gradient(top,  rgba(254, 151, 151, .7) 0%, rgba(234, 16, 16, .7) 27%, rgba(148, 0, 0, .7) 100%);
  background: -webkit-linear-gradient(top, rgba(254, 151, 151, .7) 0%, rgba(234, 16, 16, .7) 27%, rgba(148, 0, 0, 1, .7) 100%);
  background: linear-gradient(to bottom,  rgba(254, 151, 151, .7) 0%,rgba(234, 16, 16, .7) 27%,rgba(148, 0, 0, .7) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom02:hover{
  background: -moz-linear-gradient(top,  rgba(185, 185, 185, .7) 0%, rgba(112, 112, 112, .7) 27%, rgba(5, 5, 5, .7) 100%);
  background: -webkit-linear-gradient(top,  rgba(185, 185, 185, .7) 0%,rgba(112, 112, 112, .7) 27%,rgba(5, 5, 5, .7) 100%);
  background: linear-gradient(to bottom,  rgba(185, 185, 185, .7) 0%,rgba(112, 112, 112, .7) 27%,rgba(5, 5, 5, .7) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom03:hover{
  background: -moz-linear-gradient(top,  rgba(88, 126, 232, .7) 0%, rgba(5, 61, 208, .7) 27%, rgba(0, 50, 151, .7) 100%);
  background: -webkit-linear-gradient(top,  rgba(88, 126, 232, .7) 0%,rgba(5, 61, 208, .7) 27%,rgba(0, 50, 151, .7) 100%);
  background: linear-gradient(to bottom,  rgba(88, 126, 232, .7) 0%,rgba(5, 61, 208, .7) 27%,rgba(0, 50, 151, .7) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom04:hover{
  background: -moz-linear-gradient(top,  rgba(251, 178, 110, .7) 0%, rgba(230, 117, 26, .7) 27%, rgba(170, 48, 3, .7) 100%);
  background: -webkit-linear-gradient(top,  rgba(251, 178, 110, .7) 0%,rgba(230, 117, 26, .7) 27%,rgba(170, 48, 3, .7) 100%);
  background: linear-gradient(to bottom,  rgba(251, 178, 110, .7) 0%,rgba(230, 117, 26, .7) 27%,rgba(170, 48, 3, .7) 100%);
}
button.clickOnAddToCartContentAsset.btnCustom05:hover{
  background: -moz-linear-gradient(top,  rgba(166, 239, 153, .7) 0%, rgba(30, 192, 2, .7) 27%, rgba(14, 113, 0, .7) 100%);
  background: -webkit-linear-gradient(top,  rgba(166, 239, 153, .7) 0%,rgba(30, 192, 2, .7) 27%,rgba(14, 113, 0, .7) 100%);
  background: linear-gradient(to bottom,  rgba(166, 239, 153, .7) 0%,rgba(30, 192, 2, .7) 27%,rgba(14, 113, 0, .7) 100%);
}

button.clickOnAddToCartContentAsset.btnCustom01:hover,
button.clickOnAddToCartContentAsset.btnCustom02:hover,
button.clickOnAddToCartContentAsset.btnCustom03:hover,
button.clickOnAddToCartContentAsset.btnCustom04:hover,
button.clickOnAddToCartContentAsset.btnCustom05:hover{
  color: #FFFFFF;
}
button.clickOnAddToCartContentAsset.btnCustom06:hover{
	color: #002F6C;
	background: #FFFFFF;
}
button.clickOnAddToCartContentAsset.btnCustom07:hover,
button.clickOnAddToCartContentAsset.btnCustom08:hover,
button.clickOnAddToCartContentAsset.btnCustom09:hover,
button.clickOnAddToCartContentAsset.btnCustom10:hover,
button.clickOnAddToCartContentAsset.btnCustom11:hover{
	background: #FFFFFF;
}

button.clickOnAddToCartContentAsset.btnCustom07:hover{
  color:#BC0000;
}

button.clickOnAddToCartContentAsset.btnCustom08:hover{
   color:#2D2D2D;
}

button.clickOnAddToCartContentAsset.btnCustom09:hover{
    color:#0136B1;
}

button.clickOnAddToCartContentAsset.btnCustom10:hover{
    color:#C0470A;
}
button.clickOnAddToCartContentAsset.btnCustom11:hover{
    color:#159301;
}

button.clickOnAddToCartContentAsset.btnCustom06:hover:before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_blue.svg") center center no-repeat;
	background-size: 29px auto;
}

button.clickOnAddToCartContentAsset.btnCustom07:hover:before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_red.svg") center center no-repeat;
	background-size: 29px auto;
}

button.clickOnAddToCartContentAsset.btnCustom08:hover:before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_black.svg") center center no-repeat;
	background-size: 29px auto;
}

button.clickOnAddToCartContentAsset.btnCustom09:hover:before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_indigo.svg") center center no-repeat;
	background-size: 29px auto;
}

button.clickOnAddToCartContentAsset.btnCustom10:hover:before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_orange.svg") center center no-repeat;
	background-size: 29px auto;
}

button.clickOnAddToCartContentAsset.btnCustom11:hover:before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_green.svg") center center no-repeat;
	background-size: 29px auto;
}


button.clickOnAddToCartContentAsset.btnCustom01:disabled,
button.clickOnAddToCartContentAsset.btnCustom02:disabled,
button.clickOnAddToCartContentAsset.btnCustom03:disabled,
button.clickOnAddToCartContentAsset.btnCustom04:disabled,
button.clickOnAddToCartContentAsset.btnCustom05:disabled,
button.clickOnAddToCartContentAsset.btnCustom01:disabled:hover,
button.clickOnAddToCartContentAsset.btnCustom02:disabled:hover,
button.clickOnAddToCartContentAsset.btnCustom03:disabled:hover,
button.clickOnAddToCartContentAsset.btnCustom04:disabled:hover,
button.clickOnAddToCartContentAsset.btnCustom05:disabled:hover{
  color: #FFFFFF;
  border: solid 2px #999999;
  background: #999999;
  background: -moz-linear-gradient(top,  #e2e2e2 0%, #c2c2c2 27%, #939393 100%);
  background: -webkit-linear-gradient(top,  #e2e2e2 0%,#c2c2c2 27%,#939393 100%);
  background: linear-gradient(to bottom,  #e2e2e2 0%,#c2c2c2 27%,#939393 100%);
  box-shadow: 2px 2px 0 rgba(187,187,187,1);
  cursor: default;
}

button#btnDisabled.clickOnAddToCartContentAsset.btnDisabled:disabled,button#btnDisabled.clickOnAddToCartContentAsset.btnDisabled:disabled:hover{
	pointer-events: none !important;
	color: #FFFFFF;
	border-color: #999999 !important;
	background: #999999 !important;
	box-shadow: none;
	cursor: default;
	white-space: normal !important;
	opacity: 1.0 !important;
}

div:has(.product-detail button#btnDisabled.clickOnAddToCartContentAsset.btnDisabled),
div:has(.product-detail button#btnDisabled.clickOnAddToCartContentAsset.btnDisabled:hover){
	opacity:1.0 !important;
	animation: none !important;
	transform: none !important;
	transition: unset !important;
}

/*** btnInCart ***********/
.btnInCart{}

.btnInCart > a,
.btnInCart > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    font-size: 2.0rem;
    font-weight: 700;
    color: #FFFFFF;
	border: 2px solid #333333;
	border-radius: 4px;
    background: #333333;
    text-align: center;
    text-decoration: none;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
	position: relative;
    cursor: pointer;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.btnInCart > a::before,
.btnInCart > button::before{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	background: url("../img/common/icon_cart_white.svg") center center no-repeat;
	background-size: 29px auto;
}

.btnInCart > a:hover,
.btnInCart > button:hover{
	background: #FFFFFF;
	color: #333333;
}
.btnInCart > a:hover::before,
.btnInCart > button:hover::before{
	background: url("../img/common/icon_cart_black.svg") center center no-repeat;
	background-size: 29px auto;
}

.btnInCart > a:disabled,
.btnInCart > button:disabled,
.btnInCart > a:disabled:hover,
.btnInCart > button:disabled:hover{
	color: #FFFFFF;
	border-color: #999999;
	background: #999999;
	box-shadow: none;
	cursor: default;
}
.btnInCart > a:disabled::before,
.btnInCart > button:disabled::before{
	display: none;
}


/*** arrowLink ***********/
a.arrowLink,
span.arrowLink{
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 700;
    color: #333333;
    text-decoration: none;
    padding-left: 26px;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
}

a.arrowLinkLP{
	display: inline-block;
	font-size: 2.0rem;
	font-weight: 700;
    color: #333333;
    text-decoration: none;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 36px;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
}

a.arrowLink::before,
span.arrowLink::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: url("../img/common/icon_arrow_right_white.svg") center center no-repeat #333333;
	background-size: auto 9px;
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
}

a.arrowLinkLP::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: url("../img/common/icon_arrow_right_white.svg") center center no-repeat #333333;
	background-size: auto 9px;
	position: absolute;
	left: 10px;
	top: calc(50% - 9px);
}

a.arrowLink:hover,
a.arrowLinkLP:hover{
	text-decoration: underline;
}


a.arrowLinkWhite{
	display: inline-block;
	font-size: 1.6rem;
	color: #FFFFFF;
    text-decoration: none;
    padding-left: 26px;
	position: relative;
}
a.arrowLinkWhite::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: url("../img/common/icon_arrow_right_black.svg") center center no-repeat #FFFFFF;
	background-size: auto 9px;
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
}

a.arrowLinkWhite:hover{text-decoration: underline;}


a.arrowLinkUnder{
	display: inline-block;
	font-size: 1.6rem;
    color: #333333;
    text-decoration: none;
    padding-left: 26px;
	position: relative;
}
a.arrowLinkUnder::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: url("../img/common/icon_arrow_bottom_white.svg") center center no-repeat #333333;
	background-size: 10px auto;
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
}

a.arrowLinkUnder:hover{text-decoration: underline;}

/*【FFHC v1.0】【No.206 「この商品がすぐに必要ですか？」ボタンの表示を変更】 #40608 Start.*/
.ded .subscriptionArea .content .bottomBtnArea > ul > li a.SubscriptionListBtnInCart{
	display: inline-block;
	font-size: 1.7rem;
	font-weight: 700;
    color: #333333;
    text-decoration: none;
    padding-left: 26px;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	text-decoration: underline;
}

a.SubscriptionListBtnInCart::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: url("../img/common/icon_arrow_right_white.svg") center center no-repeat #333333;
	background-size: auto 9px;
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
}

a.SubscriptionListBtnInCart:hover{
	text-decoration: underline;
}
/*【FFHC v1.0】【No.206 「この商品がすぐに必要ですか？」ボタンの表示を変更】 #40608 End.*/

/*** otherSiteLink ***********/
a.otherSiteLink,
span.otherSiteLink{}
a.otherSiteLink::after,
span.otherSiteLink::after{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 10px;
	background: url("../img/common/icon_open_blank.svg") left 0 no-repeat;
	background-size: 12px auto;
	vertical-align: middle;
}

/*** btnMore ***********/
.btnMore{}

.btnMore > a,
.btnMore > button,
.btnMore > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    font-size: 1.4rem;
    font-weight: 700;
	border: 1px solid #cccccc;
	border-radius: 4px;
    color: #333333;
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.btnMore > a:hover,
.btnMore > button:hover,
.btnMore > span:hover{text-decoration: underline;}


.btnMore > a > em,
.btnMore > button > em,
.btnMore > span > em{
	display: block;
	width: 10px;
	height: 10px;
	margin-left: 5px;
	position: relative;
}


.btnMore > a > em::before,
.btnMore > button > em::before,
.btnMore > span > em::before,
.btnMore > a > em::after,
.btnMore > button > em::after,
.btnMore > span > em::after{
	content: '';
	display: block;
	width: 10px; height: 2px;
	background: #333333;
	position: absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}
.btnMore > a > em::before,
.btnMore > button > em::before,
.btnMore > span > em::before{
	top: calc(50% - 1px);
	right: 0;
}
.btnMore > a > em::after,
.btnMore > button > em::after,
.btnMore > span > em::after{
	transform: rotate(90deg);
	top: calc(50% - 1px);
	right: 0;
}
.btnMore.open > a > em::after,
.btnMore.open > button > em::after,
.btnMore.open > span > em::after{
    opacity: 0;
	transform: rotate(0);
}



/**************************************
modalBox
**************************************/
.modalBox{
	display: block;
	width: 100%;
	background: rgba(0,0,0,.8);
	overflow: auto;
	position: fixed;
	visibility: hidden;
	opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
	z-index: -1;
	webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transform: translate(-200vw, 0);
    -moz-transform: translate(-200vw, 0);
    -o-transform: translate(-200vw, 0);
    transform: translate(-200vw, 0);
}
.modalBox.open{
	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
	z-index: 1000;
}

.modalBox.lock{
	overflow: hidden;
}

.modalBox .modalBg{
	content: '';
	display: block;
	width: 100%;
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
	z-index: 1;
	cursor: pointer;
}

.modalBox .modalInner{
	width: 920px;
	padding: 60px;
	margin: 0 auto;
    background: #FFFFFF;
	position: relative;
	z-index: 2;
}

.modalBox .modalTTL,
#dialog-container .modalTTL,
.modalInner .modalTTL{
    display: block;
    width: 100%;
    padding: 0 0 40px;
    margin: 0 auto;
    font-size: 2.2rem;
    line-height: 1.6;
    font-weight: 700;
}

.modalBox .modalInner .closeBtn{
	display: block;
	width: 40px;
	height: 40px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: -50px;
}

.modalBox .modalInner .closeBtn::before,
.modalBox .modalInner .closeBtn::after{
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background: #FFFFFF;
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
}

.modalBox .modalInner .closeBtn::before{
	-webkit-transform: translate(-3px,-3px) rotate(45deg);
	-moz-transform: translate(-3px,-3px) rotate(45deg);
	-o-transform: translate(-3px,-3px) rotate(45deg);
 	transform: translate(-3px,-3px) rotate(45deg);
}
.modalBox .modalInner .closeBtn::after{
	-webkit-transform: translate(-3px,-3px) rotate(-45deg);
	-moz-transform: translate(-3px,-3px) rotate(-45deg);
	-o-transform: translate(-3px,-3px) rotate(-45deg);
 	transform: translate(-3px,-3px) rotate(-45deg);
}

.modalBox .modalInner .closeText,
#dialog-container .closeText,
#bonus-product-dialog .closeText{
	display: block;
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #333333;
	text-align: center;
}

.modalBox .modalInner .closeText > span,
#dialog-container .closeText > span,
#bonus-product-dialog .closeText >span{
	font-size: 1.4rem;
	text-decoration: underline;
	cursor: pointer;
}
.modalBox .modalInner .closeText > span:hover{text-decoration: none;}
#dialog-container .closeText > span:hover{text-decoration: none;}
#bonus-product-dialog .closeText > span:hover{text-decoration: none;}

.helpBox{}

.helpBox .openModal{
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	font-size: 1.4rem;
	text-decoration: underline;
	cursor: pointer;
}

.helpBox .openModal:hover{text-decoration: none;}

.helpBox .openModal > em{
	display: block;
	width: 23px;
	height: 23px;
	margin-right: 10px;
}
.helpBox .openModal > em > img{display: block; width: 23px; height: auto;}


.helpBox .modalBox .helpText > dl{
	margin-bottom: 30px;
}
.helpBox .modalBox .helpText > dl:nth-last-of-type(1){margin-bottom: 0;}

/**【FFHC v1.0】【一部のアセット、スロットなどが未実装】#5420 Start.*/
.helpBox .modalBox .helpText > dl > dt,
.helpBox .modalBox .helpText > div > dl > dt{
	display: block;
	text-align: left;
	font-size: 2.2rem;
	line-height: 1.7;
	font-weight: 700;
	margin-bottom: 40px;
}

.helpBox .modalBox .helpText > dl > dd,
.helpBox .modalBox .helpText > div > dl > dd{
	display: block;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: left;
	margin-bottom: 40px;
}

.helpBox .modalBox .helpText > dl > dd > dl,
.helpBox .modalBox .helpText > div > dl > dd > dl{
	margin-bottom: 30px;
}
.helpBox .modalBox .helpText > dl > dd > dl:nth-last-of-type(1),
.helpBox .modalBox .helpText > div > dl > dd > dl:nth-last-of-type(1){
	margin-bottom: 0;
}

.helpBox .modalBox .helpText > dl > dd > dl > dt,
.helpBox .modalBox .helpText > div > dl > dd > dl > dt{
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
}
/**【FFHC v1.0】【一部のアセット、スロットなどが未実装】#5420 End.*/

.modalBox .securityCodeImg{display: block; width: 100%; margin-bottom: 50px;}
.modalBox .securityCodeImg img{display: block; width: 100%; height: auto;}

.cautionListOuter{
	display: block;
	padding-top: 20px;
}

.helpBox .modalBox .infoText {
	text-indent: 1em;
	padding-top: 0.5rem;
	padding-bottom: 1.3rem;
}
.helpBox .modalBox .refText {
	text-indent: 1em;
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
}
.helpBox .modalBox .subText {
	text-indent: 2em;
	font-size: 1.2rem;
	padding-bottom: 0.5rem;
}

.helpBox .modalBox .contactTTL {
    display: block;
    width: 100%;
    padding: 20px 0 20px;
    margin: 0 auto;
    font-size: 2.2rem;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
}
.helpBox .modalBox .contactText {
    text-align: center;
}


/**************************************
wrap
**************************************/
#wrapper{
	width: 100%;
	min-width: 980px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
#wrapper.lock{
	position: fixed;
	overflow: hidden;
	top: 0;
}

#wrapper.fixedFootOpen{
	padding-bottom: 100px;
}

/**************************************
#headMsg
**************************************/
#noscriptMsg,
#cookieMsg{
	display: block;
	width: 100%;
	background: #fbe6e6;
	padding: 20px 0;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: center;
}

/**************************************
#header
**************************************/
#header{
	width: 100%;
	height: 110px;
	margin: 0 auto;
	padding: 0 0;
	background: #FFFFFF;
	border-bottom: 2px solid #cccccc;
}

#header.simple{
	height: 60px;
	border-bottom: 2px solid #cccccc;
}

#header .headInner{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding-left: 140px;
	margin: 0 auto;
	position: relative;
}

#header .headLogo{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 320px;
	height: 110px;
	padding: 16px 0;
}

#header.simple .headLogo{
	height: 60px;
	padding: 0;
	margin: 0 auto;
}


#header .headLogo > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	height: 20px;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity  0.2s ease;
}
#header .headLogo > a > img{display: block;}

#header .headLogo > a > img:nth-of-type(1){width: 116px; margin-right: 15px}
#header .headLogo > a > img:nth-of-type(2){width: calc(100% - 131px);}

#header .headLogo > a:hover{opacity: .6;}

#header .headLogo2{
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#header .headLogo2 > img{
	display: block;
	padding-top: 0px;
	margin: 10px auto 0px;
	width: 90px
}

/*** #headLoiginBtn *****************************/
#headLoiginBtn{display: none;}

/*** #headSearchBox *****************************/
#headSearchBox{
	display: block;
	width: 260px;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 102;
}

#headSearchBox .openBtn{display: none;}
.external #headSearchBox {display: none;}
.external #headUtility{right:12px;}

/*** headSearch ***********/
#headSearch{}

#headSearch fieldset{
	display: block;
	width: 100%; height: 30px;
	margin: 0;
	padding: 0;
}

#headSearch fieldset > input[type="text"],
#headSearch fieldset > button{
	display: block;
	float: left;
}
#headSearch fieldset > input[type="text"]{
	display: block;
	width: calc(100% - 45px);
	height: 30px;
	padding: 0 19px;
	border-radius: 4px 0 0 4px;
	line-height: 28px;
	border-right: none;
	float: left;
}


#headSearch fieldset > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 45px;
	height: 30px;
	border-radius: 0 4px 4px 0;
	background: #333333;
	float: right;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background  0.2s ease;
}
#headSearch fieldset > button:hover{
	background: #999999;
}

#headSearch fieldset > button > img{
	display: block;
	width: 20px; height: auto;
}


/*** searchSuggestions ***********/
#searchSuggestions{
	display: none;
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #cccccc;
	box-shadow: 0 10px 10px rgba(0,0,0,.2);
	position: absolute;
	top: 30px;
	right: 0;
}


#searchSuggestions.open{
	display: block;
	z-index: 100;
}

#searchSuggestions .inner{
	display: block;
	width: 100%;
	text-align: left;
}


/*** searchPhrase ***********/
#searchSuggestions ul.searchPhrase{
	display: block;
	width: 100%;
}

#searchSuggestions ul.searchPhrase > li{ display: block;}


#searchSuggestions ul.searchPhrase > li > a{
	display: block;
	font-size: 1.4rem;
	padding: 10px;
	background: #FFFFFF;
	color: #333333;
	text-decoration: none;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background  0.2s ease;
}
#searchSuggestions ul.searchPhrase > li > a:hover{ background: #f7f7f7;}

/*** productSuggest ***********/
#searchSuggestions dl.productSuggest{
	display: block;
	border-top: 1px solid #cccccc;
}

#searchSuggestions dl.productSuggest > dt{
	display: block;
	padding: 10px;
	font-size: 1.4rem;
	text-align: left;
	background: #eeeeee;
}

#searchSuggestions dl.productSuggest > dd{ display: block;}
#searchSuggestions dl.productSuggest > dd > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	padding: 10px;
	color: #333333;
	background: #FFFFFF;
	text-align: left;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background  0.2s ease;
}

#searchSuggestions dl.productSuggest > dd > a:hover{ background: #f7f7f7;}

#searchSuggestions dl.productSuggest > dd figure{
	display: block;
	width: 60px;
	margin-right: 10px;
}
#searchSuggestions dl.productSuggest > dd figure > img{display: block; width: 100%; height: auto;}

#searchSuggestions dl.productSuggest > dd .text{
	display: block;
	width: calc(100% - 70px);
	font-size: 1.4rem;
	line-height: 1.7;
	margin-top: -0.25em;
}

/*** contentsSuggest ***********/
#searchSuggestions dl.contentsSuggest{
	display: block;
	border-top: 1px solid #cccccc;
}

#searchSuggestions dl.contentsSuggest > dt{
	display: block;
	padding: 10px;
	font-size: 1.4rem;
	text-align: left;
	background: #eeeeee;
}

#searchSuggestions dl.contentsSuggest > dd{
	display: block;
	border-bottom: 1px dotted #CCCCCC;
}
#searchSuggestions dl.contentsSuggest > dd:nth-last-of-type(1){border-bottom: none;}

#searchSuggestions dl.contentsSuggest > dd > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	padding: 10px;
	color: #333333;
	background: #FFFFFF;
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.3;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background  0.2s ease;
}


#searchSuggestions dl.contentsSuggest > dd > a:hover{ background: #f7f7f7;}

/** btnClose  ***/
#headSearchBox .closeBtn{display: none;}





/*** cart popup *****************************/
#headCart{
	display: block;
	width: 100px;
	height: 40px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 101;
}

#headCart > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100px;
	height: 40px;
	padding-bottom: 20px;
	color: #333333;
	text-decoration: none;
}

#headCart > a > em{
	display: block;
	width: 26px;
	position: relative;
	margin-right: 10px;
}
#headCart > a > em > img{display: block; width: 100%; height: auto;}

#headCart > a > em > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e35555;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	position: absolute;
	top: -10px;
	right: -9px;
}

#headCart > a > span{
	display: block;
	width: calc(100% - 36px);
	font-size: 16px;
	padding-right: 12px;
	background: url("../img/common/icon_arrow_bottom_black.svg") right center no-repeat;
	background-size: 13px auto;
}

#cartInner{
	display: block;
	width: 340px;
	padding: 0;
/* 	visibility: hidden; */
	background: #FFFFFF;
	border: 10px solid #333333;
	box-shadow: 0 10px 10px rgba(0,0,0,.2);
	position: absolute;
	z-index: 100;
 	top: 120px;
	right: 0;
	webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transform: translate(-200vw,0);
    -moz-transform: translate(-200vw,0);
    -o-transform: translate(-200vw,0);
    transform: translate(-200vw,0);
	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}

/* #headCart.open #cartInner{ */
/* 	visibility: visible; */
/* 	opacity: 1; */
/*     -webkit-transform: translate(0,0); */
/*     -moz-transform: translate(0,0); */
/*     -o-transform: translate(0,0); */
/*     transform: translate(0,0); */
/* } */

#cartInner::before{
	content: '';
	display: block;
	position: absolute;
	width: 340px;
	height: 35px;
	top: -45px;
	right: -10px;
}

#cartInner::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 12px 8px;
	border-color: transparent transparent #333333 transparent;
	position: absolute;
	top: -20px;
	right: 140px;
}


#cartInner ul.cartinItem{
	display: block;
	max-height: 330px;
	padding: 0 20px;
	border-bottom: 1px solid #CCCCCC;
	overflow-y: auto;
}


#cartInner .cartinItem > li{
	display: block;
	width: 100%;
	border-bottom: 1px solid #cccccc;
}
/** 【FFHC v1.0】2.3.5. 代理注文 - Task 3699修正　Start*/
div.mini-cart-content-OnBehalf  >  .cartinItem > li{
	position: relative;
}
/** 【FFHC v1.0】2.3.5. 代理注文 - Task 3699修正　End.*/
#cartInner .cartinItem > li:nth-last-of-type(1){border-bottom: none;}


#cartInner .cartinItem > li > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	width: 100%;
	min-height: 80px;
	text-decoration: none;
	color: #333333;
	padding: 20px 0;
	background: #FFFFFF;
	position: relative;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background  0.2s ease;
}

#cartInner .cartinItem > li > a:hover{ background: #f7f7f7;}

#cartInner .cartinItem > li > a > figure{
	display: block;
	width: 60px;
	height: 60px;
}
#cartInner .cartinItem > li > a > figure> img{
	display: block;
	width: 100%; height: auto;
}

#cartInner .cartinItem > li > a > .text{
	display: block;
	width: calc(100% - 70px);
	word-break: break-all;
	text-align: left;
}

#cartInner .cartinItem > li > a > .text > .name{
	display: block;
	max-height: 3.2em;
	overflow: hidden;
	font-size: 1.4rem;
	line-height: 1.7;
	text-decoration: underline;
	margin-top: -0.25em;
}

#cartInner .cartinItem > li > a > .text > .info{
	display: block;
	font-size: 1.4rem;
	padding-top: 8px;
}

#cartInner .cartinItem > li > a > .text > .subtotal{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	padding-top: 8px;
}

#cartInner .cartinItem > li > a > .text > .subtotal > .quantity{
	font-size: 1.4rem;
	text-align: left;
}

#cartInner .cartinItem > li > a > .text > .subtotal > .priceArea{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

#cartInner .cartinItem > li > a > .text > .subtotal > .priceArea > .flag{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	padding: 5px 5px;
	font-size: 1.2rem;
	text-align: center;
	background: #dddddd;
	margin-right: 5px;
}

#cartInner .cartinItem > li > a > .text > .subtotal > .priceArea > .price{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: right;
}

#cartInner .subtotalBox{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
	padding: 15px 20px;
}

#cartInner .subtotalBox > span{
	display: block;
	text-align: right;
	font-size: 1.4rem;
}
#cartInner .subtotalBox > span.price{
	font-size: 2.0rem;
	font-weight: 700;
}

#cartInner .promotionText{
	padding: 0 20px;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #e35555;
}

#cartInner .miniCartCaution{
	padding: 15px 20px;
	font-size: 1.2rem;
	line-height: 1.5;
}


#cartInner .btnArea{
	display: block;
	padding: 20px 10px 10px;
	background: #333333;
}


/** #headNav ************************************/
#header #headNav{}
#header #headNav #headNavBg{display: none;}

#header #headNav .openBtn{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items:center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 107px;
	height: 80px;
	cursor: pointer;
	border-right: 1px solid #CCCCCC;
	position: absolute;
	left: 0;
	top: 15px;
}


#header #headNav > .openBtn::before{
	content: '';
    display: block;
    height: 3px;
    width: 30px;
	left: calc(50% - 15px);
	top: 27px;
    background-color: #333333;
    opacity: 1;
	position:absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}
#header #headNav > .openBtn::after{
	content: '';
    display: block;
    height: 3px;
    width: 30px;
	left: calc(50% - 15px);
	bottom: 26px;
    background-color: #333333;
    opacity: 1;
	position:absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}


#header #headNav > .openBtn > span{
    display: block;
    height: 3px;
    width: 30px;
	left: calc(50% - 15px);
	top: 39px;
    background-color: #333333;
    opacity: 1;
	position:absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}

#header #headNav.open > .openBtn::before{
    opacity: 1;
	-webkit-transform: translateY(11px) rotate(-45deg);
	-moz-transform: translateY(11px) rotate(-45deg);
	-o-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
#header #headNav.open > .openBtn::after{
    opacity: 1;
	-webkit-transform: translateY(-14px) rotate(45deg);
	-moz-transform: translateY(-14px) rotate(45deg);
	-o-transform: translateY(-14px) rotate(45deg);
 	transform: translateY(-14px) rotate(45deg);
}

#header #headNav.open > .openBtn > span{opacity: 0;}

/** #headNavInner ************************************/
#header #headNavInner{}

/*** #headLogin ***********/
#headLogin{
	display: block;
	height: 40px;
	position: absolute;
	right: 240px;
	bottom: 0;
	z-index: 101;
}

#headLogin > dl{}

#headLogin > dl > dt{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	height: 40px;
	padding-bottom: 20px;
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}

#headLogin > dl > dt > em{
	display: block;
	width: 16px;
	position: relative;
	margin-right: 10px;
}
#headLogin > dl > dt > em > img{display: block; width: 100%; height: auto;}

#headLogin > dl > dt > span{
	display: block;
	width: calc(100% - 24px);
	font-size: 16px;
	padding-right: 20px;
	background: url("../img/common/icon_arrow_bottom_black.svg") right center no-repeat;
	background-size: 13px auto;
}

#headLogin > dl > dd{
	display: none;
	width: 340px;
	padding: 20px;
	background: #333333;
	box-shadow: 0 10px 10px rgba(0,0,0,.2);
	opacity: 0;
/* 	visibility: hidden; */
	position: absolute;
	top: 50px;
	right: -140px;
	webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transform: translate(-200vw,0);
    -moz-transform: translate(-200vw,0);
    -o-transform: translate(-200vw,0);
    transform: translate(-200vw,0);

	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);


}

#headLogin.notLogin > dl > dd{
	width: 300px;
	right: calc(50% - 150px);
}


/* #headLogin.open dl > dd{ */
/* 	visibility: visible; */
/* 	opacity: 1; */
/*     -webkit-transform: translate(0,0); */
/*     -moz-transform: translate(0,0); */
/*     -o-transform: translate(0,0); */
/*     transform: translate(0,0); */
/* } */

#headLogin > dl > dd::before{
	content: '';
	display: block;
	position: absolute;
	width: 340px;
	height: 35px;
	top: -14px;
	right: 0;
}

#headLogin.notLogin > dl > dd::before{
	width: 300px;
}

#headLogin > dl > dd::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 12px 8px;
	border-color: transparent transparent #333333 transparent;
	position: absolute;
	top: -10px;
	right: 60%;
}

#headLogin > dl > dd .navBack{display: none;}

/*** memberGradeBox ***********/
#headLogin > dl > dd .memberGradeBox{
	display: block;
	padding: 20px;
	background: #FFFFFF;
	position: relative;
}

#headLogin > dl > dd .memberGradeBox::before{
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	position: absolute;
	top: 0;
	left: 0;
}

#headLogin > dl > dd .memberGradeBox.bronze::before{
	background: #98afb8;
	background: -moz-linear-gradient(left,  #a17576 30%, #b49495 50%, #a17576 70%);
	background: -webkit-linear-gradient(left,  #a17576 30%,#b49495 50%,#a17576 70%);
	background: linear-gradient(to right,  #a17576 30%,#b49495 50%,#a17576 70%);
}
#headLogin > dl > dd .memberGradeBox.silver::before{
	background: #98afb8;
	background: -moz-linear-gradient(left,  #a3a3a3 30%, #d9d9d9 50%, #a3a3a3 70%);
	background: -webkit-linear-gradient(left,  #a3a3a3 30%,#d9d9d9 50%,#a3a3a3 70%);
	background: linear-gradient(to right,  #a3a3a3 30%,#d9d9d9 50%,#a3a3a3 70%);
}
#headLogin > dl > dd .memberGradeBox.gold::before{
	background: #98afb8;
	background: -moz-linear-gradient(left,  #c5a56c 30%, #e5d4b4 50%, #c5a56c 70%);
	background: -webkit-linear-gradient(left,  #c5a56c 30%,#e5d4b4 50%,#c5a56c 70%);
	background: linear-gradient(to right,  #c5a56c 30%,#e5d4b4 50%,#c5a56c 70%);
}
#headLogin > dl > dd .memberGradeBox.platinam::before{
	background: #98afb8;
	background: -moz-linear-gradient(left,  #98afb8 30%, #b1c3cb 50%, #98afb8 70%);
	background: -webkit-linear-gradient(left,  #98afb8 30%,#b1c3cb 50%,#98afb8 70%);
	background: linear-gradient(to right,  #98afb8 30%,#b1c3cb 50%,#98afb8 70%);
}


#headLogin > dl > dd .memberGradeBox dl.nowGrade{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#headLogin > dl > dd .memberGradeBox dl.nowGrade > dt{
	display: block;
	width: 112px;
	font-size: 1.4rem;
	text-align: left;
}
#headLogin > dl > dd .memberGradeBox dl.nowGrade > dd{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: calc(100% - 112px);
	min-height: 28px;
	padding-left: 36px;
	font-size: 1.6rem;
	font-weight: 700;
}

#headLogin > dl > dd .memberGradeBox.bronze dl.nowGrade > dd{
	background: url("../img/common/icon_rank_bronze.svg") left calc(50% - 1px) no-repeat;
	background-size: 26px auto;
	color: #a17576;
}
#headLogin > dl > dd .memberGradeBox.silver dl.nowGrade > dd{
	background: url("../img/common/icon_rank_silver.svg") left calc(50% - 1px) no-repeat;
	background-size: 26px auto;
	color: #a3a3a3;
}
#headLogin > dl > dd .memberGradeBox.gold dl.nowGrade > dd{
	background: url("../img/common/icon_rank_gold.svg") left calc(50% - 1px) no-repeat;
	background-size: 26px auto;
	color: #c5a56c;
}
#headLogin > dl > dd .memberGradeBox.platinam dl.nowGrade > dd{
	background: url("../img/common/icon_rank_platinum.svg") left calc(50% - 1px) no-repeat;
	background-size: 26px auto;
	color: #98afb8;
}

#headLogin > dl > dd .memberGradeBox > p{
	padding-top: 9px;
	font-size: 1.4rem;
}
#headLogin > dl > dd .memberGradeBox > p > strong{font-weight: 700;}

/*** headMypageNav ***********/
#headLogin > dl > dd ul.headMypageNav{
	display: block;
	margin-top: 20px;
	border-top: 1px solid #444444;
}

#headLogin > dl > dd ul.headMypageNav > li{
	display: block;
	border-bottom: 1px solid #444444;
}

#headLogin > dl > dd ul.headMypageNav > li > a{
	display: block;
	width: 100%;
	padding: 12px 0;
	font-size: 1.4rem;
	color: #FFFFFF;
	text-decoration: none;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background  0.2s ease;
}

#headLogin > dl > dd ul.headMypageNav > li > a:hover{
	background: #444444;
}


/*** headMypageNav ***********/
#headLogin > dl > dd ul.headLoginNav{
	display: block;
}
#headLogin > dl > dd ul.headLoginNav > li{text-align: center;}

#headLogin > dl > dd ul.headLoginNav > li.btnWhite{
	padding-bottom: 20px;
}

/*** #headCoupon ***********/
#headLogin.notLogin{right: 140px;}
#headCart.viewCoupon{right: 110px;}

#headCoupon{
	display: block;
	height: 40px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 101;
}
#headCoupon > dl > dt{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	height: 40px;
	padding-bottom: 20px;
	color: #333333;
	text-decoration: none;
	cursor: pointer;
}
#headCoupon > dl > dt > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	color: #333333;
	text-decoration: none;
}
#headCoupon > dl > dt > a > em{
	display: block;
	width: 27px;
	position: relative;
	margin-right: 10px;
}
#headCoupon > dl > dt > a > em > img{display: block; width: 100%; height: auto;}
#headCoupon > dl > dt > a > span{
	display: block;
	width: calc(100% - 24px);
	font-size: 16px;
	padding-right: 0;
	background-size: 13px auto;
}
#headCoupon > dl > dt > a > em > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e35555;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	position: absolute;
	top: -10px;
	right: -9px;
}

/** #glnav ************************************/
#glnav{
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 108px;
	left: 0;
	z-index: 100;
}


#headNav.open #glnav{
	height: 20px;
	top: 88px;
}

/** navBack ***************/
#glnav .navBack{display: none;}


/** level2 ***************/
#glnav .level2{
	display: block;
	width: calc(290px + (100vw - 100%) / 2);
	min-width: 290px;
	padding: 62px 0 0;
	background: #333333;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 20px;
	left: calc((-100vw + 100%) / 2);
	webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transform: translate(-200vw,0);
    -moz-transform: translate(-200vw,0);
    -o-transform: translate(-200vw,0);
    transform: translate(-200vw,0);
}

@media screen and ( max-width:1200px) {
	#glnav .level2{ width: 290px; left: 0;}
}

#headNav.open #glnav .level2{
	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}

#glnav .level2 > li{
	display: block;
	margin-top: -2px;
}

#glnav .level2 > li > span,
#glnav .level2 > li > a{
	display: block;
	width: 100%;
	padding: 1px 40px 1px calc(100% - 290px);
	color: #FFFFFF;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: background 0.2s ease;
	-moz-transition: background 0.2s ease;
	-o-transition: background 0.2s ease;
	transition: background  0.2s ease;
}

@media screen and ( max-width:1200px) {
	#glnav .level2 > li > span,
	#glnav .level2 > li > a{ padding-left: 0;}
}


#glnav .level2 > li > span:hover,
#glnav .level2 > li > a:hover,
#glnav .level2 > li.open > span{
	background: #444444;
}

#glnav .level2 > li > span > span,
#glnav .level2 > li > a > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	height: 72px;
	border-bottom: 1px solid #555555;
	font-size: 1.6rem;
	font-weight: 500;
	-webkit-transition: border 0.2s ease;
	-moz-transition: border 0.2s ease;
	-o-transition: border 0.2s ease;
	transition: border  0.2s ease;
}

#glnav .level2 > li:nth-of-type(1) > span > span,
#glnav .level2 > li:nth-of-type(1) > a > span{border-top: 1px solid #555555;}

#glnav .level2 > li > span > span{
	padding-right: 25px;
	background: url("../img/common/icon_arrow_right_white.svg") right center no-repeat;
	background-size: auto 14px;
}


#glnav .level2 > li > span:hover > span,
#glnav .level2 > li > a:hover > span,
#glnav .level2 > li.open > span > span{
	border-color: #444444;
}


#glnav .level2 > li > .level3{
	display: block;
	width: calc(100vw - 100%);
	min-width: 700px;
	padding: 60px 0 40px 50px;
	background: #444444;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	left: 100%;
	top: 0;
	webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    -webkit-transform: translate(-200vw,0);
    -moz-transform: translate(-200vw,0);
    -o-transform: translate(-200vw,0);
    transform: translate(-200vw,0);
}

#glnav .level2 > li.open > .level3{
	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}

#glnav .level2 > li > .level3 .arrowLinkWhite{font-weight: 700;}

#glnav .level2 > li > .level3 > ul{
	display: block;
	width: 100%;
	max-width: 860px;
}

#glnav .level2 > li > .level3 > ul > li{
	padding: 30px 0 30px;
	border-bottom: 1px solid #555555;
}
#glnav .level2 > li > .level3 > ul > li:nth-of-type(1){
	padding-top: 0;
}

#glnav .level2 > li > .level3 > ul > li.imgLink{
	padding: 15px 0;
}

#glnav .level2 > li > .level3 > ul > li.imgLink > a{
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	text-decoration: none;
	color: #FFFFFF;
}
#glnav .level2 > li > .level3 > ul > li.imgLink > a:hover{text-decoration: underline;}

#glnav .level2 > li > .level3 > ul > li.imgLink > a > figure{
	display: block;
	width: 160px;
	margin-right: 30px;
}
#glnav .level2 > li > .level3 > ul > li.imgLink > a > figure > img{ display: block; width: 100%; height: auto;}

#glnav .level2 > li > .level3 > ul > li.imgLink > a > span{
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 700;
	color: #FFFFFF;
    text-decoration: none;
    padding-left: 26px;
	position: relative;
}
#glnav .level2 > li.open > .level3 > ul > li.imgLink > a > span::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
	background: url("../img/common/icon_arrow_right_black.svg") center center no-repeat #FFFFFF;
	background-size: auto 9px;
	position: absolute;
	left: 0;
	top: calc(50% - 9px);
}


#glnav .level2 > li > .level3 .closeBtn{
	width: 100%;
	max-width: 860px;
	text-align: center;
	margin: 30px auto 0 0;
}

#glnav .level2 > li > .level3 .closeBtn > span{
	font-size: 1.6rem;
	color: #FFFFFF;
	text-decoration: underline;
	cursor: pointer;
}
#glnav .level2 > li > .level3 .closeBtn > span:hover{text-decoration: none;}


#glnav .level2 > li > .level3 > ul > li > ul{
	padding-top: 30px;
	padding-left: 26px;
}

#glnav .level2 > li > .level3 > ul > li > ul > li{
	display: block;
	margin-bottom: 20px;
	font-size: 1.4rem;
}
#glnav .level2 > li > .level3 > ul > li > ul > li:nth-last-of-type(1){margin-bottom: 0;}

#glnav .level2 > li > .level3 > ul > li > ul > li > a{
	color: #FFFFFF;
	text-decoration: none;
}

#glnav .level2 > li > .level3 > ul > li > ul > li > a:hover{text-decoration: underline;}


#glnav .level2 > li > .level3 > dl{
	display: block;
	width: 100%;
	max-width: 860px;
}

#glnav .level2 > li > .level3 > dl > dt{
	padding: 30px 0 30px;
	border-bottom: 1px solid #555555;
}

#glnav .level2 > li > .level3 > dl > dd{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	padding: 30px 0 30px;
	border-bottom: 1px solid #555555;
}

#glnav .level2 > li > .level3 > dl > dd > ul{
	display: block;
	width: 50%;
	padding-left: 26px;
}


#glnav .level2 > li > .level3 > dl > dd > ul > li{
	display: block;
	margin-bottom: 20px;
	font-size: 1.4rem;
}
#glnav .level2 > li > .level3 > dl > dd > ul > li:nth-last-of-type(1){margin-bottom: 0;}

#glnav .level2 > li > .level3 > dl > dd > ul > li > a{
	color: #FFFFFF;
	text-decoration: none;
}

#glnav .level2 > li > .level3 > dl > dd > ul > li > a:hover{text-decoration: underline;}


/** #headUtility ************************************/
#headUtility{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
	position: absolute;
	height: 30px;
	top: 20px;
	right: 290px;
}

#headUtility > li{
	font-size: 1.4rem;
	margin-right: 30px;
}
#headUtility > li:nth-last-of-type(1){margin-right: 0;}

#headUtility > li > a{
	text-decoration: none;
}
#headUtility > li > a:hover{
	text-decoration: underline;
}

/**************************************
#importantNotices
**************************************/
#importantNotices{
	display: block;
	width: 100%;
	padding: 18px 0;
	background: #f7f7f7;
}

#importantNotices > dl{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#importantNotices > dl > dt{
	display: block;
	width: 110px;
	font-size: 1.4rem;
	line-height: 1.4;
	font-weight: 700;
	color: #e35555;
	text-align: left;
}
#importantNotices > dl > dd{
	display: block;
	width: calc(100% - 110px);
	text-align: left;
}

#importantNotices > dl > dd > ul{}

#importantNotices > dl > dd > ul > li{
	display: block;
	margin-bottom: 8px;
	font-size: 1.4rem;
	line-height: 1.4;
}
#importantNotices > dl > dd > ul > li:nth-last-of-type(1){margin-bottom: 0;}
#importantNotices > dl > dd > ul > li > span{}

#importantNotices > dl > dd > ul > li > a{text-decoration: none;}
#importantNotices > dl > dd > ul > li time{
	display: inline-block;
	text-decoration: none;
	text-indent: -0.5em;
}
#importantNotices > dl > dd > ul > li > a > span{text-decoration: underline;}

#importantNotices > dl > dd > ul > li > a:hover > span{text-decoration: none;}


/**************************************
#footer
**************************************/
#footer{
	width: 100%;
	padding: 0 0 40px;
	background: #eeeeee;
	position: relative;
}

#footer.simple{
	padding: 17px 0;
	text-align: center;
	background: #FFFFFF;
	border-top:1px solid #CCCCCC;
	color: #999999;
}

/*** footNav  **************/
#footer #footNav{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items:  flex-start;
    align-items:  flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0 15px;
}

#footer #footNav > .footLine{
	display: block;
	margin-right: 80px;
}
#footer #footNav > .footLine:nth-last-of-type(1){margin-right: 0;}


#footer #footNav > .footLine > dl{}

#footer #footNav > .footLine > dl > dt{
	margin-bottom: 30px;
	font-size: 1.4rem;
	font-weight: 700;
}

#footer #footNav > .footLine > dl > dd{}
#footer #footNav > .footLine > dl > dd > ul{}
#footer #footNav > .footLine > dl > dd > ul > li{
	display: block;
	margin-bottom: 20px;
	font-size: 1.4rem;
	white-space: nowrap;
	font-weight: 500;
}
#footer #footNav > .footLine > dl > dd > ul > li:nth-last-of-type(1){margin-bottom: 0;}

#footer #footNav > .footLine > dl > dd > ul > li > a,
#footer #footNav > .footLine > dl > dd > ul > li > span{ text-decoration: none; cursor: pointer;}
#footer #footNav > .footLine > dl > dd > ul > li > a:hover,
#footer #footNav > .footLine > dl > dd > ul > li > span:hover{ text-decoration: underline;}


#footer #footNav > .footLine > ul{}
#footer #footNav > .footLine > dl + ul{padding-top: 40px;}

#footer #footNav > .footLine > ul > li{margin-bottom: 20px;}
#footer #footNav > .footLine > ul > li:nth-last-of-type(1){margin-bottom: 0;}


/** footUnder  ****************/
#footer .footUnder{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#footer .footUnder .copyRightArea{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content:  flex-start;
    justify-content: flex-start;
}

#footer .footUnder .copyRightAreaCresc{
    margin: 0 auto 0 0;
}

#footer .footUnder .copyRightArea .footLogo{
	display: block;
	width: 270px;
	margin-right: 40px;
}

#footer .footUnder .copyRightArea .footLogo > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content:  flex-start;
    justify-content: flex-start;
	width: 100%;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity  0.2s ease;
}

#footer .footUnder .copyRightArea .footLogo > a > img{display: block;}
#footer .footUnder .copyRightArea .footLogo > a > img:nth-of-type(1){width: 100px; margin-right: 15px}
#footer .footUnder .copyRightArea .footLogo > a > img:nth-of-type(2){width: calc(100% - 115px);}

#footer .footUnder .copyRightArea .footLogo > a:hover{opacity: .6;}

#footer .footUnder .copyRightArea .footLogoCresc {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content:  flex-start;
    justify-content: flex-start;
	width: 270px;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity  0.2s ease;
}
#footer .footUnder .copyRightArea .footLogoCresc > img{display: block;}
#footer .footUnder .copyRightArea .footLogoCresc > img:nth-of-type(1){width: 100px; margin-right: 15px}
#footer .footUnder .copyRightArea .footLogoCresc > img:nth-of-type(2){width: 155px;}

#footer .footUnder .copyRightArea .copyRight{
	font-size: 1.0rem;
	text-align: left;
	color: #999999;
}

#footer .footUnder .certificationMarks{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

#footer .footUnder .certificationMarks > li{
	display: block;
	margin-right: 25px;
}
#footer .footUnder .certificationMarks > li:nth-last-of-type(1){margin-right: 0;}

#footer .footUnder .certificationMarks > li.pmark{ width: 58px;}
#footer .footUnder .certificationMarks > li.jdma{ width: 100px;}

#footer .footUnder .certificationMarks > li img{display: block; width: 100%; height: auto;}

/** normalLp・formLp footUnder  ****************/
#footer.normalLp .footUnder,
#footer.formLp .footUnder
{
     -webkit-flex-direction: row;
    flex-direction: row;
}
#footer.normalLp .footUnder .copyRightArea,
#footer.formLp .footUnder .copyRightArea{
	height: 60px;
}
#footer.formLp #footNav{
	padding: 30px 0 5px;
}
#footer.formLp #footNav > .footLine{
	margin-left: 20px;
	margin-right: 0px;
	padding-right: 20px;
	border-right: 2px ridge #999999;
}
#footer.formLp #footNav > .footLine:nth-last-child(1),
#footer.formLp #footNav > .footLine:nth-last-child(2)
{
	border-right: 0px;
}

#footer.formLp #footNav > .footLine > dl > dt {
	margin-bottom: 0px;
}

/**************************************
btnPageTop
**************************************/
#btnPageTop{
	display: block;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

#btnPageTop > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 40px;
	border-radius: 2px;
	height: 40px;
	opacity: 0;
	background: rgba(51,51,51,.5);
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 10;
	webkit-transition: opacity 0.2s ease,transform 0.2s ease;
    -moz-transition: opacity 0.2s ease,transform 0.2s ease;
    -o-transition: opacity 0.2s ease,transform 0.2s ease;
    transition: opacity 0.2s ease,transform 0.2s ease;
    -webkit-transform: translate(0, 80px);
    -moz-transform: translate(0, 80px);
    -o-transform: translate(0, 80px);
    transform: translate(0, 80px);
}

#btnPageTop.view > a{
	opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

#btnPageTop.fixed > a{
	position: fixed;
}

#btnPageTop.fixedFootOpen > a{
	position: absolute;
	z-index: 1;
}

#btnPageTop > a > img{
	display: block;
	width: 16px; height: auto;
}

/**************************************
#breadcrumbs
**************************************/
#breadcrumbs{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0 0;
	margin: 0 auto;
}

#breadcrumbs > ol{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#breadcrumbs > ol > li{
	display: block;
	font-size: 1.2rem;
	line-height: 1;
}

#breadcrumbs > ol > li::after {
	content: '\>';
	padding: 0 1em;
}

#breadcrumbs > ol > li:last-child::after {
	display: none;
}
#breadcrumbs > ol > li:last-child a{
	text-decoration: none;
}

#breadcrumbsSP{display: none;}


/**************************************
main
**************************************/
#main{
	padding: 0;
	position: relative;
}

#main img{max-width: 100%;}

#main .mainTTL{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 100px 0 50px;
	margin: 0 auto;
	font-size: 3.0rem;
	line-height: 1.5;
	font-weight: 700;
}

#main .subTTL,
#dialog-container .subTTL{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 60px 0 30px;
	margin: 0 auto;
	font-size: 2.6rem;
	line-height: 1.6;
	font-weight: 700;
}

#main .mainTTL + .subTTL{ padding-top: 30px;}
#dialog-container .mainTTL + .subTTL{ padding-top: 30px;}
#main .modalBox .subTTL{padding-top: 0;}
#dialog-container .modalBox .subTTL{padding-top: 0;}

#main .smallTTL{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding: 80px 0 40px;
	margin: 0 auto;
	font-size: 2.2rem;
	line-height: 1.6;
	font-weight: 700;
}

#main .brandSearchTTL{
	font-size: 1.8rem;
	padding: 0px 0 0px;
}

#main .subTTL + .smallTTL{padding-top: 30px;}
#main .ledeBox + .smallTTL{padding-top: 20px;}
#dialog-container .ledeBox + .smallTTL{padding-top: 20px;}
.modalInner .ledeBox + .smallTTL{padding-top: 20px;}
#main .cautionBox + .smallTTL{padding-top: 20px;}
#dialog-container .cautionBox + .smallTTL{padding-top: 20px;}
.modalInner .cautionBox + .smallTTL{padding-top: 20px;}

#main .subSmallTTL{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding-left: 15px;
	border-left: 4px solid #999999;
	margin: 60px auto 50px;
	font-size: 2.0rem;
	line-height: 1.6;
	font-weight: 700;
}

#main .smallTTL + .subSmallTTL{margin-top: 20px;}

#main #formLPSection .subSmallTTL{
	display: block;
	width: 100%;
	max-width: 1200px;
	padding-left: 15px;
	border-left: 4px solid #999999;
	margin: 60px auto 20px;
	font-size: 2.0rem;
	line-height: 1.6;
	font-weight: 700;
}

#main .ledeBox,
#dialog-container .ledeBox,
.modalInner .ledeBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
	font-size: 1.4rem;
	line-height: 1.7;
}
#main .mainTTL + .ledeBox{margin-bottom: 50px;}
#dialog-container .mainTTL + .ledeBox{margin-bottom: 50px;}
.modalInner .mainTTL + .ledeBox{margin-bottom: 50px;}

#main #formLPSection .ledeBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 20px;
	font-size: 1.4rem;
	line-height: 1.7;
}
/*【FFHC v1.0】【初回ログイン時にログイン画面に注意書きを出す】:5488 Start*/
main#main  section#userSection > div.txLoginScreen{
    display: block;
    margin-top: 50px;
    margin-bottom: -60px;
}
/*【FFHC v1.0】【初回ログイン時にログイン画面に注意書きを出す】:5488 End.*/
/**************************************
stepFlow
**************************************/
/** 【FFHC v1.0】メアドリマインダ画面のステップフロー周りの修正:#5928 Start */
div.cusStepFlow{
 margin-bottom: 80px;
}
/** 【FFHC v1.0】メアドリマインダ画面のステップフロー周りの修正:#5928 End. */
/** 【FFHC v1.0】会員登録画面のステップフロー周りのデザイン調整:#5927 Start */
div.cusStepFlowRegister{
 margin-top: 50px;
}
/** 【FFHC v1.0】会員登録画面のステップフロー周りのデザイン調整:#5927  End. */
.stepFlow{
	display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.stepFlow + .ledeBox{padding-top: 60px;}


.stepFlow > ol{
	display: table;
    position: relative;
	margin: 0 auto;
}

.stepFlow > ol.threeStep{}

.stepFlow > ol::after{
    content: ' ';
    display: block;
    width: calc(100% - 164px);
    height: 1px;
    position: absolute;
	top: 26px;
	left: 80px;
    background: #cccccc;
    z-index: -1;
}


.stepFlow > ol > li{
    display: table-cell;
	width: 212px;
    font-size: 16px;
	line-height: 1.25;
	text-align: center;
	vertical-align: text-top;
    position: relative;
}
.stepFlow > ol > li.current{
	color: #e35555;
	font-weight: 700;
}

.stepFlow > ol > li > em{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 10px;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	background: #FFFFFF;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.stepFlow > ol > li.current > em{
	border: 2px solid #e35555;
}

.stepFlow > ol > li > span > a{
    text-decoration: none;
}
/**【FFHC v1.0】SP決済導線内ステップフローの改行位置がずれている:#5655 Start*/
.stepFlow > ol > li.active > span a,
.stepFlow > ol > li.active > span{
    color: #e35555;
}
/**【FFHC v1.0】SP決済導線内ステップフローの改行位置がずれている:#5655 End.*/

/**************************************
requiredCautionMsgBox
**************************************/
.requiredCautionBox{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto 30px;
	background: #fbe6e6;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #e35555;
}

.formTable + .requiredCautionBox{margin-top: 30px;}
.stepFlow + .requiredCautionBox{margin-top: 40px;}

.requiredCautionBox > em{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 22px;
	margin-right: 10px;
}
.requiredCautionBox > em > img{display: block; width: 100%; height: auto;}

.requiredCautionBox > .msg{display: block; width: calc(100% - 32px); padding-top: 3px}

/** requiredCautionAccordionBox ********/
.requiredCautionAccordionBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
	background: #fbe6e6;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #e35555;
}

.requiredCautionAccordionBox dl > dt{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	padding: 20px 50px 20px 20px;
	background: #fbe6e6;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #e35555;
	position: relative;
	cursor: pointer;
}

.requiredCautionAccordionBox > dl > dt > em{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 22px;
	margin-right: 10px;
}
.requiredCautionAccordionBox dl > dt > em > img{display: block; width: 100%; height: auto;}
.requiredCautionAccordionBox dl > dt > span{display: block; width: calc(100% - 32px); padding-top: 3px;}

.requiredCautionAccordionBox > dl > dt::before,
.requiredCautionAccordionBox > dl > dt::after{
	content: '';
	display: block;
	width: 16px; height: 2px;
	background: #e35555;
	position: absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}
.requiredCautionAccordionBox > dl > dt::before{
	top: calc(50% - 1px);
	right: 24px;
}
.requiredCautionAccordionBox > dl > dt::after{
	transform: rotate(90deg);
	top: calc(50% - 1px);
	right: 24px;
}
.requiredCautionAccordionBox > dl.open > dt::after{
    opacity: 0;
	transform: rotate(0);
}

.requiredCautionAccordionBox > dl > dd{
	display: none;
	padding: 0 20px 20px 52px;
}


/**************************************
formTable
**************************************/
.formTable{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	border-top: 1px solid #cccccc;
}

.formTable + form .nextForm > .formTable:nth-child(1){
	border-top: none;
}

.formTable > dl{
	display: table;
	table-layout: fixed;
	width: 100%;
	border-bottom: 1px solid #cccccc;
}

.formTable > dl.cardSecurityNotRequired{
	display: none;
}

.formTable > dl > dt{
	display: table-cell;
	width: 30%;
	padding: 30px;
	background: #eeeeee;
	font-size: 1.4rem;
	line-height: 1.7;
	vertical-align: middle;
	text-align: left;
	position: relative;
}

.formTable > dl > dt >div.paymentTitle{
	display: flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

#confirmModal .formTable > dl > dt{width: 290px;}

.formTable > dl > dt > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	min-height: 22px;
	position: relative;
}
.formTable > dl.required > dt > span{
	padding-right: 40px;
}
.formTable > dl.required > dt > span::after{
	content: '必須';
	display: block;
	width: 40px;
	height: 22px;
	border: 1px solid #e35555;
	background: #FFFFFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #e35555;
	position: absolute;
	right: 0;
	top: calc(50% - 12px);
}

.formTable > dl.changing > dt > span{
	padding-right: 53px;
}
.formTable > dl.changing > dt > span::after{
	content: '変更中';
	display: block;
	width: 53px;
	height: 22px;
	border: 1px solid #e35555;
	background: #FFFFFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #e35555;
	position: absolute;
	right: 0;
	top: calc(50% - 12px);
}


.formTable > dl > dd{
	display: table-cell;
	width: 70%;
	box-sizing: border-box;
	padding: 30px 30px 30px 29px;
	vertical-align: middle;
	background: #FFFFFF;
	border-left:1px solid #FFFFFF;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: left;
}
.formTable > dl > dd .password .form-caption{
	display: table-cell;
	width: 70%;
	box-sizing: border-box;
	padding: 10px 0px 0px 0px;
	vertical-align: middle;
	background: #FFFFFF;
	border-left:1px solid #FFFFFF;
	font-size: 1.2rem;
	line-height: 2;
	text-align: left;
}
.formTable > dl.err > dd{
	background: #fbe6e6;
}
/* #confirmModal .formTable > dl > dd{width: calc(100% - 290px);} */

.formTable > dl > dd p{margin-bottom: 20px;}
.formTable > dl > dd p:nth-last-child(1){margin-bottom: 0;}

.formTable > dl > dd .inputArea + p{margin-top: 20px;}

.formTable > dl > dd p.note{margin-top: 10px;}
.formTable > dl > dd p.note:nth-child(1){margin-top: 0;}

.formTable > dl > dd p.errMsg{
	color: #e35555;
	margin-bottom: 30px;
}
.formTable > dl > dd p.note{
	font-size: 1.2rem;
	line-height: 2;
}

.formTable > dl > dd p.matomeSlip > span{display: block;}

.formTable > dl > dd .itemName{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.formTable > dl > dd .itemName > figure{
	display: block;
	width: 100px;
	margin-right: 20px;
}
.formTable > dl > dd .itemName > figure img{display: block; width: 100%; height: auto;}
.formTable > dl > dd .itemName > span{
	display: block;
	width: calc(100% - 120px);
}
.formTable > dl > dd .itemName > .text{
	display: block;
	width: calc(100% - 120px);
}
.formTable > dl > dd .itemName > .text > p{margin-bottom: 0;}
.formTable > dl > dd .itemName > .text .price{font-weight: 700;}

.formTable > dl > dd p.afterDate{
	padding-top: 0;
	color: #e35555;
	position: relative;
}

.formTable > dl > dd p.afterDate::before{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 6px 0 6px;
	border-color: #e35555 transparent transparent transparent;
	position: absolute;
	top: -13px;
	left: 6em;
}

.formTable .labelText{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-bottom: 15px;
}
.formTable .statusLabel{
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1;
	padding: 5px 10px 4px;
	background: #eeeeee;
	vertical-align: top;
}
.formTable .labelText > .statusLabel{margin-left: 15px;}


.formTable .inputArea{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.formTable .inputArea .password {
    width: 375px;
}

label.name{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: calc(50% - 20px);
}
label.name > div.form-row {width: 100%;}
label.name + label.name{ margin-left: 40px;}

label.name > span{ width: 3em;}
label.name > input[type="text"],
label.name > .form-row > .field-wrapper
{
	width: calc(100% - 2em - 10px);
	margin-left: 10px;
}

.dateSelect, .dateSelectCredit{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.dateSelect > .year,
.dateSelect > .month,
.dateSelect > .date,
.dateSelectCredit > .year,
.dateSelectCredit > .month{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.dateSelect > .year label,
.dateSelect > .month label,
.dateSelect > .date label,
.dateSelectCredit > .year label,
.dateSelectCredit > .month label{margin-right: 20px;}

.dateSelect > div:nth-of-type(n + 2),
.dateSelectCredit > div:nth-of-type(n + 2){
	margin-left: 40px;
}


.error-messageCredit{
	padding: 0px;
	position: absolute;
}

label.tel{width: 375px;}

label.zipCode{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 375px;
}
label.zipCode > span{width: 35px; padding-left: 5px;}
label.zipCode > input{width: calc(100% - 35px);}


label.tel{width: 375px;}

label.password{width: 100%;}

label.password + label.checkBox{
	margin-top: 20px;
}

.formTable > dl > dd > dl{
	display: block;
	margin-bottom: 30px;
}
.formTable > dl > dd > dl:nth-last-child(1){margin-bottom: 0;}

.formTable > dl > dd > dl > dt{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 10px;
}



/** deliveDateSelect ****************/
.formTable > dl > dd .deliveDateSelect{}
.formTable > dl > dd .deliveDateSelect > label{
	margin-right: 30px;
}

.formTable > dl > dd .deliveDateSelect > .wish{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.formTable > dl > dd .deliveDateSelect > .wish > .selectBox,
.formTable > dl > dd .deliveDateSelect > .wish  #datePickerOuter{
	margin-left: 20px;
	max-width: 210px;
}
.formTable > dl > dd .deliveDateSelect .radioBox{
	margin-top: 10px;
	margin-bottom: 5px;
}
.formTable > dl > dd .deliveDateSelect > .wish > .selectBox > .field-wrapper{
	width: 210px;
}

/** checkList ****************/
.formTable > dl > dd .checkList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-top: -10px;
}
.formTable > dl > dd .checkList > li{
	display: block;
	margin-top: 10px;
	margin-right: 40px;
}

/** changeBox ****************/

.formTable > dl > dd .changeBoxOuter{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.formTable > dl > dd .changeBoxOuter > .data{
	display: block;
	width: calc(100% - 240px);
}

.formTable > dl > dd .changeBoxOuter > .changeOpenBtn{
	display: block;
	width: 200px;
	margin-left: 40px;
}

.formTable > dl > dd .changeBoxOuter > .changeOpenBtn > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    font-size: 1.4rem;
	line-height: 1;
    font-weight: 700;
	border: 1px solid #333333;
	border-radius: 4px;
	padding-left: 22px;
    color: #333333;
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
	position: relative;
    cursor: pointer;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.formTable > dl > dd .changeBoxOuter > .changeOpenBtn > span:hover{
	background: #f7f7f7;
}

.formTable > dl > dd .changeBoxOuter > .changeOpenBtn > span > em{
	display: inline-block;
	width: 12px;
	height: 38px;
	margin-left: 10px;
	background: url("../img/common/icon_arrow_bottom_black.svg") center center no-repeat;
	background-size: 12px auto;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}
.formTable > dl > dd .changeBoxOuter > .changeOpenBtn.open > span > em{
	transform: rotate(180deg);
}

.formTable > dl > dd .changeList{
	display: none;
	margin-top: 30px;
	padding: 30px;
	border: 1px solid #333333;
}

/** changeItemList  *****/
.formTable > dl > dd .changeList > ul.changeItemList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}

.formTable > dl > dd .changeList > ul.changeItemList > li{
	display: block;
	width: 50%;
	padding: 20px 20px 20px 0;
	border-right: 1px dotted #CCCCCC;
	border-bottom: 1px dotted #CCCCCC;
}

.formTable > dl > dd .changeList > ul.changeItemList > li:nth-of-type(2n){
	padding-left: 20px;
	padding-right: 0;
	border-right: none;
}

.formTable > dl > dd .changeList > ul.changeItemList > li:nth-of-type(2n + 1):nth-last-of-type(2),
.formTable > dl > dd .changeList > ul.changeItemList > li:nth-last-of-type(1){
	border-bottom: none;
}

.formTable > dl > dd .changeList > ul.changeItemList > li > label{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	height: 100%;
	cursor: pointer;
}
.formTable > dl > dd .changeList > ul.changeItemList > li > label> input{display: none;}
.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	padding-left: 40px;
    position: relative;
}

.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item > figure{
	display: block;
	width: 90px;
	margin-right: 20px;
}
.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item > figure img{display: block; width: 100%; height: auto;}
.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item > .text{
	display: block;
	width: calc(100% - 110px);
	line-height: 1.4;
}
.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item > .text > p{margin-bottom: 0;}
.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item > .text .price{font-weight: 700; padding-top: 5px;}

.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item::before{
	content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: calc(50%  - 12px);
	z-index: 2;
}

.formTable > dl > dd .changeList > ul.changeItemList > li > label > .item::after{
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
	border-radius: 50%;
	background: #e35555;
    position: absolute;
    left: 6px;
	top: calc(50%  - 6px);
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}
.formTable > dl > dd .changeList > ul.changeItemList > li > label  > input:checked + .item::after{
    opacity: 1;
    transform: scale(1);
}

/** freeComment  **/
.formTable > dl > dd .changeList .freeComment{
	display: block;
	padding: 30px 0 0 0;
}

.formTable > dl > dd .changeList .freeComment > .boxTwoC{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.formTable > dl > dd .changeList .freeComment > .boxTwoC > figure{
	width: 50%;
	padding-right: 20px;
}
.formTable > dl > dd .changeList .freeComment > .boxTwoC > figure img{display: block; width: 100%; height: auto;}

.formTable > dl > dd .changeList .freeComment > .boxTwoC > .text{
	width: 50%;
}


.formTable > dl > dd .changeList .freeComment .itemContactBox{
	display: block;
	width: 100%;
	text-align: left;
}
.formTable > dl > dd .changeList .freeComment .itemContactBox > dl{}
.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dt{
	font-size: 1.6rem;
	margin-bottom: 5px;
}

.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dd{
	display: block;
}

.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dd > .telNum{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-bottom: 5px;
}
.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dd > .telNum > em{
	display: block;
	width: 28px;
	margin-right: 10px;
}
.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dd > .telNum > em > img{display: block; width: 100%; height: auto;}
.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dd > .telNum > span{
	display: block;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1;
}

.formTable > dl > dd .changeList .freeComment .itemContactBox > dl > dd > .telNum .reception{font-size: 1.2rem;}

/** nextShippingSelect  **/
.formTable > dl > dd .nextShippingSelect{}

.formTable > dl > dd .nextShippingSelect .helpBox{
	text-align: left;
	margin-top: 20px;
}

/** intervalChange  **/
.formTable > dl > dd .changeList ul.intervalChange{
	display: block;
}

.formTable > dl > dd .changeList ul.intervalChange > li{
	margin-bottom: 30px;
}
.formTable > dl > dd .changeList ul.intervalChange > li:nth-last-of-type(1){margin-bottom: 0;}

.formTable > dl > dd .changeList ul.intervalChange > li > .intervalParent{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.formTable > dl > dd .changeList ul.intervalChange > li > .intervalParent > .radioBox{
	width: 160px;
}

.formTable > dl > dd .changeList ul.intervalChange > li > .intervalParent > .intervalDetail{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: calc(100% - 160px);
}

.formTable > dl > dd .changeList ul.intervalChange > li > .intervalParent > .intervalDetail > .selectBox{
	width: 140px;
}


.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild{
	display: block;
	width: 100%;
	background: #f7f7f7;
	padding: 15px;
	margin-top: 20px;
}

.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-bottom: 10px;
}
.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild > li:nth-last-of-type(1){margin-bottom: 0;}

.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild > li > .radioBox{
	width: 145px;
}

.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild > li > .selectBox{
	width: 140px;
	margin-right: 10px;
}

.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild > li > .selectWeekDay{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.formTable > dl > dd .changeList ul.intervalChange > li >  ul.intervalChild > li > .selectWeekDay > .selectBox{
	width: 140px;
	margin-right: 10px;
}


/** adderChange  **/
.formTable > dl > dd .changeList .adderChange{
	padding-bottom: 15px;
}

.formTable > dl > dd .changeList ul.adderChangeList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	border-top: 1px solid #CCCCCC;

}
.formTable > dl > dd .changeList ul.adderChangeList + .closeText{margin-top: 0;}

.formTable > dl > dd .changeList .adderChangeList li{
	display: block;
	width: 50%;
	padding: 20px 20px 20px 0;
	border-right: 1px dotted #CCCCCC;
	border-bottom: 1px dotted #CCCCCC;
}

.formTable > dl > dd .changeList .adderChangeList li:nth-of-type(2n){
	padding-left: 20px;
	padding-right: 0;
	border-right: none;
}

.formTable > dl > dd .changeList .adderChangeList li:nth-of-type(2n + 1):nth-last-of-type(2),
.formTable > dl > dd .changeList .adderChangeList li:nth-last-of-type(1){
	border-bottom: none;
}

.formTable > dl > dd .changeList .adderChange > label,
.formTable > dl > dd .changeList .adderChangeList li > label{
	cursor: pointer;
}

.formTable > dl > dd .changeList .adderChangeList li > label{
}


.formTable > dl > dd .changeList .adderChange > label > input,
.formTable > dl > dd .changeList .adderChangeList li > label > input{display: none;}

.formTable > dl > dd .changeList .adderChange > label > .adder,
.formTable > dl > dd .changeList .adderChangeList li > label > .adder{
	display: block;
	padding-left: 40px;
    position: relative;
}

.formTable > dl > dd .changeList .adderChange > label > .adder::before,
.formTable > dl > dd .changeList .adderChangeList li > label > .adder::before{
	content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: -1px;
	z-index: 2;
}

.formTable > dl > dd .changeList .adderChange > label > .adder::after,
.formTable > dl > dd .changeList .adderChangeList li > label > .adder::after{
    content: ' ';
    display: block;
    width: 12px;
    height: 12px;
	border-radius: 50%;
	background: #e35555;
    position: absolute;
    left: 6px;
	top: 5px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}
.formTable > dl > dd .changeList .adderChange > label > input:checked + .adder::after,
.formTable > dl > dd .changeList .adderChangeList li > label > input:checked + .adder::after{
    opacity: 1;
    transform: scale(1);
}



/** closeText  **/
.formTable > dl > dd .changeList .closeText{
	display: block;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #333333;
	text-align: center;
}

.formTable > dl > dd .changeList .closeText > span{
	font-size: 1.4rem;
	text-decoration: underline;
	cursor: pointer;
}
.formTable > dl > dd .changeList .closeText > span:hover{text-decoration: none;}


/** subscriptionDate  **/
.formTable > dl > dd .subscriptionDate{display: block;}

.formTable > dl > dd .subscriptionDate > dl{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-size: 1.6rem;
}
.formTable > dl > dd .subscriptionDate > dl:nth-last-of-type(1){border-bottom: 0; padding-bottom: 0; margin-bottom: 0;}
.formTable > dl > dd .subscriptionDate > dl > dt{
	font-weight: 700;
	margin-right: 40px;
}
.formTable > dl > dd .subscriptionDate > dl > dt::before{
	content: '■';
	margin-right: 5px;
}


/**************************************
paymentSelectBox
**************************************/
.paymentSelectBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.paymentSelectBox > ul{
	display: block;
	border-top: 1px solid #CCCCCC;
}

.paymentSelectBox > ul > li{
	display: block;
	padding: 0;
	border-bottom: 1px solid #CCCCCC;
}

.paymentSelectBox > ul > li > .radioBox{
	display: block;
	padding: 30px 15px;
}

.paymentSelectBox > ul > li > .paymentDetail{
	display: none;
	padding: 0 15px 30px;
	font-size: 1.4rem;
	line-height: 1.7;
}
#CreditCardForm .innerInputArea > .cardInput,
#CreditCardForm .innerInputArea > .creditName,
#CreditCardForm .innerInputArea > .securityCode{
	padding: 0 15px 30px;
	font-size: 1.4rem;
	line-height: 1.7;
}
.paymentSelectBox > ul > li.current > .paymentDetail{display: block;}


.paymentSelectBox > ul > li > .paymentDetail .tagBtnSmall{
	padding: 0;
	background-color: inherit;
}

.paymentSelectBox > ul > li > .paymentDetail #registCard{display: none;}
.paymentSelectBox > ul > li > .paymentDetail #registCard.current{display: block;}
.paymentSelectBox > ul > li > .paymentDetail ul.registCardList{
	display: block;
	width: 100%;
	border-top: 1px dotted #CCCCCC;
}

.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li{
	display: block;
	border-bottom: 1px dotted #CCCCCC;
}

.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li > .radioBox span{
	display: block;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	padding: 15px 50px 15px;
}
.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li > .radioBox span::before{ top: calc(50% - 10px); left: 30px;}
.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li > .radioBox span::after{ top: calc(50% - 6px); left: 34px;}

.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li > .radioBox input:checked + span{
	background: #f7f7f7;
}

/**【FFHC v1.0】#33321 3Dセキュア2.0対応 Start.*/

.paymentSelectBox .innerInputArea .creditName input[type="text"],
.paymentSelectBox .paymentDetail .creditName input[type="text"],
#selectalternativecard .creditCardListSection .creditName input[type="text"]{
	width: 40%
}

.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li>  dl.creditName {
	background: #f7f7f7;
	display: none;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	padding: 15px 50px 15px;
}

.paymentSelectBox > ul > li > .paymentDetail ul.registCardList > li>  dl.creditName.required > dt > span::after{
	content: '必須';
	width: 36px;
	height: 16px;
	border: 1px solid #e35555;
	background: #FFFFFF;
	font-size: 11px;
	line-height: 17px;
	text-align: center;
	color: #e35555;
	position: relative;
	left: 20px;
	top: calc(50% - 12px);
}
/**【FFHC v1.0】#33321 3Dセキュア2.0対応 End.*/

.paymentSelectBox > ul > li > .paymentDetail #newCard{display: none;}
.paymentSelectBox > ul > li > .paymentDetail #newCard.current{display: block;}

.paymentSelectBox > ul > li > .paymentDetail .cardHelp{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-top: 10px;
	margin-bottom: 20px;
}

#cartTwoColumn .paymentSelectBox > ul > li > .paymentDetail .cardHelp{
	display: block;
}


.paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.enableCardList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 490px;
}

.paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.enableCardList > li{
	display: block;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.5;
}

.paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.enableCardList > li > figure{
	display: block;
	width: 94px;
	margin: 0 auto 15px;
}
.paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.enableCardList > li > figure img{display: block; width: 100%; height: auto;}

.paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.enableCardList > li > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	height: 3em;
	text-align: center;
}


.paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.circleList{
	display: block;
	width: calc(100% - 520px);
	margin-left: 30px;
}

#cartTwoColumn .paymentSelectBox > ul > li > .paymentDetail .cardHelp > ul.circleList{
	width: 100%;
	margin: 30px 0 0 0;
}

.paymentSelectBox .innerInputArea{
	display: block;
	padding: 30px;
	background: #eeeeee;
}

.paymentSelectBox .innerInputArea dl{}

.paymentSelectBox .innerInputArea dl > dt{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-bottom: 10px;
	font-size: 1.4rem;
	position: relative;
	min-height: 22px;
}

.paymentSelectBox .innerInputArea dl.required > dt > span{
	display: block;
	padding-top: 1px;
	padding-right: 20px;
}

.paymentSelectBox .innerInputArea dl.required > dt::after{
	content: '必須';
	display: block;
	width: 40px;
	height: 22px;
	border: 1px solid #e35555;
	background: #FFFFFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #e35555;
}

.paymentSelectBox .innerInputArea .cardInput > dl > dd{
	display: block;
}
.paymentSelectBox .innerInputArea .cardInput > dl > dd p.note,
.paymentSelectBox .innerInputArea > dl > dd p.note,
.paymentSelectBox #registCard dl#cardOwnerName > dd p.note{
	margin-top: 5px;
	font-size: 1.2rem;
}

.paymentSelectBox .innerInputArea .cardInput{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.paymentSelectBox .innerInputArea .cardInput > dl{margin-bottom: 30px;}

.paymentSelectBox .innerInputArea .cardInput > dl:nth-of-type(1){
	width: 280px;
	margin-right: 45px;
}


.paymentSelectBox .innerInputArea .creditName,
.paymentSelectBox .innerInputArea .securityCode{margin-bottom: 30px;}


.paymentSelectBox .innerInputArea  dl.securityCode > dd{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.paymentSelectBox .innerInputArea  dl.securityCode > dd .inputArea{
	width: 120px;
	margin-right: 30px;
}


.paymentSelectBox .innerInputArea .addCard{}
.paymentSelectBox .innerInputArea .addCard > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	padding: 20px 0 0;
}
.paymentSelectBox .innerInputArea .addCard > ul > li{
	margin-right: 40px;
}
.paymentSelectBox .innerInputArea .addCard > ul > li:nth-last-of-type(1){margin-right: 0;}

.paymentSelectBox .innerInputArea .addCard > ul + p{padding-top: 20px;}




/** confirmItemList  *****/
.formTable > dl > dd.confirmItemOuter{
	padding: 0;
}

.formTable > dl > dd ul.confirmItemList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.formTable > dl > dd ul.confirmItemList > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 50%;
	padding-left: 25px;
    position: relative;
	padding: 20px 15px 20px;
	border-right: 1px dotted #CCCCCC;
	border-bottom: 1px dotted #CCCCCC;
}

.formTable > dl > dd ul.confirmItemList > li:nth-of-type(2n){
	padding-left: 20px;
	padding-right: 0;
	border-right: none;
}

.formTable > dl > dd ul.confirmItemList > li:nth-of-type(2n + 1):nth-last-of-type(2),
.formTable > dl > dd ul.confirmItemList > li:nth-last-of-type(1){
	border-bottom: none;
}

.formTable > dl > dd ul.confirmItemList > li > label{
	width: 100%;
}

.formTable > dl > dd ul.confirmItemList > li > figure{
	display: block;
	width: 90px;
	margin-right: 15px;
}
.formTable > dl > dd ul.confirmItemList > li > figure img{display: block; width: 100%; height: auto;}
.formTable > dl > dd ul.confirmItemList > li > .text{
	display: block;
	width: calc(100% - 105px);
	line-height: 1.4;
}
.formTable > dl > dd ul.confirmItemList > li > .text > p{margin-bottom: 0;}
.formTable > dl > dd ul.confirmItemList > li > .text .price{font-weight: 700; padding-top: 5px;}

/**************************************
bottomBtnArea
**************************************/
.bottomBtnArea{
	display: block;
	width: 830px;
	padding: 60px 0 0;
	margin: 0 auto;
}
/** 【FFHC V1.0】#35422 まとめて再開もカートIN（子受注化導線）で実施できるようになるStart*/
.bottomBtnArea.onBehalf{
    width: 900px;
}
/** 【FFHC V1.0】#35422 まとめて再開もカートIN（子受注化導線）で実施できるようになるEnd*/
/**
【FFHC v1.0】【2.3.1. 決済導線】カート画面のボタン位置:5508 Start
*/
section#cartSection > div.cartDetail > div.bottomBtnArea > ul{
		display: block;
		margin-top: -120px;
}
/**
【FFHC v1.0】【2.3.1. 決済導線】カート画面のボタン位置:5508 End.
*/

.modalBox .bottomBtnArea{width: 100%;}

.bottomBtnArea > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
	-webkit-flex-direction:row-reverse;
	flex-direction:row-reverse;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.bottomBtnArea > ul > li{
	width: calc(50% - 15px);
}


.bottomBtnArea.verical{
	width: 100%;
	padding-top: 0;
}

.bottomBtnArea.verical > ul{
	display: block;
}

.bottomBtnArea.verical > ul > li{
	display: block;
	margin: 0 auto 25px;
}
.bottomBtnArea.verical > ul > li.textLink{
	text-align: center;
	font-size: 1.4rem;
}

.bottomBtnArea.verical > ul > li.textLink > span{cursor: pointer; text-decoration: underline;}
.bottomBtnArea.verical > ul > li.textLink > span:hover{text-decoration: none;}

.bottomBtnArea > .btnBlack{
	width: 400px;
	margin: 0 auto;
}

.bottomBtnArea > .btnWhite{
	width: 400px;
	margin: 0 auto;
}

.ledeBox + .bottomBtnArea{padding-top: 0;}
.cautionBox + .bottomBtnArea{padding-top: 0;}

/**************************************
accordionBox
**************************************/
.accordionBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
}
.accordionBox:nth-last-child(1){margin-bottom: 0;}

.accordionBox > dl{
	margin: 0 auto 30px;
	font-size: 1.4rem;
	line-height: 1.7;
}

.accordionBox > dl:nth-last-child(1){margin-bottom: 0;}

.accordionBox > dl > dt{
	display: block;
	width: 100%;
	padding: 20px 30px 20px 30px;
	background: #eeeeee;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 700;
	position: relative;
	cursor: pointer;
}

.accordionBox > dl > dt::before,
.accordionBox > dl > dt::after{
	content: '';
	display: block;
	width: 16px; height: 2px;
	background: #333333;
	position: absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}
.accordionBox > dl > dt::before{
	top: calc(50% - 1px);
	right: 24px;
}
.accordionBox > dl > dt::after{
	transform: rotate(90deg);
	top: calc(50% - 1px);
	right: 24px;
}
.accordionBox > dl.open > dt::after{
    opacity: 0;
	transform: rotate(0);
}

.accordionBox > dl > dd{
	display: none;
	padding: 30px;
}

.accordionBox > dl > dd p{
	margin-bottom: 20px;
}
.accordionBox > dl > dd p:nth-last-child(1){margin-bottom: 0;}

.accordionBox > dl > dd > dl{
	display: block;
	text-align: left;
	margin-bottom: 40px;
}
.accordionBox > dl > dd > dl:nth-last-child(1){margin-bottom: 0;}

.accordionBox > dl > dd > dl > dt{
	font-size: 1.6rem;
	margin-bottom: 20px;
	font-weight: 700;
}
.accordionBox > dl > dd > dl > dd{ margin-bottom: 10px;}
.accordionBox > dl > dd > dl > dd:nth-last-of-type(1){margin-bottom: 0;}

/**************************************
cautionList
**************************************/
ul.cautionList{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
}
ul.cautionList:nth-last-child(1){margin-bottom: 0;}

ul.cautionList > li{
	display: block;
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 10px;
	font-size: 1.2rem;
	line-height: 1.5;
}
ul.cautionList > li:nth-last-child(1){margin-bottom: 0;}


/**************************************
cautionNumList
**************************************/
ol.cautionNumList{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
	counter-reset: cautionNum;
}
ol.cautionNumList:nth-last-child(1){margin-bottom: 0;}

ol.cautionNumList > li{
	display: block;
	text-indent: -22px;
	padding-left: 22px;
	font-size: 1.4rem;
	line-height: 1.5;
}

ol.cautionNumList > li::before{
	counter-increment: cautionNum;
	content: counter(cautionNum)".";
	width: 22px;
	font-weight: 700;
	padding-right: 10px;
}

/**************************************
circleList
**************************************/
ul.circleList,
#myDiv ul
{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 20px;
}
ul.circleList:nth-last-child(1){margin-bottom: 0;}

ul.circleList > li,
#myDiv ul > li
{
	display: block;
	text-indent: -1em;
	padding-left: 1em;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 5px;
}

ul.circleList > li::before,
#myDiv ul > li::before
{
	content: '・';
	width: 1em;
	font-weight: 700;
}


ul.circleList > li:nth-last-of-type(1),
#myDiv ul > li:nth-last-of-type(1)
{margin-bottom: 0;}


/**************************************
cautionBox
**************************************/
.cautionBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
	padding: 30px;
	background: #f7f7f7;
	font-size: 1.4rem;
	line-height: 1.7;
}
.cautionBox:nth-last-child(1){margin-bottom: 0;}

.formTable + .cautionBox{margin-top: 30px;}

.cautionBox > dl{ display: block;}
.cautionBox > dl > dt{
	font-size: 1.6rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.cautionBox > dl > dd{margin-bottom: 10px;}
.cautionBox > dl > dd:nth-last-child(1){margin-bottom: 0;}

.cautionBox > dl > dd > dl{
	display: block;
	padding-top: 10px;
	margin-bottom: 10px;
}
.cautionBox > dl > dd > dl > dt{margin-bottom: 10px; font-weight: 700;}

.cautionBox > dl > dd.btnWhite{
	display: block;
	width: 400px;
	padding-top: 20px;
	margin: 0 auto;
}

.cautionBox.center{text-align: center;}

.cautionBoxTwoC{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	width: 100%;
}

.cautionBoxTwoC > .cautionBox{
	width: calc(50% - 15px);
	margin: 0;
}

.cautionBox > dl > dt.textCenter{
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #CCCCCC;
}
.cautionBox > dl > dt.textCenter > span{
	display: block;
	padding-top: 5px;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
}

.stepFlow + .cautionBox{margin-top: 40px;}

/**************************************
tagBtnBig
**************************************/
.tagBtnBig{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	border-bottom: 4px solid #e35555;
	margin: 0 auto -20px;
	padding-top: 10px;
}
/** 【FFHC v1.0】2.3.5. 代理注文 - Task 3699修正　Start*/
section.onbehalfSearchProduct .tagBtnBig{
    border-bottom-color: #eeeeee;
}
.deleteOnBehalf{
		position: relative;
	    display: block;
	    width: 100%;
	    text-align: -webkit-right;
	    padding-bottom: 5px;
	    margin-top: -8px;
	    padding-left: 100%;
}
.deleteOnBehalf span{
       position: relative;
	    display: block;
	    background-color: #eeeeee;
	    border-radius:3px;
	    padding: 8px;
	    cursor: pointer;
	    width:50px;
	    text-align:center;
	    overflow:hidden;
	    margin-left: -50px;
}
/** 【FFHC v1.0】2.3.5. 代理注文 - Task 3699修正　End.*/
.requiredCautionAccordionBox + * .tagBtnBig{padding-top: 40px;}

.tagBtnBig > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: calc(50% - 5px);
	height: 46px;
	padding-top: 4px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #333333;
	border: 1px solid #CCCCCC;
	border-bottom: none;
	border-radius: 4px 4px 0 0;
	cursor: pointer;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.tagBtnBig > li.current{
	background: #e35555;
	color: #FFFFFF;
	border-color: #e35555;
}
/** 【FFHC v1.0】2.3.5. 代理注文 - Task 3699修正　Start*/
section.onbehalfSearchProduct .tagBtnBig > li.current{
    background: #eeeeee;
    border-color: #eeeeee;
    color:#333333;
}
/** 【FFHC v1.0】2.3.5. 代理注文 - Task 3699修正　End.*/

/**************************************
tagBtnSmall
**************************************/
.tagBtnSmall{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
	padding: 30px;
	background: #eeeeee;
}

.tagBtnSmall > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 240px;
	height: 50px;
	margin-right: 30px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	font-size: 1.6rem;
	color: #333333;
	cursor: pointer;
    -webkit-transition: border 0.2s ease;
    -moz-transition: border 0.2s ease;
    -o-transition: border 0.2s ease;
    transition: border 0.2s ease;
}

#cardSelectTab > li > label > input{display: none;}
#cardSelectTab > li > label > input:checked + span {
	height: 100%;
	width: 100%;
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.tagBtnSmall > li > label{
	height: 100%;
	width: 100%;
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	cursor: pointer;
}

.tagBtnSmall > li:nth-last-of-type(1){margin-right: 0;}

.tagBtnSmall > li .checkMark{
	display: inline-block;
	width: 16px;
	text-align: center;
	vertical-align: middle;
	margin-right: 10px;
}
.tagBtnSmall > li .checkMark > img{display: block; width: 100%; height: auto;}

.tagBtnSmall > li.current{
	border: 2px solid #e35555;
	font-weight: 700;
}


/**************************************
userSection
**************************************/
#userSection{padding-bottom: 100px;}

.backMypage{
    display: block;
	width: 100%;
	max-width: 1200px;
	margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}


/**************************************
subscriptionTabArea
**************************************/
#subscriptionTabArea{}

#subscriptionActiveList,
#subscriptionInactiveList{display: none;}

#subscriptionActiveList.current,
#subscriptionInactiveList.current{display: block;}

#subscriptionTabArea .subscriptionSortBox{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
}

#subscriptionTabArea .subscriptionSortBox > .sort{}

#subscriptionTabArea #nextPriceSum{
    display: block;
    width: 100%;
    max-width: 1200px;
    font-size: large;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 700;
    text-align: right;
}

/*** subscriptionItemList ****************/
#subscriptionTabArea .subscriptionItemList{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}


/*** checkGuide *****/
#subscriptionTabArea .subscriptionItemList > .checkGuide{display: none;}

#subscriptionTabArea .subscriptionItemList.bulk > .checkGuide{
	display: block;
	width: 100%;
	padding: 20px;
	margin-bottom: 25px;
	background: #eeeeee;
	position: relative;
}

#subscriptionTabArea .subscriptionItemList > .checkGuide::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 10px 0 10px;
	border-color: #eeeeee transparent transparent transparent;
	position: absolute;
	left: 10px;
	bottom: -14px;
}

#subscriptionTabArea .subscriptionItemList > .checkGuide > p{
	display: block;
	position: relative;
	padding-left: 30px;
	font-size: 1.6rem;
	line-height: 20px;
}

#subscriptionTabArea .subscriptionItemList > .checkGuide > p::before{
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
	border-radius: 4px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: -1px;
	z-index: 2;
}

#subscriptionTabArea .subscriptionItemList > .checkGuide > p::after{
    content: ' ';
    display: block;
    width: 16px;
    height: 16px;
	background: url("../img/common/icon_checked.svg") center center no-repeat;
	background-size: 16px auto;
    position: absolute;
    left: 2px;
    top: 2px;
    z-index: 2;
}


/*** subscriptionItemList *****/
#subscriptionTabArea .subscriptionItemList > ul{
	display: block;
}


#subscriptionTabArea .subscriptionItemList > ul > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	border-top: 1px solid #333333;
	margin-bottom: 40px;
}
#subscriptionTabArea .subscriptionItemList > ul > li:nth-last-of-type(1){margin-bottom: 0;}

#subscriptionTabArea .subscriptionItemList.bulk > ul > li.changeDisabled{display: none;}

#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck{display: none;}

#subscriptionTabArea .subscriptionItemList.bulk > ul > li > .lineCheck{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: center;
    justify-content: center;
	width: 40px;
	padding-top: 10px;
	background: #333333;
	cursor: pointer;
}
#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck > input{display: none;}

#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck > span{
	display: block;
    width: 20px;
    height: 20px;
	position: relative;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck > span::before{
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
	border-radius: 4px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: 3px;
	z-index: 2;
}
#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck > span::after{
    content: ' ';
    display: block;
    width: 16px;
    height: 16px;
	background: url("../img/common/icon_checked.svg") center center no-repeat;
	background-size: 16px auto;
    position: absolute;
    left: 2px;
    top: 5px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck > input:checked + span::after{
    opacity: 1;
    transform: scale(1);
}

#subscriptionTabArea .subscriptionItemList > ul > li > .lineCheck > span > span{display: none;}


/*** itemInfoBox *****/
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox{
	display: block;
	width: 100%;
	padding: 40px 0 0;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: left;
}
#subscriptionTabArea .subscriptionItemList.bulk > ul > li > .itemInfoBox{
	width: calc(100% - 40px);
	padding-left: 40px;
}


#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 100%;
	margin-bottom: 20px;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name > figure{
	display: block;
	width: 100px;
	margin-right: 20px;
}
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name figure img{display: block; width: 100%; height: auto;}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name > .text{
	display: block;
	width: calc(100% - 120px);
}

/**【FFHC v1.0】【商品詳細画面へのリンク削除】#6394 Start.*/
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name > .text div{
/**【FFHC v1.0】【商品詳細画面へのリンク削除】#6394 End.*/
	font-weight: 700;
	font-size: 1.6rem;
}
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name > .text div > span{
    padding: 5px 10px;
    background: #FFFFFF;
    border: 1px solid #e35555;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 10px;
    color: #e35555;
}
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox > .name > .text .status{
	color: #e35555;
	font-weight: 700;
	margin-bottom: 5px;
}


/*** detailTable *****/
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable dl{
	display: table;
	table-layout: fixed;
	width: 100%;
	border-bottom: 1px solid #cccccc;
}
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable dl:nth-of-type(1){border-top: 1px solid #cccccc;}
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable dl:nth-last-of-type(1){border-top: none;}


#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable dl > dt{
	display: table-cell;
	width: 180px;
	padding: 30px;
	background: #eeeeee;
	font-size: 1.4rem;
	line-height: 1.7;
	vertical-align: middle;
	text-align: left;
	position: relative;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable dl > dd{
	display: table-cell;
/* 	width: calc(100% - 180px); */
	box-sizing: border-box;
	padding: 30px 30px 30px 29px;
	vertical-align: middle;
	background: #FFFFFF;
	border-left:1px solid #FFFFFF;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: left;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable dl > dd > strong{
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
}


#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable  > .shippingInfo{
	display: block;
	width: calc(50% - 20px);
	margin-right: 40px;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable  > .paymentInfo{
	display: block;
	width: calc(50% - 20px);
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable  > .moreInfoBtn{display: none;}
#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .detailTable  > .separateAdder{display: none;}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .btnArea{
	display: block;
	width: 100%;
	padding: 30px;
	margin-top: 20px;
	background: #f7f7f7;
}
#subscriptionTabArea .subscriptionItemList.bulk > ul > li > .itemInfoBox .btnArea{display: none;}


#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .btnArea > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .btnArea > ul > li{
	display: block;
	width: calc((100% - 60px) / 3);
}


#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .changeDisabledText{
	display: block;
	width: 100%;
	padding: 30px;
	margin-top: 20px;
	background: #f7f7f7;
	text-align: center;
}


#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .restartBtnArea{
	display: block;
	width: 100%;
	padding: 30px;
	margin-top: 20px;
	background: #f7f7f7;
}

#subscriptionTabArea .subscriptionItemList.bulk > ul > li > .itemInfoBox .restartBtnArea{display: none;}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .restartBtnArea > ul{
	display: block;
	position: relative;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .restartBtnArea li.btnBlack{
	width: 360px;
	margin: 0 auto;
}

#subscriptionTabArea .subscriptionItemList > ul > li > .itemInfoBox .restartBtnArea li:nth-last-of-type(1){
	display: block;
	position: absolute;
	right: 0;
	top: 7px;
}

#subscriptionTabArea .subscriptionItemList > div > p{
	font-size: 1.6rem;
}

/**【FFHC v1.0】【定期の休止/解約理由入力欄について】#6259 Start.*/
#stopFormModal .formTable .inputArea textarea{
	margin-top: 30px
}
/**【FFHC v1.0】【定期の休止/解約理由入力欄について】#6259 End.*/

/** bulkChangeBtnArea *******/
#subscriptionTabArea .bulkChangeBtnArea{
	display: block;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	background: rgba(51,51,51,.9);
	padding: 20px 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	webkit-transition: opacity 0.4s ease 0.2s,transform 0.4s ease 0.2s;
    -moz-transition: opacity 0.4s ease 0.2s,transform 0.4s ease 0.2s;
    -o-transition: opacity 0.4s ease 0.2s,transform 0.4s ease 0.2s;
    transition: opacity 0.4s ease 0.2s,transform 0.4s ease 0.2s;
    -webkit-transform: translate(0, 100px);
    -moz-transform: translate(0, 100px);
    -o-transform: translate(0, 100px);
    transform: translate(0, 100px);
}
#subscriptionTabArea .bulk .bulkChangeBtnArea.open{
	visibility: visible;
	opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

#subscriptionTabArea .bulk .bulkChangeBtnArea.fixed{
    position: fixed;
}

#subscriptionTabArea .bulkChangeBtnArea > .inner{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

#subscriptionTabArea .bulkChangeBtnArea > .inner > p{
	padding-left: 30px;
	margin-right: 30px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #FFFFFF;
	position: relative;
}

#subscriptionTabArea .bulkChangeBtnArea > .inner > p::before{
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
	border-radius: 4px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: -2px;
	z-index: 2;
}

#subscriptionTabArea .bulkChangeBtnArea > .inner > p::after{
    content: ' ';
    display: block;
    width: 16px;
    height: 16px;
	background: url("../img/common/icon_checked.svg") center center no-repeat;
	background-size: 16px auto;
    position: absolute;
    left: 2px;
    top: 0;
    z-index: 2;
}

#subscriptionTabArea .bulkChangeBtnArea > .inner > .btnWhite{width: 400px;}

#subscriptionTabArea .adderInfo .labelText{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-bottom: 15px;
}
#subscriptionTabArea .adderInfo .statusLabel{
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1;
	padding: 5px 10px 4px;
	background: #eeeeee;
	vertical-align: top;
}
#subscriptionTabArea .adderInfo .labelText > .statusLabel{margin-left: 15px;}

/**************************************
datapicker Calender
**************************************/
#datePickerOuter{position: relative; z-index: 10;}

.ui-datepicker{
	display: none;
	margin-top: 10px;
	padding: 15px 25px 25px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	box-shadow: 0 10px 10px rgba(0,0,0,.2);
	border-radius: 4px;
	position: absolute;
	width: auto;
}
.ui-datepicker::before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 9px 14px 9px;
	border-color: transparent transparent #FFFFFF transparent;
	position: absolute;
	top: -14px;
	left: 12px;
	z-index: 2;
	border-collapse: inherit;
}
.ui-datepicker::after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 15px 10px;
	border-color: transparent transparent #CCCCCC transparent;
	position: absolute;
	top: -15px;
	left: 11px;
	z-index: -1;
	border-collapse: inherit;
}

.ui-datepicker-header{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 240px;
	height: 40px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	position: relative;
}

.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-next{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 45px;
    height: 25px;
    border: 1px solid #333333;
    border-radius: 4px;
    color: #333333;
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	position: absolute;
	top: 6px;
    box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.ui-datepicker-header .ui-datepicker-prev{ left: 0;}
.ui-datepicker-header .ui-datepicker-next{ right: 0;}

.ui-datepicker-header .ui-datepicker-prev:hover,
.ui-datepicker-header .ui-datepicker-next:hover{
	background-color: #efefef;
}
.ui-datepicker-header .ui-datepicker-prev.ui-state-disabled,
.ui-datepicker-header .ui-datepicker-next.ui-state-disabled{
	opacity: 0.3;
    box-shadow: none;
	cursor: default;
}
.ui-datepicker-header .ui-datepicker-prev.ui-state-disabled:hover,
.ui-datepicker-header .ui-datepicker-next.ui-state-disabled:hover{background-color: #FFFFFF;}


.ui-datepicker-header .ui-datepicker-prev > span{
	display: block;
	width: 100%;
	height: 25px;
	background:url("../img/common/icon_arrow_left_black.svg") center center no-repeat;
	background-size: 8px auto;
	margin-left: -24px;
    margin-top: -14px;
}
.ui-datepicker-header .ui-datepicker-next > span{
	display: block;
	width: 100%;
	height: 25px;
	background:url("../img/common/icon_arrow_right_black.svg") center center no-repeat;
	background-size: 8px auto;
	margin-left: -22px;
    margin-top: -14px;
}


.ui-datepicker-calendar{}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td{
	width: 40px;
	height: 44px;
	padding: 2px 0;
	font-size: 16px;
	color: #333333;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
}
.ui-datepicker-calendar td a{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	text-decoration: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #FFFFFF;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.ui-datepicker-calendar td a:hover{
	background: #eeeeee;
}

.ui-datepicker-week-end:first-child,
.ui-datepicker-week-end:first-child a{
  color:  #e35555;
}
.ui-datepicker-week-end:last-child,
.ui-datepicker-week-end:last-child a{
  color:  #1e80cc;
}

.ui-datepicker-calendar td.ui-state-disabled{opacity: .3;}

.ui-datepicker-calendar td.ui-datepicker-current-day a{
	background: #e35555;
	color: #FFFFFF;
}
.ui-datepicker-calendar td.ui-datepicker-current-day a:hover{background: #e35555;}

.ui-datepicker-buttonpane{
	width: 100%;
}

.ui-datepicker-buttonpane{
	padding-top: 16px;
}

.ui-datepicker-close{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
	border: 1px solid #333333;
	border-radius: 4px;
    background: #333333;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.ui-datepicker-close:hover{
	background: #FFFFFF;
	color: #333333;
}

.ui-datepicker td span, .ui-datepicker td a {
    text-align: inherit;
}

.ui-datepicker .ui-datepicker-header {
    min-width: 280px;
}

input[type="text"].datePicker{
	width: 100%;
	max-width: 230px;
	height: 36px;
	font-size: 1.6rem;
	line-height: 34px;
	padding: 0 30px 0 40px;
	background: #FFFFFF;
	border: 1px solid #cccccc;
	border-radius: 4px;
	vertical-align: middle;
	cursor: pointer;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	background-image: url("../img/common/icon_calendar.svg"),url("../img/common/icon_arrow_bottom_black.svg");
	background-repeat: no-repeat;
	background-position: 10px center,calc(100% - 10px) center;
	background-size: 22px auto ,10px auto;
}
input[type="text"].datePicker:disabled{
	background-color: #efefef;
	color: #999999;
	cursor: default;
}


.formTable > dl > dd .nextShippingSelect .datePicker{
	margin-top: 10px;
}

/**************************************
labelBtnList
**************************************/
.labelBtnList{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 30px 30px 30px;
	background: #eeeeee;
}

.labelBtnList > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.labelBtnList > ul > li{
	display: block;
	margin: 20px 20px 0 0;
}

.labelBtnList > ul > li > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 40px;
	padding:  0 40px;
    font-size: 1.6rem;
    font-weight: 700;
	border: 1px solid #333333;
	border-radius: 4px;
    color: #333333;
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}

.labelBtnList > ul > li > a:hover{
	background: #333333;
	color: #FFFFFF;
}

/**************************************
contetsInnerSearchBox
**************************************/
.contetsInnerSearchBox{
	display: block;
}

.contetsInnerSearchBox fieldset{
	display: block;
	width: 100%; height: 30px;
	margin: 0;
	padding: 0;
}

.contetsInnerSearchBox fieldset > input[type="text"],
.contetsInnerSearchBox fieldset > button{
	display: block;
	float: left;
}
.contetsInnerSearchBox fieldset > input[type="text"]{
	display: block;
	width: calc(100% - 60px);
	height: 40px;
	padding: 0 10px;
	border-radius: 4px 0 0 4px;
	line-height: 38px;
	border-right: none;
	float: left;
}


.contetsInnerSearchBox fieldset > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 60px;
	height: 40px;
	border-radius: 0 4px 4px 0;
	background: #333333;
	float: right;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background  0.2s ease;
}
.contetsInnerSearchBox fieldset > button:hover{
	background: #999999;
}

.contetsInnerSearchBox fieldset > button > img{
	display: block;
	width: 28px; height: auto;
}

/**************************************
contetsInnerSearchBox
**************************************/
#presentSelectLIst{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px;
}

#presentSelectLIst > ul{
	display: block;
}


#presentSelectLIst > ul > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	border-top: 1px solid #333333;
	margin-bottom: 40px;
	position: relative;
}
#presentSelectLIst > ul > li:nth-last-of-type(1){margin-bottom: 0;}

#presentSelectLIst > ul > li.disabled{
	pointer-events: none;
	border-top: 1px solid #cccccc;
}

#presentSelectLIst > ul > li > .lineCheck{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: center;
    justify-content: center;
	width: 40px;
	padding-top: 10px;
	background: #333333;
	cursor: pointer;
}
#presentSelectLIst > ul > li > .lineCheck > input{display: none;}

#presentSelectLIst > ul > li.disabled > .lineCheck{
	opacity: .5;
}


#presentSelectLIst > ul > li > .lineCheck > span{
	display: block;
    width: 20px;
    height: 20px;
	position: relative;
}

#presentSelectLIst > ul > li > .lineCheck > span::before{
	content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
	border-radius: 4px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
    vertical-align: middle;
    text-align: center;
    position: absolute;
	left: 0;
	top: 3px;
	z-index: 2;
}
#presentSelectLIst > ul > li > .lineCheck > span::after{
    content: ' ';
    display: block;
    width: 16px;
    height: 16px;
	background: url("../img/common/icon_checked.svg") center center no-repeat;
	background-size: 16px auto;
    position: absolute;
    left: 2px;
    top: 5px;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}

#presentSelectLIst > ul > li > .lineCheck > input:checked + span::after{
    opacity: 1;
    transform: scale(1);
}

#presentSelectLIst > ul > li > .lineCheck > span > span{display: none;}

#presentSelectLIst > ul > li > .itemInfoBox{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: calc(100% - 40px);
	padding: 30px 0 0;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: left;
	padding-left: 40px;
}

#presentSelectLIst > ul > li.disabled > .itemInfoBox{
	opacity: .5;
}


#presentSelectLIst > ul > li > .itemInfoBox > figure{
	display: block;
	width: 90px;
	margin-right: 30px;
}
#presentSelectLIst > ul > li > .itemInfoBox > figure img{display: block; width: 100%; height: auto;}

#presentSelectLIst > ul > li > .itemInfoBox > dl{
	display: block;
	width: calc(100% - 120px);
}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dt{
	font-size: 1.4rem;
	line-height: 1.7;
	font-weight: 700;
}
#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.productName{
	font-size: 1.2rem;
	line-height: 1.7;
	padding-top: 10px;
}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.info{
	font-size: 1.4rem;
	line-height: 1.7;
	padding-top: 20px;
}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.info .caution{
	padding-top: 10px;
	font-size: 1.2rem;
	line-height: 1.5;
}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity{
	display: block;
	padding-top: 30px;
}
#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity > dl{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity > dl > dt{
	font-size: 1.6rem;
}
#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity > dl > dt::after{content: '：';}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity > dl > dd.delete{
	display: none;
	padding-left: 10px;
	font-size: 1.4rem;
	text-decoration: underline;
}
#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity > dl > dd.delete:hover{text-decoration: none;}
/* #presentSelectLIst > ul > li.checked > .itemInfoBox > dl  dd.quantity > dl > dd.delete{display: block;cursor: pointer;} */

#presentSelectLIst > ul > li.checked > .itemInfoBox > dl  dd.quantity > dl > dd select{pointer-events : none;background : #CCCCCC;}

/* #presentSelectLIst > ul > li > label > input:checked + span::before{pointer-events : none;background : #CCCCCC;} */
/* #presentSelectLIst > ul > li.checked > label{pointer-events : none;} */

#presentSelectLIst > ul > li > label > input:disabled + span::before{background : #CCCCCC;}

#presentSelectLIst > ul > li > .itemInfoBox > dl  dd.quantity > dl > dd.disabled{
	display: none;
	padding-left: 10px;
	font-size: 1.4rem;
}

#presentSelectLIst > ul > li.disabled > .itemInfoBox > dl  dd.quantity > dl > dd.disabled{display: block;}


#presentSelectLIst > ul > li > .endMsg{ display: none;}
#presentSelectLIst > ul > li.disabled > .endMsg{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 300px;
	height: 60px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    border: 1px solid #CCCCCC;
    background: #FFFFFF;
    text-align: center;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 150px);
}

#checkedPresent{
/* 	display: none; */
	padding: 30px;
    background: #eeeeee;
	margin: 40px auto;
}

#checkedPresent > dl{display: block;}

#checkedPresent > dl > dt{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
}
#checkedPresent > dl > dd{}

#checkedPresent > dl > dd > ul{}

#checkedPresent > dl > dd > ul > li{
	display: block;
	font-size: 1.4rem;
	line-height: 1.7;
	padding-left: 1em;
	text-indent: -1em;
	word-break: break-all;
}
#checkedPresent > dl > dd > ul > li::before{
	content: '・';
}


/**************************************
termsBox
**************************************/
.termsBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	height: 200px;
	margin: 30px auto 30px;
	padding: 30px;
	border: 1px solid #CCCCCC;
	overflow-y: auto;
}


.termsSection{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 80px;
	font-size: 1.4rem;
	line-height: 1.7;
}

.termsSection .termsTTL{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.termsSection .lede{margin-bottom: 20px;}

.termsSection > dl{display: block; margin-bottom: 30px;}
.termsSection > dl > dt{font-weight: 700; margin-bottom: 10px;}

/**************************************
agreeTerms
**************************************/
#agreeTerms{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
#agreeTerms > ul > li{padding-top: 10px;}

.agreeMailMagazine{
	min-height: 16px;
	padding-left: 26px;
    font-size: 1.4rem;
	line-height: 1.7;
}


/**************************************
borderBox
**************************************/
.borderBoxOuter{
	display: block;
	width: calc(100% - 40px);
	margin: 0 auto 30px;
}
.borderBoxOuter:nth-last-child(1){margin-bottom: 0;}

.bottomBtnArea + .borderBoxOuter{margin-top: 60px;}

.borderBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
	padding: 30px;
	border: 1px solid #CCCCCC;
}

.borderBox:nth-last-child(1){margin-bottom: 0;}

.borderBox > dl{}
.borderBox > dl > dt{
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.borderBox > dl > dd{
	font-size: 1.4rem;
	line-height: 1.7;
	margin-bottom: 20px;
}
.borderBox > dl > dd:nth-last-of-type(1){margin-bottom: 0;}

.borderBox > dl > dd.note{
	font-size: 1.2rem;
	line-height: 1.8;
}


/**************************************
borderBox
**************************************/

dl.precautionsBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
}
dl.precautionsBox:nth-last-child(1){margin-bottom: 0;}

dl.precautionsBox > dt{
	display: block;
	padding: 20px 30px 20px 30px;
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0;
	background: #eeeeee;
	position: relative;
	cursor: pointer;
}
dl.precautionsBox > dt::before,
dl.precautionsBox > dt::after{
	content: '';
	display: block;
	width: 16px; height: 2px;
	background: #333333;
	position: absolute;
	webkit-transition: transform 0.2s ease,opacity 0.5s ease;
    -moz-transition: transform 0.2s ease,opacity 0.5s ease;
    -o-transition: transform 0.2s ease,opacity 0.5s ease;
    transition: transform 0.2s ease,opacity 0.5s ease;
}
dl.precautionsBox > dt::before{
	top: 50%;
	right: 30px;
}
dl.precautionsBox > dt::after{
	transform: rotate(90deg);
	top: 50%;
	right: 30px;
}
dl.precautionsBox.open > dt::after{
    opacity: 0;
	transform: rotate(0);
}

dl.precautionsBox > dd{
	display: none;
	padding: 30px;
	font-size: 1.4rem;
	line-height: 1.7;
}

dl.precautionsBox > dd.warppingCaution{
	display: none;
	padding: 0 30px 30px;
	font-size: 1.4rem;
	line-height: 1.7;
	background: #eeeeee;
}

dl.precautionsBox > dd.warppingCaution > dl{display: block;}
dl.precautionsBox > dd.warppingCaution > dl > dt{
	font-weight: 700;
	margin-bottom: 10px;
}
dl.precautionsBox > dd.warppingCaution > dl > dd{
	display: block;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 5px;
}
dl.precautionsBox > dd.warppingCaution > dl > dd::before{
	content: '●';
}

/**************************************
otpBox
**************************************/
.formTable .otpBox{ display: block;}

.formTable .otpBox > .btnWhite{
	width: 400px;
	margin-bottom: 20px;
}

.formTable .otpBox > .inputArea{
	width: 400px;
	margin-bottom: 20px;
}

.formTable .otpBox > .inputArea > input,
.formTable .otpBox > .inputArea > .form-row{
	display: block;
	width: 180px;
	margin-right: 20px;
}
.formTable .otpBox > .inputArea > .btnWhite{
	width: calc(100% - 200px);
}

/**************************************
overRide
**************************************/
.mb10{margin-bottom: 10px!important;}
.fcRed{color: #e35555!important;}
.fcBlack{color: #333333!important;}

/**************************************
SPitem
**************************************/
.spView{display: none!important;}

/**************************************
displayNone Input (for Validation)
**************************************/
.displaynone > .field-wrapper > input {
	height: 1px;
	width: 1px;
	padding: 0px;
	margin: 0px;
	border: 0px;
    position: absolute;
    top: -100px;
}

/**************************************
cartBtn for Content Asset
**************************************/
button.clickOnAddToCartContentAsset {
	    max-width: 300px;
	}

/**************************************
sitemapSection
**************************************/
#sitemapSection{
    max-width: 1140px;
    padding: 20px 10px 50px;
    margin: 0 auto;
}

#sitemapSection .sitemapList{
	padding-top: 20px;
}


#sitemapSection .sitemapList > dl{
	margin-bottom: 40px;
}

#sitemapSection .sitemapList > dl > dt{
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 20px;
}

#sitemapSection .sitemapList > dl > dt > a{
	color: #000000;
	text-decoration: none;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity  0.2s ease;
}
#sitemapSection .sitemapList > dl > dt > a:hover{opacity: .6; text-decoration: underline;}


#sitemapSection .sitemapList > dl > dd{
/* 	border: 1px solid #d2d2d2; */
	padding: 0 20px;
}
#sitemapSection .sitemapList > dl > dd > dl{
	display: table;
	width: 100%;
	padding: 18px 5px 5px 0px;
 	border-bottom: 1px dotted #dbdbdb;
}

#sitemapSection .sitemapList > dl > dd > dl > dt{
	display: table-cell;
/* 	width: 240px; */
	vertical-align: top;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
}

#sitemapSection .sitemapList > dl > dd > dl > dt > a{
	color: #e35555;
	text-decoration: none;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity  0.2s ease;
}
#sitemapSection .sitemapList > dl > dd > dl > dt > a:hover{opacity: .6;}

#sitemapSection .sitemapList > dl > dd > dl > dd{
	display: table-cell;
	text-align: left;
	vertical-align: top;
	padding-top: 2px;
}

#sitemapSection .sitemapList > dl > dd > dl > dd > ul{
	display: block;
}

#sitemapSection .sitemapList > dl > dd > dl > dd > ul > li{
	display: inline-block;
	float: left;
	padding-right: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	border-right: 1px solid #CCCCCC;
}
#sitemapSection .sitemapList > dl > dd > dl > dd > ul > li:nth-last-of-type(1){margin-right: 0; padding-right: 0; border:none;}


#sitemapSection .sitemapList > dl > dd > dl > dd > ul > li > a{
	font-size: 16px;
	color: #000000;
	text-decoration: none;
}
#sitemapSection .sitemapList > dl > dd > dl > dd > ul > li > a:hover{text-decoration: underline;}

/**【FFHC v1.0】【LINE連携対応】 #6562 Start.*/
/**************************************
lineLoginSection
**************************************/
#lineLoginSection .mainTTL{
	text-align: center;
	padding: 30px 0 30px;
}

#lineLoginSection ul > li{
	font-size: 1.6rem;
	padding: 30px 0 30px;
	text-align: center;
}

#lineLoginSection .errorMessageBox{
	display: block;
}

#lineLoginSection .errorMessageBox > .subTTL{
	display: block;
	width: 100%;
	max-width: 1200px;
	background: #f7f7f7;
    padding: 20px 30px 20px 30px;
	font-size: 2.6rem;
	line-height: 1.6;
	font-weight: 700;
	margin-bottom: 30px;
}

#lineLoginSection .errorMessageBox:nth-last-child(1){margin-bottom: 0;}

#lineLoginSection .errorMessageBox > div{
	font-size: 1.6rem;
	margin-bottom: 20px;
	padding: 20px 30px 20px 30px;
}
/**【FFHC v1.0】【LINE連携対応】 #6562 End.*/
.g-recaptcha{margin: 20px 0 0 0;}
.g-recaptcha > div{margin: auto;}

/**************************************
informationBox
**************************************/
.informationBox{
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 20px;
	padding: 15px;
	background: #f7f7f7;
	font-size: 1.4rem;
	line-height: 1.7;
}
.informationBox:nth-last-child(1){margin-bottom: 0;}

.formTable + .informationBox{margin-top: 30px;}

.informationBox > dl{ display: block;}
.informationBox > dl > dt{
	font-size: 1.6rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.informationBox > dl > dd{
	font-weight: 700;
	margin-bottom: 10px;
}
.informationBox > dl > dd.red{
	color: #e35555;
}

.informationBox > dl > dd:nth-last-child(1){margin-bottom: 0;}

.informationBox > dl > dd > dl{
	display: block;
	padding-top: 10px;
	margin-bottom: 10px;
}
.informationBox > dl > dd > dl > dt{margin-bottom: 10px; font-weight: 700;}
#guestAgreeTerms{text-align: center; margin-bottom: 20px;}

/**************************************
txMatomeMessage
**************************************/
.txMatomeChoiceMessage {
    display: block;
    width: calc(100% - 40px);
    margin: 10px auto;
    font-size: 1.4rem;
    line-height: 1.5;
}
.txMatomeChoiceMessage dd > span {
    font-weight: bolder;
}

/**************************************
txMatomeMessage
**************************************/
.txMatomeMessage {
    display: block;
    margin: 10px 10px 0px;
    font-size: 1.4rem;
    line-height: 1.5;
}
.txMatomeMessage dd > span {
    font-weight: bolder;
}

/**************************************
txButtonExplanation
**************************************/
.txButtonExplanation {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px;
    font-size: 1.4rem;
    line-height: 1.4;
}
.txButtonExplanation dd {
    padding-bottom: 5px;
}
.txButtonExplanation dd > span {
    font-weight: bolder;
}

/**************************************
.cresc
***************************************/
.cresc #headUtility{
  right: 19px;
}

.alignCenter {
	align-items: center!important;
}

#header .cresc .headLogo > img:nth-of-type(1) {
	width: 155px;
	padding-top: 9px;
}

#header .cresc .headLogo > a > img:nth-of-type(1) {
    width: 155px;
    padding-top: 9px;
}

#header .cresc {
	padding-left: 10px;
}

/**************************************
.subsclist(2回目定期情報)
***************************************/
#nextSubscInfo {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto ;
    position: relative;
    font-size:1.4rem;
}
#nextSubscInfo >#nextSubscInformation{
    border: 1px solid #CCCCCC;
}
#skipFormModal #nextSubscInfo {
    margin-top:0px;

}

#nextSubscInfo >#nextSubscInformation dt{
    padding: 15px;
    background: #696969;
    font-size: 1.4rem;
    color: white;
    line-height: 1.4;
    text-align: center;

}
#nextSubscInfo >#nextSubscInformation dd{
    padding: 15px;
    background: #eeeeee;
    font-size: 1.6rem;
    line-height: 1.4;
}

#nextSubscInfo >ul >li{
    display: block;
    width: 31.6666666666%;
    height: 200px;
    margin-right: 2.5%;
    margin-bottom: 12px;
    border: 1px solid #CCCCCC;
    position: relative;
    padding:10px;
}

#nextSubscInfo > ul > li:nth-child(3){border-top: 1px solid #CCCCCC;}
#nextSubscInfo > ul > li:nth-of-type(3n){margin-right: 0;}

#nextSubscInfo > ul > li > dl.itemInfo {
    font-weight: 700;
    line-height: 1.5;
    height: 40%;
    margin-bottom:0;

}
#nextSubscInfo > ul > li > dl.deliveCourse,
#nextSubscInfo > ul > li > div.priceQuantity,
#nextSubscInfo > ul > li > dl.subscriptionTotal{
    padding-top: 15px ;
    font-size: 1.4rem;
}

#nextSubscInfo > ul > li > dl > dd div.text p.name,
#nextSubscInfo > ul > li > div dl.price,
#nextSubscInfo > ul > li > div dl.price dt,
#nextSubscInfo > ul > li > div dl.price dd,
#nextSubscInfo > ul > li > div dl.quantity,
#nextSubscInfo > ul > li > div dl.quantity dt,
#nextSubscInfo > ul > li > div dl.quantity dd{
    display: inline-block!important;
    width: auto;
    padding: 0!important;
    margin:  0!important;
}
#nextSubscInfo > ul > li > dl.itemInfo dd{
    padding:0;
    -webkit-align-items: baseline;
    align-items: baseline;
}
#nextSubscInfo .itemInfo > dd > .text{
    display: flex;
    width: auto;
}
#nextSubscInfo .itemInfo > dd > .text > p > span::before{
   width: 14px;
    display: inline-block;
    content: "◇";
}
#nextSubscInfo > ul > li > dl.deliveCourse > dd >div.product-option{
    font-weight:700;
}

#nextSubscInfo dl.price::after {
    width: 5px;
    display: inline-block;
    content: "/";
}
#nextSubscInfo > ul > li > div.priceQuantity dl.price dt,
#nextSubscInfo > ul > li > div.priceQuantity dl.quantity dt{
    padding-right: 10px!important;
}
#nextSubscInfo > ul > li > dl.subscriptionTotal{
    font-weight: 700;
    line-height: 1.5;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#nextSubscInfo > ul > li > dl.subscriptionTotal dt,
#nextSubscInfo > ul > li > dl.subscriptionTotal dd{
    font-weight: 700;
}
#nextSubscInfo > ul > li > dl.subscriptionTotal > dd.subscriptionTotalPrice{
    font-size:1.8rem;
}

/** 定期変更画面 **/
.btnBlack .updateFormOpen{
    line-height: 2.3rem;
}

#updateFormModal .modalBox .modalInner{
	width:95%;
	max-width:1140px;
}
#updateFormModal div#nextSubscInfo {
    margin: 0;
}
#updateFormModal div#nextSubscInfo >#nextSubscInformation dt{
	font-size:2rem;
}

#updateFormModal div#nextSubscInfo li.nextSubscription{
	height:275px;
}
#updateFormModal div#nextSubscInfo li.nextSubscription > div.itemInfo{
    line-height: 1.5;
    height: 30%;
    margin-bottom:0;
}
#updateFormModal div#nextSubscInfo li.nextSubscription > div.itemInfo .text p{
	display:inline;
}

#updateFormModal div#nextSubscInfo li.nextSubscription > div.itemInfo .name,
#updateFormModal div#nextSubscInfo li.nextSubscription > div.teikiCycle p >span,
#updateFormModal div#nextSubscInfo li.nextSubscription > div.teikiPayment p >span{
	font-weight: 700;
}
#nextSubscInfo .label {
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 22px;
    padding: 5px 10px 4px;
    margin-left: 10px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #eeeeee;
}
#updateFormModal div#nextSubscInfo li.nextSubscription > div.teikiCycle,
#updateFormModal div#nextSubscInfo li.nextSubscription > div.teikiPayment{
	line-height: 1.5;
	padding-top: 10px;
}
#updateFormModal div#nextSubscInfo li.nextSubscription > div.teikiCycle div,
#updateFormModal div#nextSubscInfo li.nextSubscription > div.teikiPayment div {
    height: 5rem;
}
#updateFormModal div#nextSubscInfo > ul > li > dl.subscriptionTotal{
	padding-top: 0;
}

/**************************************
.orderOrSubscCancelCaution(決済画面アコーディオン表示)
***************************************/
#nextSubscInfo >dl.precautionsBox{
    margin:30px auto;
}

#nextSubscInfo dl.precautionsBox > dt{
    text-align:center;
}
dd.orderOrSubscCancelCaution > ul .subTitle,
dd.nextShippingCaution > ul .subTitle{
    font-weight:700;
    line-height:1.5;
}

dd.orderOrSubscCancelCaution > ul > li >ul.caution li,
dd.nextShippingCaution > ul > li >ul.caution li{
    display: block;
    /*padding-left: 0.5em;*/
    margin-bottom: 5px;
    text-indent: 1em;
    position:relative;
}

dd.orderOrSubscCancelCaution > ul > li >ul.caution li::before,
dd.nextShippingCaution > ul > li >ul.caution li::before{
    content:"●";
    left:-1em;
    display:inline-block;
    position:absolute;
}

dd.orderOrSubscCancelCaution > ul > li.returnPhone,
dd.nextShippingCaution > ul > li.returnPhone{
    padding-top:0.5em;
}
dd.orderOrSubscCancelCaution > ul > li >span.modalNote,
dd.nextShippingCaution > ul > li >span.modalNote{
    color: #e35555;
}

/**************************************
.helpmodal(ポップアップモーダル表示)
***************************************/
p.paymentHelp {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
div.paymentHelp >span.note{
	font-size:1.2rem;
}
em.question{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: #696969;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 2rem;
    cursor:pointer;
    margin-left:0.5rem;
}

#nextSubscInfo > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-top:24px;
}

/*no108*/
.onbehalfSearchProduct .contentID {
	background: #eeeeee;
	font-size: 1.4em;
	font-weight: bold;
	margin-top: 10px;
	padding-top: 18px;
	padding-left: 16px;
	height: 50px;
	width: 605px;
}
/*no108以外でも使用*/
.invisibleBox {
    display: none!important;
}

/*no105*/
#stopFormModal select{
	padding-right: 30px;
}

/*no99*/
.boldRed{
    font-weight: bold;
    color: #e35555;
}
/*no99ここまで*/

/**************************************
RemiseToken
***************************************/
.mainCoverBox{
    height: 100%;
    content: '';
    display: block;
    width: 100%;
    position: fixed;
    top: 0px;//60px;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(255,255,255,0.5);
    visibility: visible;
    opacity: 1;
}

.noBorder {
	border: none!important;
}
.mainCoverBox p {
	padding-bottom: 10px;
}
.mainCoverBox .container {
     margin: 10px;
     padding: 10px;
     text-align: center;
 }
.mainCoverBox .cond {
    padding-bottom: 20px;
    padding-top: 40px;
    z-index: 1000;
    position: relative;
    background-color: rgb(255,255,255);
    max-width: fit-content;
    margin: 0 auto;
 }
.mainCoverBox .iptbtn {
     font-size: 3rem;
     margin: 20px;
 }
.mainCoverBox .iptbtn input {
     font-size: 3.6rem;
 }
.mainCoverBox .rcnbtn {
     font-size: 2rem;
     margin: 10px;
 }
.mainCoverBox .rcnbtn input {
 }

.mainCoverBox .result {
     padding-top: 30px;
 }
.mainCoverBox .message {
     font-size: 2rem;
     color: #FE0000;
 }
.mainCoverBox .message2 {
	margin-bottom: 20px;
    border: 3px solid #AAAAAA;
    margin-left: 40px;
    margin-right: 40px;
	padding: 20px;
	font-size: 2.8rem;
}
.mainCoverBox .message4 {
	margin-bottom: 20px;
    margin-left: 40px;
    margin-right: 40px;
	padding: 20px;
	font-size: 2.8rem;
}

.mainCoverBox .cardinfo {
     font-size: 2rem;
     margin: 20px;
     text-align: center;
 }

.mainCoverBox #list {
 }
.mainCoverBox #list table {
     position: relative;
     text-align: center;
     margin: 0 auto;
 }
.mainCoverBox #list table th {
     width: 320px;
     background-color: #DDDDDD;
     font-size: 3rem;
     padding: 2px;
     margin: 1px 5px;
     text-align: left;
     border: 2px solid #FFFFFF;
 }
.mainCoverBox #list table td {
     font-size: 3rem;
     padding: 2px;
     margin: 1px 5px;
     text-align: left;
 }

.mainCoverBox #create {
	padding: 10px 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: linear-gradient(#F0F0F0, #BBBBBB);
	font-size: 3rem;
	padding-left: 80px;
	padding-right: 80px;
 }
.mainCoverBox #cancel,#successfulEnd,#cancel3,#cancel2,#pushYes,#pushNo,.mainCoverBox .remiseBtn {
	padding: 10px 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
     background: linear-gradient(#F0F0F0, #BBBBBB);
	font-size: 4rem;
	padding-left: 25px;
	padding-right: 25px;
	color: #000000;
	border: 1px solid #3f3f3f;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    min-width: 250px;
 }
 .mainCoverBox #pushYes:focus,#pushNo:focus {
	outline: solid 5px red;
 }


 .mainCoverBox #cancel2,.mainCoverBox #reconnect {
 	margin-right: 25px;
 }

.mainCoverBox #reset,#reset2 {
     padding: 10px 35px 10px 35px;
     border-radius: 5px;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     background: linear-gradient(#F0F0F0, #BBBBBB);
     font-size: 3rem;
     min-width: 200px;
}

 .mainCoverBox #dialog1 {
 	margin-top: 50px;
 }
 .mainCoverBox #yesNoDialog {
 	margin-top: 50px;
 }

.paymentDetail #create2,#reset3 {
	padding: 10px 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	background: linear-gradient(#FFFFFF, #CCCCCC);
	font-size: 1.8rem;
	padding-left: 25px;
	padding-right: 25px;
	color: #000000;
	border: 1px solid #3f3f3f;
	box-shadow: 2px 2px 0 rgba(187,187,187,1);
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    -moz-transition: background 0.2s ease, color 0.2s ease;
    -o-transition: background 0.2s ease, color 0.2s ease;
    width: 320px;
    margin-bottom: 20px;
    margin-right: 20px;

}
.paymentDetail .message {
     font-size: 1.6rem;
     color: #FE0000;
     display: inline-block;
     vertical-align: middle;
 }
 @media screen and ( max-width:1053px) {
	 .paymentDetail .message {
	     width: 290px;
	 }
 }

 .paymentDetail .message3 {
     font-size: 1.6rem;
     color: #FE0000;
     display: inline-block;
     vertical-align: middle;
 }

.mainCoverBox #dialog-overlay {
     position: absolute;
     top: 0;
     left: 0;
     z-index: 99;
     width: 100%;
     height: 100%;
     filter: alpha(opacity=50);
     -moz-opacity: 0.5;
     -khtml-opacity: 0.5;
     opacity: 0.5;
     background: #000000;
     display: none;
 }
.mainCoverBox #dialog-box {
     position: absolute;
     z-index: 999;
     width: 650px;
     height: 230px;
     -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
     -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
     //background: #EEEEEE;
     background-color: rgb(255,255,255);
     display: none;
 }

.mainCoverBox #dialog-box .dialog-content {
     text-align: center;
     vertical-align: middle;
     margin: 30px;
     padding: 10px 5px;
 }
.mainCoverBox #dialog-message {
     font-size: 2.8rem;
 }

#changeTabBtn .changeSelectTabFocus, #noChangeTabBtn .changeSelectTabFocus {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border: 2px solid #e35555;
    font-weight: 700;
	width: 240px;
    height: 50px;
    margin: 0px;
    padding: 0px;
    background: #FFFFFF;
    font-size: 1.6rem;
    color: #333333;
    cursor: pointer;
    transition: border 0.2s ease;
}

#changeTabBtn .changeSelectTab, #noChangeTabBtn .changeSelectTab {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 50px;
    margin-right: 30px;
    padding: 0px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    font-size: 1.6rem;
    color: #333333;
    cursor: pointer;
    transition: border 0.2s ease;
    font-weight: 400;
}

#emailBeforeChange {
	margin-top: 0px;
}

#noChangeTabBtn {
	width: 240px;
	margin-left: 0px;
}

#changeTabBtn {
	margin-left: 40px;
}
/*
#BtnConfirmOrder2:hover {
	color: #FF0000;
}
#BtnConfirmOrder2:active {
	color: #00FF00;
}
*/
.uncheckedDisplay:checked ~ .onlyUnchecked {
	display: none;
}

/*mgm*/
.noOutline {
	outline: none!important;
}
.formFieldTitle {
    display: table-cell;
    width: 30%;
    padding: 30px;
    background: #eeeeee;
    font-size: 1.4rem;
    line-height: 1.7;
    vertical-align: middle;
    text-align: left;
    position: relative;
}
.formFieldVal {
    display: table-cell;
    width: 70%;
    box-sizing: border-box;
    padding: 30px 30px 30px 29px;
    vertical-align: middle;
    background: #FFFFFF;
    border-left: 1px solid #FFFFFF;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: left;
}
.formField {
display: table;
    table-layout: fixed;
    width: 100%;
    border-bottom: 1px solid #cccccc;
	max-width: 1200px;
    margin: 0 auto;
}
/*EC function upgrade Start.*/
.cardbrand{
	height: 40px;
	vertical-align: middle;
}
#registCard .cardbrand{
    padding-bottom: 0px;
    margin-top: 0px;
    height: 30px;
}

#selectalternativecard #newCard {
	display: none;
	padding-left: 15px;
}

#confirmModal2 .modalInner{
	margin-bottom: 200px;
}

#selectalternativecard #newCard.current{
	display: block;
}

#selectalternativecard #newCard div > ul.enableCardList{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	width: 490px;
}

#selectalternativecard #newCard div > ul.enableCardList > li{
	display: block;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.5;
}

#selectalternativecard #newCard div > ul.enableCardList > li > figure{
	display: block;
	width: 94px;
	margin: 0 auto 15px;
}

#selectalternativecard #newCard div > ul.enableCardList > li > figure img{display: block; width: 100%; height: auto;}

#selectalternativecard #newCard div > ul.enableCardList > li > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	height: 3em;
	text-align: center;
}

#selectalternativecard #newCard div > ul.circleList{
	display: block;
	width: calc(100% - 520px);
	margin-left: 30px;
}

#selectalternativecard #newCard .innerInputArea{
	display: block;
	padding: 30px;
	background: #eeeeee;
}

#selectalternativecard #newCard .innerInputArea dl{}

#selectalternativecard #newCard .innerInputArea dl > dt{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	margin-bottom: 10px;
	font-size: 1.4rem;
	position: relative;
	min-height: 22px;
}

#selectalternativecard #newCard .innerInputArea dl.required > dt > span{
	display: block;
	padding-top: 1px;
	padding-right: 20px;
}

#selectalternativecard #newCard .innerInputArea dl.required > dt::after{
	content: '必須';
	display: block;
	width: 40px;
	height: 22px;
	border: 1px solid #e35555;
	background: #FFFFFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #e35555;
}

#selectalternativecard #newCard .innerInputArea .cardInput > dl > dd{
	display: block;
}
#selectalternativecard #newCard .innerInputArea .cardInput > dl > dd p.note,
#selectalternativecard #newCard .innerInputArea > dl > dd p.note,
#selectalternativecard #registCard dl#cardOwnerName > dd p.note{
    margin-top: 5px;
    font-size: 1.2rem;
}

#selectalternativecard #newCard .innerInputArea .cardInput{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#selectalternativecard #newCard .innerInputArea .cardInput > dl{margin-bottom: 30px;}

#selectalternativecard #newCard .innerInputArea .cardInput > dl:nth-of-type(1){
	width: 280px;
	margin-right: 45px;
}



#selectalternativecard #newCard .innerInputArea .securityCode{margin-bottom: 30px;}


#selectalternativecard #newCard .innerInputArea  dl.securityCode > dd{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#selectalternativecard #newCard .innerInputArea  dl.securityCode > dd .inputArea{
	width: 120px;
	margin-right: 30px;
}


#selectalternativecard #newCard .innerInputArea .addCard{}
#selectalternativecard #newCard .innerInputArea .addCard > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
	padding: 20px 0 0;
}
#selectalternativecard #newCard .innerInputArea .addCard > ul > li{
	margin-right: 40px;
}
#selectalternativecard #newCard .innerInputArea .addCard > ul > li:nth-last-of-type(1){margin-right: 0;}

#selectalternativecard #newCard .innerInputArea .addCard > ul + p{padding-top: 20px;}

.subsccondition{
    border: 1px solid #d7073b;
    color: #d7073b;
    text-align: center;
    padding: 5px 10px;
    margin-right: 20px;
    background-color: #feddaa;
}
.cannotchange{
    border: 3px solid #d7073b;
    color: #ffffff;
    text-align: center;
    padding: 5px 5px;
    margin: 10px;
    background-color: #fe88aa;
    border-radius: 8px;
}

#selectalternativecard #cardSelectTab{
	background-color: white;
    padding-bottom: 0px;
    padding-top: 0px;
}

#subscriptionArea .contentList{
	font-size: 1.6rem;
}

.endOfContent{
	padding-bottom: 20px;
}

.listContent .listContentImg img{
    max-width: 150px;
    max-height: 150px;
}

.subscdata .productimg{
    max-width: 100px;
    max-height: 100px;
}

#selectalternativecard #paymentSelectBox{
    display: block;
    margin-top: 60px;
    padding-left: 15px;
}

#selectalternativecard .mtop{
	margin-top: 60px;
	display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#selectalternativecard .tagBtnSmall{
	padding-left: 15px;
}

#selectalternativecard .noDelBtns{
	display: none;
}

#selectalternativecard .cardHelp{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 20px;
}
#selectalternativecard #userSection{
	padding-bottom: 30px;
}

#selectalternativecard #newCard{
	font-size: 1.4rem;
	line-height: 24px;
}

#selectalternativecard .paymentDetailTitle{
	line-height: 34px;
}

#selectalternativecard {
	padding-bottom: 200px;
}

#selectalternativecard #registCard{
	padding-left: 15px;
}

#selectalternativecard .registCardList .radioBox{
	padding-left: 15px;
}

#selectalternativecard .registCardList .radioBox input:checked ~ span{
    background: #f7f7f7;
}

#selectalternativecard #registCard li > .radioBox span::after {
    top: calc(50% - 6px);
    left: 34px;
}

#selectalternativecard #registCard li > .radioBox span::before {
    top: calc(50% - 10px);
    left: 30px;
}

#selectalternativecard #registCard li > .radioBox span{
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding: 15px 50px 15px;
    border-top: 1px dotted #CCCCCC;
    border-bottom: 1px dotted #CCCCCC;
}

#selectalternativecard #registCard li > .radioBox span p{
    display: inline-block;
}

#selectalternativecard .creditCardList em{
	font-weight: 500;
}

/**【FFHC v1.0】#33321 3Dセキュア2.0対応 Start.*/
#selectalternativecard > section#userSection > section.creditCardListSection > #registCard > ul.registCardList > li> label > span::after {
	border-bottom: none;
}

#selectalternativecard > section#userSection > section.creditCardListSection > #registCard > ul.registCardList > li> label > dl.creditName {
	background: #f7f7f7;
	display: none;
	width: 100%;
	padding: 0 50px 15px;
}

#selectalternativecard > section#userSection > section.creditCardListSection > #registCard > ul.registCardList > li> label > dl.creditName > dt > span {
	border-top: none;
	border-bottom: none;
	font-size: 12px;
	padding: 10px 0px 10px;
}

#selectalternativecard > section#userSection > section.creditCardListSection > #registCard > ul.registCardList > li> label > dl.creditName > dd > p {
	font-size: 12px;
	padding: 12px 0 5px;
}

#selectalternativecard > section#userSection > section.creditCardListSection > #registCard > ul.registCardList > li> label > dl.creditName.required > dt > span::after{
	content: '必須';
	width: 36px;
	height: 16px;
	border: 1px solid #e35555;
	background: #FFFFFF;
	font-size: 11px;
	line-height: 17px;
	text-align: center;
	color: #e35555;
	position: relative;
	top: calc(50% - 12px);
}
/**【FFHC v1.0】#33321 3Dセキュア2.0対応 End.*/

.couponCodeForSubsc{
	text-align: center;
	padding: 10px 5px 5px 5px;
	font-size: 16px;
}
#bulkChangeBtnArea,#bulkChangeBtnArea2,#bulkChangeBtnArea3{
	text-align: center;
}
#bulkChangeBtnArea .sideBySide,#bulkChangeBtnArea2 .sideBySide{
	display: inline-block;
	width: 40%;
	margin-left: 10px;
    margin-right: 10px;
}
/** 【FFHC V1.0】#35422 まとめて再開もカートIN（子受注化導線）で実施できるようになる Start*/
#bulkChangeBtnArea3{
    width: 900px
}
#bulkChangeBtnArea3 .sideBySide{
    display: inline-block;
    width: 31%;
    margin-left: 10px;
    margin-right: 10px;
}
#bulkChangeBtnArea3 .sideBySide:first-child{
    margin-left: 0px;
}
#bulkChangeBtnArea3 .sideBySide:last-child{
    margin-right: 0px;
}
/** 【FFHC V1.0】#35422 まとめて再開もカートIN（子受注化導線）で実施できるようになる End*/

.itemHeading{
	width: 120px;
}

.hideContent{
	display: none;
}

#couponFormModal .contentListItem .text{
	font-size: 18px;
}
#couponFormModal .contentListItem{
    border-top: 8px solid #25906C;
    padding: 17px 0px 0;
}

#couponFormModal .contentTtl{
    padding-bottom: 17px;
}

#couponFormModal .ledeBox{
	padding-top: 17px;
}

#couponFormModal .listTTL{
	border-top: 4px solid #B4AA99;
}

#couponFormModal .btnWhite{
	width: 100%;
}

#couponFormModal .bottomBtnArea{
	padding: 0px;
}

#couponFormModal .modalBox .modalInner {
    width: 1100px;
}

.couponInfoArea{
	font-size: 18px;
	padding-left: 29px;
    padding-right: 29px;
    margin: 27px auto 27px;
}
#couponFormModal .hasIcon,#subscriptionArea .hasIcon {
	align-items: center;
}
#couponFormModal .hasIcon .img,#subscriptionArea .hasIcon .img {
	align-items: center;
	display: contents;
}
#couponFormModal .hasIcon img,#subscriptionArea .hasIcon img {
	height: 26px;
	width: auto;
}
.teikipayInfo{
	padding-bottom: 30px;
}

.leftspace {
    padding-left: 20px;
}

#orderDetailPayment24.inlinebrPC {
	display: inline-block;
	margin-bottom: 0px;
}

.alignRightSP {
	display: inline-block;
}

#cartPaymentArea #cardSelectTab{
	margin-bottom: 15px;
}

#cartPaymentArea .registCardList span p{
	display: inline-block;
    font-size: 1.4rem;
    margin-left: 10px;
}

#cartPaymentArea .registCardList span{
    display: flex;
    align-items: center;
}
/*EC function upgrade End.*/


/* #33221　3Dセキュア2.0対応 決済導線のカード有効期限切れの場合のデザイン修正 Start. */
/* 決裁導線 有効期限 */
.paymentSelectBox .inputArea .selectBox .form-row.error {
	display: block;
}
/* クレカ一括 有効期限 */
#selectalternativecard .inputArea .selectBox .form-row.error {
	display: block;
}

.txGetTokenFailedMessage-d-none {
    display: none;
}

/* #33221　3Dセキュア2.0対応 決済導線のカード有効期限切れの場合のデザイン修正 End. */
