@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/***********
 * common
 ***********/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-wrap: break-word;
	word-break: break-all;
}

html,body {
	height: 100%;
}

body,
body * {
	font-family: 'Noto Sans JP', sans-serif;
}

body {
	font-size: 14px;
	color:#5c4d41;
	/* 通常文字色 */
	background:#fffaf4 ;
    overflow-x: hidden;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

ul,ul li {
	list-style: none;
}

/* a リンク文字色 */
a,
a:visited {
	color:#f47761; /* a リンク文字色 */
	text-decoration: none;
}

a:hover,
button:hover {
	color:#f00; /* hoverリンク文字色 */
	text-decoration: none;
	opacity: 0.7;
}

a:hover * {
	opacity: .7;
}

input[type='text'],
input[type='password'] {
	font-size: 14px;
	font-weight: normal;
	line-height: 30px;
	height: 30px;
	border: #d1d1d1 solid 1px;
}

input[type='checkbox'] {
	margin-right: 4px;
}

textarea {
	width: 100%;
	border: #d1d1d1 solid 1px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

table th,
table td {
	border-spacing: 0;
	border-collapse: collapse ;
	vertical-align: middle;
	border: none;
}

table.tbl {
	width: auto;
	margin-bottom: 20px;
}

table.tbl tr th {
	font-size: 13px;
	font-weight: normal;
	position: relative;
	width: 125px;
	padding: 10px 14px;
	text-align: left;
	border: #c8b07e solid 1px;
	background-color: #e4d4b4;
}

table.tbl tr td {
	font-size: 13px;
	padding: 10px 40px;
	text-align: left;
	border: #c8b07e solid 1px;
}

@media only screen and (max-width: 600px) {
	table.tbl {
		width: 100%;
	}
    
	table.tbl tr th {
		font-size: 12px;
		font-weight: normal;
		width: 105px;
		padding: 4px 10px;
		text-align: left;
	}
    
	table.tbl tr td {
		font-size: 12px;
		padding: 4px 15px;
		text-align: left;
	}
}

img {
	max-width: 100%;
	word-break: normal;
	border: none;
}

b {
	font-weight: bold;
}

pre {
	white-space: pre-wrap;
}

ul.list1 li {
	font-size: 13px;
	position: relative;
	margin-bottom: 10px;
	padding-left: 26px;
}

ul.list1 li:before {
	position: absolute;
	top: 5px;
	left: 0;
	display: inline-block;
	width: 12px;
	height: 12px;
	content: '';
	border-radius: 6px;
	background-color: #b08838;
}

ul.list1 li:after {
	position: absolute;
	top: 7px;
	left: 2px;
	display: inline-block;
	width: 8px;
	height: 8px;
	content: '';
	border-radius: 4px;
	background-color: #fff;
}

@media only screen and (max-width: 600px) {
	ul.list1 li:before {
		position: absolute;
		top: 5px;
		left: 0;
		display: inline-block;
		width: 12px;
		height: 12px;
		content: '';
		border-radius: 6px;
		background-color: #b08838;
	}
    
	ul.list1 li:after {
		position: absolute;
		top: 7px;
		left: 2px;
		display: inline-block;
		width: 8px;
		height: 8px;
		content: '';
		border-radius: 4px;
		background-color: #fff;
	}
}

ul.list2 li {
	font-size: 13px;
	position: relative;
	margin-bottom: 10px;
	padding-left: 26px;
}

ul.list2 li:before {
	position: absolute;
	top: 5px;
	left: 0;
	display: inline-block;
	width: 16px;
	height: 10px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-list.png);
	background-repeat: no-repeat;
	background-size: cover;
}

/***********
 * layout
 ***********/

#wrapper,
.wrapper {
	width: 100%;
	min-width: 1000px;
	margin: 0 auto;
}

.main-contents {
	padding: 0 0 80px;
}

.top {
	width: 100%;
	margin: 0 auto;
	padding: 0 0;
}

.contents {
	width: 1000px;
	margin: 0 auto;
	padding: 15px 0 0;
}

.page {
	width: 1000px;
	margin: 0 auto;
	padding: 0 0 0;
}

.row {
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

@media only screen and (max-width: 600px) {
	#wrapper,
	.wrapper {
		min-width: 100%;
	}
    
	.top {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0;
	}
    
	.contents {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0;
	}
    
	.page {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0;
	}
    
	.row {
		position: relative;
		width: 100%;
		margin: 0 auto;
        padding: 0 15px;
	}
}

/* display
--------------------*/

.sp {
	display: none !important;
}

.pc {
	display: block !important;
}

.br-sp {
	display: none !important;
}

.br-pc {
	display: inline !important;
}

@media screen and (max-width: 600px) {

	.sp {
		display: block !important;
	}
	
	.pc {
		display: none !important;
	}

	.br-sp {
		display: inline !important;
	}
	
	.br-pc {
		display: none !important;
	}
	
}

/* iframe
--------------------*/

.iframe-wrap {
    position: relative;
    width: 100%;
    padding: 56.25% 0 0;
}

.iframe-wrap iframe {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

/***********
 * clearfix
 ***********/

.clearfix:before,
.clearfix:after {
	display: table;
	content: ' ';
}

.clearfix:after {
	clear: both;
}

label:after {
	display: none;
}


/***********
 * header
 ***********/

#header {
	width: 100%;
	height: 120px;
/*	border-bottom: #d6c299 1px solid;*/
/*	background-color: #fff;*/
}

#header-cart {
	width: 100%;
	height: 6px;
}

.header-top {
	height: 60px;
	margin: 0 0 60px;
	padding: 0;
/*	color: #fff;*/
/*	background-color: #1e1203;*/
}

#header-cart .header-top {
	height: 65px;
	padding: 0;
	color: #fff;
	background-color: #1e1203;
}

.logo {
    display: block;
	position: absolute;
	top: 50%;
	left: 20px;
    width: 460px;
	text-align: center;
    transform: translate(0,-50%);
    overflow: hidden;
    z-index: 1;
}

.logo a {
	display: block;
    position: relative;
    width: 100px;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -355px;
    width: 328px;
    height: 32px;
    background-image: url(https://image.raku-uru.jp/01/17733/79/tvi_logo_b_1616115707578.png);
	background-repeat: no-repeat;
	background-position: center center;
    background-size: cover;
}

.logo-text {
	font-size: 13px;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	left: 50%;
	display: -webkit-box;
	overflow: hidden;
	width: 158px;
	max-height: 4em;
	padding: 0 10px;
	-webkit-transform: translate(-50%,-50%);
		    transform: translate(-50%,-50%);
	text-align: center;
	word-break: break-all;
	color: #b08838;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.logo-text-footer {
	position: static;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	transform: translate(0,0);
}

.logo-text-footer a {
	color: #b08838;
}

#header-cart .logo {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	margin-left: -85px;
}

.logo h1 {
	line-height: 65px;
}

