@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
/******▼reset▼******/
html, body, div, p, a, blockquote, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, td, th, form, input, fieldset, textarea {
	margin: 0;
	padding: 0;
	vertical-align: top;
}
header, nav, article, aside, section, footer {
	display: block;
	margin: 0;
	padding: 0;
}
html, h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
ul, ol, li {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
	font-size: 100%;
}
caption, th {
	text-align: left;
}
img, fieldset, abbr {
	border: 0;
}
img {
	-ms-interpolation-mode: bicubic;
}
q:after, q:before {
	content:'';
}
br {
	letter-spacing: normal;
}
a {
	color: #000000;
	text-decoration: none;
	transition: all .4s;
}
img {
	color: #FFFFFF;
}
input ,textarea {
	-webkit-appearance: none;
	font-family: 'Open Sans', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
}
/*-----▼clearfix▼-----*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE Mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
.clear {
	clear: both;
}
/******▼html・body・wrapper・container▼******/
html, body {
	position: relative;
	width: 100%;
}
body {
	overflow-x: hidden;
	color: #353535;
	font-family: 'Open Sans', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
	font-size: 62.5%;
	font-weight: 400;
	line-height: 1;
	-webkit-text-size-adjust: none;
	background-color: #080607;
}
#wrapper {
	font-size: 1.600em;
	line-height: 1.75;
}
#container {
	position: relative;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/******▼header▼******/
#header {
	background-color: #080607;
    position: relative;
    z-index: 9999;
	margin: 0 20px;
}
.header-inner {
	position: relative;
	margin: 0 auto;
	max-width: 960px;
	padding: 60px 0;
}
.header-logo {
	max-width: 315px;
	width:100%;
	display: block;
	margin: 0 auto;
	padding: 0 0 20px;
}
.header-logo img {
	width:100%;
}
/******▼global-nav▼******/
#global-nav {
	position: relative;
    width: 320px;
    margin: 0 auto;
	display: flex;
	justify-content: center;
    align-items: center;
	border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