.logo img {
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

.header-menu-sp {
	display: none;
}

.nav-close {
	display: none;
}

.header-search {
	float: left;
	margin-top: 14px;
	margin-left: 220px;
    margin: 15px 0 0 135px;
}

.header-search-form {
	position: relative;
	border-radius: 15px;
	background-color: #fff;
    border: 1px solid #FF8E8E;
    z-index: 200;
}

.header-search input[type=text] {
	font-size: 14px;
	line-height: 35px;
	display: inline-block;
	width: 332px;
	height: 30px;
	padding: 0 50px 0 12px;
	color: #5C4D41;
	border: none;
	outline: 0 none;
	background: none;
    opacity: .3;
}

.header-search input[type=text]::-webkit-input-placeholder {
	font-weight: normal;
	color: #876116;
}

.header-search input[type=text]:-ms-input-placeholder {
	font-weight: normal;
	color: #876116;
}

.header-search input[type=text]::-moz-placeholder {
	font-weight: normal;
	color: #876116;
}

.header-search-form-btn {
    display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 20px;
	padding: 0;
	border: none;
	background: none;
	-webkit-appearance: none;
    transform: translate(0,-50%);
    overflow: hidden;
    cursor: pointer;
}

.search-btn {
	display: block;
    width: 100%;
	border: none;
    background: url(https://image.raku-uru.jp/01/17733/39/search_1614821363879.png) 50% 50%/contain no-repeat,transparent;
}

/* header-menu */
.header-top ul.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
	float: right;
    width: 335px;
	height: 60px;
}

.header-top ul.header-menu > li {
	float: left;
	text-align: center;
}

.header-top ul.header-menu > li > a {
	position: relative;
    position: relative;
	display: block;
	padding: 0 0 0 32px;
    font-size: 15px;
    font-weight: 500;
	color: #F47761;
}

.header-top ul.header-menu li a::before {
    content: ''; 
    display: inline-block;
    position: absolute;
    top: 50%;
	left: 0;
    width: 22px;
	height: 22px;
    transform: translate(0,-50%);
}

.header-top ul.header-menu li.entry a:before {
	background: url(https://image.raku-uru.jp/01/17733/64/entry_p_1614919951179.png) 50% 50%/contain no-repeat,transparent;
}

.header-top ul.header-menu li.mypage a:before {
	background: url(https://image.raku-uru.jp/01/17733/60/mypage_p_1614919896875.png) 50% 50%/contain no-repeat,transparent;
}

.header-top ul.header-menu li.cart a:before {
	background: url(https://image.raku-uru.jp/01/17733/62/cart_p_1614919897406.png) 50% 50%/contain no-repeat,transparent;
}

.header-bottom {
	float: left;
	width: 100%;
	padding-left: 15px;
}

/* category-nav */
.category-nav {
	float: right;
}

.category-nav > ul > li {
    position: relative;
	float: left;
	color: #000;
	font-size: 15px;
	line-height: 60px;	
}

.category-nav > ul > li > a,
.category-nav > ul > li > div {
	padding: 0 35px;
    color: #F47761;
    font-weight: 500;
}

.category-nav > ul > li.active > a,
.category-nav > ul > li.active > div {
	opacity: 1;
	color: #fff;
	background-color: #5C4D41;
}

.category-nav > ul > li > a:hover,
.category-nav > ul > li > a:hover p {
	opacity: 1;
}

.category-nav > ul li a,
.category-nav > ul li div {
	display: block;
	width: 100%;
    cursor: pointer;
}

.category-nav .category-nav-campaign .category-nav-title,
.category-nav .category-nav-category .category-nav-title {
    position: relative;
    padding: 0 30px 0 60px;
    color: #5C4D41;
}

.category-nav .category-nav-campaign.active .category-nav-title,
.category-nav .category-nav-category.active .category-nav-title {
    color: #FFF;
}

.category-nav .category-nav-campaign .category-nav-title::before,
.category-nav .category-nav-category .category-nav-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    width: 22px;
    height: 22px;
    transform: translate(0,-50%);
}

.category-nav .category-nav-campaign .category-nav-title::before {
    background: url(https://image.raku-uru.jp/01/17733/106/campaign_b_1616559071417.png) 50% 50%/contain no-repeat,transparent;
}

.category-nav .category-nav-category .category-nav-title::before {
    background: url(https://image.raku-uru.jp/01/17733/104/category_b_1616559070983.png) 50% 50%/contain no-repeat,transparent;
}

.category-nav .category-nav-campaign.active .category-nav-title::before {
    background: url(https://image.raku-uru.jp/01/17733/105/campaign_w_1616559071194.png) 50% 50%/contain no-repeat,transparent;
}

.category-nav .category-nav-category.active .category-nav-title::before {
    background: url(https://image.raku-uru.jp/01/17733/103/category_w_1616559070731.png) 50% 50%/contain no-repeat,transparent;
}

.category-nav-l2 {
    display: none;
	position: absolute;
	top: 60px;
	right: 0;
	width: 330px;
	padding: 30px;
	text-align: left;
	background-color: #5C4D41;
    z-index: 55;
}

.active .category-nav-l2 {
	display: block;
}

.category-nav-l2 >ul {
    position: relative;
    width: 100%;
}

.category-nav-l2 > ul > li {
	font-size: 16px;
	line-height: 1.5;
}

.category-nav-l2 > ul > li > a {
	padding: 0 0 20px;
	color: #fff;
}

.category-nav-l3 > li > a {
	font-size: 14px;
	padding: 0 0 10px 25px;
	color: #fff;
}

/* scrollbar */
.category-nav-l2 .ps__rail-y {
    position: absolute;
    width: 4px;
    cursor: auto;
}

.category-nav-l2 .ps__rail-x {
    display: none;
}

@media only screen and (max-width: 600px) {
	#header {
		width: 100%;
		height: 120px;
	}
    
	#header-cart {
		width: 100%;
		height: 52px;
	}
    
	.header-top {
		height: 120px;
		margin-bottom: 0;
	}
    
    .header-top > div {
        height: 100%;
    }
    
	#header-cart .header-top {
		height: 52px;
	}
    
	.logo {
		right: 0;
		left: 10px;
        width: 100px;
		text-align: center;
	}
    
	.logo-text {
		max-height: 2.8em;
		-webkit-line-clamp: 2;
	}
    
	#header-cart .logo {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		margin-left: 0;
	}
    
	.logo h1 {
		line-height: 50px;
	}
    
    .logo a::after {
        content: none;
    }
    
	.header-menu-sp {
		position: absolute;
		z-index: 99;
		top: 20px;
		right: 15px;
		display: block;
		width: 25px;
        height: 19px;
	}
    
    .header-menu-sp a {
        display: block;
		width: 24px;
		height: 19px;
		background-image: url(https://image.raku-uru.jp/01/17733/77/menu_sp_1615356379327.png);
		background-size: cover;
    }
    
	.header-nav {
		position: fixed;
		z-index: 9999;
		top: -1000px;
		left: 0;
		overflow: scroll;
		width: 100%;
		height: 100%;
        background: #FFFAF4;
		-webkit-transition: top .6s cubic-bezier(.19,1,.22,1);
		        transition: top .6s cubic-bezier(.19,1,.22,1);
	}
    
	.nav-open .header-nav {
		top: 0;
	}
    
	.nav-close {
		display: block;
        position: relative;
        height: 120px;
		text-align: right;
	}
    
	.nav-close a {
		display: inline-block;
        position: relative;
		width: 20px;
		height: 20px;
		margin: 20px 15px 0;
		vertical-align: middle;   
	}
    
    .nav-close a::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(https://image.raku-uru.jp/01/17733/57/clause_1614917384583.png) 50% 50%/contain no-repeat,transparent;
    }
    
    .header-top form#cmsCommonForm,
    .nav-close .tvi-logo {
        position: absolute;
        bottom: 15px;
        right: 15px;
    }
    
    .nav-close .tvi-logo {
        width: 190px;
        height: 30px;
    }
    
    .header-top form#cmsCommonForm::after,
    .nav-close .tvi-logo::after {
        content: '';
        position: absolute;
        top: -64px;
        bottom: auto;
        right: auto;
        left: 0;
        width: 118px;
        height: 48px;
        background-image: url(https://image.raku-uru.jp/01/17733/80/tvi_logo_b_sp_1616115707822.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
    
	.header-search {
		float: none;
		margin-top: 0;
		margin-left: 0;
	}
    
	.header-search input[type=text] {
		width: 190px;
	}
    
	.search-btn {
		-webkit-appearance: none;
	}
    
	.header-top ul.header-menu {
        position: relative;
		float: none;
        width: 100%;
		height: auto;
        padding: 25px 45px;
        font-size: 0;
	}
    
    .header-top ul.header-menu::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: calc(100% - 30px);
        height: 2px;
        background: #5C4D41;
        transform: translate(-50%,0);
    }
    
	.header-top ul.header-menu > li {
		float: none;
		height: auto;
		text-align: center;
	}
    
	.header-top ul.header-menu > li > a {
		position: relative;
		color: #5C4D41;
	}
    
	.header-top ul.header-menu li a {
		position: relative;
		display: block;
		width: 100%;
		padding: 30px 0 0;
		text-align: center;
	}
    
    .header-top ul.header-menu li a::before {
        top: 0;
        left: 50%;
        transform: translate(-50%,0);
    }
    
    .header-top ul.header-menu li.entry a:before {
        background: url(https://image.raku-uru.jp/01/17733/65/entry_b_1614919951435.png) 50% 50%/contain no-repeat,transparent;
    }

    .header-top ul.header-menu li.mypage a:before {
        background: url(https://image.raku-uru.jp/01/17733/61/mypage_b_1614919897129.png) 50% 50%/contain no-repeat,transparent;
    }

    .header-top ul.header-menu li.cart a:before {
        background: url(https://image.raku-uru.jp/01/17733/63/cart_b_1614919898643.png) 50% 50%/contain no-repeat,transparent;
    }

	.header-bottom {
		float: none;
		width: 100%;
		padding: 25px 15px;
	}
    
	.header-bottom .entry ,
	.header-bottom .logout {
		line-height: 50px;
		display: block;
		float: none;
		width: 100%;
		text-align: left;
		background-color: rgba(255,255,255,.9);
	}
    
	/* category-nav */
	.category-nav {
		float: none;
		margin-left: 0;
		padding-right: 0;
	}
    
	.category-nav > ul > li {
		font-size: 16px;
		line-height: 1.2;
		position: relative;
		float: none;
	}
    
	.category-nav > ul > li > a,
	.category-nav > ul > li > div {
		padding-right: 10px;
		padding-left: 10px;
		color: #5C4D41;
	}
    
	.category-nav > ul > li.active > a,
	.category-nav > ul > li.active > div {
		color: #fff;
	}
    
    .category-nav > ul > li.active > a
    .category-nav > ul > li.active > div {
        background: none;
    }
    
	.category-nav > ul li a,
	.category-nav > ul li div {
		display: block;
		width: 100%;
		padding: 0 0 20px;
		text-align: left;
	}
    
    .category-nav .category-nav-campaign .category-nav-title,
    .category-nav .category-nav-category .category-nav-title {
        display: inline-block;
        width: auto;
        margin: 0 0 25px;
        padding: 0;
        font-size: 20px;
        font-weight: bold;
        border-bottom: 2px solid #5C4D41;   
    }

    .category-nav .category-nav-campaign .category-nav-title p span,
    .category-nav .category-nav-category .category-nav-title p span {
        display: inline-block;
        margin: 0 0 0 10px;
        font-size: 14px;
    }
    
    .category-nav .category-nav-campaign .category-nav-title::before,
    .category-nav .category-nav-category .category-nav-title::before {
        content: none;
    }
    
	.category-nav-l2 {
		position: inherit;
		z-index: 33;
		top: 0;
		left: 0;
		display: none;
		width: 100%;
		margin-left: 0;
		padding: 0;
        background: #FFFAF4;
	}
    
	.active .category-nav-l2 {
		display: none;
	}
    
	.open .category-nav-l2 {
		display: block;
	}
    
	.category-nav-l2:before {
		display: none;
	}
    
    .category-nav-l2 >ul {
        max-height: 400px;
    }
    
	.category-nav-l2 > li {
		font-size: 16px;
		line-height: 1.2;
	}
    
	.category-nav-l2 > ul > li > a {
		padding: 0 0 20px 25px !important;
        color: #5C4D41;
	}
    
    .category-nav-l3 {
        margin: 0 0 15px;   
    }

	.category-nav-l3 > li a,
	.category-nav-l3 > li div {
		padding: 0 0 10px 45px !important;
        color: #5C4D41;
	}
    
    /* scroll bar */
    .ps--active-x > .ps__rail-x,
    .ps--active-y > .ps__rail-y {
        background-color: #e7e0d9;
    }

    .ps__thumb-y {
        background-color: #5C4D41;
        width: 4px;
        right: 0;
        border-radius: 0;
    }
}

/***********
 * footer
 ***********/

#footer {
	position: relative;
	width: 100%;
}

.footer-top {
	width: 100%;
	padding: 60px 0 40px;
    background: #5C4D41;
}

.footer-top-inner {
    width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top-tbl {
	display: table;
	width: 85%;
	margin: 0 auto 70px;
}

.footer-top-tbl:last-child {
    margin: 0 auto;
}

.footer-top-th {
	line-height: 1.2;
	display: table-cell;
	width: 235px;
	border-right: #FFF solid 1px;
}

.footer-top-td {
	font-size: 14px;
	line-height: 1.2;
	display: table-cell;
	padding: 0 0 0 60px;
	vertical-align: middle;
}

.footer-top-th h3 {
    margin: 0 0 5px;
	font-size: 20px;
	font-weight: bold;
	margin: 0;
	letter-spacing: 0;
	color: #FFF;
    line-height: 29px;
}

.footer-top-th p {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0;
	color: #fff;
    line-height: 20px;
}

.footer-shoppingguide {
	margin-bottom: 0;
}

.footer-shoppingguide ul {
    margin: 0 0 30px;
}

.footer-shoppingguide ul:last-child {
    margin: 0;
}

.footer-shoppingguide ul li {
	font-size: 14px;
	float: left;
	margin: 0 25px 0 0;
}

.footer-shoppingguide ul li a {
	color: #fff;
}

.footer-shoppingguide ul li a:hover {
	text-decoration: underline;
	opacity: 1;
}

/* schedule-area */
.schedule-area {
	text-align: left;
}

.schedule_wrapper {
	display: inline-block;
	width: 245px;
}

.schedule_wrapper:nth-of-type(odd) {
	margin: 0 60px 0 0;
}

.schedule-area h4 {
	font-size: 13px;
	font-weight: 500;
	line-height: 22px;
	margin: 0 auto 15px;
	text-align: center;
	color: #FFF;
}

.schedule {
	display: inline-block;
	vertical-align: top;
}

.schedule table {
	width: auto;
	margin: 0 auto 10px;
}

.schedule table th,
.schedule table td {
	font-size: 14px;
	font-weight: normal;
	padding: 3.5px;
	text-align: center;
	color: #fff;
}

.schedule table th.sun {
	color: #c00000;
}

.schedule table th.sat {
	color: #006de8;
}

.schedule-date {
	display: inline-block;
	width: 28px;
	height: 28px;
	text-align: center;
    line-height: 28px;
    border-radius: 50%;
}

.e1 .schedule-date {
	color: #fff;
	background-color: #F47761;
}

.e2 .schedule-date {
	color: #5C4D41;
	background-color: #C0EA61;
}

.e3 .schedule-date {
    color: #5C4D41;
	background-color: #FFFAF4;
}

.event-list {
	display: block;
	margin: 40px 0 0;
	vertical-align: top;
}

.event-list li {
	position: relative;
	min-height: 28px;
	margin: 0 0 10px 0;
	padding: 0 0 0 45px;
	text-align: left;
	color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.event-list li:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 28px;
	height: 28px;
	content: '';
    border-radius: 50%;
}

.event-list li.event1:before {
	background-color: #F47761;
}

.event-list li.event2:before {
	background-color: #C0EA61;
}

.event-list li.event3:before {
	background-color: #FFFAF4;
}

@media only screen and (max-width: 600px) {
	.schedule_wrapper {
		width: auto;
	}
    
	.schedule_wrapper:nth-of-type(odd) {
		margin-right: 0;
	}
}

.footer-sns {
	text-align: left;
}

.footer-sns ul li {
	display: inline-block;
	margin-right: 12px;
}

.footer-sns ul li a {
    display: block;
    width: 32px;
}

.footer-sns ul li img {
	width: 100%;
	height: 100%;
}

.footer-bottom {
	width: 100%;
	padding: 0 0 60px;
	text-align: center;
    background: #5C4D41;
}

.footer-logo {
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 0 40px;
}

.footer-logo a {
    display: block;
    width: 120px;
}

.footer-logo img {
	width: 100%;
	height: 100%;
}

.footer-bottom .tvi-logo {
    width: 265px;
    margin: 0 auto 40px;
}

.copyright {
	font-size: 14px;
	color: #FFF;
    line-height: 28px;
}

@media only screen and (max-width: 600px) {
    
	#footer {
        background: #5C4D41;
	}
    
	.footer-top {
		width: 76%;
        max-width: 245px;
        margin: 0 auto;
		padding: 30px 0 40px;
	}
    
    .footer-top-inner {
        width: 100%;
        padding: 0;
    }
    
	.footer-top-tbl {
		display: block;
		width: 100%;
		margin: 0 0 70px;
		text-align: center;
	}
    
	.footer-top-th {
		line-height: 1.2;
		display: inline-block;
		width: 100%;
		margin: 0 auto 30px;
		text-align: left;
		border-right: none;
	}
    
	.footer-top-td {
		font-size: 13px;
		line-height: 1.2;
		display: block;
		padding: 0;
		vertical-align: top;
	}
    
	.footer-shoppingguide {
		margin-bottom: 20px;
		padding-right: 0;
	}
    
	.footer-shoppingguide ul {
		width: 100%;
		text-align: left;
        margin: 0;
	}
    
	.footer-shoppingguide ul li {
		float: none;
        margin: 0 0 20px;
	}
    
	.footer-shoppingguide ul li a {
		display: block;
		width: 100%;
		color: #fff;
        line-height: 20px;
	}

	/* schedule-area */
	.schedule-area {
		width: 100%;
		text-align: center;
	}
    
	.schedule {
		margin: 0 0 10px;
	}
    
	.schedule table {
		width: 100%;
		margin: 0 auto 10px;
	}
    
	.event-list {
		display: block;
        margin: 0;
	}
    
	.event-list:after {
		display: block;
		clear: both;
		margin-bottom: 15px;
		content: '';
	}
    
	.footer-sns ul li {
		display: inline-block;
		margin: 0 10px 0 0;
	}
    
    .footer-sns ul li:last-child {
        margin: 0;
    }
    
	.footer-sns ul li img {
		width: 40px;
		height: auto;
	}

    .footer-bottom {
        padding: 0 0 30px;
    }
    
	.footer-logo {
		width: 100%;
		margin: 0 0 40px;
	}

	.copyright {
		font-size: 12px;
		word-break: break-word;
	}
}

/***********
 * main
 ***********/

.main {
	width: 1000px;
	margin: 0 auto;
}

@media only screen and (max-width: 600px) {
	.main {
		width: 100%;
        padding: 0 15px;
	}
}

.main-article.fr1 {
    margin: 0 0 60px;
}

.main-article.fr1:last-child {
    margin: 0;
}

.main-text {
    margin: 0 0 30px;
}

/* main-image */
#main-image {
	position: relative;
	width: 1000px;
	margin: 30px 0 0;
	text-align: center;
}

#main-image img {
	max-width: 100%;
	max-height: 100%;
}

.main-image-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
    padding: 440px 0 0;
}

.main-image-slider > ul {
    display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
    z-index: 10;
}

.main-image-slider > ul > li {
	display: inline;
	float: left;
	overflow: hidden;
    width: 100%;
	list-style-type: none;
}

.main-image-slider > ul > li span,
.main-image-slider > ul > li a {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.main-image-prev {
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 999;
    font-size: 36px;
    margin-top: -18px;
}

.main-image-next {
    position: absolute;
    left: 10px;
    top: 50%;
    z-index: 999;
    font-size: 36px;
    margin-top: -18px;
}

.main-image-prev a,
.main-image-next a {
    display: block;
    height: 100%;
}

.main-image-indicator {
	position: absolute;
	z-index: 20;
	right: 0;
	bottom: 0;
	left: 0;
}

.main-image-indicator ul {
	text-align: center;
}

.main-image-indicator ul li {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
    background: #FFF;
	border: #5C4D41 solid 1px;
	border-radius: 50%;
}

.main-image-indicator ul li.active {
	background-color: #5C4D41;
}

@media only screen and (max-width: 600px) {
	#main-image {
		width: 100%;
		margin: 20px 0 0;
		background-color: #f5f5f5;
	}
    
	#main-image img {
		max-width: 100%;
		max-height: 100%;
	}
    
	.main-image-slider {
		position: relative;
		overflow: hidden;
		width: 100%;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
        padding: 45% 0 0;
	}
    
	.main-image-slider > ul {
		position: absolute;
		z-index: 100;
		top: 0;
		left: 0;
		display: inline-block;
		overflow: hidden;
		height: 336px;
	}
    
	.main-image-slider > ul > li {
		display: inline;
		float: left;
		overflow: hidden;
		width: 100%;
		height: 336px;
		list-style-type: none;
	}
    
	.main-image-indicator {
		position: absolute;
		z-index: 999;
		right: 0;
		bottom: 0;
	}
    
	.main-image-indicator ul {
		text-align: center;
	}
    
	.main-image-indicator ul li {
		display: inline-block;
		width: 10px;
		height: 10px;
		margin: 0 4px;
	}
}

/* ttl */
.ttl {
	position: relative;
	margin: 0 0 30px;
}

.ttl h2 {
    width: 100%;
    padding: 0 0 5px;
    color: #5C4D41;
	font-size: 20px;
	font-weight: bold;
	line-height: 36px;
    border-bottom: 2px solid #5C4D41
}

.ttl h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	color: #4a3010;
}

@media only screen and (max-width: 600px) {
	.ttl {
		margin: 0 0 40px;
	}
    
	.ttl h2 {
		font-size: 20px;
	}
}

/* product-list */
.product-list {
	margin-bottom: 0;
}

.product-list-item {
	position: relative;
	float: left;
	width: 184px;
	margin-right: 20px;
    padding: 60px 0 40px;
	border-bottom: 2px solid #F5EEE5;
}

.product-list-ttl-blc {
	border-bottom: none;
}

.product-list-ttl-blc-inner {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	height: 100%;
    background: #C0EA61;
}

.product-list-ttl-blc .product-list-ttl {
	display: table-cell;
    max-width: 150px;
    color: #5C4D41;
	text-align: left;
	vertical-align: middle;
	background: #C0EA61;
}

.product-list-ttl-blc .product-list-ttl h2 {
    margin: 0 0 10px;
	font-size: 28px;
	line-height: 41px;
	letter-spacing: 0;
}

.product-list-ttl-blc .product-list-ttl h3 {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 2px;
}

.product-list-item img {
	max-width: 164px;
	max-height: 164px;
	width: auto;
	height: auto;
}

.product-list-item:nth-child(5n) {
	margin-right: 0;
}

.product-list-item > a {
	display: block;
	height: 100%;
	padding: 10px;
	background: #F5EEE5;
}

.product-list-item .product-list-photo {
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	width: 100%;
	margin: 0 0 10px;
}

.product-list-item .product-list-info {
    color: #5C4D41;
}

.product-list-item .product-list-cat {
	font-size: 12px;
	line-height: 16px;
	overflow: hidden;
	height: 16px;
	margin-bottom: 10px;
}

.product-list-item .product-list-name {
	font-size: 12px;
	line-height: 20px;
	margin: 0 0 10px;
    overflow: hidden;
}

.product-list-item .product-list-price {
	font-size: 13px;
	line-height: 20px;
    text-align: center;
}

.product-list-item .product-list-nonstock {
	display: inline-block;
	vertical-align: top;
	font-size: 11px;
	line-height: 18px;
	margin-top: 10px;
	margin-right: 6px;
	padding: 0 3px;
	text-align: center;
	color: #f33;
	background: #fff;
}

.item-list-itemcount {
	margin-top: 15px;
}


@media only screen and (max-width: 600px) {
	.product-list {
		margin-bottom: 0;
	}
    
	.product-list-item {
		float: left;
		width: calc(50% - 10px) ;
		margin-right: 5px;
		margin-left: 5px;
		padding: 40px 0 15px;
	}
    
	.product-list-item img {
		width: 100%;
        height: 100%;
	}
    
	.product-list-item:nth-child(5n) {
		margin-right: 5px;
	}
    
	.product-list-ttl-blc {
		border-bottom: none;
	}
    
	.product-list-item .product-list-photo {
		position: relative;
		max-height: 278px;
		width: 100%;
		margin-bottom: 5px;
	}
    
	.product-list-item .product-list-cat {
		font-size: 10px;
		line-height: 14px;
		overflow: hidden;
		height: 14px;
		margin-bottom: 0;
	}
    
	.product-list-item .product-list-name {
		margin-bottom: 4px;
	}
    
	.item-list-itemcount {
		margin-top: 10px;
		margin-left: 10px;
	}
}


/* ranking icon */
.icn-rank {
	font-size: 14px;
	line-height: 24px;
	position: absolute;
	z-index: 2;
	top: 22px;
	left: 0;
	display: block;
	width: 26px;
	height: 26px;
	text-align: center;
	color: #333;
	border: #333 solid 1px;
	border-radius: 13px;
}

.icn-rank1 {
	color: #d99712;
	border: #d99712 solid 1px;
}

.icn-rank2 {
	color: #888;
	border: #888 solid 1px;
}

.icn-rank3 {
	color: #823d17;
	border: #823d17 solid 1px;
}

@media only screen and (max-width: 600px) {
	.icn-rank {
		font-size: 11px;
		line-height: 20px;
		top: 8px;
		width: 22px;
		height: 22px;
		border-radius: 50%;
	}
}

/* btn-area */
.btn-area {
	margin-bottom: 20px;
	text-align: center;
}

.btn-more {
	font-size: 12px;
	line-height: 34px;
	position: relative;
	display: inline-block;
	width: 140px;
	height: 36px;
	color: #b08838;
	border: #e7dbc3 solid 1px;
	border-radius: 18px;
	background-color: #fff;
}

.btn-more span:before {
	position: absolute;
	top: 50%;
	left: 16px;
	display: block;
	width: 9px;
	height: 9px;
	margin-top: -5px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-more.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.btn {
	font-size: 14px;
	font-weight: normal;
	line-height: 34px;
	position: relative;
	display: inline-block;
	width: 160px;
	height: 36px;
	text-align: center;
	color: #2593d9;
	border: #2593d9 solid 1px;
	border-radius: 2px;
	background-color: #fff;
}

.btn span:before {
	position: absolute;
	top: 50%;
	left: 10px;
	display: block;
	width: 10px;
	height: 14px;
	margin-top: -7px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-btn.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.btn-back {
	font-size: 14px;
	font-weight: normal;
	line-height: 42px;
	position: relative;
	display: inline-block;
	width: 230px;
	height: 44px;
	text-align: center;
	color: #fff;
	border: #1e1203 solid 1px;
	border-radius: 22px;
	background-color: #1e1203;
}
a.btn-back span:before {
	position: absolute;
	top: 50%;
	left: 30px;
	display: block;
	width: 21px;
	height: 10px;
	margin-top: -5px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-back.png);
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 600px) {
	.btn-area {
		margin-bottom: 30px;
		text-align: center;
	}
	.btn-more {
		font-size: 10px;
		line-height: 28px;
		width: 125px;
		height: 30px;
		border-radius: 15px;
	}
	.btn-more span:before {
		position: absolute;
		top: 50%;
		left: 16px;
		display: block;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-more_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.btn {
		font-size: 16px;
		font-weight: normal;
		line-height: 45px;
		position: relative;
		display: inline-block;
		width: 230px;
		height: 45px;
		text-align: center;
	}
	.btn span:before {
		position: absolute;
		top: 50%;
		left: 10px;
		display: block;
		width: 8px;
		height: 12px;
		margin-top: -6px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-btn_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.btn-area a.btn-back span:before {
		position: absolute;
		top: 50%;
		left: 30px;
		display: block;
		width: 21px;
		height: 10px;
		margin-top: -5px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-back.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}

/* top-content */
#top-content {
	position: relative;
	padding-top: 30px;
}

@media only screen and (max-width: 600px) {
	#top-content {
		padding-top: 30px;
	}
}

/* news-list */
.news-list {
	padding: 15px 0;
}

.news-list .news-list-date {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin: 0 0 15px;
    padding: 0 0 10px;
    border-bottom: 1px solid #6e5940;
}

.news-list .news-list-date h4,
.news-list .news-list-date h3 {
    color: #5C4D41;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}

.news-list .news-list-date h4 {
    margin: 0 10px 0 0;
}

.news-list .news-list-date h4 span,
.news-list .news-list-date h3 span {
    margin: 0 0 0 5px;
    font-size: 14px;
}

.news-list a {
	color: #4a3010;
}

.news-list p {
    position: relative;
    height: 120px;
    color: #4a3010;
	font-size: 14px;
    font-weight: 500;
	line-height: 28px;
	text-align: left;
	overflow: hidden;
}

.news-list:after {
    content: '';
    display: block;
	position: absolute;
	bottom: 75px;
	left: 50%;
	width: 48px;
	height: 8px;
	background-image: url(https://image.raku-uru.jp/01/17733/52/arrow2_right_1614907766499.png);
	background-repeat: no-repeat;
	background-size: cover;
    transform: translate(-50%,0);
}


@media only screen and (max-width: 600px) {
	.news-list {
		padding: 20px 2px;
	}
    
    .news-list .news-list-date h4 {
        margin: 0px 5px 0 0;
    }
    
	.news-list .news-list-date h3 {
		font-size: 24px;
	}
    
	.news-list p {
		height: 105px;
	}
    
	.news-list:after {
		bottom: 30px;
	}
}

/* bnr-area */
.bnr-photo {
	width: 100%;
	margin-bottom: 8px;
}

.bnr-photo img {
	width: 100%;
	height: auto;
}

.bnr {
	text-align: left;
}

.bnr p {
	line-height: 20px;
	overflow: hidden;
	height: 60px;
	text-align: left;
	color: #4a3010;
}

@media only screen and (max-width: 600px) {
	.bnr-photo {
		width: 100%;
		margin-bottom: 8px;
	}
	.bnr p {
		font-size: 12px;
		line-height: 18px;
		overflow: hidden;
		height: 36px;
		text-align: left;
		color: #4a3010;
	}
}


/* item-detail */
#item-detail {
	padding-top: 50px;
}

.item-detail-left {
	float: left;
	width: 435px;
}

.item-detail-right {
	float: right;
	width: 545px;
}

.item-detail-photo-main {
	position: relative;
	float: right;
	width: 360px;
	padding: 0;
}

.item-detail-photo {
	position: relative;
	overflow: hidden;
	width: 360px;
	height: 360px;
	margin-bottom: 10px;
}

.item-detail-photo ul li {
	display: none;
	float: left;
	width: 360px;
	height: 360px;
}

.item-detail-photo ul li.active {
	display: block;
}

.item-detail-photo img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: auto;
}

.item-detail-photo-backbtn {
	display: none;
}

.item-detail-photo-nextbtn {
	display: none;
}

.item-detail-thumb {
	float: left;
	width: 62px;
	margin-bottom: 20px;
	padding: 0;
}

.item-detail-thumb-photo {
	width: 62px;
	height: 62px;
	margin: 0 0 15px;
}

.item-detail-thumb-photo img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: auto;
}

.item-detail-info {
	width: 100%;
	margin-bottom: 20px;
}

.item-detail-info dl dt {
	display: table-cell;
	width: 120px;
	padding: 3px;
	vertical-align: middle;
}

.item-detail-info dl dd {
	display: table-cell;
	padding: 3px;
	vertical-align: middle
}

.item-detail-category {
    color: rgba(92,77,65,.7);
	font-size: 14px;
	line-height: 28px;
	margin: 0 0 10px;
}

.item-detail-label {
	margin-bottom: 8px;
}

.item-detail-label span.new {
	font-size: 11px;
	line-height: 15px;
	display: inline-block;
	width: 60px;
	height: 15px;
	text-align: center;
	color: #fff;
	background-color: #d99712;
}

.item-detail-name {
	font-size: 20px;
	line-height: 36px;
	margin: 0 0 10px;
}

.item-detail-vari-price,
.item-detail-vari-memberprice,
.item-detail-vari-normalprice,
.item-detail-vari-stock,
.item-detail-vari-itemcode,
.item-detail-vari-jancode {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}


.item-detail-vari-price-num,
.item-detail-vari-normalprice-num {
	font-size: 22px;
	font-weight: normal;
	line-height: 1.4;
	margin-bottom: 15px;
}

.item-detail-vari-price-tax,
.item-detail-vari-normalprice-tax {
	font-size: 14px;
	font-weight: normal;
}

.item-detail-input p {
	margin: 0 0 15px;
    font-size: 14px;
}

.item-detail-inputtext input {
	font-size: 16px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 56px;
	margin-bottom: 18px;
	padding: 0 8px;
	vertical-align: middle;
	border: 1px solid #d6c299;
	background-color: #fff;
}

.item-detail-select {
	width: 100%;
	margin-bottom: 18px;
}

.item-detail-select label {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 56px;
	vertical-align: middle;
	border: 1px solid #d6c299;
	background-color: #fff;
}

.item-detail-select label:after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 15px;
	display: block;
	width: 18px;
	height: 10px;
	margin-top: -5px;
	content: '';
	pointer-events: none;
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-select-l.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.item-detail-select select {
	font-size: 14px;
	line-height: 56px;
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	width: -webkit-calc(100%);
	height: 56px;
	margin: 0;
	padding: 0 45px 0 15px;
	text-indent: .01px;
	text-overflow: '';
	border: 0;
	outline: none;
	background: transparent;
	-webkit-appearance: none;
	   -moz-appearance: none;
		    appearance: none;
}
select::-ms-expand {
	display: none;
}

/* select-l */
.item-detail-input-select-l {
    margin: 0 0 20px;
    padding: 20px 0;
    border-top: 2px solid #5C4D41;
    border-bottom: 2px solid #5C4D41;
}

/* radio */
.item-detail-cart-vari-radio {
	overflow: hidden;
	width: 100%;
}

.item-detail-cart-vari-radio div {
	margin: 0 0 10px;
}

.item-detail-cart-vari-radio input {
	position: absolute;
	opacity: .0;
}

.item-detail-cart-vari-radio input + label {
    display: inline-block;
    position: relative;
	max-width:100%;
	padding: 0 0 0 30px;
    line-height: 28px;
}

.item-detail-cart-vari-radio input + label::before {
    content: '';
    display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #43403F;
    background: #FFF;
	border-radius: 50%;
    transform: translate(0,-50%);
}

.item-detail-cart-vari-radio input:checked + label::after {
    content: '';
    display: block;
	position: absolute;
	top: 50%;
	left: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #F47761;
    transform: translate(0,-50%);
}

.item-detail-num-count {
	font-size: 0;
	width: 100%;
	margin: 0 0 15px;
}

.item-detail-num-minus {
    display: inline-block;
	font-size: 14px;
	margin: 0 5px 0 0;
	vertical-align: middle;
}

.item-detail-num-minus a {
	display: block;
    position: relative;
	width: 30px;
	height: 30px;
	text-align: center;
	color: #fff;
	background: #F47761;
}

.item-detail-num-minus a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #FFF;
    transform: translate(-50%,-50%);
}

.item-detail-num-plus {
	display: inline-block;
	vertical-align: middle;
}

.item-detail-num-plus a {
	display: block;
    position: relative;
	width: 30px;
	height: 30px;
	text-align: center;
	color: #fff;
	background: #F47761;
}

.item-detail-num-plus a::before,
.item-detail-num-plus a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #FFF;
    transform: translate(-50%,-50%);
}

.item-detail-num-plus a::before {
    width: 14px;
    height: 2px;
}

.item-detail-num-plus a::after {
    width: 2px;
    height: 14px;
}

.item-detail-num-minus a:hover,
.item-detail-num-plus a:hover {
	text-decoration: none;
}

.item-detail-num {
	display: inline-block;
	width: 230px;
	margin: 0 5px 0 0;
    font-size: 14px;
	text-align: center;
	vertical-align: middle;
}

.item-detail-num input[type=number] {
	display: inline-block;
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
	line-height: 18px;
	border: 1px solid #43403F;
	-moz-appearance: textfield;
}

.item-detail-num input[type=number]::-webkit-outer-spin-button,
.item-detail-num input[type=number]::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.item-detail-num-select {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 56px;
	margin-bottom: 18px;
	vertical-align: middle;
	border: 1px solid #d6c299;
	background-color: #fff;
}

.item-detail-num-select label:after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 15px;
	display: block;
	width: 18px;
	height: 10px;
	margin-top: -5px;
	content: '';
	pointer-events: none;
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-select-l.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.item-detail-num-select select {
	font-size: 14px;
	line-height: 56px;
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	width: -webkit-calc(100%);
	height: 56px;
	margin: 0;
	padding: 0 0 0 20px;
	text-indent: .01px;
	text-overflow: '';
	border: 0;
	outline: none;
	background: transparent;
	-webkit-appearance: none;
	   -moz-appearance: none;
		    appearance: none;
}

.item-detail-cart {
	width: 100%;
}

.item-detail-cart p {
	font-size: 14px;
	margin-bottom: 5px;
}

.item-detail-cart-btn {
	width: 100%;
}

.item-detail-cart-btn a {
	font-size: 15px;
	line-height: 22px;
	display: block;
	width: 100%;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 500;
	line-height: 22px;
	text-align: center;
	color: #fff;
	background: #F47761;
}

.item-detail-cart-btn a:hover {
	text-decoration: none;
}

.item-detail-cart-btn a span {
	position: relative;
}

.item-detail-cart-btn a span:before {
	position: absolute;
	top: 50%;
	left: -34px;
	display: inline-block;
	width: 22px;
	height: 21px;
	content: '';
	vertical-align: middle;
	background-image: url(https://image.raku-uru.jp/01/17733/69/cart_w_1614930678638.png);
	background-repeat: no-repeat;
	background-size: cover;
    transform: translate(0,-50%);
}

.item-detail-txt {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #d6c299 solid 1px;
}

.item-detail-txt p {
	font-size: 13px;
	padding: 3px;
}

.item-detail-code {
	width: 100%;
	padding-bottom: 20px;
}

.item-detail-code dl {
	display: table;
	width: 100%;
}

.item-detail-code dl dt {
	display: table-cell;
	width: 90px;
	padding: 3px;
}

.item-detail-code dl dd {
	display: table-cell;
	padding: 3px;
}

.item-comment {
	margin: 25px 0 0;
    padding: 25px 0 0;
    border-top: 2px solid #5C4D41;
}

.item-comment h4 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 15px;
    line-height: 28px;
}

.item-comment p {
	font-size: 13px;
}

.item-comment .item-detail-txt3 dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-comment .item-detail-txt3 dt {
    width: 70px;
    font-weight: 500;
    line-height: 28px;
}

.item-comment .item-detail-txt3 dd {
    width: calc(100% - 70px);
    line-height: 28px;
}

.item-comment .item-detail-txt3 dd span,
.item-comment .item-detail-txt3 dd a {
    font-size: 12px;
    line-height: 18px;
}

.item-detail-share {
	margin: 20px 0 0;
    padding: 25px 0 0;
    border-top: 2px solid #5C4D41;
}

.item-detail-share-label {
	display: inline-block;
	margin: 0 20px 0 0;
    font-weight: 500;
	vertical-align: middle;
}

.item-detail-share ul {
	display: inline-block;
}

.item-detail-share ul li {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin: 0 20px 0 0;
}

.item-detail-share ul li img {
	width: 100%;
	height: 100%;
	vertical-align: middle;
}

@media only screen and (max-width: 600px) {
	#item-detail {
		padding-top: 15px;
	}
    
	.item-detail-left {
		float: none;
		width: 300px;
		margin: 0 auto 20px;
	}
	
    .item-detail-right {
		float: none;
		width: 100%;
	}
	
    .item-detail-photo-main {
		position: relative;
		width: 250px;
		margin: 0 auto;
		padding: 0;
	}
	
    .item-detail-photo {
		position: relative;
		overflow: hidden;
		width: 250px;
		height: 250px;
		margin: 0 auto 10px;
	}
	
    .item-detail-photo ul {
		width: 100% !important;;
		height: 250px;
		margin: 0 auto;
        transform: none !important;
	}
	
    .item-detail-photo ul li {
		float: left;
		width: 250px;
		height: 250px;
		margin: 0;
	}
    
    .item-detail-thumb {
        width: 40px;
    }
    
    .item-detail-thumb-photo {
        width: 40px;
        height: 40px;
        margin: 0 0 10px;
    }
	
    .item-detail-category {
		margin: 0 0 15px;
	}
    
    .item-detail-vari-price,
    .item-detail-vari-memberprice,
    .item-detail-vari-normalprice,
    .item-detail-vari-stock,
    .item-detail-vari-itemcode,
    .item-detail-vari-jancode {
        justify-content: flex-start;
    }
	
    .item-detail-input-select-r {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 0 30px;
    }
	
    .item-detail-input p {
		margin: 0;
	}
    
    .item-detail-input-select-r p {
        width: 50px;
    }
	
    .item-detail-select {
		width: 100%;
		margin-bottom: 20px;
	}
	
    .item-detail-select label {
		position: relative;
		display: inline-block;
		overflow: hidden;
		width: 100%;
		height: 56px;
		vertical-align: middle;
	}
	
    .item-detail-select select {
		font-size: 16px;
	}
	
    .item-detail-num-count {
		width: calc(100% - 50px);
        margin: 0;
	}

    .item-detail-num {
		width: calc(100% - 70px);
	}
	
    .item-detail-cart {
		width: 100%;
		margin-bottom: 18px;
		padding-right: 10px;
		padding-left: 10px;
	}
	
    .item-detail-cart-btn {
		width: 100%;
	}
    
    .item-comment .item-detail-txt3 dd a {
        display: block;
    }

	.item-detail-txt {
		width: 100%;
		margin-bottom: 18px;
		padding-right: 10px;
		padding-bottom: 18px;
		padding-left: 10px;
		border-bottom: #d0d0d0 dotted 1px;
	}
	
    .item-detail-txt p {
		font-size: 13px;
		padding: 0;
	}
	
    .item-detail-code {
		width: 100%;
		padding-right: 10px;
		padding-bottom: 20px;
		padding-left: 10px;
		border-bottom: #d0d0d0 dotted 1px;
	}
	
    .item-detail-code dl {
		display: table;
		width: 100%;
	}
	
    .item-detail-code dl dt {
		font-size: 13px;
		display: table-cell;
		width: 95px;
		padding: 0;
	}
	
    .item-detail-code dl dd {
		font-size: 13px;
		display: table-cell;
		padding: 0;
	}
	
    .item-comment p {
		font-size: 13px;
	}
	
}

/* recommend */
#recommend {
	position: relative;
	padding-top: 30px;
}

@media only screen and (max-width: 600px) {
	#recommend {
		padding-top: 30px;
	}
}

/* about-tbl */
.about-tbl,
table.payment-content {
	width: 100%;
}

.about-tbl tr,
table.payment-content tr {
    display: block;
    padding: 20px 0;
    border-bottom: #F47761 solid 1px;
}

.about-tbl tr:first-child,
table.payment-content tr:first-child {
    border-top: #F47761 solid 1px;
}

.about-tbl th,
table.payment-content th {
	width: 240px;
	text-align: left;
    font-weight: 500;
}

.about-tbl td,
table.payment-content td {
    width: 760px;
	text-align: left;
}

@media only screen and (max-width: 600px) {
	.about-tbl,
	table.payment-content {
		display: block;
		width: 100%;
	}
    
	.about-tbl tbody,
	.about-tbl tbody tr,
	table.payment-content tbody,
	table.payment-content tbody tr {
		display: block;
		width: 100%;
	}
    
	.about-tbl th,
	table.payment-content th {
		display: block;
		width: 100%;
        padding: 0 0 10px;
        border-bottom: none;
	}
    
	.about-tbl td,
	table.payment-content td {
		display: block;
		width: 100%;
	}
    
	table.payment-content {
		display: table;
	}
    
	table.payment-content tbody{
		display: table-row-group;
	}
    
	table.payment-content tbody tr{
		display: table-row;
	}
    
	table.payment-content th,
	table.payment-content td{
		display: table-cell;
		width: 50%;
	}
}