#global-nav li {
	display: block;
	color: #000000;
	cursor: pointer;
	position: relative;
}
#global-nav li a {
	display: block;
    padding: 1em 1.6em;
    font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#global-nav li a.active {
	background-color: #444;
}
#global-nav li.sub.active:hover .sub-nav {
	display: block;
    position: absolute;
    background-color: rgba(90, 90, 90, 0.7);
    border-top: 1px solid #fff;
}
#global-nav li.sub.active:hover .sub-nav a {
	color: #fff;
    padding: 0.5em;
    font-size: 16px;
}
#global-nav li.sub.active:hover .sub-nav a.active {
	background-color: #222;
}
#global-nav li .sub-nav {
	display: none;
}
.head-cart-btn,
.head-menu-btn {
	width: 108px;
	display: block;
	position: absolute;
    top: 0;
    right: 0px;
}
.head-menu-btn {
	margin-right: 15px;
	display: none;
}
.head-cart-btn img,
.head-menu-btn img {
	width: 100%;
}
/******▼slide▼******/
#home-slide {
	margin-bottom: 80px;
	position: relative;
}
#home-slide span {
    max-width: 490px;
    width: 100%;
    font-size: 60px;
	font-family: times new roman,times,serif;
	text-align: center;
	line-height: 1.3;
    color: #fff;
    margin: 0 auto;
    display: block;
	position: absolute;
	top: 13%;
	left: 0;
	right: 0;
}
/******▼contents▼******/
.contents {
	position: relative;
}
.contents.overflow {
	overflow: hidden;
}
.contents-inner {
	position: relative;
	margin: 0 auto;
	padding: 39px 0;
	max-width: 960px;
}
#home-img {
	display: block;
	width: 100%;
	min-height: 400px;
	background: url(../images/home/home-head.jpg) no-repeat center;
	background-size: cover;
}
img.max-img {
	width: 100%;
	margin-bottom: 15px;
}
/******▼contents01▼******/
.contents01 {
	padding: 50px 50px 50px 20px;
	max-width: 880px;
	z-index: 1;
}
.contents01 h2 {
	max-width: 700px;
    width: 100%;
	margin-bottom: 15px;
}
.contents-text {
	color: #FFFFFF;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 25px;
}
.contents-text a {
	color: #FFF100;
}
/******▼contents02▼******/
.contents02 {
	padding: 50px 20px 50px 70px;
    max-width: 860px;
    z-index: 1;
}
.contents02 h2 {
    width: 100%;
	margin-bottom: 15px;
}
.contents02 .flex {
	display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contents02 .flex p {
	width: auto;
}
.contents02 .flex p.img {
	max-width: 250px;
	width: 100%;
	margin-left: 20px;
}
.contents02 .flex p img {
	width: 100%;
}
/******▼contents03▼******/
.contents03 {
	padding: 20px;
	max-width: 910px;
	z-index: 1;
	overflow: hidden;
}
.contents03 h2 {
	margin-bottom: 30px;
	text-align: center;
}
.contents03 h3 {
	font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    clear: both;
    color: #FFFFFF;
    font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.contents03 ul.img-text-list {
	max-width: 700px;
	width: 100%;
	margin: 0 auto 80px;
	clear: both;
	overflow: hidden;
}
.contents03 ul.img-text-list li img {
	width: 100%;
}
.contents03 ul.img-text-list li.first {
	float: left;
	width: 43.5%;
}
.contents03 ul.img-text-list li.right {
	float: right;
	width: 54%;
}
/******▼.contents04▼******/
.contents04 .campaign {
	padding: 1em 2em;
	background-color: #EB8015;
}
.contents04 .campaign ul {
	max-width: 490px;
	width: 100%;
	margin: 0 auto;
}
.contents04 .campaign ul li {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	padding-left: 1em;
	text-indent: -1em;
}
.contents04 .mini-box {
	max-width: 860px;
	width: 100%;
	margin: 0 auto;
}
.contents04 .bold-text {
	font-weight: bold;
	color: #fff;
	font-size: 30px;
	margin-bottom: 30px;
}
.contents04 .bold-text a {
	color: #FEE9BD;
	text-decoration: underline;
}
.contents04 .bold-text a:hover {
	text-decoration: none;
}
/******▼.contents05▼******/
.contents05 .cart-img {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
.contents05 .bold-text {
	font-weight: bold;
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 30px auto;
}
.contents05 .cart-box.single p {
	text-align: center;
	color: #fff;
	font-size: 25px;
}
.contents05 .cart-box.single p a {
	color: #fff;
	text-decoration: underline;
}
.contents05 .cart-box.single p a:hover {
	text-decoration: none;
}
/******▼main-title▼******/
.contents h2.gold {
	font-size: 2em;
	line-height: 1.4;
	font-weight: bold;
	color: #c5b800;
	background: -webkit-linear-gradient(-45deg, #c5b800, #FFFFFF,#c5b800);
 	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	margin: 0 0 30px 0;
	letter-spacing: -0.5px;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.contents h2 img {
	width: 100%;
}
.contents02 .main-title {
	background-color: #620000;
	padding: 20px 0;
	margin-bottom: 39px;
	text-align: center;
	color: #FFFFFF;
	font-size: 55px;
	line-height: 1.5;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.contents02 .main-title span {
	display: block;
	font-size: 35px;
	padding-top: 7px;
}
.contents04 .main-title,
.contents05 .main-title {
	text-align: center;
	color: #FFFFFF;
	font-size: 50px;
	font-weight: bold;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.contents04 .sub-title {
	font-family: 'Open Sans', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
}
/******▼main-head▼******/
.main-head {
	text-align: center;
	font-size: 1.333em;
	font-weight: bold;
}
.contents02 .main-head {
	color: #513018;
	margin-bottom: 39px;
}
.head-img {
	text-align: center;
	margin: 80px 0 40px;
}
/******▼half-box▼******/
.half-box {
	float: left;
	margin: 0 0 60px;
	padding: 0 3%;
	width: 42%;
	text-align: center;
    background-color: #620000;
    color: #FFFFFF;
}
.half-box.left {
	margin: 0 4% 39px 0;
}
.half-box img,
.triple-list img {
	width: 100%;
	box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
.half-box h2,
.triple-list h2 {
	color: #c5b800;
	background: -webkit-linear-gradient(-45deg, #c5b800, #FFFFFF,#c5b800);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	font-size: 1.333em;
	font-weight: bold;
	padding: 1em 0;
	line-height: 1.4;
}
.half-box h2 span,
.triple-list h2 span {
	display: block;
}
.half-box h2 span span,
.triple-list h2 span span {
	display: inline;
	font-size: 0.7em;
}
.half-box a,
.triple-list a {
	background-color: #E72410;
	padding: 15px 0;
	margin: 0 20px;
	display: block;
	font-size: 1.333em;
	font-weight: bold;
	color: #FFFFFF;
	border-radius: 50px;
	box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
/******▼triple-list▼******/
.triple-list {
	overflow: hidden;
	text-align: center;
}
.triple-list.space {
	margin-bottom: 39px;
}
.triple-list li {
	width: 31.3%;
	margin: 0 0 3em 3%;
	float: left;
}
.triple-list li:nth-child(3n+1) {
	clear: both;
	margin-left: 0;
}
.triple-list.icon-list li {
	width: 28.3%;
	margin-bottom: 15px;
}
/******▼cart-img▼******/
.cart-img {
	margin: 0 auto 39px;
	color: #513018;
	text-align: center;
}
.cart-img img {
	width: 60%;
}
/******▼cart-box▼******/
.cart-box {
	overflow: hidden;
    margin-bottom: 50px;
    color: #FFFFFF;
}
.cart-box ul {
	width: 100%;
	margin: 0;
	display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}
.cart-box li {
	/*width: 33.33333%;*/
	width: 48%;
	margin: 1em auto 0;
	text-align: center;
	background-color: #C79B3C;
}
.cart-box h2 {
	color: #FFFFFF;
    font-size: 1.5em;
    font-weight: bold;
    padding-top: 1em;
}
.cart-box li table,
.cartjs_product_table table {
    border: none;
    width: auto !important;
    margin: 0 auto 15px;
    text-align: left;
}
.cart-box li table tr:first-child th,
.cartjs_product_table table tr:first-child th {
	display: none;
}
.cart-box li table th,
.cart-box li table td,
.cartjs_product_table table th,
.cartjs_product_table table td {
	display: block;
}
.cart-box li table td,
.cartjs_product_table table td {
	text-align: center;
	font-size: 1.5em !important;
}
.cartjs_product_num {
	display: none;
}
.cartjs_product_num th {
	font-size: 18px;
	text-align: center;
}
.cart-box .cartjs_box {
    margin: 0 !important;
    padding: 0 20px 20px !important;
}
.cartjs_cart_in input {
	background-color: #44C2BC !important; /*元：#E72410*/
	padding: 16px 0 !important;
	margin: 0px 0px 0px 0px !important;
	font-size: 1.1em !important;
	font-weight: bold !important;
	border-radius: 0px !important;
	box-shadow: 0 2px 2px rgba(0,0,0,0.2) !important;
	border:none !important;
	width: 100% !important;
}
.cartjs_cart_in input:hover {
	opacity: 0.6;
}
.cartjs_sales_price td {
	font-weight: normal !important;
}
/******▼arrow-list▼******/
.arrow-list {
	margin-bottom: 16px;
}
.arrow-list li {
	position: relative;
	padding: 0 0 0 17px;
	margin-bottom: 5px;
}
.arrow-list li:before {
	content:'';
	height: 5px;
	width: 5px;
	display: block;
	border: 2px solid #E72410;
	border-left-width: 0;
	border-top-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	left: 0;
}
/******▼cart-table▼******/
.sub-title {
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 15px;
	clear: both;
	color: #FFFFFF;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.detail-table {
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	clear: both;
	width: 100%;
	margin: 15px 0 0;
	color: #FFFFFF;
    font-size: 20px;
}
.detail-table th,
.detail-table td {
	border-bottom: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
	padding: 9px;
}
.detail-table.no-border {
	border: 0;
}
.detail-table.no-border th,
.detail-table.no-border td {
	border: 0;
}
/******▼toTop▼******/
#toTop {
	max-width: 960px;
	margin: 0 auto 39px;
	overflow: hidden;
	clear: both;
}
#toTop span {
	width: 82px;
	height: 82px;
	background-color: #D18E04;
	display: block;
	float: right;
	border-radius: 50%;
	position: relative;
}
#toTop span:before {
	content: '';
	height: 20px;
	width: 20px;
	display: block;
	border: 5px solid #FFFFFF;
	border-left-width: 0;
	border-bottom-width: 0;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -8px 0 0 -13px;
}
/******▼footer▼******/
#footer {
	position: relative;
	border-top: 1px solid #acacac;
}
/******▼footer-place▼******/
.footer-place {
	padding: 24px 0;
	max-width: 960px;
	margin: 0 auto;
	color: #fff;
}
.footer-logo {
	float: left;
	width: 50%;
	padding-top: 5px;
}
.footer-logo img {
	width: 90%;
}
.footer-place-text {
	margin-left: 50%;
	padding-left: 5%;
	border-left: 1px solid #acacac;
}
/******▼footer-link▼******/
.footer-link {
	text-align: center;
	padding: 15px 0;
	border-top: 1px solid #acacac;
	border-bottom: 1px solid #acacac;
}
.footer-link li {
	display: inline-block;
	margin: 0 15px;
	position: relative;
}
.footer-link li:before {
	content: '|';
	display: block;
	position: absolute;
	bottom: 0;
	left: -18px;
	color: #acacac;
}
.footer-link li:first-child:before {
	display: none;
}
.footer-link li a {
	display: block;
	color: #fff;
}
.footer-link li a:hover {
	opacity: 0.7;
}
/******▼copy▼******/
.copy {
	text-align: center;
    padding: 9px 0;
    color: #FFFFFF;
}
.pc-break {
	display: block;
}
.text-right {
	text-align: right;
}
.point-text {
	background-color: #5F0E13;
	text-align: center;
	font-size: 1.6em;
	clear: both;
	padding: 20px;
	color: #FFFFFF;
	position: relative;
}
.point-text::before {
	content: "";
	background: url(../images/home/point-text-point2.png) no-repeat;
	position: absolute;
	background-size: 250px;
    top: -50px;
    left: -45px;
    width: 250px;
    height: 145px;
}
.point-text .big-text {
	font-size: 1.6em;
	display: block;
}
.yellow-text {
	color: #FFF100;
}

@media screen and (max-width:1050px){
/******▼header▼******/
#header {
	height: 220px;
}
#header .header-inner {
	padding: 75px 0 15px;;
}
.header-logo {
	top: 15px;
}
.header-logo a {
	width: 180px;
}
/******▼global-nav▼******/
#global-nav {
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 9998;
	width: 100%;
	display: none;
	border-bottom: none;
}
#global-nav.active {
	display: block;
}
#global-nav.active:before {
	content: '';
    height: 60px;
    width: 80px;
    display: block;
    background: #444;
    border-bottom: 1px solid #fff;
    position: absolute;
    top: -60px;
    right: 125px;
    box-sizing: border-box;
}
#global-nav li {
	float: none;
	margin-left: 0;
}
#global-nav li a,
#global-nav li p {
	display: block;
	padding: 9px 15px;
	color: #FFFFFF;
	background-color: #080607;
	border-bottom: 1px solid #fff;
}
#global-nav li a.active {
	padding: 9px 15px;
	background-color: #444;
}
#global-nav li.sub.active .sub-nav {
    width: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    background-color: #444;
	border-top: none!important;
}
#global-nav li.sub.active .sub-nav a,
#global-nav li.sub.active:hover .sub-nav a {
	display: block;
    font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	padding: 0.5em 0.5em 0.5em 2em;
	border-bottom: 1px solid #fff;
	position: relative;
}
#global-nav li.sub.active .sub-nav a::before {
	content: "〉";
	display: inline-block;
	position: absolute;
	top: 0.5em;
	left: 15px;
	font-weight: bold;
}
#global-nav li.sub.active:hover .sub-nav a.active {
	background-color: #444;
}
/******▼head-btn▼******/
.head-menu-btn {
	width: 80px;
	display: block;
	position: relative;
}
.head-menu-btn.active:before, .head-menu-btn.active:after {
	content:'';
	height: 4px;
	width: 30px;
	display: block;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	position: absolute;
	top: 30px;
	left: 25px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	z-index: 9999;
}
.head-menu-btn.active:after{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.head-cart-btn {
	width: 80px;
}
.head-menu-btn {
    width: 80px;
    position: absolute;
    top: 0;
    right: 110px;
}
/******▼contents▼******/
.contents-inner {
	margin: 0 24px;
}
.contents01 {
	padding: 50px 30px 50px;
	max-width: 860px;
	z-index: 1;
}
/******▼main-title▼******/
.main-title {
	display: block;
	text-align: center;
}
.contents01 .main-title {
	text-align: inherit;
	margin-bottom: 0px;
}
.contents01 .main-title img {
    position: relative;
	bottom: 0;
	padding: 0;
}
.contents02 .main-title {
	padding: 9px 24px;
}
/******▼main-head▼******/
.main-head {
	text-align: left;
}
/******▼cart-img▼******/
.cart-img {
	float: none;
	width: auto;
	margin: 0 0 15px;
}
.cart-img img {
	width: 100%;
	display: block;
	box-shadow: 0 0 2px rgba(0,0,0,0.2);
	margin-bottom: 9px;
}
/******▼toTop▼******/
#toTop {
	margin: 0 24px 39px;
}
#toTop span {
	width: 60px;
	height: 60px;
	float: none;
	margin: 0 auto;
}
#toTop span:before {
	content: '';
	height: 14px;
	width: 14px;
	border: 4px solid #FFFFFF;
	border-left-width: 0;
	border-bottom-width: 0;
	margin: -5px 0 0 -9px;
}
/******▼footer-place▼******/
.footer-place {
	padding: 24px 0;
	max-width: 960px;
	margin: 0 24px;
	text-align: center;
}
.footer-logo {
	float: none;
	width: 300px;
	padding-top: 0;
	margin: 0 auto 9px;
}
.footer-logo img {
	width: 90%;
}
.footer-place-text {
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}
.pc-break {
	display: inline;
}
.point-text::before {
	content: "";
	background: url(../images/home/point-text-point2.png) no-repeat;
	position: absolute;
	background-size: 220px;
    top: -50px;
    left: -45px;
    width: 220px;
    height: 145px;
}
}
@media screen and (max-width:640px){
/******▼global-nav▼******/
#global-nav {
    position: absolute;
    top: 60px;
    left: 0;
	right: 0;
    z-index: 9998;
    width: 90%;
    display: none;
}
#global-nav.active:before {
    content: '';
    height: 60px;
    width: 50px;
    display: block;
    position: absolute;
    top: -60px;
    right: 38px;
}
/******▼head-btn▼******/
.head-menu-btn {
	width: 50px;
	position: absolute;
	top: 0;
	right: 45px;
}
#global-nav.active:before {
    content: '';
    height: 60px;
	width: 55px;
	display: block;
	background: #444;
	border-bottom: 1px solid #fff;
	position: absolute;
	top: -60px;
	right: 40px;
    box-sizing: border-box;
}
.head-menu-btn.active:before, .head-menu-btn.active:after {
	content:'';
	height: 4px;
	width: 30px;
	display: block;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	position: absolute;
	top: 30px;
	left: 10px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	z-index: 9999;
}
.head-menu-btn.active:after{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.head-cart-btn {
	width: 50px;
}
#header {
    height: auto;
}
#home-img {
    min-height: 150px;
}
.contents01 {
	padding: 30px 15px 50px;
}
br.sp-none {
	display: none;
}
/******▼home-slide▼******/
#home-slide span {
    max-width: 330px;
    width: 100%;
    font-size: 25px;
    font-family: times new roman,times,serif;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
}
/******▼main-title▼******/
.contents h2.gold {
	font-size: 1.5em;
	line-height: 1.3;
}
.contents04 .main-title,
.contents05 .main-title {
	font-size: 40px;
	line-height: 1.5;
	margin-bottom: 25px;
}
img.sp-img {
	display: block;
}
img.pc-img {
	display: none;
}
.contents01 .main-title {
		margin-bottom: 30px;
	}