.payment-title {
	font-weight: bold;
}

.payment-content {
	margin-bottom: 1em;
}

table.payment-content tr:first-child td {
	text-align: center;
}

table.payment-content  td {
	text-align: right;
}

.carriage-title {
	font-weight: bold;
}

.carriage-content a {
	text-decoration: underline;
}

/* cart */
.cart-flow-list {
	margin-bottom: 38px;
	text-align: center;
}

.cart-flow {
	font-size: 14px;
	line-height: 42px;
	position: relative;
	display: inline-block;
	margin: 0 15px;
	padding-right: 40px;
	text-align: center;
	vertical-align: middle;
	color: #b08838;
}

.cart-flow:not(:last-child):after {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
	display: block;
	width: 10px;
	height: 19px;
	margin-top: -10px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-flow.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.cart-flow .num {
	font-size: 18px;
	line-height: 43px;
	display: inline-block;
	width: 44px;
	height: 44px;
	margin-right: 15px;
	text-align: center;
	vertical-align: middle;
	color: #b08838;
	border: #b08838 solid 1px;
	border-radius: 22px;
}

.cart-flow.active .num {
	color: #fff;
	border: #b08838 solid 1px;
	background-color: #b08838;
}

.cart-section {
	width: 100%;
}

.cart-section-left {
	float: left;
	width: 670px;
}

.cart-section-right {
	position: relative;
	float: right;
	width: 300px;
}

.cart-section-ttl {
	position: relative;
	padding-bottom: 15px;
	text-align: left;
	border-bottom: #e7dbc3 solid 1px;
}

.cart-section-ttl h4 {
	font-size: 20px;
	font-weight: normal;
	display: inline;
}

.cart-form,
.cart-conf,
.cart-conf-item {
	width: 100%;
	margin-bottom: 35px;
	padding-top: 18px;
}

.cart-form table,
.cart-conf table,
.cart-conf-item table {
	width: 100%;
	margin-bottom: 15px;
}

.cart-form table th {
	font-size: 16px;
	font-weight: normal;
	line-height: 36px;
	width: 190px;
	padding: 12px 0;
	text-align: left;
	vertical-align: top;
}

.cart-conf table th {
	font-size: 16px;
	font-weight: normal;
	width: 194px;
	padding: 5px 0;
	text-align: left;
	vertical-align: top;
}

.cart-conf-item table th {
	font-size: 16px;
	font-weight: normal;
	width: 194px;
	padding: 12px 0 5px;
	text-align: left;
	vertical-align: top;
	border-bottom: #e7dbc3 dotted 1px;
}

.cart-form table th span {
	font-size: 12px;
	margin-left: 20px;
	color: #e30000;
}

.cart-conf-item table th img {
	width: 140px;
	height: auto;
}

.cart-form table td {
	font-size: 16px;
	font-weight: normal;
	padding: 12px 0;
	text-align: left;
	vertical-align: top;
}

.cart-conf table td {
	font-size: 14px;
	font-weight: normal;
	line-height: 1.6;
	padding: 5px 0;
	text-align: left;
	vertical-align: top;
}

.cart-conf-item table td {
	font-size: 14px;
	font-weight: normal;
	line-height: 1.6;
	padding: 12px 0 5px;
	text-align: left;
	vertical-align: top;
	border-bottom: #e7dbc3 dotted 1px;
}

.cart-form table td input[type=text] {
	line-height: 36px;
	height: 36px;
	padding: 0 10px;
	border: #dacbad solid 1px;
	background-color: #fff;
}

.cart-form table td input[type=text].error {
	background-color: #fff;
}

.form-select label {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 190px;
	height: 36px;
	vertical-align: middle;
	border: 1px solid #dacbad;
	background-color: #fff;
}

.form-select label:after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 15px;
	display: block;
	width: 13px;
	height: 7px;
	margin-top: -4px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-select-s.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.form-select select {
	font-size: 14px;
	line-height: 36px;
	position: relative;
	z-index: 2;
	display: block;
	width: 190px;
	height: 36px;
	margin: 0;
	padding: 0 0 0 10px;
	border: 0;
	outline: none;
	background: transparent;
	-webkit-appearance: none;
	   -moz-appearance: none;
		    appearance: none;
}

.form-txt-ss {
	width: 68px;
}

.form-txt-s {
	width: 185px;
}

.form-txt-m {
	width: 388px;
}

.form-txt-l {
	width: 100%;
}

.lbl-s {
	display: inline-block;
	width: 2em;
	margin-right: 8px;
	text-align: right;
}

.lbl-l {
	display: inline-block;
	width: 5em;
	margin-right: 8px;
	text-align: right;
}

.mr30 {
	margin-right: 30px;
}

.mr15 {
	margin-right: 15px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb24 {
	margin-bottom: 24px;
}

.form-tbl-show {
	display: none;
}

.form-tbl-show.active {
	display: table;
}

.cart-section-total {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	padding: 25px;
	border: #f7f7f3 5px solid;
	background-color: #f7f7f3;
}

.cart-section-total.jq-fixed {
	position: fixed;
	top: 0;
	left: 50%;
	margin-left: 200px;
}
@media only screen and (max-width:1000px) {
	.cart-section-total.jq-fixed {
		top: 0;
		left: 700px;
		margin-left: auto;
	}
}

.cart-btn {
	width: 100%;
	margin-bottom: 25px;
}

.cart-btn button[type='submit'],
.cart-btn a {
	font-size: 20px;
	line-height: 52px;
	position: relative;
	display: block;
	width: 100%;
	height: 54px;
	text-align: center;
	color: #fff;
	border: none;
	border-radius: 26px;
	background-color: #1e1203;
}

.cart-btn button[type='submit'] span:before,
.cart-btn a span:before {
	position: absolute;
	top: 50%;
	left: 30px;
	display: block;
	width: 21px;
	height: 10px;
	margin-top: -5px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-cart-btn.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.cart-btn a.comp-btn span:before {
	position: absolute;
	top: 50%;
	left: 30px;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-check.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.cart-subtotal {
	margin-bottom: 18px;
}

.cart-subtotal table {
	width: 100%;
}

.cart-subtotal table th {
	font-size: 16px;
	font-weight: normal;
	text-align: left;
}

.cart-subtotal table td {
	font-size: 16px;
	font-weight: normal;
	text-align: right;
}

.cart-total {
	padding-top: 12px;
	border-top: #d0d0d0 solid 1px;
}

.cart-total table {
	width: 100%;
}

.cart-total table th {
	font-size: 16px;
	font-weight: normal;
	text-align: left;
}

.cart-total table td {
	font-size: 24px;
	font-weight: bold;
	text-align: right;
}

.conf-lbl {
	display: inline-block;
	width: 5em;
	margin-right: 15px;
	margin-bottom: 10px;
}

.conf-dt {
	display: inline-block;
	margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
	.cart-flow-list {
		font-size: 0;
		margin-bottom: 12px;
		padding: 10px 0 0;
		text-align: center;
	}
    
	.cart-flow {
		font-size: 10px;
		line-height: 1.2;
		position: relative;
		display: inline-block;
		width: 95px;
		margin: 0 5px;
		padding: 50px 10px 0;
		text-align: center;
	}
    
	.cart-flow:not(:last-child):after {
		position: absolute;
		z-index: 1;
		top: 50%;
		right: -10px;
		display: block;
		width: 10px;
		height: 19px;
		margin-top: -10px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-flow.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
    
	.cart-flow .num {
		font-size: 16px;
		line-height: 38px;
		position: absolute;
		top: 0;
		left: 50%;
		display: inline-block;
		width: 40px;
		height: 40px;
		margin-right: 0;
		margin-left: -20px;
		text-align: center;
		vertical-align: middle;
		border-radius: 20px;
	}

	.cart-section {
		width: 100%;
	}
    
	.cart-section-left {
		float: none;
		width: 100%;
	}
    
	.cart-section-right {
		float: none;
		width: 100%;
		padding-right: 10px;
		padding-left: 10px;
	}
    
	.cart-section-ttl {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
    
	.cart-section-ttl h4 {
		font-size: 16px;
		padding: 0 10px;
	}

	.cart-form,
	.cart-conf,
	.cart-conf-item {
		width: 100%;
		margin-bottom: 10px;
		padding-top: 12px;
		padding-right: 10px;
		padding-left: 10px;
	}
    
	.cart-form table,
	.cart-conf table {
		display: block;
		width: 100%;
		margin-bottom: 0;
	}
    
	.cart-conf-item table {
		width: 100%;
		margin-bottom: 0;
	}
    
	.cart-form table tbody,
	.cart-form table tr,
	.cart-conf table tbody,
	.cart-conf table tr {
		display: block;
		width: 100%;
	}
    
	.cart-form table th {
		font-size: 14px;
		font-weight: normal;
		line-height: 1.2;
		display: block;
		width: 100%;
		padding: 0 0 10px;
		text-align: left;
	}
	
    .cart-conf table th {
		font-size: 14px;
		font-weight: normal;
		display: block;
		width: 100%;
		padding: 0 0 5px;
		text-align: left;
	}
	
    .cart-conf-item table th {
		width: 76px;
		padding: 12px 0;
		vertical-align: top;
	}
	
    .cart-conf-item table tr:last-child th {
		border-bottom: none;
	}
	
    .cart-form table th span {
		font-size: 12px;
		margin-left: 10px;
		padding: 4px 8px;
	}
	
    .cart-conf-item table th img {
		width: 70px;
		height: auto;
	}
	
    .cart-form table td {
		font-size: 12px;
		font-weight: normal;
		display: block;
		width: 100%;
		padding: 0 0 20px;
		vertical-align: top;
	}
	
    .cart-conf table td {
		font-size: 12px;
		font-weight: normal;
		display: block;
		width: 100%;
		padding: 0 0 20px;
		vertical-align: top;
	}
	
    .cart-conf-item table td {
		font-size: 14px;
		padding: 12px 0;
	}
	
    .cart-conf-item table tr:last-child td {
		border-bottom: none;
	}
	
    .cart-form table td input[type=text] {
		line-height: 36px;
		height: 36px;
		padding: 0 10px;
	}
	
    .form-select label {
		position: relative;
		display: inline-block;
		overflow: hidden;
		width: 100%;
		height: 36px;
		vertical-align: middle;
	}
	
    .form-select select {
		font-size: 16px;
		line-height: 36px;
		position: relative;
		z-index: 2;
		display: block;
		width: 100%;
		width: -webkit-calc(100%);
		height: 36px;
		margin: 0;
		padding: 0 40px 0 10px;
		border: 0;
		outline: none;
		background: transparent;
		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;
	}
	
    .form-txt-ss {
		width: 100px;
	}
	
    .form-txt-s {
		width: 100%;
	}
	
    label + .form-txt-s {
		width: 100px;
	}
	
    .form-txt-m {
		width: 100%;
	}
	
    .form-txt-l {
		width: 100%;
	}
	
    .lbl-s {
		display: inline-block;
		width: 2em;
		margin-right: 8px;
		text-align: left;
	}
	
    .lbl-l {
		display: inline-block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 6px;
		text-align: left;
	}
	
    .mr30 {
		margin-right: 15px;
	}
	
    .mb24 {
		margin-bottom: 10px;
	}
	
    .cart-form table.form-tbl-show,
	.cart-conf table.form-tbl-show {
		display: none;
	}
	
    .cart-form table.form-tbl-show.active,
	.cart-conf table.form-tbl-show.active {
		display: block;
	}
	
    .cart-section-total {
		position: inherit;
		top: 0;
		left: auto;
		width: 100%;
		margin-bottom: 24px;
		padding: 20px 14px;
	}
	
    .cart-section-total.jq-fixed {
		position: inherit;
		top: 0;
		left: auto;
		margin: 0 auto;
	}
	
    .cart-btn {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	
    .cart-btn button[type='submit'],
	.cart-btn a {
		font-size: 16px;
		line-height: 46px;
		width: 230px;
		height: 46px;
		margin: 0 auto;
		color: #fff;
		border-radius: 23px;
	}
	
    .cart-btn button[type='submit'] span:before,
	.cart-btn a span:before {
		position: absolute;
		top: 50%;
		left: 30px;
		display: block;
		width: 21px;
		height: 10px;
		margin-top: -5px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-cart-btn.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
    .cart-btn a.comp-btn span:before {
		position: absolute;
		top: 50%;
		left: 30px;
		display: block;
		width: 18px;
		height: 18px;
		margin-top: -9px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-check.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	
    .cart-subtotal {
		margin-bottom: 5px;
	}
	
    .cart-subtotal table {
		width: 100%;
	}
	
    .cart-subtotal table th {
		font-size: 16px;
	}
	
    .cart-subtotal table td {
		font-size: 16px;
	}
	
    .cart-total {
		padding-top: 6px;
		border-top: #d0d0d0 solid 1px;
	}
	
    .cart-total table {
		width: 100%;
	}
	
    .cart-total table th {
		font-size: 16px;
	}
	
    .cart-total table td {
		font-size: 20px;
	}
	
    .conf-lbl {
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 5px;
	}
	
    .conf-dt {
		display: block;
		margin-bottom: 20px;
	}
}

.complate-area {
	width: 710px;
	margin: 0 auto 40px;
	padding-top: 35px;
	padding-bottom: 20px;
	text-align: center;
	border-bottom: #e7dbc3 solid 1px;
}

.complate-area h4 {
	font-size: 20px;
	font-weight: normal;
	margin-bottom: 50px;
	text-align: center;
}

.complate-area .comp-code {
	font-size: 20px;
	font-weight: normal;
	display: inline-block;
	width: auto;
	margin-bottom: 50px;
	padding: 15px 30px;
	text-align: center;
	color: #b08838;
	border: #b08838 solid 1px;
	background-color: #fff;
}

.complate-area p {
	font-size: 16px;
}

.cart-section .btn-area {
	margin-bottom: 100px;
}

@media only screen and (max-width: 600px) {
	.complate-area {
		width: 100%;
		margin: 0 auto 40px;
		padding-top: 30px;
		padding-right: 10px;
		padding-bottom: 30px;
		padding-left: 10px;
		text-align: center;
	}
	
    .complate-area h4 {
		font-size: 18px;
		font-weight: normal;
		margin-bottom: 30px;
		text-align: center;
	}
	
    .complate-area .comp-code {
		font-size: 16px;
		font-weight: normal;
		display: inline-block;
		width: 100%;
		margin-bottom: 30px;
		padding: 5px 0;
		text-align: center;
	}
	
    .complate-area p {
		font-size: 14px;
		text-align: left;
	}
	
    .cart-section .btn-area {
		margin: 0 10px 50px;
	}
}

/* help-block */
.help-block.form-error {
	font-size: 12px;
	display: inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 8px 18px;
	text-align: left;
	color: #fff;
	background-color: #e30000;
}

@media only screen and (max-width: 600px) {
	.help-block.form-error {
		padding: 8px 15px;
	}
}

/* newarrival */
#newarrival {
	position: relative;
}

/***********
 * parts
 ***********/

/* msg */
.msg {
	font-size: 14px;
	margin-bottom: 38px;
	padding: 8px 15px;
	text-align: left;
	background-color: #f7f7f3;
}

@media only screen and (max-width: 600px) {
	.msg {
		font-size: 12px;
		line-height: 1.3;
		margin-bottom: 38px;
		padding: 8px 10px;
		text-align: left;
	}
}

/* err */
.err-msg {
	font-size: 14px;
	margin-bottom: 38px;
	padding: 5px 15px;
	text-align: left;
	color: #e30000;
	border: #e30000 solid 1px;
	background-color: #fff;
}

@media only screen and (max-width: 600px) {
	.err-msg {
		font-size: 12px;
		line-height: 1.4;
		margin-right: 10px;
		margin-bottom: 20px;
		margin-left: 10px;
		padding: 10px 10px;
	}
}

/*bread*/
.bread {
	width: 100%;
	padding: 30px 0;
}

.bread ul li {
    float: left;
	max-width:100%;
	font-size: 14px;
	margin: 0 10px 0 0;
}

.bread ul li img {
	width: 18px;
	height: auto;
	vertical-align: middle;
}

.bread ul li a:after {
    content: '>';
	display: inline-block;
	margin: 0 0 0 10px;
	color: #5c4d41;
}

.bread ul li a:hover {
	text-decoration: underline;
	opacity: 1;
}

.bread ul li span {
    color: #5c4d41;
}

@media only screen and (max-width: 600px) {
	.bread {
		padding: 30px 0;
	}
}

/* itemcount */
.item-list-itemcount {
	margin: 10px;
	text-align: right;
}

/* paging */
.paging-area {
	position: relative;
	clear: both;
	padding: 16px 0;
	border-bottom: #d6c299 solid 1px;
}

.paging {
	font-size: 14px;
	position: relative;
	width: 212px;
	margin: 0 auto;
	text-align: center;
}

.paging .prev {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -5px;
}

.paging .prev a {
	position: relative;
	display: block;
	width: 21px;
	height: 10px;
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-prev.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.paging .next {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -5px;
}

.paging .next a {
	position: relative;
	display: block;
	width: 21px;
	height: 10px;
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-next.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.page-num ul {
	font-size: 0;
}

.page-num ul li {
	font-size: 14px;
	display: inline-block;
	margin: 0 15px;
}

.page-num ul li span a {
	color:#f00;
}

@media only screen and (max-width: 600px) {
	.paging-area {
		padding: 0 0;
		border: none;
	}
    
	.paging {
		width: 100%;
		padding: 12px 10px;
		border-bottom: #d6c299 solid 1px;
	}
    
	.paging .prev {
		position: absolute;
		top: 50%;
		left: 10px;
		margin-top: -5px;
	}
    
	.paging .prev a {
		position: relative;
		display: block;
		width: 21px;
		height: 10px;
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-prev.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
    
	.paging .next {
		position: absolute;
		top: 50%;
		right: 10px;
		margin-top: -5px;
	}
    
	.paging .next a {
		position: relative;
		display: block;
		width: 21px;
		height: 10px;
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/icn-arrow-next.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
    
	.page-num ul {
		font-size: 0;
	}
    
	.page-num ul li {
		font-size: 14px;
		display: inline-block;
		margin: 0 14px;
	}
}


/* sort */
.sort {
	font-size: 0;
	position: relative;
	width: 100%;
	padding-top: 20px;
	text-align: right;
}

.sort-label {
	font-size: 12px;
	display: inline-block;
}

.sort ul {
	font-size: 0;
	display: inline-block;
}

.sort ul li {
	font-size: 12px;
	position: relative;
	display: inline-block;
	margin-left: 10px;
	padding-left: 10px;
}

.sort ul li:first-child {
	margin-left: 0;
	padding-left: 0;
}

.sort ul li:not(:first-child):after {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 1px;
	height: 12px;
	margin-top: -6px;
	content: '';
	background-color: #000;
}

.sort ul li a {
	text-decoration: underline;
}

.sort ul li a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 600px) {
	.sort {
		font-size: 0;
		position: relative;
		width: 100%;
		padding-top: 12px;
		padding-bottom: 13px;
		text-align: center;
	}
    
	.sort-label {
		display: none;
	}
    
	.sort ul {
		font-size: 0;
		display: inline-block;
		text-align: center;
	}
    
	.sort ul li {
		font-size: 12px;
		position: relative;
		display: inline-block;
		margin-left: 20px;
		padding-left: 20px;
	}
    
	.sort ul li:first-child {
		margin-left: 0;
		padding-left: 0;
	}
    
	.sort ul li:not(:first-child):after {
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 1px;
		height: 12px;
		margin-top: -6px;
		content: '';
		background-color: #000;
	}
    
	.sort ul li a {
		text-decoration: underline;
	}
}

/* icon */

 
.icn-badge51136:after {
	content: "NEW";
    display: block;
    position: absolute;
    top: 35px;
	left: 0;
	width: 60px;
	height: 20px;
	text-align: center;
	color: #fff;
    font-size: 10px;
    font-weight: bold;
	line-height: 20px;
	background: #F47761;
}

.item-detail-photo.icn-badge51136:after {
	top: 0;
}

@media only screen and (max-width: 600px) {
	.icn-badge51136:after {
		font-size: 11px;
		top: 15px;
		left: 0;
	}
} 
.icn-badge51137:after {
	content: "おすすめ";
    display: block;
    position: absolute;
    top: 35px;
	left: 0;
	width: 60px;
	height: 20px;
	text-align: center;
	color: #fff;
    font-size: 10px;
    font-weight: bold;
	line-height: 20px;
	background: #F47761;
}

.item-detail-photo.icn-badge51137:after {
	top: 0;
}

@media only screen and (max-width: 600px) {
	.icn-badge51137:after {
		font-size: 11px;
		top: 15px;
		left: 0;
	}
} 
.icn-badge51138:after {
	content: "人気";
    display: block;
    position: absolute;
    top: 35px;
	left: 0;
	width: 60px;
	height: 20px;
	text-align: center;
	color: #fff;
    font-size: 10px;
    font-weight: bold;
	line-height: 20px;
	background: #F47761;
}

.item-detail-photo.icn-badge51138:after {
	top: 0;
}

@media only screen and (max-width: 600px) {
	.icn-badge51138:after {
		font-size: 11px;
		top: 15px;
		left: 0;
	}
} 
.icn-new:after {
	content: "";
	/* NEW */
	font-size: 12px;
	line-height: 15px;
	position: absolute;
	top: 30px;
	left: 0;
	display: block;
	width: 60px;
	height: 15px;
	text-align: center;
	color: #fff;
	background-color: #d99712;
}

@media only screen and (max-width: 600px) {
	.icn-new:after {
		font-size: 11px;
		top: 15px;
		left: 0;
	}
}

.icn-popular:after {
	content: "";
	/* 人気 */
	font-size: 11px;
	line-height: 15px;
	position: absolute;
	top: 30px;
	left: 0;
	display: block;
	width: 60px;
	height: 15px;
	text-align: center;
	color: #fff;
	background-color: #d91241;
}

@media only screen and (max-width: 600px) {
	.icn-popular:after {
		font-size: 11px;
		top: 15px;
		left: 0;
	}
}

.icn-recommend:after {
	content: "";
	/* おすすめ */
	font-size: 11px;
	line-height: 15px;
	position: absolute;
	top: 30px;
	left: 0;
	display: block;
	width: 60px;
	height: 15px;
	text-align: center;
	color: #fff;
	background-color: #098cc9;
}

@media only screen and (max-width: 600px) {
	.icn-recommend:after {
		font-size: 11px;
		top: 15px;
		left: 0;
	}
}

.icn-reservation::before {
	content: "予約商品";
	width: 58px;
	height: 18px;
	display: block;
	font-size: 11px;
	line-height: 18px;
	margin-top: 2px;
	margin-right: 6px;
	text-align: center;
	color: #fff;
	background: #666;
}

a .icn-reservation::before {
	color: #fff;
	background: #666;
}

.item-detail-name.icn-reservation::before {
	font-size: 16px;
	line-height: 32px;
	position: relative;
	width: 96px;
	height: 32px;
	margin-right: 10px;
}

/*overlay*/
.overlay {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}

.modal-open {
	/*
	overflow: hidden;   
	*/
}

.modal-open .overlay {
	display: block;
	background-color: rgba(0,0,0,.8);
}

@media only screen and (max-width: 600px) {
	.nav-open {
		overflow: hidden;
	}
    
	.nav-open .overlay {
		display: block;
	}
}

/* modal */
.modal {
	position: absolute;
	z-index: 9999;
	top: 50%;
	left: 50%;
	display: none;
	margin-top: -200px;
	margin-left: -320px;
	padding: 6px;
	background-color: #e7dbc3;
}

.modal-open .modal {
	display: block;
}

.modal-inner {
	position: relative;
	width: 100%;
	height: auto;
}

.modal-img {
	max-width: 648px;
	max-height: 648px;
}

.modal-img img {
	display: block;
	max-width: 648px;
	max-height: 648px;
	width: auto;
	height: auto;
}

.modal-close {
	position: absolute;
	top: -20px;
	right: -20px;
}

.modal-close a {
	display: block;
	width: 52px;
	height: 52px;
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/btn-modal-close.png);
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 600px) {
	.modal {
		position: absolute;
		z-index: 9999;
		top: 50%;
		left: 50%;
		display: none;
		margin-top: -110px;
		margin-left: -150px;
		padding: 5px;
	}
    
	.modal-open .modal {
		display: block;
	}
    
	.modal-inner {
		position: relative;
		width: 100%;
		height: auto;
	}
    
	.modal-img {
		max-width: 280px;
		max-height: 280px;
	}
    
	.modal-img img {
		max-width: 280px;
		max-height: 280px;
		width: auto;
		height: auto;
	}
    
	.modal-close {
		position: absolute;
		top: -20px;
		right: -20px;
	}
    
	.modal-close a {
		display: block;
		width: 37px;
		height: 37px;
	}
}

/* pagetop */
.btn-pagetop {
	width: 100%;
	height: 44px;
	background-color: #2c1e0d;
}

.btn-pagetop a {
	font-size: 14px;
	line-height: 44px;
	position: relative;
	display: block;
	float: right;
	padding-right: 24px;
	color: #b08838;
}

.btn-pagetop a:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 14px;
	height: 10px;
	margin-top: -5px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00003/img/btn-pagetop.png);
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 600px) {
	.btn-pagetop {
		height: 42px;
		text-align: center;
	}
    
	.btn-pagetop a {
		line-height: 42px;
		display: inline-block;
		float: none;
		padding: 0;
	}
    
	.btn-pagetop a:after {
		position: inherit;
		top: auto;
		bottom: 0;
		left: 0;
		display: inline-block;
		width: 14px;
		height: 10px;
		margin-top: 0;
		margin-left: 10px;
		content: '';
		vertical-align: middle;
		background-image: url(https://image.raku-uru.jp/cms/yt00003/img/btn-pagetop_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}

/***送料について***/

.shipment-tbl {
	width: 100%;
	margin-top: 30px;
	border-top: #d6c299 solid 1px;
}

.shipment-tbl th {
	font-weight: bold;
	width: 200px;
	padding: 20px 0;
	text-align: left;
	border-bottom: #d6c299 solid 1px;
}

.shipment-tbl-ptn1 th{
	width: 250px;
	padding-right: 20px;
}

.shipment-tbl td {
	padding: 20px 0;
	text-align: left;
	border-bottom: #d6c299 solid 1px;
}

.shipment-tbl caption {
	font-size: 16px;
	padding: 4px 12px 3px;
	color: #b08838;
	background-color: #1e1203;
}

.shipment-tbl-normal table th {
	width: auto;
	white-space: nowrap;
}

.shipment-tbl-rule-notice {
	font-size: 80%;
}

.shipment-tbl-normal-shippoint-point span{
	display: inline-block;
	line-height: 1.1;
	padding:5px 0;
}

.shipment-tbl-normal-shippoint-point span:nth-child(2){
	padding: 0 10px;
}

.shipment-tbl-normal-rule,
.shipment-tbl-normal-rule2,
.shipment-tbl-tkbsize-defined-rule {
	margin: 15px;
}

.shipment-tbl-normal-rule2 span {
	display: block;
}

.shipment-tbl table th,
.shipment-tbl table td {
	padding: 3px 4px 2px;
	border: 0;
	line-height: 1.1;
}

.shipment-tbl table td {
	text-align: center;
}

.shipment-tbl table thead th,
.shipment-tbl table thead td {
	color: #b08838;
	background-color: #1e1203;
}

.shipment-tbl table thead th span,
.shipment-tbl table thead th span {
	display: block;
}

.shipment-tbl table tbody tr:nth-child(2n) th,
.shipment-tbl table tbody tr:nth-child(2n) td {
	background: #f7f7f3;
}

.shipment-tbl table th {
	min-width: 100px;
}

.shipment-tbl-normal-orderprice-ttl,
.shipment-tbl-normal-orderpric-price {
	display: inline-block;
}

.shipment-tbl-eidome a {
	text-decoration: underline;
}

@media only screen and (max-width:600px) {
	.shipment-tbl caption {
		display: block;
	}
    
	.shipment-tbl th {
		font-size: 14px;
		display: block;
		width: 100%;
		padding: 20px 10px 5px;
		border-bottom: none;
	}
    
	.shipment-tbl td {
		font-size: 12px;
		display: block;
		width: 100%;
		padding: 0 10px 20px;
	}
    
	.shipment-tbl table {
		width: 90%;
		margin: auto;
	}
    
	.shipment-tbl table thead th,
	.shipment-tbl table thead td {
		padding-bottom: 5px;
	}
    
	.shipment-tbl table thead th span,
	.shipment-tbl table thead td span {
		display: inline;
		padding: 0 14px;
	}
    
	.shipment-tbl table th,
	.shipment-tbl table td {
		width: 100%;
		text-align: center;
	}
}


/***********
 * lp
 ***********/

.body-lp #header {
	height: 65px;
	border-bottom: #d0d0d0 1px solid;
	background-color: #1e1203;
}

.body-lp #header .logo {
	position: relative;
	width: 170px;
	margin: 0 auto;
}

.contents-lp .main {
	margin-bottom: 50px;
}

.contents-lp .item-order {
	width: 440px;
	margin: 0 auto;
}

.contents-lp .lp-img img{
	display: block;
	max-width: 100%;
	margin: 20px auto;
}

.contents-lp .item-order .item-detail-cart {
	border-bottom: none;
}

.body-lp .footer-top {
	padding: 40px 0;
	background-color: #f7f7f3;
}

.body-lp .footer-top .footer-logo {
	margin-bottom: 0;
}

.body-lp .footer-top .footer-logo img {
	display: block;
	margin: 0 auto;
}

.body-lp .footer-bottom {
	padding: 20px 0;
	background-color: #fff;
}

@media only screen and (max-width: 600px) {
	.body-lp #header {
		height: 50px;
	}
    
	.contents-lp .item-order {
		width: 100%;
	}

}


/***********
 * login
 ***********/

.body-login #header {
	height: 65px;
	border-bottom: #d0d0d0 1px solid;
	background-color: #1e1203;
}

.body-login #header .logo {
	position: relative;
	width: 170px;
	margin: 0 auto;
}

.contents-login .main {
	margin-bottom: 50px;
}

.body-login .footer-top {
	padding: 40px 0;
	background-color: #f7f7f3;
}

.body-login .footer-top .footer-logo {
	margin-bottom: 0;
}

.body-login .footer-top .footer-logo img {
	display: block;
	margin: 0 auto;
}

.body-login .footer-bottom {
	padding: 20px 0;
	background-color: #fff;
}

@media only screen and (max-width: 600px) {
	.body-login #header {
		height: 50px;
	}
}


/***********
 * wysiwyg
 ***********/

/*
.wysiwyg-data html,
.wysiwyg-data address,
.wysiwyg-data blockquote,
.wysiwyg-data body,
.wysiwyg-data dd,
.wysiwyg-data  div,
.wysiwyg-data dl,
.wysiwyg-data dt,
.wysiwyg-data fieldset,
.wysiwyg-data form,
.wysiwyg-data frame,
.wysiwyg-data frameset,
.wysiwyg-data h1,
.wysiwyg-data h2,
.wysiwyg-data h3,
.wysiwyg-data h4,
.wysiwyg-data h5,
.wysiwyg-data h6,
.wysiwyg-data noframes,
.wysiwyg-data ol,
.wysiwyg-data p,
.wysiwyg-data ul,
.wysiwyg-data center,
.wysiwyg-data dir,
.wysiwyg-data hr,
.wysiwyg-data menu,
.wysiwyg-data pre {
    display: block;
    unicode-bidi: embed;
}

.wysiwyg-data li {
    display: list-item;
}

.wysiwyg-data head {
    display: none;
}

.wysiwyg-data table {
    display: table;
}

.wysiwyg-data tr {
    display: table-row;
}

.wysiwyg-data thead {
    display: table-header-group;
}

.wysiwyg-data tbody {
    display: table-row-group;
}

.wysiwyg-data tfoot {
    display: table-footer-group;
}

.wysiwyg-data col {
    display: table-column;
}

.wysiwyg-data colgroup {
    display: table-column-group;
}

.wysiwyg-data td,
.wysiwyg-data th {
    display: table-cell;
}

.wysiwyg-data caption {
    display: table-caption;
}

.wysiwyg-data th {
    font-weight: bolder;
    text-align: center;
}

.wysiwyg-data caption {
    text-align: center;
}

.wysiwyg-data body {
    margin: 8px;
}

.wysiwyg-data h1 {
    font-size: 2em;
    margin: .67em 0;
}

.wysiwyg-data h2 {
    font-size: 1.5em;
    margin: .75em 0;
}

.wysiwyg-data h3 {
    font-size: 1.17em;
    margin: .83em 0;
}

.wysiwyg-data h4,
.wysiwyg-data p,
.wysiwyg-data blockquote,
.wysiwyg-data ul,
.wysiwyg-data fieldset,
.wysiwyg-data form,
.wysiwyg-data ol,
.wysiwyg-data dl,
.wysiwyg-data dir,
.wysiwyg-data menu {
    margin: 1.12em 0;
    color: #5c4d41;
}

.wysiwyg-data h5 {
    font-size: .83em;
    margin: 1.5em 0;
}

.wysiwyg-data h6 {
    font-size: .75em;
    margin: 1.67em 0;
}

.wysiwyg-data h1,
.wysiwyg-data h2,
.wysiwyg-data h3,
.wysiwyg-data h4,
.wysiwyg-data h5,
.wysiwyg-data h6,
.wysiwyg-data b,
.wysiwyg-data strong {
    font-weight: bolder;
    color: #5c4d41;
}

.wysiwyg-data blockquote {
    margin-left: 40px;
    margin-right: 40px;
}

.wysiwyg-data i,
.wysiwyg-data cite,
.wysiwyg-data em,
.wysiwyg-data var,
.wysiwyg-data address {
    font-style: italic;
}

.wysiwyg-data pre,
.wysiwyg-data tt,
.wysiwyg-data code,
.wysiwyg-data kbd,
.wysiwyg-data samp {
    font-family: monospace;
}

.wysiwyg-data pre {
    white-space: pre;
}

.wysiwyg-data button,
.wysiwyg-data textarea,
.wysiwyg-data input,
.wysiwyg-data select {
    display: inline-block;
}

.wysiwyg-data big {
    font-size: 1.17em;
}

.wysiwyg-data small,
.wysiwyg-data sub,
.wysiwyg-data sup {
    font-size: .83em;
}

.wysiwyg-data sub {
    vertical-align: sub;
}

.wysiwyg-data sup {
    vertical-align: super;
}

.wysiwyg-data table {
    border-spacing: 2px;
}

.wysiwyg-data thead,
.wysiwyg-data tbody,
.wysiwyg-data tfoot {
    vertical-align: middle;
}

.wysiwyg-data td,
.wysiwyg-data th,
.wysiwyg-data tr {
    vertical-align: inherit;
}

.wysiwyg-data s,
.wysiwyg-data strike,
.wysiwyg-data del {
    text-decoration: line-through;
}

.wysiwyg-data hr {
    border: 1px inset;
}

.wysiwyg-data ol,
.wysiwyg-data ul,
.wysiwyg-data dir,
.wysiwyg-data menu,
.wysiwyg-data dd {
    margin-left: 40px;
}

.wysiwyg-data ol {
    list-style-type: decimal;
}

.wysiwyg-data ol ul,
.wysiwyg-data ul ol,
.wysiwyg-data ul ul,
.wysiwyg-data ol ol {
    margin-top: 0;
    margin-bottom: 0;
}

.wysiwyg-data u,
.wysiwyg-data ins {
    text-decoration: underline;
}

.wysiwyg-data br:before {
    content: "\A";
    white-space: pre-line;
}

.wysiwyg-data center {
    text-align: center;
}

.wysiwyg-data :link,
.wysiwyg-data :visited {
    text-decoration: underline;
}

.wysiwyg-data :focus {
    outline: thin dotted invert;
}

.wysiwig-data a {
    color: #f47761;
}

.wysiwig-data a:hover {
    color: #f00;
}

.wysiwyg-data table {
    border:solid 1px;
    border-collapse:separate;
    border-color:#c0c0c0 #c0c0c0 #808080 #808080;
    border-spacing:2px;
    width:auto;
}

.wysiwyg-data table tr td {
    border:solid 1px;
    border-color:#808080 #808080 #c0c0c0 #c0c0c0;
    padding:0;
}

.item-comment .wysiwyg-data table tr td{
    background:#fffaf4;
}

.wysiwyg-data ul, .wysiwyg-data ul li{
    list-style-type: disc;
}

.wysiwyg-data ol{
    list-style-type: decimal;
}

 Begin bidirectionality settings (do not change) 
.wysiwyg-data BDO[DIR="ltr"] {
    direction: ltr;
    unicode-bidi: bidi-override;
}

.wysiwyg-data BDO[DIR="rtl"] {
    direction: rtl;
    unicode-bidi: bidi-override;
}

.wysiwyg-data *[DIR="ltr"] {
    direction: ltr; unicode-bidi: embed;
}

.wysiwyg-data *[DIR="rtl"] {
    direction: rtl; unicode-bidi: embed;
}
*/

@media print {
/*
    .wysiwyg-data h1 {
        page-break-before: always;
    }
    
    .wysiwyg-data h1,
    .wysiwyg-data h2,
    .wysiwyg-data h3,
    .wysiwyg-data h4,
    .wysiwyg-data h5,
    .wysiwyg-data h6 {
        page-break-after: avoid;
    }
    
    .wysiwyg-data ul,
    .wysiwyg-data ol,
    .wysiwyg-data dl {
        page-break-before: avoid;
    }
*/
}

@media only screen and (max-width: 600px) {
/*
    .wysiwyg-data {
        width: 100%;
        padding: 0 15px;
    }
*/
}

/***********
 * MV
 ***********/

.mv {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    -ms-grid-rows: 1fr;
    width: 100%;
}

.mv .mv-content {
    grid-column: 1 / 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-row: 1;
    -ms-grid-row: 1;
    position: relative;
}

.mv .mv-textbox-wrap {
    position: absolute;
    top: 50%;
    right: -98px;
    padding: 0 15px;
    width: 480px;
    transform: translate(0,-50%);
}

.mv .mv-textbox {
    padding: 35px;
    color: #FFF;
    background: rgba(92,77,65,.7);
}

.mv .mv-logo {
    width: 120px;
    margin: 0 auto 20px;
}

.mv .tvi-logo {
    width: 250px;
    margin: 0 auto 20px;
}

.mv .mv-logo-text {
    margin: 0 0 30px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.mv .mv-textbox .mv-text {
    line-height: 30px;
}

@media only screen and (max-width: 600px) {
	.mv {
        grid-template-columns: 1fr;
        -ms-grid-columns: 1fr;
    }
    
    .mv .mv-content {
        grid-column: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
    }
    
    .mv .mv-textbox-wrap {
        top: 50%;
        left: 50%;
        right: auto;
        width: 100%;
        padding: 0 15px;
        transform: translate(-50%,-50%);
    }
    
    .mv .mv-textbox {
        padding: 25px;
    }
    
    .mv .mv-logo {
        margin: 0 auto 15px;
    }
    
    .mv .tvi-logo {
        margin: 0 auto 15px;
    }
    
    .mv .mv-textbox .mv-text {
        font-size: 12px;
    }
}