.contents01 .main-title img {
	position: relative;
	bottom: 0;
    padding: 0;
}
.contents03 .main-title {
    font-size: 30px;
}
.contents-text {
	font-size: 18px;
	font-weight: normal;
}
/******▼contents02▼******/
.contents02 {
    padding: 30px 15px 50px;
    max-width: 960px;
}
.contents02 .flex {
	display: block;
}
.contents02 .flex p.img {
    margin: 0 auto;
}
/******▼contents04▼******/
.contents04 .campaign ul li {
    color: #fff;
    font-size: 18px;
}
/******▼contents05▼******/
.contents05 .bold-text {
    font-weight: bold;
    color: #fff;
    font-size: 25px;
    text-align: center;
    margin: 30px auto;
}
.contents05 .cart-box.single p {
    font-size: 20px;
}

/******▼cart-box▼******/
.cart-box li {
    width: 100%;
    margin: 1em auto 0;
}
/******▼detail-table▼******/
.detail-table {
	border-top: none;
    border-left: none;
    clear: both;
    width: 100%;
    margin: 15px 0 0;
    color: #FFFFFF;
}
.detail-table tr th {
	display: block;
	width: 100%;
    border-right: none;
	border-bottom: 1px solid #fff;
}
.detail-table tr td {
	display: block;
	width: 100%;
    border-right: none;
	border-bottom: none;
    font-size: 16px;
}
/******▼half-box▼******/
.half-box,
.half-box.left {
	float: none;
	margin: 0 0 60px;
	width: auto;
}
.half-box.left {
	margin: 0 0 39px;
}
/******▼triple-list▼******/
.triple-list li {
	width: 48%;
	float: left;
	margin: 0 0 0 0;
}
.triple-list li:nth-child(2n+1) {
	margin: 0 4% 0 0;
	clear: both;
}
.triple-list li:nth-child(3n+1) {
	clear: none;
}
/******▼footer-link▼******/
.footer-link {
	text-align: center;
	padding: 0;
}
.footer-link li {
	display: block;
	margin: 0;
	padding: 9px 0;
	border-top: 1px solid #acacac;
}
.footer-link li:before {
	display: none
}
.footer-link li:first-child {
	border-top: 0;
}
.point-text {
	padding: 50px 30px 30px 30px;
}
.point-text br {
	display: none;
}
.point-text::before {
	position: absolute;
	background-size: 200px;
    top: -50px;
    left: -30px;
    width: 200px;
    height: 115px;
}
.contents03 .contents-text {
    font-size: 1.2em;
}
}

/***20190205追加***/
.contents03 h1.title {
	background-color: #620000;
	padding: 20px 0;
	margin-bottom: 39px;
	text-align: center;
	color: #FFFFFF;
	font-family: 'Open Sans', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
	font-weight: bold;
	font-size: 55px;
	line-height: 1.5;
}
.cart-box.single li {
	float: none;
	width: 50%;
	margin: 1em auto;
	text-align: center;
}
.cart-box.single li h2.grd-text {
	font-size: 2em;
    line-height: 1.4;
    font-weight: bold;
    color: #c5b800;
    background: -webkit-linear-gradient(-45deg, #c5b800, #FFFFFF,#c5b800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	position: relative;
}
.cart-box.single li h2.grd-text::before {
    content: "";
    background: url(../images/home/new.png) no-repeat;
    position: absolute;
    background-size: 170px;
    top: -18px;
    left: -65px;
    width: 250px;
    height: 145px;
}
.cart-box.single img {
    width: 100%;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
@media screen and (max-width:640px){
.contents03 h1.title {
	font-size: 40px;
}
.cart-box.single li {
	width: 100%;
	margin-top: 70px;
}
.cart-box.single li h2.grd-text {
	font-size: 2em;
    line-height: 1.4;
    font-weight: bold;
    color: #c5b800;
    background: -webkit-linear-gradient(-45deg, #c5b800, #FFFFFF,#c5b800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	position: relative;
}
.cart-box.single li h2.grd-text::before {
    content: "";
    background: url(../images/home/new.png) no-repeat;
    position: absolute;
    background-size: 145px;
    top: -72px;
    left: -5px;
    width: 250px;
    height: 145px;
}
}
.half-top {
	margin-bottom: 3em;
}
.half-top div {
	margin-bottom: 1em;
}
.half-top img {
	width: 100%;
}
@media screen and (min-width:640px){
	.half-top {
		display: flex;
		justify-content: space-between;
	}
	.half-top div {
		width: 48%;
	}
}