@charset "UTF-8";
/* CSS Document */

/***********
 * common
 ***********/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	word-break: break-all;
}

html {font-size: 62.5%; } /* 10px */
/*html {font-size: calc(100vw / 32); }*/
html {overflow:auto; height:100%;}
body{
	color: #323232;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese","Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.3rem;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.05em;
	overflow: hidden;
}

h2 {
	font-size: 30px;
	letter-spacing: 3px;
}

h3 {
	font-size: 24px;
	letter-spacing: 3px;
}

ul,
ul li {
	list-style: none;
}


/* a リンク文字色 */

a,
a:visited {
	color:#666;
	/* a リンク文字色 */
	text-decoration: none;
}

a:hover,
button:hover {
	color:#8d613b;
	/* hoverリンク文字色 */
	text-decoration: underline;
	opacity: 0.7;
}

a:hover,
button:hover {
	text-decoration: none;
	opacity: .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: 100%;
	margin-bottom: 20px;
}

table.tbl tr th {
	font-size: 13px;
	font-weight: normal;
	position: relative;
	width: 90px;
	padding: 2px 10px 2px 0;
	text-align: left;
}

table.tbl tr th:after {
	position: absolute;
	top: 0;
	right: 0;
	content: ':';
}

table.tbl tr td {
	font-size: 13px;
	padding: 2px 12px 2px 48px;
	text-align: left;
}

@media only screen and (max-width: 600px) {
	table.tbl {
		width: 100%;
	}
	table.tbl tr th {
		font-size: 12px;
		font-weight: normal;
		width: 65px;
		padding: 4px 0;
		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;
	color: #3c9faf;
}

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: 10px;
	height: 14px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-btn.png);
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 600px) {
	ul.list1 li:before {
		position: absolute;
		top: 5px;
		left: 0;
		display: inline-block;
		width: 8px;
		height: 12px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-btn_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}

ul.list2 li {
	font-size: 13px;
	position: relative;
	margin-bottom: 10px;
	padding-left: 26px;
}

ul.list2 li:before {
	position: absolute;
	top: 12px;
	left: 0;
	display: inline-block;
	width: 8px;
	height: 1px;
	content: '';
	background-color: #666;
}


/***********
 * layout
 ***********/

#wrapper,
.wrapper {
	width: 100%;
	min-width: 1000px;
	margin: 0 auto;
}

.main-contents {
	margin: 0 auto;
}
.wysiwyg-data {
	padding-top: 30px;
	padding-bottom: 90px;
	max-width: 1000px;
	margin: 0 auto;
}
#main-article {
	position: relative;
}

#main-article,
.main-article {
	margin-bottom: 30px;
	max-width: 980px;
	margin: 0 auto;
}

.top {
	width: 100%;
	margin: 0 auto;
	padding: 0 0;
}

.contents {}

.page {
	width: 1000px;
	margin: 0 auto;
	padding: 30px 0 0;
}

.row {
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

@media only screen and (max-width: 600px) {
	#wrapper,
	.wrapper {
		min-width: 100%;
	}
	.main-contents {
		padding-bottom: 45px;
	}
	.top {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0;
	}
	.contents {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0;
	}
	#main-article,
	.main-article {
		margin: 0 5%;
	}
	.page {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 0;
	}
	.row {
		position: relative;
		width: 100%;
		margin: 0 auto;
	}
}


/***********
 * clearfix
 ***********/

.clearfix:before,
.clearfix:after {
	display: table;
	content: ' ';
}

.clearfix:after {
	clear: both;
}

label:after {
	display: none;
}


/***********
 * header
 ***********/

#header {
	width: 100%;
	height: 125px;
	border-bottom: #f5f5f5 1px solid;
	background-color: #fff;
}

.header-top,
.header-top-cart {
	height: 60px;
	margin-bottom: 64px;
	padding: 0;
	color: #fff;
	background-color: #3c9faf;
}

/*.logo {
	line-height: 124px;
	position: relative;
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	display: block;
	width: 158px;
	height: 124px;
	text-align: center;
	background-color: #fff;
}*/

.logo-text {
	font-size: 13px;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	left: 50%;
	display: -webkit-box;
	overflow: hidden;
	width: 100%;
	max-height: 7em;
	padding: 0 10px;
	-webkit-transform: translate(-50%, -50%);
		    transform: translate(-50%, -50%);
	text-align: center;
	word-break: break-all;
	color: #3c9faf;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.logo-text-footer {
	position: static;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
	transform: translate(0, 0);
}

.logo-text-footer a {
	color: #fff;
}

.header-top-cart .logo {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	margin-left: -79px;
}

/*.logo img {
	width: auto;
	height: auto;
	max-width: 158px;
	max-height: 100px;
	vertical-align: middle;
}*/

.logo__text {
	color: #8d613b;
}

.header-search {
	position: absolute;
	z-index: 11;
	top: 11px;
	left: 200px;
}

.header-search-form {
	position: relative;
}

.header-search input[type=text] {
	font-size: 14px;
	line-height: 35px;
	display: inline-block;
	width: 300px;
	height: 37px;
	padding: 0 50px 0 20px;
	border: none;
	border-radius: 2px;
	outline: 0 none;
	background-color: #fff;
}

.header-search-form-btn {
	line-height: 37px;
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	overflow: hidden;
	width: 48px;
	padding: 0;
	cursor: pointer;
	text-align: center;
	border: none;
	-webkit-border-radius: 0;
		    border-radius: 2px;
	background: none;
	background-color: #fff;
	-webkit-appearance: none;
}

.search-btn {
	width: 20px;
	height: auto;
	vertical-align: middle;
}

.header-menu-sp {
	display: none;
}

.header-nav {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
}

.header-top ul.header-menu {
	float: right;
	height: 60px;
}

.header-top ul.header-menu > li {
	float: left;
	height: 60px;
	text-align: center;
	border-left: #66b5bf solid 1px;
}

.header-top ul.header-menu > li > a {
	position: relative;
	color: #fff;
}

.header-top ul.header-menu li.logout ,
.header-top ul.header-menu li.entry {
	line-height: 60px;
}

.header-top ul.header-menu li.logout a ,
.header-top ul.header-menu li.entry a {
	font-size: 16px;
	display: block;
	height: 60px;
	padding-right: 40px;
	padding-left: 20px;
}

.header-top ul.header-menu li.logout a {
	padding-right: 20px;
	padding-left: 40px;
}

.header-top ul.header-menu li.logout a:before {
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 21px;
	height: 24px;
	margin-top: -11px;
	margin-left: 12px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-logout.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.header-top ul.header-menu li.entry a:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 11px;
	height: 16px;
	margin-top: -8px;
	margin-right: 20px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-entry.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.header-top ul.header-menu li.mypage a {
	font-size: 12px;
	position: relative;
	display: block;
	width: 80px;
	height: 60px;
	padding-top: 36px;
}

.header-top ul.header-menu li.mypage a:before {
	position: absolute;
	top: 10px;
	left: 50%;
	display: inline-block;
	width: 21px;
	height: 24px;
	margin-left: -10px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-mypage.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.header-top ul.header-menu li.cart a {
	font-size: 12px;
	position: relative;
	display: block;
	width: 80px;
	height: 60px;
	padding-top: 36px;
}

.header-top ul.header-menu li.cart a:before {
	position: absolute;
	top: 10px;
	left: 50%;
	display: inline-block;
	width: 26px;
	height: 24px;
	margin-left: -13px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-cart.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.header-top ul.header-menu li.sns {
	padding-right: 20px;
}

.header-top ul.header-menu li.sns ul li {
	line-height: 60px;
	display: inline-block;
	width: 25px;
	margin-left: 20px;
}

.header-top ul.header-menu li.sns ul li img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}


/* category-nav */

.category-nav {
	float: left;
	min-width: 700px;
	margin-left: 200px;
}

.category-nav > ul > li {
	font-size: 18px;
	line-height: 65px;
	position: relative;
	float: left;
	margin-right: 50px;
	color: #3c9faf;
}

.category-nav > ul li a {
	position: relative;
	display: block;
	width: 100%;
}

.category-nav-l2 {
	position: absolute;
	z-index: 55;
	top: 65px;
	left: 50%;
	display: none;
	width: 174px;
	margin-left: -87px;
	padding: 10px 12px;
	background-color: rgba(60,159,175,.9);
}

.active .category-nav-l2 {
	display: block;
}

.category-nav-l2:before {
	position: absolute;
	top: -7px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -7px;
	content: '';
	border-width: 0 7px 7px 7px;
	border-style: solid;
	border-color: transparent transparent #66b5bf transparent;
}

.category-nav-l2 > li {
	font-size: 16px;
	line-height: 1.2;
	border-bottom: rgba(255,255,255,.3) solid 1px;
}

.category-nav-l2 > li:last-child {
	border-bottom: none;
}

.category-nav-l2 > li > a {
	padding: 18px 0;
	color: #fff;
}

.category-nav-l3 > li {
	font-size: 12px;
	padding: 2px 0 6px 8px;
}

.category-nav-l3 > li a {
	color: #d6fef8;
}

.nav-close {
	display: none;
}

@media only screen and (max-width: 600px) {
	#header {
		width: 100%;
		height: 91px;
	}
	.header-top,
	.header-top-cart {
		height: 45px;
		margin-bottom: 46px;
		padding: 0;
		color: #fff;
		background-color: #3c9faf;
	}
	.logo {
	}
	.logo-text {
		max-height: 5.4em;
		-webkit-line-clamp: 4;
	}
	.header-top-cart .logo {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 50%;
		margin-left: -58px;
	}
	.logo img {
		vertical-align: middle;
	}
	.header-search {
		position: absolute;
		top: 52px;
		right: 10px;
		left: 125px;
	}
	.header-search-form {
		position: relative;
		background: #fff;
	}
	.header-search input[type=text] {
		font-size: 16px;
		line-height: 30px;
		display: inline-block;
		width: 100%;
		height: 30px;
		padding: 0 40px 0 10px;
		border: none;
		border-radius: 2px;
		outline: 0 none;
		background-color: #fff;
	}
	.header-search-form-btn {
		line-height: 30px;
		position: absolute;
		top: 0;
		right: 1px;
		display: inline-block;
		overflow: hidden;
		width: 38px;
		padding: 0;
		cursor: pointer;
		text-align: center;
		border: none;
		-webkit-border-radius: 0;
		        border-radius: 2px;
		background: none;
		-webkit-appearance: none;
	}
	.search-btn {
		width: 16px;
		height: auto;
		vertical-align: middle;
	}
	.header-menu-sp {
		position: absolute;
		top: 10px;
		right: 10px;
		display: block;
		width: 67px;
	}
	.header-menu-sp img {
		width: 100%;
		height: auto;
	}
	.header-nav {
		position: fixed;
		z-index: 9999;
		top: 0;
		left: -100%;
		overflow: scroll;
		width: 100%;
		height: 100%;
		padding-bottom: 50px;
		-webkit-transition: left .6s cubic-bezier(.19, 1, .22, 1);
		        transition: left .6s cubic-bezier(.19, 1, .22, 1);
	}
	.nav-open .header-nav {
		left: 0;
	}
	.header-top ul.header-menu {
		font-size: 0;
		float: none;
		height: auto;
		background-color: rgba(60,159,175,.9);
	}
	.header-top ul.header-menu > li {
		float: none;
		height: auto;
		text-align: center;
		border-left: #66b5bf solid 1px;
	}
	.header-top ul.header-menu > li > a {
		position: relative;
		color: #fff;
	}
	.header-top ul.header-menu li.entry {
		line-height: 50px;
		text-align: left;
		border-bottom: rgba(238,238,238,.27) solid 1px;
	}
	.header-top ul.header-menu li.logout {
		line-height: 50px;
		border-bottom: rgba(238,238,238,.27) solid 1px;
	}
	.header-top ul.header-menu li.logout a ,
	.header-top ul.header-menu li.entry a {
		font-size: 16px;
		display: block;
		height: 50px;
		padding-right: 10px;
		padding-left: 10px;
	}
	.header-top ul.header-menu li.logout a:before {
		position: absolute;
		top: 50%;
		left: 50%;
		display: inline-block;
		width: 23px;
		height: 25px;
		margin-top: -12px;
		margin-left: -70px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-logout_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.header-top ul.header-menu li.entry a:after {
		position: absolute;
		top: 50%;
		right: 0;
		display: inline-block;
		width: 9px;
		height: 12px;
		margin-top: -6px;
		margin-right: 20px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-entry_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.header-top ul.header-menu li.mypage {
		line-height: 50px;
		display: inline-block;
		width: 50%;
	}
	.header-top ul.header-menu li.mypage a {
		font-size: 16px;
		position: relative;
		display: block;
		width: 100%;
		height: 50px;
		padding-top: 0;
		padding-left: 20px;
		text-align: center;
	}
	.header-top ul.header-menu li.mypage a:before {
		position: absolute;
		top: 50%;
		left: 50%;
		display: inline-block;
		width: 23px;
		height: 25px;
		margin-top: -12px;
		margin-left: -60px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-mypage_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.header-top ul.header-menu li.cart {
		line-height: 50px;
		display: inline-block;
		width: 50%;
	}
	.header-top ul.header-menu li.cart a {
		font-size: 16px;
		position: relative;
		display: block;
		width: 100%;
		height: 50px;
		padding-top: 0;
		padding-left: 20px;
		text-align: center;
	}
	.header-top ul.header-menu li.cart a:before {
		position: absolute;
		top: 50%;
		left: 50%;
		display: inline-block;
		width: 24px;
		height: 22px;
		margin-top: -11px;
		margin-left: -53px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-cart_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.header-top ul.header-menu li.sns {
		display: none;
	}
	/* category-nav */
	.category-nav {
		float: none;
		min-width: inherit;
		margin-left: 0;
	}
	.category-nav > ul > li > p {
		position: relative;
		display: block;
		width: 100%;
		padding: 16px 10px;
		color: #3c9faf;
	}
	.category-nav > ul > li.category-nav-campaign > p,
	.category-nav > ul > li.category-nav-category > p {
		color: #fff;
		border-top: rgba(255,255,255,.3) solid 1px;
		background-color: rgba(60,159,175,.9);
	} 
	.category-nav > ul > li {
		font-size: 16px;
		line-height: 1.2;
		position: relative;
		float: none;
		margin-right: 0;
		color: #3c9faf;
		border-bottom: rgba(60,159,175,.3) solid 1px;
	}
	.category-nav > ul li.active > a {
		color: #3c9faf;
	}
	.category-nav > ul > li a {
		position: relative;
		display: block;
		width: 100%;
		padding: 16px 32px 16px 10px;
		color: #3c9faf;
	}
	.category-nav > ul li a:after {
		position: absolute;
		top: 50%;
		right: 010px;
		display: block;
		width: 8px;
		height: 12px;
		margin-top: -6px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-btn_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.category-nav-l2 {
		position: inherit;
		z-index: 33;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		margin-left: 0;
		padding: 0;
		background-color: inherit;
	}
	.active .category-nav-l2 {
		display: block;
	}
	.category-nav-l2:before {
		display: none;
	}
	.category-nav-l2 > li {
		font-size: 16px;
		line-height: 1.2;
		border-top: rgba(60,159,175,.3) solid 1px;
		border-bottom: rgba(255,255,255,.3) solid 1px;
	}
	.category-nav-l2 li a {
		padding: 0 0;
		text-indent: 1em;
		color: #fff;
	}
	.category-nav-l3 > li {
		font-size: 12px;
		line-height: 1;
	}
	.category-nav-l3 > li a {
		color: #d6fef8;
	}
	.nav-close {
		line-height: 45px;
		display: block;
		text-align: right;
		border-bottom: rgba(238,238,238,.27) solid 1px;
		background-color: rgba(60,159,175,.9);
	}
	.nav-close a {
		display: inline-block;
		width: 19px;
		height: 19px;
		margin: 0 15px 0;
		vertical-align: middle;
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-close.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}


/***********
 * footer
 ***********/

#footer {
	position: relative;
	width: 100%;
}

.footer-top {
	display: table;
	width: 100%;
	padding: 40px 0;
}

.footer-top-l {
	display: table-cell;
	width: 315px;
	vertical-align: top;
}

.footer-top-c {
	display: table-cell;
	padding-right: 45px;
	vertical-align: top;
}

.footer-top-r {
	display: table-cell;
	width: 406px;
	vertical-align: top;
}

.footer-top-cart {
	width: 100%;
	text-align: center;
}

.footer-top h3 {
	font-size: 16px;
	font-weight: normal;
	display: inline-block;
	width: 234px;
	margin-bottom: 20px;
	letter-spacing: 1px;
	color: #fff;
	border-bottom: #7dbec6 solid 1px;
}

.footer-logo {
	display: inline-block;
	width: 100%;
}

.footer-logo img {
	width: auto;
	height: auto;
	max-width: 240px;
	max-height: 180px;
}


/* schedule-area */

.schedule-area {
	text-align: center;
}

.schedule-area h4 {
	font-family: 'メイリオ', 'Meiryo', 'Meiryo UI';
	font-size: 13px;
	font-weight: normal;
	line-height: 28px;
	display: inline-block;
	width: 100%;
	height: 28px;
	margin-bottom: 10px;
	text-align: center;
	color: #fff;
	border-radius: 2px;
	background-color: #115fad;
}

.schedule {
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: #115fad solid 1px;
}

.schedule table {
	width: 100%;
	margin: 0 auto 10px;
}

.schedule table th {
	font-size: 13px;
	font-weight: normal;
	padding: 4px;
	text-align: center;
}

.schedule table th.sun {
	color: #b7211e;
}

.schedule table th.sat {
	color: #1b81ac;
}

.schedule table td {
	font-size: 13px;
	font-weight: normal;
	padding: 4px;
	text-align: center;
}

.schedule-date {
	line-height: 25px;
	display: inline-block;
	width: 25px;
	height: 25px;
	text-align: center;
}

.e1 .schedule-date {
	background-color: #115fad;
	color: #fff;
}

.e2 .schedule-date {
	color: #fff;
	background-color: #73c7d3;
}

.e3 .schedule-date {
	color: #333;
	background-color: #cdcdcd;
}

.event-list:after {
	display: block;
	clear: both;
	margin-bottom: 15px;
	content: '';
}

.event-list li {
	line-height: 18px;
	position: relative;
	float: left;
	min-height: 18px;
	margin-right: 15px;
	margin-bottom: 10px;
	padding-left: 25px;
	text-align: left;
}

.event-list li:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 18px;
	height: 18px;
	content: '';
}

.event-list li.event1:before {
	background-color: #115fad;
}

.event-list li.event2 {
	margin-right: 0;
}

.event-list li.event2:before {
	background-color: #73c7d3;
}

.event-list li.event3:before {
	background-color: #cdcdcd;
}

.footer-shoppingguide {
	margin-bottom: 35px;
}

.footer-shoppingguide ul li {
	font-size: 14px;
	float: left;
	margin-right: 22px;
	margin-bottom: 10px;
}

.footer-shoppingguide ul li a {
	color: #fff;
}

.footer-shoppingguide ul li a:hover {
	text-decoration: underline;
	opacity: 1;
}

.footer-sns {
	text-align: left;
}

.footer-sns ul li {
	display: inline-block;
	margin-right: 20px;
}

.footer-sns ul li img {
	width: 26px;
	height: auto;
}

.footer-bottom {
	width: 100%;
	padding: 20px 0;
	text-align: center;
	background-color: #fff;
}

.copyright {
	font-size: 14px;
}

@media only screen and (max-width: 600px) {
	#footer {
		width: 100%;
	}
	.footer-top {
		display: block;
		width: 100%;
		padding: 25px 10px;
	}
	.footer-top-l {
		display: block;
		width: 100%;
	}
	.footer-top-c {
		display: block;
		width: 100%;
		padding-right: 0;
	}
	.footer-top-r {
		display: block;
		width: 100%;
	}
	.footer-top h3 {
		font-size: 16px;
		display: inline-block;
		width: 100%;
		margin-bottom: 20px;
		padding-bottom: 5px;
		text-align: center;
		border-bottom: #7dbec6 solid 1px;
	}
	.footer-logo {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	.footer-top-cart .footer-logo {
		margin-bottom: 0;
	}
	.footer-logo img {
	}
	/* schedule-area */
	.schedule-area {
		width: 100%;
		margin-bottom: 20px;
		text-align: center;
	}
	.schedule-area h4 {
	}
	.schedule {
	}
	.schedule table {
		width: 90%;
		margin: 0 auto 10px;
	}
	.schedule table th {
		font-size: 13px;
		font-weight: normal;
		padding: 4px;
		text-align: center;
	}
	.schedule table th.sun {
		color: #b7211e;
	}
	.schedule table th.sat {
		color: #1b81ac;
	}
	.schedule table td {
		font-size: 13px;
		font-weight: normal;
		padding: 4px;
		text-align: center;
	}
	.schedule-date {
		line-height: 25px;
		display: inline-block;
		width: 25px;
		height: 25px;
		text-align: center;
	}
	.e1 .schedule-date {
		color: #fff;
	}
	.e2 .schedule-date {
		color: #fff;
		background-color: #73c7d3;
	}
	.e3 .schedule-date {
		color: #333;
		background-color: #cdcdcd;
	}
	.event-list li {
		margin-right: 6px;
		margin-bottom: 10px;
		padding-left: 30px;
	}
	.event-list li.event2 {
		margin-right: 5px;
	}
	.footer-shoppingguide {
		margin-bottom: 20px;
	}
	.footer-shoppingguide ul {
		width: 100%;
		text-align: left;
	}
	.footer-shoppingguide ul li {
		font-size: 13px;
		float: none;
		margin-right: 0;
		margin-bottom: 0;
	}
	.footer-shoppingguide ul li a {
		position: relative;
		display: block;
		width: 100%;
		padding: 12px 10px;
		color: #fff;
	}
	.footer-shoppingguide ul li a:after {
		position: absolute;
		top: 50%;
		right: 10px;
		display: block;
		width: 9px;
		height: 13px;
		margin-top: -6px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-nav02_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.footer-sns {
		text-align: center;
	}
	.footer-sns ul li {
		display: inline-block;
		margin:0px 10px;
	}
	.footer-sns ul li:nth-child(3) {
		margin-right: 0;
	}
	.footer-bottom {
		width: 100%;
		padding: 20px 0;
		text-align: center;
		background-color: #fff;
	}
	.copyright {
		font-size: 12px;
		word-break: break-word;
	}
}


/***********
 * main
 ***********/
.main {}

@media only screen and (max-width: 600px) {
	.main {
	}
}


/* main-image */

#main-image {
	position: relative;
	width: 1000px;
	margin: 30px 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;
	height: auto;
	margin: 0 auto;
}

.main-image-slider > ul {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: inline-block;
	overflow: hidden;
}

.main-image-slider > ul > li {
	display: inline;
	float: left;
	overflow: hidden;
	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: 2;
	right: 0;
	bottom: 20px;
	left: 0;
}

.main-image-indicator ul {
	text-align: center;
}

.main-image-indicator ul li {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 8px;
	border: #fff solid 1px;
	border-radius: 50%;
}

@media only screen and (max-width: 600px) {
	#main-image {
		position: relative;
		overflow: hidden;
		width: 100%;
		margin: 0;
		text-align: center;
	}
	#main-image img {
		max-width: 100%;
		max-height: 100%;
	}
	.main-image-slider {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
	.main-image-slider > ul {
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;
		display: inline-block;
		overflow: hidden;
		height: 460px;
	}
	.main-image-slider > ul > li {
		display: inline;
		float: left;
		overflow: hidden;
		width: 270px;
		height: 140px;
		list-style-type: none;
	}
	.main-image-indicator {
		position: absolute;
		z-index: 2;
		right: 0;
		bottom: 6px;
		left: 0;
	}
	.main-image-indicator ul {
		font-size: 0;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.main-image-indicator ul li {
		display: inline-block;
		width: 10px;
		height: 10px;
		margin: 0 4px;
		border: #fff solid 1px;
		border-radius: 50%;
	}
}


/* ttl */
.ttl {
	text-align: center;
	margin: 0px 0px 35px;
}
.ttl h2{
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	line-height: 1;
	letter-spacing: 0.1em;
}
.ttl h3 {
	font: bold 15px 'Hind', sans-serif;
	color: #333;
	letter-spacing: 0.05em;
	font-weight: bold;
}
@media only screen and (max-width: 768px){
.ttl {
	margin: 0px 0px 20px;
}
.ttl h2 {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.2;
}
.ttl h3 {
	font: bold 22px 'Hind', sans-serif;
	line-height: 1.2;
}

}
/*.ttl,
.ttl2 {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 5px;
	text-align: left;
	border-bottom: #eee solid 1px;
}

.ttl h2,
.ttl2 h2 {
	font-size: 24px;
	display: inline;
	margin-right: 20px;
	color: #3c9faf;
}

.ttl h2:after,
.ttl2 h2:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: 430px;
	height: 2px;
	content: '';
	background-color: #3c9faf;
}

.ttl h3,
.ttl2 h3 {
	font-size: 20px;
	font-weight: bold;
	position: relative;
	color: #3c9faf;
}

.ttl2 h3::after {
	position: absolute;
	bottom: -6px;
	left: 0;
	display: inline-block;
	width: 430px;
	height: 2px;
	content: '';
	background-color: #3c9faf;
}



@media only screen and (max-width: 600px) {
	.ttl,
	.ttl2 {
		position: relative;
		margin-bottom: 20px;
		padding: 0 10px 5px;
	}
	.ttl h2,
	.ttl2 h2 {
		font-size: 16px;
		display: inline;
		margin-right: 10px;
		letter-spacing: 1px;
		color: #3c9faf;
	}
	.ttl h2:after,
	.ttl2 h2:after {
		position: absolute;
		bottom: 0;
		left: 0;
		display: inline-block;
		width: 295px;
		height: 2px;
		content: '';
		background-color: #3c9faf;
	}

	.ttl h3,
	.ttl2 h3 {
		font-size: 14px;
		position: static;
	}

	.ttl2 h3::after {
		position: absolute;
		bottom: -1px;
		left: 0;
		display: inline-block;
		width: 160px;
		height: 2px;
		content: '';
		background-color: #3c9faf;
	}
}
*/




/* ranking icon */

.icn-rank {
	font-size: 14px;
	line-height: 44px;
	position: absolute;
	z-index: 2;
	top: 5px;
	left: 5px;
	display: block;
	width: 44px;
	height: 44px;
	text-align: center;
	color: #717171;
	border-radius: 22px;
	background-color: #ececec;
}

.icn-rank1 {
	color: #fff;
	background-color: #aadc75;
}

.icn-rank2 {
	color: #fff;
	background-color: #6a6a6a;
}

.icn-rank3 {
	color: #fff;
	background-color: #4f4e2e;
}

@media only screen and (max-width: 600px) {
	.icn-rank {
		font-size: 12px;
		line-height: 33px;
		width: 33px;
		height: 33px;
		border-radius: 50%;
	}
}


/* btn-area */

.btn-area {
	margin-bottom: 20px;
	text-align: center;
}

.btn-more {
	position: absolute;
	z-index: 1;
	top: 30px;
	right: 0;
}

.btn {
	font-size: 14px;
	font-weight: normal;
	line-height: 34px;
	position: relative;
	display: inline-block;
	width: 160px;
	height: 36px;
	text-align: center;
	color: #fff;
	border-radius: 2px;
	background-color: #3c9faf;
}

.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/yt00005/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: #3c9faf solid 1px;
	border-radius: 2px;
	background-color: #3c9faf;
}

a.btn-back 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/yt00005/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 {
		position: inherit;
		z-index: 1;
		top: 0;
		right: 0;
		padding: 0 10px;
	}
	.btn {
		font-size: 16px;
		font-weight: normal;
		line-height: 45px;
		position: relative;
		display: inline-block;
		width: 100%;
		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/yt00005/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: 40px;
		display: block;
		width: 10px;
		height: 14px;
		margin-top: -8px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-back.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}


/* top-ranking */

#top-ranking {
}

@media only screen and (max-width: 600px) {
	#top-ranking {
	}
}


/* top-salesranking */

#top-salesranking {
	position: relative;
	padding-top: 30px;
}

@media only screen and (max-width: 600px) {
	#top-salesranking {
		padding-top: 30px;
	}
}


/* top-news */

#top-news {
	position: relative;
	padding-top: 30px;
}

#top-news .ttl {
	margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
	#top-news {
		padding-top: 30px;
	}
}


/* news-list */

/*.news-list {
	margin-bottom: 20px;
}

.news-list dl {
	display: table;
	width: 100%;
}

.news-list dl dt {
	font-size: 14px;
	display: table-cell;
	width: 130px;
	padding: 20px 0;
	border-bottom: #9ed9ff dotted 1px;
}

.news-list dl dd {
	font-size: 14px;
	position: relative;
	display: table-cell;
	border-bottom: #9ed9ff dotted 1px;
}

.news-list dl dd:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 10px;
	height: 14px;
	margin-top: -7px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-btn.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.news-list dl dd a {
	display: block;
	width: 100%;
	height: auto;
	padding: 20px 0;
}

.news-list dl dd a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media only screen and (max-width: 600px) {
	.news-list {
		margin-bottom: 15px;
		padding: 0;
	}
	.news-list dl {
		display: block;
		width: 100%;
	}
	.news-list dl dt {
		font-size: 12px;
		display: block;
		width: 100%;
		margin-bottom: 4px;
		padding: 0 10px;
		border: none;
	}
	.news-list dl dd {
		font-size: 12px;
		display: block;
		margin-bottom: 8px;
		padding: 0;
	}
	.news-list dl dd:after {
		display: none;
	}
	.news-list dl dd a {
		display: block;
		width: 100%;
		height: auto;
		padding: 0 10px 10px;
	}
}*/

/* product-list */

.product-list {
	max-width: 970px;
	margin: 0 auto 10px;
}

.product-list-item {
	float: left;
	width: 28.86%;
	margin-right: 6%;
	margin-bottom: 30px;
}
.product-list .product-list-item:nth-child(3n) {
	margin-right: 0;
}
.product-list .product-list-item:nth-child(3n-2) {
	clear: both;
}

.product-list-item-sub,
.product-list-item-4i {
	float: left;
	width: 238px;
	margin-right: 16px;
	margin-bottom: 30px;
}

.product-list-item img,
.product-list-item-sub img,
.product-list-item-4i img {
	width: 100%;
	height: auto;
}

.product-list .product-list-item-sub:nth-child(4n-4),
.product-list .product-list-item-4i:nth-child(4n-3) {
	clear: both;
}

.product-list-item:nth-child(3n) {
	margin-right: 0;
}

.product-list-item-sub:nth-child(4n + 3) {
	margin-right: 0;
}

.product-list-item-4i:nth-child(4n) {
	margin-right: 0;
}

.product-list-item .product-list-photo {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	border: solid 1px #115fad;
}

.product-list-item-sub .product-list-photo,
.product-list-item-4i .product-list-photo {
	position: relative;
	width: 238px;
	margin-bottom: 15px;
}

.product-list-item .product-list-photo img,
.product-list-item-sub .product-list-photo img,
.product-list-item-4i .product-list-photo img {
	display: block;
	max-height: 238px;
	width: auto;
	height: auto;
	margin: auto;
}

.product-list-item .product-list-name,
.product-list-item-sub .product-list-name {
	font-size: 16px;
	line-height: 20px;
	overflow: hidden;
	margin-bottom: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: bold;
}

.product-list-item .product-list-variation,
.product-list-item-sub .product-list-variation {
	font-size: 14px;
	line-height: 20px;
	overflow: hidden;
	margin-bottom: 4px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#top-salesranking .product-list-info {
	height: 68px;
}

.product-list-item-4i .product-list-name {
	font-size: 14px;
	line-height: 20px;
	overflow: hidden;
	height: 40px;
	margin-bottom: 4px;
}

.product-list-item .product-list-price,
.product-list-item-sub .product-list-price,
.product-list-item-4i .product-list-price {
	font-size: 14px;
	line-height: 1.2;
}

.product-list-item .product-list-nonstock,
.product-list-item-sub .product-list-nonstock,
.product-list-item-4i .product-list-nonstock {
	display: inline-block;
	vertical-align: top;
	font-size: 11px;
	line-height: 18px;
	margin-top: 2px;
	margin-right: 6px;
	padding: 0 3px;
	text-align: center;
	color: #f33;
	background: #fff;
}

@media only screen and (max-width: 600px) {
	.product-list {
		margin-bottom: 10px;
		padding: 0 5%;
	}
	.product-list-item {
		float: left;
		width: 50%;
		margin-right: 0;
		margin-bottom: 20px;
		padding: 0 5px 0;
	}
	.product-list-item-sub,
	.product-list-item-4i {
		float: left;
		width: 50%;
		margin-right: 0;
		margin-bottom: 20px;
		padding: 0 5px 0;
	}
	.product-list .product-list-item:nth-child(3n-2) {
		clear: initial;
	}
	.product-list .product-list-item-sub:nth-child(4n-4),
	.product-list .product-list-item-4i:nth-child(4n-3) {
		clear: initial;
	}
	.product-list-item:nth-child(2n-1) ,
	.product-list-item-sub:nth-child(2n-1) ,
	.product-list-item-4i:nth-child(2n-1) {
		clear: both;
	}
	.product-list-item .product-list-photo,
	.product-list-item-sub .product-list-photo,
	.product-list-item-4i .product-list-photo {
		position: relative;
		width: 100%;
		height: auto;
		margin-bottom: 5px;
	}
	.product-list-item .product-list-name,
	.product-list-item-sub .product-list-name,
	.product-list-item-4i .product-list-name {
		font-size: 14px;
		line-height: 20px;
		overflow: hidden;
		margin-bottom: 4px;
	}
	.product-list-item .product-list-price,
	.product-list-item-sub .product-list-price,
	.product-list-item-4i .product-list-price {
		font-size: 12px;
		line-height: 1.2;
	}
}

/* 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 th,
table.payment-content th {
	font-weight: bold;
	width: 240px;
	padding: 20px 0;
	text-align: left;
	border-bottom: #ccc dotted 1px;
}

.about-tbl td,
table.payment-content td {
	padding: 20px 0;
	text-align: left;
	border-bottom: #ccc dotted 1px;
}

@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 {
		font-size: 14px;
		font-weight: bold;
		display: block;
		width: 100%;
		padding: 10px 10px 5px;
		text-align: left;
		border-bottom: none;
	}
	.about-tbl td,
	table.payment-content td {
		font-size: 12px;
		display: block;
		width: 100%;
		padding: 0 10px 10px;
		text-align: left;
	}
	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;
}

/* bnr-area */

.bnr-area {
	font-size: 0;
	width: 100%;
	padding: 55px 0 80px;
	text-align: center;
	background-color: #ededed;
}

.bnr-area .bnr {
	display: inline-block;
	margin: 0 8px;
}

.bnr-area .bnr img {
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 600px) {
	.bnr-area {
		width: 100%;
		margin-bottom: 60px;
		padding: 20px 10px 10px;
	}
	.bnr-area .bnr {
		width: 100%;
		margin: 0 0 10px;
	}
}


.form-select label {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 190px;
	height: 36px;
	vertical-align: middle;
	border: 1px solid #d0d0d0;
	background-color: #fff;
}

.form-select label:after {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 20px;
	display: block;
	width: 18px;
	height: 10px;
	margin-top: -5px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-select-l.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;
}

@media only screen and (max-width: 600px) {
	.form-select label {
		position: relative;
		display: inline-block;
		overflow: hidden;
		width: 100%;
		height: 36px;
		vertical-align: middle;
	}
	.form-select label:after {
		position: absolute;
		z-index: 2;
		top: 50%;
		right: 10px;
		display: block;
		width: 19px;
		height: 10px;
		margin-top: -5px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-select-l_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.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;
	}
}

/* newarrival */

#newarrival {
	position: relative;
}

@media only screen and (max-width: 600px) {
	#newarrival .ttl {
		margin-bottom: 14px;
	}
}


/***********
 * parts
 ***********/


/* msg */

.msg {
	font-size: 14px;
	margin-bottom: 38px;
	padding: 8px 15px;
	text-align: left;
	background-color: #f5f5f5;
}

@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: 8px 15px;
	text-align: left;
	color: #e30000;
	background-color: #f1ede9;
}

@media only screen and (max-width: 600px) {
	.err-msg {
		font-size: 12px;
		margin-right: 10px;
		margin-bottom: 20px;
		margin-left: 10px;
		padding: 10px 10px;
	}
}


/*bread*/

.bread {
	margin-bottom: 20px;
}

.bread ul li {
	font-size: 12px;
	float: left;
	margin-right: 10px;
}

.bread ul li img {
	width: 18px;
	height: auto;
	vertical-align: middle;
}

.bread ul li a:after {
	display: inline-block;
	margin-left: 10px;
	content: '>';
	color: #333;
}

.bread ul li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media only screen and (max-width: 600px) {
	.bread {
		margin-bottom: 15px;
		padding: 5px 10px;
	}
	.bread ul li {
		font-size: 12px;
		float: left;
		margin-right: 8px;
	}
}

/* itemcount */
.item-list-itemcount {
	margin: 10px;
	text-align: right;
}

/* paging */
.paging {
	position: relative;
	margin: 0 auto;
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}

.paging .prev {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -10px;
}

.paging .prev a {
	position: relative;
	padding-left: 24px;
}

.paging .prev a:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 14px;
	height: 20px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-prev.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.paging .next {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -10px;
}

.paging .next a {
	position: relative;
	padding-right: 24px;
}

.paging .next a:after {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 14px;
	height: 20px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-next.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.page-num {
	display: inline-block;
}

.page-num ul {
	font-size: 0;
}

.page-num ul li {
	font-size: 14px;
	display: inline-block;
	margin: 0 15px;
}

.page-num ul li span {
	font-weight: bold;
}

@media only screen and (max-width: 600px) {
	.paging {
		width: 100%;
		margin-top: 10px;
		padding-top: 0;
		padding-bottom: 0;
	}
	.paging .prev {
		left: 10px;
	}
	.paging .prev a span {
		display: none;
	}
	.paging .next {
		right: 10px;
	}
	.paging .next a span {
		display: none;
	}
	.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;
	padding-bottom: 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: inherit;
		top: 0;
		left: 0;
		width: 100%;
		margin-bottom: 14px;
		padding: 0 10px;
		text-align: center;
	}
	.sort-label {
		line-height: 27px;
	}
	.sort-select {
		font-size: 13px;
		position: relative;
		display: inline-block;
		overflow: hidden;
		width: 230px;
		height: 27px;
		vertical-align: middle;
		border: #999 solid 1px;
	}
	.sort-select:after {
		position: absolute;
		z-index: 3;
		top: 50%;
		right: 15px;
		display: block;
		width: 13px;
		height: 7px;
		margin-top: -4px;
		content: '';
		pointer-events: none;
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-select-s.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.sort-select select {
		font-size: 13px;
		line-height: 27px;
		position: relative;
		z-index: 1;
		display: block;
		width: 100%;
		height: 27px;
		margin: 0;
		padding: 0 0 0 10px;
		border: 0;
		outline: none;
		background: none;
		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;
	}
}


/* icon */

 .icn-badge24777:after {
	content: "NEW";
			font-size: 12px;
		line-height: 44px;
		position: absolute;
	top: 5px;
	left: 5px;
	display: block;
	box-sizing: border-box;
	width: 44px;
	height: 44px;
	text-align: center;
	color: #fff;
	border-radius: 22px;
	background-color: #806475;
}
@media only screen and (max-width: 600px) {
	.icn-badge24777:after {
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}
}
.icn-badge24778:after {
	content: "おすすめ";
			font-size: 10px;
		line-height: 12px;
		padding: 11px 5px 9px;
		position: absolute;
	top: 5px;
	left: 5px;
	display: block;
	box-sizing: border-box;
	width: 44px;
	height: 44px;
	text-align: center;
	color: #fff;
	border-radius: 22px;
	background-color: #806475;
}
@media only screen and (max-width: 600px) {
	.icn-badge24778:after {
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}
}
.icn-badge24779:after {
	content: "人気";
			font-size: 12px;
		line-height: 44px;
		position: absolute;
	top: 5px;
	left: 5px;
	display: block;
	box-sizing: border-box;
	width: 44px;
	height: 44px;
	text-align: center;
	color: #fff;
	border-radius: 22px;
	background-color: #806475;
}
@media only screen and (max-width: 600px) {
	.icn-badge24779:after {
		width: 40px;
		height: 40px;
		border-radius: 50%;
	}
}

.icn-reservation::before {
	content: "予約商品";
	width: 58px;
	height: 18px;
	display: block;
	float: left;
	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 {
	width: 96px;
	height: 32px;
	font-size: 16px;
	line-height: 32px;
	margin-right: 10px;
}

/*overlay*/

.overlay {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.9);
}

.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: 10px;
	background-color: #fff;
}

.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/yt00005/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;
		background-color: #fff;
	}
	.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: -25px;
		right: -25px;
	}
	.modal-close a {
		display: block;
		width: 39px;
		height: 39px;
	}
}


/* pagetop */

/*.btn-pagetop {
	position: absolute;
	top: -36px;
	left: 50%;
	margin-left: -40px;
}

.btn-pagetop a {
	position: relative;
	display: block;
	width: 80px;
	height: 36px;
	border-radius: 3px 3px 0 0;
	background-color: #3c9faf;
}

.btn-pagetop a:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 20px;
	height: 14px;
	margin-top: -7px;
	margin-left: -10px;
	content: '';
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/btn-pagetop.png);
	background-repeat: no-repeat;
	background-size: cover;
}

@media only screen and (max-width: 600px) {
	.btn-pagetop {
		position: absolute;
		top: -25px;
		left: 50%;
		margin-left: -36px;
	}
	.btn-pagetop a {
		position: relative;
		display: block;
		width: 72px;
		height: 25px;
		border-radius: 3px 3px 0 0;
		background-color: #3c9faf;
	}
	.btn-pagetop a:after {
		position: absolute;
		top: auto;
		bottom: 3px;
		left: 50%;
		display: block;
		width: 17px;
		height: 12px;
		margin-top: 0;
		margin-left: -9px;
		content: '';
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/btn-pagetop_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
}*/


/***********
 * module
 ***********/

.sp {
	display: none !important;
}

@media only screen and (max-width: 600px) {
	.sp {
		display: inline-block !important;
	}
}
/***送料について***/

.shipment-tbl {
	width: 100%;
	margin-top: 30px;
	border-top: #eee solid 1px;
}

.shipment-tbl th {
	font-weight: bold;
	width: 200px;
	padding: 20px 0;
	text-align: left;
	border-top: #eee solid 1px;
}

.shipment-tbl-ptn1 th{
	width: 250px;
	padding-right: 20px;
}

.shipment-tbl td {
	padding: 20px 0;
	text-align: left;
	border-top: #eee solid 1px;
}

.shipment-tbl caption {
	font-size: 16px;
	padding: 4px 12px 3px;
	color: #3c9faf;
}

.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: #fff;
	background-color: #8fd5ff;
}

.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: #d3f2ff;
}

.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;
		border-top: none;
	}
	.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
 ***********/

.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;
}

@media only screen and (max-width: 600px) {
	.contents-lp .item-order {
		width: 100%;
	}
}


/***********
 * login
 ***********/

.contents-login .main {
	width: 100%;
}


/***********
 * 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: #333;}
.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: #333;}
.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: #666;}
.wysiwig-data a:hover{color: #8d613b;}

.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:#fff;}
.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;}
}


/*======================
　追加css
======================*/

fieldset,img {
  border: 0;
  vertical-align: bottom;
}

address,caption,cite,code,dfn,em,var {
  font-style: normal;
  font-weight: normal;
}
ul {
  list-style: none;
}
ol li {
	list-style-position: outside;
	list-style: decimal;
	margin-left: 25px;
	margin-bottom:5px;
}

caption,th {
	text-align: left;
	font-weight: normal;
}
h1,h2,h3,h4,h5,h6 {
  font-size: 100%;
  font-weight: normal;
}

a{
	color: #333333;
	text-decoration: none;
}

img {
	max-width:100%;
	height:auto;
	padding: 0;
	margin: 0;
}
*:focus {
	outline: none;
}
button, input, select, textarea {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese","Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
}
input[type=text],select {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans Japanese","Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
}
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}
* {
	/*-webkit-appearance: none;*/
}
.clearfix:after {
	content:"";
	display:block;
	clear:both;
}
/*a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}*/

.ma_b5 {margin-bottom: 5px;}
.ma_b10 {margin-bottom: 10px;}
.ma_b15 {margin-bottom: 15px;}
.ma_b20 {margin-bottom: 20px;}
.ma_b21 {margin-bottom: 21px;}
.ma_b25 {margin-bottom: 25px;}
.ma_b30 {margin-bottom: 30px;}
.ma_r10 {margin-right: 10px;}
.pdt0 {padding-top:0 !important;}
table, tr, th, td {
    border-collapse: collapse;
	text-align:left;
	font-weight:normal;
	vertical-align:top;
}
.pc {display:block!important;}
.tr {text-align:right;}
.sp {display:none !important;}


/*---- FOR tab ----*/
@media only screen and (max-width: 768px){
body{
	color: #000;
	font-size: 1.35rem;
	-webkit-text-size-adjust: 100%;
	letter-spacing:0.05em;
	line-height:160% !important;
	
}
.pc {display:none !important;}
.sp {display:block!important;}
.img100 {width:100%; height:auto;}
.img90 {width:90%; height:auto;}
.img80 {width:80%; height:auto;}
.img70 {width:70%; height:auto;}
input {
	font-size: 16px;
	/* transform: scale(0.9); */
}

}


/*---- FOR SP ----*/
@media only screen and (max-width: 768px){
body{
	color: #000;
	font-size: 1.2rem;
	-webkit-text-size-adjust: 100%;
	letter-spacing:0.05em;
	line-height:160% !important;
	
}
.pc {display:none !important;}
.sp {display:block!important;}
.img100 {width:100%; height:auto;}
.img90 {width:90%; height:auto;}
.img80 {width:80%; height:auto;}
.img70 {width:70%; height:auto;}
}


.yu-mincho {
font-family: "Times New Roman", Times,"游明朝体", "Yu Mincho", YuMincho, "HG明朝B",'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','HG明朝E','ＭＳ Ｐ明朝', serif;
}
.hind {
	font-family: 'Hind', sans-serif;
}
.crimson{font-family: 'Crimson Text', serif;}

.over{
	text-decoration:none;
	opacity: 1;
	transition:0.3s color ease-out;
	-moz-transition:0.3s color ease-out;
	-ms-transition:0.3s color ease-out;
	-o-transition:0.3s color ease-out;
	-webkit-transition:0.3s color ease-out;
}
.over:hover{
	opacity: 0.7;
}



.wrap {
	position: relative;
}
.innWrap {
	max-width: 1150px;
	margin: 0px auto;
	padding: 0px 10px;
}
.innWrap1 {
	max-width: 1380px;
	margin: 0px auto;
	padding: 0px 10px 80px;
}
.innWrap2 {
	max-width: 755px;
	margin: 0px auto;
	padding: 0px 10px 80px;
}
.innWrap3 {
	max-width: 710px;
	margin: 0px auto;
	padding: 0px 10px;
}
@media only screen and (max-width: 768px){
.wrap {
}
.innWrap {
	margin: 0px 5%;
	padding: 0 0;
}
.innWrap1 {
	margin: 0px 5%;
	padding: 0 0 40px;
}
.innWrap2 {
	margin: 0px 5%;
	padding: 0 0 40px;
}
.innWrap3 {
	margin: 0px 5%;
	padding: 0 0 40px;
}

}


/****************************************

HEADER

*****************************************/
header{
	position: relative;
	z-index: 999;
	margin: 0 0 20px;
}
header .sup {
	padding: 10px;
	text-align: center;
	border-bottom: 3px solid #0068b7;
}
header .sup h1 {
	font-size: 12px;
}

.triggerBtn {
	display:none;
}



/*---- FOR TAB ----*/
@media only screen and (max-width: 768px){
header{
	margin: 0;
}
header .sup {
	padding: 0px;
}
header .sup h1 {
	display: none;
}

.site-header.transform h1 {
	width: 150px;
	padding: 15px 0 0;
}
.open .header h1 {
	text-indent: -9999px;
	display: block;
}
.header h1 img {}
.triggerBtn {display:none;}
#gnav {width: 100%; background-size: 50% auto; background: #CB2837;}
#gnav2 {
	display:none;
}
.triggerBtn { display: block;}
.header .hd_link {
	display: none;
}
#sub_gnav {
	display: none;
}
}


/*---- FOR SP ----*/
@media only screen and (max-width: 640px){
header{}
.header .hd_sup { padding: 0px 10px; height:  60px;}
.header .hd_sup h1 {margin: 20px 0px 0px 0px;width: 45%;}
.header .hd_sup .hd_contact {display:none;}
.triggerBtn {display:none;}
#gnav {width: 100%; background-size: 50% auto; background: #CB2837;}
.triggerBtn { display: block;}
.header .hd_link {
	display: none;
}
#sub_gnav {
	display: none;
}
}
@media only screen and (max-width: 450px){
.header .hd_sup h1 {}
}


/* Toggle Button */
.header #nav-toggle {
	display: none;
	position: absolute;
	right: 10px;
	top: 17px;
	width: 35px;
	height: 35px;
	cursor: pointer;
	z-index: 101;
	background: #FFF;
	padding: 5px;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	background-color: #CB2837;
}
#nav-toggle span:nth-child(1) {
	top: 9px;
}
#nav-toggle span:nth-child(2) {
	top: 17px;
}
#nav-toggle span:nth-child(3) {
	top: 25px;
}


#sp_navi {display:none;}


@media only screen and (max-width: 768px){
.pc {display:none !important;}
.sp {display:block!important;}
#nav-toggle , .header2 #nav-toggle {
	display: block;
	}

	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 17px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 17px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
#sp_navi{
	display: none;
	width: 100%;
	clear: both;
	position: absolute;
	top: 60px;
	background: #fff;
	box-sizing: content-box;
	z-index: 9997;
	padding: 10px 5%;
}
	#sp_navi li{
		width:50%;
		float:left;
		box-sizing: border-box;
		font-size: 11px;
}

	#sp_navi li:nth-child(odd){
		border-right:1px solid #dfdfdf;
		border-bottom:1px solid #dfdfdf;
}
	#sp_navi li:nth-child(even){
		border-bottom:1px solid #dfdfdf;
}

#sp_navi ul .link2 {
	background: #FFF;
}
#sp_navi ul .link3 a {
	color:#CB2837;
}
#sp_navi ul .link3 {
	background: #CB2837;
}
#sp_navi ul .link3 a {
	color:#FFF;
}
#sp_navi ul li a {
    display: block;
    padding: 12px 5px 12px 10px;
}
#sp_navi ul .blank::after{
	margin: 0 0 0 5px;
	content: " ";
	display: inline-block;
	width: 12px;
	height: 10px;
	background: url(../images/common/blank_icon_w.png);
	background-size: contain;
	vertical-align: middle;
}
}





/* ----------------------------------------
 *  Core Style:
 * ---------------------------------------- */
#slideMenu {
	display:none;
}
#slideMenu2 {
	display:none;
}
@media only screen and (max-width: 768px){
#slideMenu {
	display: block;
}
#slideMenu2 {
	display: block;
}
.lastSidebar {
	width: 80%;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	overflow: scroll;
	background: #115fad;
}
#lastOverlay {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(0, 0, 0, 0.5);
}
body.noscroll {
	width: 100%;
	position: fixed;
	left: 0;
	right: 0;
	overflow: hidden;
}
}






@media only screen and (max-width: 768px){
/*++++++++++++++++++++++++++++++++++++
+
+　スマホナビゲーション
+
+++++++++++++++++++++++++++++++++++++*/
#slideMenu h2 {
	margin: 0;
	padding: 24px 16px;
}
.globalNavi {
	margin: 0;
}
#slideMenu .title {
	padding: 15px 0;
	text-align: center;
}
#slideMenu .title img {
	width: auto;
	height: 20px;
	margin: 0 auto;
}
.globalNavi ul {margin: 0 5%;}
.globalNavi .nav1 {
	font-size: 18px;
}
.globalNavi .nav1 a {
	text-align: center;
	padding: 15px 0px;
	display: block;
	color: #FFF;
	text-decoration: none;
	border-bottom: solid 1px #fff;
}
.globalNavi .nav1 li a:hover {
	color: #FFF;
	text-decoration: none;
}
.globalNavi .nav2 {
	font-size: 15px;
	font-weight: bold;
	width: 100% !important;
	border-bottom: solid 1px #fff;
}
.globalNavi .nav2  .accordion {
	text-align: center;
	padding: 15px 0px;
	display: block;
	color: #FFF;
	text-decoration: none;
}
.globalNavi .nav2 .accordion {
	cursor: pointer;
}
.globalNavi .nav2 .accordion span:after {
	background : none;
	content: "+";
	font-family: FontAwesome;
	margin: 0 0 0 10px;
	font-size: 16px;
	color: #fff;
}
.globalNavi .nav2 .accordion .open:after {
	background : none;
	content: "-";
	font-family: FontAwesome;
	margin: 0 0 0 10px;
	font-size: 16px;
	color: #fff;
}
.globalNavi .nav2 ul {margin: 0 5%; padding: 0 0 20px;}
.globalNavi .nav2 ul li {
	width: 100%;
	border-bottom: none;
}
.globalNavi .nav2 ul li:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}

.globalNavi .nav2 .brd-lk {
	width:48%;
	float: left;
	text-align: center;
	box-sizing: border-box;
	margin: 0 0 10px;
}
.globalNavi .nav2 .brd-lk:nth-child(even) {
	float: right;
}
.globalNavi .nav2 .brd-lk a {
	font-size: 12px;
	color: #fff;
}
.globalNavi .nav2 .brd-lk .img {
	margin: 0 0 5px;
}

.globalNavi .nav2 .brd-lk .sttl:after{
	margin: 0 0 0 5px;
	content: " ";
	display: inline-block;
	width: 9px;
	height: 7px;
	background: url(../img/icon_blank_w.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}



.triggerBtn {
	width: 60px;
	height: 60px;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9999;
}

.menuTrigger,
.menuTrigger span {
	display: inline-block;
	box-sizing: border-box;
	transition: all .4s;
}
.menuTrigger {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	/* 50%でもOK */
	/* 円の色 */
	text-align: center;
}
.menuTrigger p {
	position: absolute;
	bottom: 5px;
	left: 0;
	text-align: center;
	font-size: 1.1rem;
	font-weight: bold;
	color: #FFF;
	right: 0px;
}
.menuTrigger.active {
	/* 円の色 */
	background: none;
}

.menuTrigger span {
	width: 30px;
	height: 2px;
	position: absolute;
	background-color: #333;
	right: 14px;
}
.menuTrigger.active span {
	background-color: #fff;
}

.menuTrigger span:nth-of-type(1) {
	top: 19px;
}
.menuTrigger span:nth-of-type(2) {
	top: 28px;
}
.menuTrigger span:nth-of-type(3) {
	top: 37px;
}
.menuTrigger.active span:nth-of-type(1) , .menuTrigger.active span:nth-of-type(2) , .menuTrigger.active span:nth-of-type(3) {
	/* 円の色 */
}


.menuTrigger.active span:nth-of-type(1) {
}
.menuTrigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menuTrigger.active span:nth-of-type(3) {
}
.menuTrigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(2px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
.menuTrigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menuTrigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}

#lastOverlay {
	background: rgba(0, 0, 0, 0.5);
}



}










/*ぱんくず CSS*/
#pankuzu {
	line-height: 45px;
	padding: 0 10px;
}
#pankuzu ul {
	max-width: 1080px;
	margin: 0 auto;
}
#pankuzu ul li {
	margin: -1px 8px 0px 0px;
	display: inline-block;
	font-size: 13px;
}
#pankuzu ul li:last-child {
}
#pankuzu ul li a {
	font-weight: bold;
}
#pankuzu ul li:after {
  content: ">";
  padding: 0 0 0 10px;
}
#pankuzu ul li:last-of-type:after {
  content: none;
}
#pankuzu ul li a:hover {
	text-decoration: none;
}
@media only screen and (max-width: 768px){
#pankuzu{
	margin: 0px 0px 15px;
	padding: 10px 5% 0;
	line-height: 1.5;
}
#pankuzu ul li {
	margin: 0px 5px 0px 0px;
	font-size: 1.1rem;
}
#pankuzu ul li:last-child {margin: 0;}
#pankuzu ul li a {
}
#pankuzu ul li:after {
  padding: 0 0 0 5px;
}
#pankuzu ul li:last-of-type:after {
  content: none;
}
#pankuzu ul li a:hover {
	text-decoration: none;
}

}








/******************************
　inview css
******************************/
/*動き1*/
.sli-up1 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.slideInUp1 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:1s;
}
/*動き2*/
.sli-up2 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.slideInUp2 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:1.2s;
}
/*動き3*/
.sli-up3 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.slideInUp3 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:1.5s;
}
/*動き4*/
.sli-up4 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.slideInUp4 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:1.7s;
}
/*動き5*/
.sli-up5 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.slideInUp5 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:2s;
}
/*動き6*/
.sli-up6 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.slideInUp6 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:2.2s;
}
/*トップページ動き1*/
.top-sliup1 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.top-sip1 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:1s;
}
/*トップページ動き2*/
.top-sliup2 {
	opacity: 0;
	transform: translate(0px, 30px);
	-webkit-transform: translate(0px, 30px);
}
.top-sip2 {
	opacity: 1.0 !important;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	transition-delay:0.5s;
	transition-duration:1.5s;
}




/***************
　ボタンのボバー
***************/
.butt , .butt_w {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #fff !important;
}
.butt_w:hover {
	color: #eb5c01 !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #eb5c01;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt_w::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before , .butt_w:hover::before {
	transform: scale(1, 1);
}





/* ----------------------------------------
 *  ページトップ
 * ---------------------------------------- */
.btn-pagetop {
	top: -40px;
	right: 0;
	left: 0;
	position: absolute;
	margin: 0 auto;
	width: 75px;
}
.btn-pagetop img {
	width: auto;
	height: 18px;
}
.btn-pagetop a {
	background: #115fad url(https://image.raku-uru.jp/01/9105/25/pagetop_1602296512278.png) no-repeat center center;
	background-size: 28px 16px;
	text-decoration: none;
	width: 70px;
	height: 70px;
	text-align: center;
	display: block;
	vertical-align: middle;
	/* border-radius */
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	box-shadow: 3px 4px 0px 0px #053868;
	/*! height: 80px; */
	box-sizing: border-box;
	line-height: 1.3;
	text-indent: -9999px;
}
.btn-pagetop a:hover {
	opacity:0.7;
}

@media only screen and (max-width: 768px){
.btn-pagetop {width: 45px;height: 45px;top: -20px;}
.btn-pagetop img {
}
.btn-pagetop a {width: 45px;height: 45px;padding: 15px 0;background-size: 19px auto;box-shadow: 2px 3px 0px 0px #053868;}

}


#head {
	position: fixed;
	right: 0px;
	width: 100%;
	top: 0;
	background: rgba(255,255,255,0.9);
	z-index: 9999;
}
@media only screen and (max-width: 768px){
#head {
	display:none;
}
}






.header .nav-area {
	position: absolute;
	top: 0;
	right: 0;
}







/*Gナビ*/
.gnav-wrapper {
	width: 100%;
}
.gnav-wrapper .gnav {
	max-width: 975px;
	margin: 0 auto;
}
.gnav-wrapper .gnav .logo {
	width: 29.74%;
	float: left;
	padding: 32px 0 33px;
}
.gnav-wrapper .gnav .nav {
	width: 66%;
	float: right;
	padding: 25px 0 0;
	text-align: right;
	letter-spacing: -0.4em;
}
.gnav-wrapper .gnav .nav li {
    display: inline-block;
    vertical-align: top;
    padding: 0 4% 0 0;
    letter-spacing: normal;
}
.gnav-wrapper .gnav .nav li:nth-child(3){
    padding: 0 8% 0 0;
}
.gnav-wrapper .gnav .nav li:nth-child(4) {
	width: 8%;
	padding-top: 15px;
	padding-right:3%;
}
.gnav-wrapper .gnav .nav li:nth-child(5) {
	width: 9%;
	padding-top: 12px;
}
.gnav-wrapper .gnav .nav li:nth-child(1) a:before{
	margin: 0 auto 5px;
	content: " ";
	display: block;
	width: 32px;
	height: 32px;
	background: url(https://image.raku-uru.jp/01/9105/27/nav_icon01_1602296512898.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}
.gnav-wrapper .gnav .nav li:nth-child(2) a:before{
	margin: 0 auto 5px;
	content: " ";
	display: block;
	width: 32px;
	height: 32px;
	background: url(https://image.raku-uru.jp/01/9105/33/nav_icon02_1602296514635.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}
.gnav-wrapper .gnav .nav li:nth-child(3) a:before{
	margin: 0 auto 5px;
	content: " ";
	display: block;
	width: 32px;
	height: 32px;
	background: url(https://image.raku-uru.jp/01/9105/23/nav_icon03_1602296511733.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}
/*.gnav-wrapper .gnav .nav li:nth-child(4) a:before{
	margin: 17px auto 0;
	content: " ";
	display: block;
	width: 32px;
	height: 32px;
	background: url(../images/common/icon_twitter.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}
.gnav-wrapper .gnav .nav li:nth-child(5) a:before{
	margin: 15px auto 0;
	content: " ";
	display: block;
	width: 32px;
	height: 32px;
	background: url(../images/common/icon_facebook.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}*/





.gnav-wrapper .gnav .nav li a {
	font-size: 13px;
	text-align: center;
	line-height: 1.5;
	display: block;
	font-weight: bold;
}
.gnav-wrapper .gnav:after , .gnav-wrapper .gnav .nav:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}



@media only screen and (max-width: 1015px){
.gnav-wrapper .gnav .nav {
	width: 80%;
}

}
@media only screen and (max-width: 840px){
.gnav-wrapper .gnav .nav li {
    padding: 0 2% 0 0;
}

}

@media only screen and (max-width: 768px){
.gnav-wrapper .gnav {height: 60px; position: relative;}
.gnav-wrapper .gnav .logo {
	width: auto;
	margin: 0 auto;
	float: none;
	padding: 16px;
	text-align: center;
}
.gnav-wrapper .gnav .logo img {
	width: auto;
	height: 25px;
}
.gnav-wrapper .gnav .nav {
	display: none;
}
}


header .sub {
	background: #e2f2f9;
}
header .sub .inn {
	max-width: 845px;
	margin: 0 auto;
	padding: 0px 10px;
}
header .sub .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}

header .sub .search_container{
	box-sizing: border-box;
	position: relative;
	padding: 12px 10px 11px;
	border-radius: 20px;
	width: 83%;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	float: right;
	background: #fff;
}
header .sub .search_container input[type="text"]{
  border: none;
}
header .sub .search_container input[type="text"]:focus {
  outline: 0;
}
header .sub .search_container input[type="submit"]{
	cursor: pointer;
	border: none;
	background: url(https://image.raku-uru.jp/01/9105/24/seach-grass_1602296512001.png) no-repeat center top;
	background-size: contain;
	color: #fff;
	outline : none;
	width: 22px;
	height: 22px;
	float: right;
}

/*ボックス全体*/
header .sub .accbox {
	padding: 0;/*最大幅*/
	width: 83%;
}

/*ラベル*/
header .sub .accbox label {
    display: block;
    padding: 13px 12px 12px;
    color: #0068b7;
    font-weight: bold;
    background: #fff;
    cursor :pointer;
    transition: all 0.5s;
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    text-align: center;
    font-size: 17px;
    position: relative;
}

/*アイコンを表示*/
header .sub .accbox label:after {
    content: '＋';
    font-size: 28px;
    line-height: 0;
    position: absolute;
    top: 53%;
    right: 3%;
    -webkit-transform : translateY(-50%);
    transform : translateY(-50%);
}

/*ラベルホバー時*/
header .sub .accbox label:hover {
}

/*チェックは隠す*/
header .sub .accbox input {
    display: none;
}

/*中身を非表示にしておく*/
header .sub .accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
header .sub .cssacc:checked + label + .accshow {
	height: auto;
	padding: 10px;
	opacity: 1;
}

header .sub .accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
header .sub .cssacc:checked + label:after {
    content: '−';
}

@media only screen and (max-width: 768px){
header .sub {
	display: none;
}

}




.intro_copy {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin: 30px 0px 55px;
	line-height: 1.5;
}
.intro_copy span {
	color: #125FAD;
}
@media only screen and (max-width: 768px){
.intro_copy{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: 30px 3% 35px;
}
.sign h3 {
	font-size: 34px;
	text-align: center;
}
}


@media only screen and (max-width: 768px){
.menu-trigger {
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 17px;
  width: 30px;
  height: 3px;
  background-color: #0068b8;
  transition: all .5s .2s;
}
.menu-trigger.active span {}
.menu-trigger span:nth-of-type(1) {
  top: 15px;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 27px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  top: 39px;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}
.sp-nav {
	width: 100%;
	height: 90%;
	background-color: rgba(0,104,183, 0.9);
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	z-index: 5;
	font-size: 17px;
	overflow: scroll;
	padding: 20px 0 0;
}
.sp-nav h1 {
	font-size: 14px;
	color:#fff;
	margin: 0 5%;
}
.sp-nav ul {
	padding: 20px 0;
}
.sp-nav ul li {
	padding: 10px 0;
}
.sp-nav ul li a {color: #fff;}
.sp-nav .nav1 {
	margin: 0 5% 30px
	;
	padding: 0;
}
.sp-nav .nav1:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sp-nav .nav1 li {
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.7);
	font-size: 15px;
}
.sp-nav .nav1 li:nth-child(4) {
	width: 15%;
	border-bottom: none;
	float: left;
	margin: 5px 0 0;
}
.sp-nav .nav1 li:nth-child(5) {
	width: 15%;
	border-bottom: none;
	float: left;
}
.sp-nav .nav1 li:nth-child(4) img , .sp-nav .nav1 li:nth-child(5) img {
	width: 32px;
	height: auto;
}
.sp-nav .search_container{
	box-sizing: border-box;
	position: relative;
	padding: 13px 10px 11px;
	border-radius: 20px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	background: #fff;
	margin: 0 5% 30px;
}
.sp-nav .search_container input[type="text"]{
  border: none;
}
.sp-nav .search_container input[type="text"]:focus {
  outline: 0;
}
.sp-nav .search_container input[type="submit"]{
	cursor: pointer;
	border: none;
	background: url(../images/common/seach-grass.png) no-repeat center top;
	background-size: contain;
	color: #fff;
	outline : none;
	width: 22px;
	height: 22px;
	float: right;
}

/*ボックス全体*/
.sp-nav .accbox {
	/*最大幅*/
	width: auto;
	float: none;
	margin: 0 5% 20px;
}

/*ラベル*/
.sp-nav .accbox label {
    display: block;
    padding : 15px 12px 13px;
    color: #0068b7;
    font-weight: bold;
    background: #fff;
    cursor :pointer;
    transition: all 0.5s;
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    text-align: center;
    font-size: 17px;
    position: relative;
}

/*アイコンを表示*/
.sp-nav .accbox label:after {
    content: '＋';
    font-size: 28px;
    line-height: 0;
    position: absolute;
    top: 53%;
    right: 3%;
    -webkit-transform : translateY(-50%);
    transform : translateY(-50%);
}

/*ラベルホバー時*/
.sp-nav .accbox label:hover {
}

/*チェックは隠す*/
.sp-nav .accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.sp-nav .accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.sp-nav .cssacc:checked + label + .accshow {
	height: auto;
	padding: 10px;
	opacity: 1;
	background: #fff;
	margin: 3px 0 0;
}

.sp-nav .accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.sp-nav .cssacc:checked + label:after {
    content: '−';
}



.sp-nav .nav2 {
	margin: 0 5% 30px;
	padding: 0;
}
.sp-nav .nav2 li {
	color: #fff;
	border-bottom: 1px solid rgba(103,85,69,0.5);
	border-right: 1px solid rgba(103,85,69,0.5);
	font-size: 15px;
	width: 50%;
	float:left;
	box-sizing: border-box;
}
.sp-nav .nav2 li:nth-child(even) {
	border-right: none;
}
.sp-nav .nav2 li:last-child {
}
.sp-nav .nav2 a {
	padding: 0 3%;
	font-size: 12px;
}
.sp-nav .nav2:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility:hidden;
}


.sp-nav .nav3 {
	margin: 0 5%;
}
.sp-nav .nav3 .text {
	font-size: 14px;
	margin: 0 0 15px;
	text-align: center;
}
.sp-nav .nav3 .bnr1 {
	margin: 0px 0px 15px;
	background: #675545;
}
.sp-nav .nav3 .bnr2 {
	margin: 0px 0px 50px;
	background: #675545;
}
.sp-nav .nav3 .bnr1 , .sp-nav .nav3 .bnr2 {
	box-shadow: 4px 4px rgba(103,85,69,0.3);
}
.sp-nav .nav3 .bnr1 , .sp-nav .nav3 .bnr2 {
    border-radius:6px;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
}
.sp-nav .nav3 .bnr1 a {
	color: #FFF;
	text-align: center;
	display: block;
	font-size: 22px;
	padding: 0.3em;
}
.sp-nav .nav3 .bnr2 a {
	color: #FFF;
	text-align: center;
	display: block;
	font-size: 16px;
	padding: 0.5em;
}
.sp-nav .nav3 .bnr1 span {
	font-size: 10px;
}
}
.wp-block-table {
	margin: 0;
}
.wp-block-table table tbody tr:nth-child(1) {
	background:#f1f1f1;
}
.wp-block-table table td {
	border: solid 1px #ccc;
	text-align: center;
	padding: 10px;
}

@media only screen and (max-width: 768px){
.wp-block-table {
	width: 100%;
	overflow: scroll;
}
}


/* ===============================================
404
=============================================== */
.p404_st {
	font-size: 16px;
	line-height: 40px;
	font-weight: bold;
	background-color: #CB2837;
	color: #FFF;
	text-align: center;
	margin: 30px 0px 60px;
}
.p404_textB {
	text-align: center;
	margin: 0px 0px 30px;
}
.p404_textB .text1 {
	font-size: 80px;
	line-height: 1.5em;
	font-weight: bold;
}
.p404_textB .text2 {
	font-size: 20px;
	line-height: 1.5em;
	color: #125FAD;
	font-weight: bold;
}
.p404_textB .text3 {
	font-size: 20px;
	line-height: 1.5em;
}
.p404_text {
	line-height: 1.5em;
	text-align: center;
	margin: 0px 0px 120px;
}
@media only screen and (max-width: 768px){
.ttl1.p404 {
	margin: 30px 0px;
}
.p404_text {
	text-align: left;
	margin: 0px 0px 60px;
}
}


/* ===============================================
フッター
=============================================== */
#footer {
	background: #e2f2f9;
	position: relative;
}
#footer .copyright {
	padding: 18px 0px;
	font-size: 11px;
	text-align: center;
	line-height: 0;
	background: #fff;
	border-top: 3px solid #0068b7;
}
#footer .innWrap {
	max-width: 970px;
	padding: 80px 0 35px;
}
#footer .innWrap .f-intro {
	text-align: center;
	margin: 0px 0px 40px;
}
#footer .f-contact .tel {
	float: left;
	width: 48%;
}
#footer .f-contact .mail {
	float: right;
	width: 43%;
}
#footer .f-contact .tel .sttl {
	font-size: 22px;
	text-align: justify;
	margin: 0;
}
#footer .f-contact .tel .num {
	font-size: 40px;
	text-align: justify;
	margin: 0px 0px 5px;
	letter-spacing: 0.04em;
	line-height: 1;
}
#footer .f-contact .tel .time {
	font-size: 12px;
}
#footer .f-contact .mail .sttl {
	font-size: 22px;
	text-align: justify;
	margin: 0px 0px 8px;
}
#footer .f-contact .mail .btn {
}
#footer .f-contact .mail .btn a {
	display: block;
	color: #675545;
	background: #FFF;
	text-align: center;
	line-height: 45px;
	padding: 0px 10px;
	font-size: 18px;
}
@media only screen and (max-width: 768px){
#footer {
}
#footer .copyright {
	font-size: 10px;
}
#footer .innWrap {
	padding: 55px 0 20px;
	max-width: 100%;
}
#footer .innWrap .f-intro {
	margin: 0px 0px 25px;
	text-align: left;
}
#footer .f-contact .tel {
	float: none;
	width: auto;
	margin: 0 0 20px;
}
#footer .f-contact .mail {
	float: none;
	width: auto;
}
#footer .f-contact .tel .sttl {
	font-size: 18px;
	margin: 0px 0px 15px;
	font-weight: bold;
}
#footer .f-contact .tel .num {
	font-size: 28px;
}
#footer .f-contact .tel .time {
	font-size: 10px;
}
#footer .f-contact .mail .sttl {
	font-size: 18px;
	margin: 0px 0px 10px;
	font-weight: bold;
}
#footer .f-contact .mail .btn {
}
#footer .f-contact .mail .btn a {
	line-height: 35px;
	font-size: 14px;
}
}

/*========================================
　ページャー
========================================*/
.pager {
    overflow: hidden;
    list-style: none;
    text-align:center;
}
 
.pager span,
.pager a {
    font-size: 16px;
}
.pager ul .current {
	color: #f57246;
}

.pager ul li {
    display: inline-block;
    padding: 0.6em 0;
    margin: 0 0.4em;
}
 
.pager li a {
	display: block;
    text-decoration: none;
}
 
.pager li a:hover {}

@media only screen and (max-width: 768px){
.pager {}
.pager ul li {
    padding: 0.3em 0;
    margin: 0 0.5em;
}
.pager span,
.pager a {
    font-size: 14px;
} 
.pager a:hover {}


}



.portfolio .innWrap:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
#side-nav {
	float: left;
	width: 16.5%;
}
#side-nav .cate {
	margin: 0px 0px 40px;
}
#side-nav .cate li:nth-child(1) {
	font-family: 'Crimson Text', serif;
	font-size: 24px;
	color: #706b64;
	margin: 0 0 20px;
	position:relative;
}
#side-nav .cate li:nth-child(1):after{
	display:inline-block;
	background : #706b64;
	content: " ";
	margin: 0 0 0 13px;
	width: 23px;
	height: 1px;
	position: absolute;
	top: 50%;
	-webkit-transform : translateY(-50%);
	transform : translateY(-50%);
}
#side-nav .cate li {
	font-size: 13px;
	margin: 0px 0px 10px 15px;
}
#side-nav .cate li.current {
	color: #f57246;
}
#side-nav .cate li:last-child {
	margin-bottom: 0;
}
#contents {
	float: right;
	width: 79.56%;
}
@media only screen and (max-width: 768px){
.portfolio .innWrap:after {}
#side-nav {
	float: none;
	width: auto;
}
#side-nav .cate {
	margin: 0px 0px 20px;
}
#side-nav .cate li:nth-child(1) {
	font-size: 18px;
	margin: 0 0 15px;
}
#side-nav .cate li:nth-child(1):after{
	margin: 0 0 0 10px;
	width: 35px;
}
#side-nav .cate li {
	margin: 0px 0px 5px 10px;
}
#side-nav .cate li:last-child {
	margin-bottom: 0;
}
#contents {
	float: none;
	width: auto;
	padding: 0 0 40px;
}
}
#footer .innWrap:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
#footer .f-info {
	float: left;
	width: 35.56%;
}
#footer .f-nav {
	float: right;
	width: 50%;
}
#footer .f-info .calender {
	text-align: center;
	margin: 0px 0px 20px;
}
#footer .f-info .logo {
	margin: 0px 0px 5px;
}
#footer .f-info .address {
	margin: 0px 0px 10px;
}
#footer .f-info .com-link a:before{
	margin: 0 5px 0 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 9px;
	background: url(https://image.raku-uru.jp/01/9105/31/icon-blank_1602296514087.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
}
#footer .f-nav .nav {
	padding: 0px 0px 25px;
	position: relative;
}
#footer .f-nav .nav:after{
	content: " ";
	background: #0068b7;
	width:65%;
	height: 1px;
	display:inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
}
#footer .f-nav .nav .sttl {
	font-weight: bold;
	color: #0068B7;
	font-size: 18px;
	margin: 0px 0px 20px;
}
#footer .f-nav .nav li {
	margin: 0 0 10px;
}
#footer .f-nav .nav li:last-child {
	margin: 0;
}
#footer .f-nav .nav li a:before{
	margin: 0 5px 0 0;
	content: " ";
	display: inline-block;
	width: 7px;
	height: 11px;
	background: url(https://image.raku-uru.jp/01/9105/32/arrow01_1602296514373.png) no-repeat;
	background-size: contain;
	vertical-align: inherit;
}
#footer .f-nav .sns-nav {
	padding: 25px 0 0;
}
#footer .f-nav .sns-nav li {
	float: left;
}
#footer .f-nav .sns-nav .sttl {
	font-weight: bold;
	color: #0068B7;
	font-size: 16px;
	margin: 5px 30px 0px 0px;
}
#footer .f-nav .sns-nav li:nth-child(2) {
	width: 28px;
	height: auto;
	margin: 6px 15px 0px 0px;
}
#footer .f-nav .sns-nav li:nth-child(3) {
	width: 32px;
	height: auto;
}
@media only screen and (max-width: 768px){
#footer .innWrap:after {}
#footer .f-info {
	float: none;
	width: auto;
}
#footer .f-nav {
	float: none;
	width: auto;
	margin: 0 0 15px;
}
#footer .f-info .calender {
	margin: 0px 0px 10px;
}
#footer .f-info .logo {width: 58%;}
#footer .f-info .address {
	margin: 0px 0px 5px;
}
#footer .f-info .com-link a:before{
	width: 8px;
	height: 7px;
}
#footer .f-nav .nav {
	padding: 0px 0px 15px;
}
#footer .f-nav .nav:after{
	width: 100%;
}
#footer .f-nav .nav .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
#footer .f-nav .nav li {
	margin: 0 0 5px;
}
#footer .f-nav .nav li:last-child {
	margin: 0;
}
#footer .f-nav .nav li a:before{
	width: 5px;
	height: 9px;
}
#footer .f-nav .sns-nav {
	padding: 15px 0 0;
}
#footer .f-nav .sns-nav:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
#footer .f-nav .sns-nav li {
	float: left;
}
#footer .f-nav .sns-nav .sttl {
	font-size: 14px;
	margin: 7px 20px 0px 0px;
}
#footer .f-nav .sns-nav li:nth-child(2) {
	width: 25px;
	margin: 5px 20px 0px 0px;
}
#footer .f-nav .sns-nav li:nth-child(3) {
	width: 31px;
}
}

/*********************************************/

.sec-lot {
	margin: 0px auto;
	max-width: 795px;
	padding: 0px 0px 165px;
}
.sec-lot:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-lot .img {
	float: left;
	width: 40%;
}
.sec-lot .text {
	float: right;
	width: 51%;
}
.sec-lot .text .copy {
	font-size: 23px;
	font-weight: bold;
	margin: 0px 0px 25px;
}
@media only screen and (max-width: 768px){
.sec-lot {
	margin: 0px 5%;
	padding: 0px 0px 60px;
}
.sec-lot:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-lot .img {
	float: none;
	width: auto;
	margin: 0 0 20px;
	text-align:center;
}
.sec-lot .text {
	float: none;
	width: auto;
}
.sec-lot .text .copy {
	font-size: 16px;
	margin: 0px 0px 10px;
}
}
.header .sub .inn .left-box {
	border-right: 2px solid #FFF;
	float: left;
	width: 50%;
	padding: 20px 0px 25px;
	box-sizing: border-box;
}
.header .sub .inn .right-box {
	float: right;
	width: 50%;
	padding: 20px 0px 25px;
	box-sizing: border-box;
}
.header-search {
	position: static;
	z-index: 11;
	top: 11px;
	left: 0;
	right: 0;
	width: 84%;
	margin: 0 auto;
}

.header-search-form {
	position: relative;
}

.header-search input[type=text] {
	font-size: 14px;
	line-height: 35px;
	display: inline-block;
	width: 300px;
	height: 48px;
	padding: 0 50px 0 20px;
	border: none;
	border-radius: 2px;
	outline: 0 none;
	background-color: #fff;
}

.header-search-form-btn {
	line-height: 48px;
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	overflow: hidden;
	width: 48px;
	padding: 0;
	cursor: pointer;
	text-align: center;
	border: none;
	-webkit-border-radius: 0;
	border-radius: 2px;
	background: none;
	background-color: #fff;
	-webkit-appearance: none;
}



@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}
.sec-lot .btn1 {
	max-width: 250px;
	margin: 30px auto 0;
}
.sec-lot .btn1 a {
	text-decoration: none;
}
.sec-lot .btn1 a:after{
	background: none;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}


/*********************************************/
.sec-infomation {
	margin: 0px auto 130px;
	max-width: 970px;
	position: relative;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
	border-bottom: 1px solid #0068B7;
}
.sec-infomation .news dl dt {
	width: 15%;
	padding: 1em;
	float: left;
}
.sec-infomation .news dl dd {
	width: 80%;
	padding: 1em 1em 1em 0;
	float: right;
}
.sec-infomation .news dl a {
	display: block;
}
.sec-infomation .btn1 {
	width: 20%;
	position:absolute;
	top:0;
	right: 0;
}

@media only screen and (max-width: 768px){
.sec-infomation {
	margin: 0px 5% 60px;
	position: static;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
}
.sec-infomation .news dl dt {
	width: 100%;
	padding: 1em 0 0 0;
	float: none;
}
.sec-infomation .news dl dd {
	width: 100%;
	padding: 0.5em 0 1em 0;
	float: none;
}
.sec-infomation .news dl a {
}
.sec-infomation .btn1 {
	width: 50%;
	position: static;
	left: 0;
	margin: 0 auto;
}

}


/*********************************************/
.sec-recommend {
	margin: 0px auto 200px;
	max-width: 970px;
}
.sec-recommend .inn {
	padding: 0 0 95px;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	float: left;
	width: 28%;
	margin: 0px 8% 0px 0px;
}
.sec-recommend .goods:last-child {
	margin: 0px;
}
.sec-recommend .inn .goods .img {
	text-align: center;
	margin: 0px 0px 20px;
	border: 1px solid #0068B7;
	overflow: hidden;
	width: 100%;
	height: 238px;
}
.sec-recommend .inn .goods .img img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .img img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .sttl {
	font-size: 17px;
	font-weight: bold;
	margin: 0px 0px 15px;
}
.sec-recommend .btn1 {
	margin: 0 auto;
}

@media only screen and (max-width: 768px){
.sec-recommend {
	margin: 0 5% 50px;
}
.sec-recommend .inn {
	padding: 0;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	width: 48%;
	margin: 0 0 10px;
}
.sec-recommend .goods:nth-child(even) {
	float: right;
}
.sec-recommend .goods:last-child {}
.sec-recommend .inn .goods .img {
	margin: 0px 0px 10px;
	height: auto;
}
.sec-recommend .inn .goods .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
.sec-recommend .btn1 {}

}


/*********************************************/
.sec-about {
	background: url(../images/index/about-bg.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 170px;
}
.sec-about .inn {
	margin: 0px auto;
	max-width: 970px;
	position: relative;
	min-height: 450px;
}
.sec-about .inn .text {
	position: absolute;
	left: 0px;
	top: -35px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: absolute;
	top: -40px;
	right: 0px;
	width: 62%;
}
.sec-about .inn .text .copy {
	font-size: 40px;
	margin: 0px 0px 35px;
	font-weight: bold;
	line-height: 1.6;
}
.sec-about .inn .text p {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.8;
}
.sec-about .inn .btn2 {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
}

@media only screen and (max-width: 768px){
.sec-about {
	background: url(../images/index/about-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 70px;
}
.sec-about .inn {
	margin: 0px 5%;
	min-height: 450px;
}
.sec-about .inn .text {
	position: static;
	top: 0;
	padding: 30px 0 10px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: static;
	top: auto;
	right: auto;
	width: 88%;
	margin: 0 auto;
}
.sec-about .inn .text .copy {
	font-size: 22px;
	margin: 0px 0px 15px;
	line-height: 1.5;
}
.sec-about .inn .text p {
	font-size: 14px;
	line-height: 1.6;
}
.sec-about .inn .btn2 {
	bottom: -15px;
}

}


/*********************************************/
.sec-reason {
	background: url(../images/index/rea-bg.png) no-repeat center top;
	background-size:cover;
	margin: 0 0 160px;
}
.sec-reason .inn {
	margin: 0px auto;
	max-width: 970px;
	padding: 90px 0px 80px;
}
.sec-reason .inn .copy {
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	margin: 0px 0px 40px;
}
.sec-reason .inn ul {
	text-align:center;
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	letter-spacing: normal;
	vertical-align:middle;
	width: 21.64%;
	display:inline-block;
	margin: 0 2.5% 0 0;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

@media only screen and (max-width: 768px){
.sec-reason {
	background: url(../images/index/rea-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0 0 50px;
}
.sec-reason .inn {
	margin: 0px 5%;
	padding: 45px 0px 40px;
}
.sec-reason .inn .copy {
	font-size: 24px;
	margin: 0px 0px 20px;
	line-height: 1.4;
}
.sec-reason .inn ul {
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	width: 46%;
	display:inline-block;
	margin: 5px;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

}


@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}


/*********************************************/
.sec-infomation {
	margin: 0px auto 130px;
	max-width: 970px;
	position: relative;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
	border-bottom: 1px solid #0068B7;
}
.sec-infomation .news dl dt {
	width: 15%;
	padding: 1em;
	float: left;
}
.sec-infomation .news dl dd {
	width: 80%;
	padding: 1em 1em 1em 0;
	float: right;
}
.sec-infomation .news dl a {
	display: block;
}
.sec-infomation .btn1 {
	width: 20%;
	position:absolute;
	top:0;
	right: 0;
}

@media only screen and (max-width: 768px){
.sec-infomation {
	margin: 0px 5% 60px;
	position: static;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
}
.sec-infomation .news dl dt {
	width: 100%;
	padding: 1em 0 0 0;
	float: none;
}
.sec-infomation .news dl dd {
	width: 100%;
	padding: 0.5em 0 1em 0;
	float: none;
}
.sec-infomation .news dl a {
}
.sec-infomation .btn1 {
	width: 50%;
	position: static;
	left: 0;
	margin: 0 auto;
}

}


/*********************************************/
.sec-recommend {
	margin: 0px auto 200px;
	max-width: 970px;
}
.sec-recommend .inn {
	padding: 0 0 95px;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	float: left;
	width: 28%;
	margin: 0px 8% 0px 0px;
}
.sec-recommend .goods:last-child {
	margin: 0px;
}
.sec-recommend .inn .goods .img {
	text-align: center;
	margin: 0px 0px 20px;
	border: 1px solid #0068B7;
	overflow: hidden;
	width: 100%;
	height: 238px;
}
.sec-recommend .inn .goods .img img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .img img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .sttl {
	font-size: 17px;
	font-weight: bold;
	margin: 0px 0px 15px;
}
.sec-recommend .btn1 {
	margin: 0 auto;
}

@media only screen and (max-width: 768px){
.sec-recommend {
	margin: 0 5% 50px;
}
.sec-recommend .inn {
	padding: 0;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	width: 48%;
	margin: 0 0 10px;
}
.sec-recommend .goods:nth-child(even) {
	float: right;
}
.sec-recommend .goods:last-child {}
.sec-recommend .inn .goods .img {
	margin: 0px 0px 10px;
	height: auto;
}
.sec-recommend .inn .goods .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
.sec-recommend .btn1 {}

}


/*********************************************/
.sec-about {
	background: url(../images/index/about-bg.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 170px;
}
.sec-about .inn {
	margin: 0px auto;
	max-width: 970px;
	position: relative;
	min-height: 450px;
}
.sec-about .inn .text {
	position: absolute;
	left: 0px;
	top: -35px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: absolute;
	top: -40px;
	right: 0px;
	width: 62%;
}
.sec-about .inn .text .copy {
	font-size: 40px;
	margin: 0px 0px 35px;
	font-weight: bold;
	line-height: 1.6;
}
.sec-about .inn .text p {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.8;
}
.sec-about .inn .btn2 {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
}

@media only screen and (max-width: 768px){
.sec-about {
	background: url(../images/index/about-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 70px;
}
.sec-about .inn {
	margin: 0px 5%;
	min-height: 450px;
}
.sec-about .inn .text {
	position: static;
	top: 0;
	padding: 30px 0 10px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: static;
	top: auto;
	right: auto;
	width: 88%;
	margin: 0 auto;
}
.sec-about .inn .text .copy {
	font-size: 22px;
	margin: 0px 0px 15px;
	line-height: 1.5;
}
.sec-about .inn .text p {
	font-size: 14px;
	line-height: 1.6;
}
.sec-about .inn .btn2 {
	bottom: -15px;
}

}


/*********************************************/
.sec-reason {
	background: url(../images/index/rea-bg.png) no-repeat center top;
	background-size:cover;
	margin: 0 0 160px;
}
.sec-reason .inn {
	margin: 0px auto;
	max-width: 970px;
	padding: 90px 0px 80px;
}
.sec-reason .inn .copy {
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	margin: 0px 0px 40px;
}
.sec-reason .inn ul {
	text-align:center;
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	letter-spacing: normal;
	vertical-align:middle;
	width: 21.64%;
	display:inline-block;
	margin: 0 2.5% 0 0;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

@media only screen and (max-width: 768px){
.sec-reason {
	background: url(../images/index/rea-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0 0 50px;
}
.sec-reason .inn {
	margin: 0px 5%;
	padding: 45px 0px 40px;
}
.sec-reason .inn .copy {
	font-size: 24px;
	margin: 0px 0px 20px;
	line-height: 1.4;
}
.sec-reason .inn ul {
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	width: 46%;
	display:inline-block;
	margin: 5px;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

}


@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}


/*********************************************/
.sec-infomation {
	margin: 0px auto 130px;
	max-width: 970px;
	position: relative;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
	border-bottom: 1px solid #0068B7;
}
.sec-infomation .news dl dt {
	width: 15%;
	padding: 1em;
	float: left;
}
.sec-infomation .news dl dd {
	width: 80%;
	padding: 1em 1em 1em 0;
	float: right;
}
.sec-infomation .news dl a {
	display: block;
}
.sec-infomation .btn1 {
	width: 20%;
	position:absolute;
	top:0;
	right: 0;
}

@media only screen and (max-width: 768px){
.sec-infomation {
	margin: 0px 5% 60px;
	position: static;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
}
.sec-infomation .news dl dt {
	width: 100%;
	padding: 1em 0 0 0;
	float: none;
}
.sec-infomation .news dl dd {
	width: 100%;
	padding: 0.5em 0 1em 0;
	float: none;
}
.sec-infomation .news dl a {
}
.sec-infomation .btn1 {
	width: 50%;
	position: static;
	left: 0;
	margin: 0 auto;
}

}


/*********************************************/
.sec-recommend {
	margin: 0px auto 200px;
	max-width: 970px;
}
.sec-recommend .inn {
	padding: 0 0 95px;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	float: left;
	width: 28%;
	margin: 0px 8% 0px 0px;
}
.sec-recommend .goods:last-child {
	margin: 0px;
}
.sec-recommend .inn .goods .img {
	text-align: center;
	margin: 0px 0px 20px;
	border: 1px solid #0068B7;
	overflow: hidden;
	width: 100%;
	height: 238px;
}
.sec-recommend .inn .goods .img img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .img img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .sttl {
	font-size: 17px;
	font-weight: bold;
	margin: 0px 0px 15px;
}
.sec-recommend .btn1 {
	margin: 0 auto;
}

@media only screen and (max-width: 768px){
.sec-recommend {
	margin: 0 5% 50px;
}
.sec-recommend .inn {
	padding: 0;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	width: 48%;
	margin: 0 0 10px;
}
.sec-recommend .goods:nth-child(even) {
	float: right;
}
.sec-recommend .goods:last-child {}
.sec-recommend .inn .goods .img {
	margin: 0px 0px 10px;
	height: auto;
}
.sec-recommend .inn .goods .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
.sec-recommend .btn1 {}

}


/*********************************************/
.sec-about {
	background: url(../images/index/about-bg.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 170px;
}
.sec-about .inn {
	margin: 0px auto;
	max-width: 970px;
	position: relative;
	min-height: 450px;
}
.sec-about .inn .text {
	position: absolute;
	left: 0px;
	top: -35px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: absolute;
	top: -40px;
	right: 0px;
	width: 62%;
}
.sec-about .inn .text .copy {
	font-size: 40px;
	margin: 0px 0px 35px;
	font-weight: bold;
	line-height: 1.6;
}
.sec-about .inn .text p {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.8;
}
.sec-about .inn .btn2 {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
}

@media only screen and (max-width: 768px){
.sec-about {
	background: url(../images/index/about-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 70px;
}
.sec-about .inn {
	margin: 0px 5%;
	min-height: 450px;
}
.sec-about .inn .text {
	position: static;
	top: 0;
	padding: 30px 0 10px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: static;
	top: auto;
	right: auto;
	width: 88%;
	margin: 0 auto;
}
.sec-about .inn .text .copy {
	font-size: 22px;
	margin: 0px 0px 15px;
	line-height: 1.5;
}
.sec-about .inn .text p {
	font-size: 14px;
	line-height: 1.6;
}
.sec-about .inn .btn2 {
	bottom: -15px;
}

}


/*********************************************/
.sec-reason {
	background: url(../images/index/rea-bg.png) no-repeat center top;
	background-size:cover;
	margin: 0 0 160px;
}
.sec-reason .inn {
	margin: 0px auto;
	max-width: 970px;
	padding: 90px 0px 80px;
}
.sec-reason .inn .copy {
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	margin: 0px 0px 40px;
}
.sec-reason .inn ul {
	text-align:center;
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	letter-spacing: normal;
	vertical-align:middle;
	width: 21.64%;
	display:inline-block;
	margin: 0 2.5% 0 0;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

@media only screen and (max-width: 768px){
.sec-reason {
	background: url(../images/index/rea-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0 0 50px;
}
.sec-reason .inn {
	margin: 0px 5%;
	padding: 45px 0px 40px;
}
.sec-reason .inn .copy {
	font-size: 24px;
	margin: 0px 0px 20px;
	line-height: 1.4;
}
.sec-reason .inn ul {
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	width: 46%;
	display:inline-block;
	margin: 5px;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

}


@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}

/*********************************************/
.sec-infomation {
	margin: 0px auto 130px;
	max-width: 970px;
	position: relative;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
	border-bottom: 1px solid #0068B7;
}
.sec-infomation .news dl dt {
	width: 15%;
	padding: 1em;
	float: left;
}
.sec-infomation .news dl dd {
	width: 80%;
	padding: 1em 1em 1em 0;
	float: right;
}
.sec-infomation .news dl a {
	display: block;
}
.sec-infomation .btn1 {
	width: 20%;
	position:absolute;
	top:0;
	right: 0;
}

@media only screen and (max-width: 768px){
.sec-infomation {
	margin: 0px 5% 60px;
	position: static;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
}
.sec-infomation .news dl dt {
	width: 100%;
	padding: 1em 0 0 0;
	float: none;
}
.sec-infomation .news dl dd {
	width: 100%;
	padding: 0.5em 0 1em 0;
	float: none;
}
.sec-infomation .news dl a {
}
.sec-infomation .btn1 {
	width: 50%;
	position: static;
	left: 0;
	margin: 0 auto;
}

}


/*********************************************/
.sec-recommend {
	margin: 0px auto 200px;
	max-width: 970px;
}
.sec-recommend .inn {
	padding: 0 0 95px;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	float: left;
	width: 28%;
	margin: 0px 8% 0px 0px;
}
.sec-recommend .goods:last-child {
	margin: 0px;
}
.sec-recommend .inn .goods .img {
	text-align: center;
	margin: 0px 0px 20px;
	border: 1px solid #0068B7;
	overflow: hidden;
	width: 100%;
	height: 238px;
}
.sec-recommend .inn .goods .img img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .img img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .sttl {
	font-size: 17px;
	font-weight: bold;
	margin: 0px 0px 15px;
}
.sec-recommend .btn1 {
	margin: 0 auto;
}

@media only screen and (max-width: 768px){
.sec-recommend {
	margin: 0 5% 50px;
}
.sec-recommend .inn {
	padding: 0;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	width: 48%;
	margin: 0 0 10px;
}
.sec-recommend .goods:nth-child(even) {
	float: right;
}
.sec-recommend .goods:last-child {}
.sec-recommend .inn .goods .img {
	margin: 0px 0px 10px;
	height: auto;
}
.sec-recommend .inn .goods .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
.sec-recommend .btn1 {}

}


/*********************************************/
.sec-about {
	background: url(../images/index/about-bg.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 170px;
}
.sec-about .inn {
	margin: 0px auto;
	max-width: 970px;
	position: relative;
	min-height: 450px;
}
.sec-about .inn .text {
	position: absolute;
	left: 0px;
	top: -35px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: absolute;
	top: -40px;
	right: 0px;
	width: 62%;
}
.sec-about .inn .text .copy {
	font-size: 40px;
	margin: 0px 0px 35px;
	font-weight: bold;
	line-height: 1.6;
}
.sec-about .inn .text p {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.8;
}
.sec-about .inn .btn2 {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
}

@media only screen and (max-width: 768px){
.sec-about {
	background: url(../images/index/about-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 70px;
}
.sec-about .inn {
	margin: 0px 5%;
	min-height: 450px;
}
.sec-about .inn .text {
	position: static;
	top: 0;
	padding: 30px 0 10px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: static;
	top: auto;
	right: auto;
	width: 88%;
	margin: 0 auto;
}
.sec-about .inn .text .copy {
	font-size: 22px;
	margin: 0px 0px 15px;
	line-height: 1.5;
}
.sec-about .inn .text p {
	font-size: 14px;
	line-height: 1.6;
}
.sec-about .inn .btn2 {
	bottom: -15px;
}

}


/*********************************************/
.sec-reason {
	background: url(../images/index/rea-bg.png) no-repeat center top;
	background-size:cover;
	margin: 0 0 160px;
}
.sec-reason .inn {
	margin: 0px auto;
	max-width: 970px;
	padding: 90px 0px 80px;
}
.sec-reason .inn .copy {
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	margin: 0px 0px 40px;
}
.sec-reason .inn ul {
	text-align:center;
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	letter-spacing: normal;
	vertical-align:middle;
	width: 21.64%;
	display:inline-block;
	margin: 0 2.5% 0 0;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

@media only screen and (max-width: 768px){
.sec-reason {
	background: url(../images/index/rea-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0 0 50px;
}
.sec-reason .inn {
	margin: 0px 5%;
	padding: 45px 0px 40px;
}
.sec-reason .inn .copy {
	font-size: 24px;
	margin: 0px 0px 20px;
	line-height: 1.4;
}
.sec-reason .inn ul {
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	width: 46%;
	display:inline-block;
	margin: 5px;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

}


@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}


/*********************************************/
.sec-infomation {
	margin: 0px auto 130px;
	max-width: 970px;
	position: relative;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
	border-bottom: 1px solid #0068B7;
}
.sec-infomation .news dl dt {
	width: 15%;
	padding: 1em;
	float: left;
}
.sec-infomation .news dl dd {
	width: 80%;
	padding: 1em 1em 1em 0;
	float: right;
}
.sec-infomation .news dl a {
	display: block;
}
.sec-infomation .btn1 {
	width: 20%;
	position:absolute;
	top:0;
	right: 0;
}

@media only screen and (max-width: 768px){
.sec-infomation {
	margin: 0px 5% 60px;
	position: static;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
}
.sec-infomation .news dl dt {
	width: 100%;
	padding: 1em 0 0 0;
	float: none;
}
.sec-infomation .news dl dd {
	width: 100%;
	padding: 0.5em 0 1em 0;
	float: none;
}
.sec-infomation .news dl a {
}
.sec-infomation .btn1 {
	width: 50%;
	position: static;
	left: 0;
	margin: 0 auto;
}

}


/*********************************************/
.sec-recommend {
	margin: 0px auto 200px;
	max-width: 970px;
}
.sec-recommend .inn {
	padding: 0 0 95px;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	float: left;
	width: 28%;
	margin: 0px 8% 0px 0px;
}
.sec-recommend .goods:last-child {
	margin: 0px;
}
.sec-recommend .inn .goods .img {
	text-align: center;
	margin: 0px 0px 20px;
	border: 1px solid #0068B7;
	overflow: hidden;
	width: 100%;
	height: 238px;
}
.sec-recommend .inn .goods .img img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .img img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .sttl {
	font-size: 17px;
	font-weight: bold;
	margin: 0px 0px 15px;
}
.sec-recommend .btn1 {
	margin: 0 auto;
}

@media only screen and (max-width: 768px){
.sec-recommend {
	margin: 0 5% 50px;
}
.sec-recommend .inn {
	padding: 0;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	width: 48%;
	margin: 0 0 10px;
}
.sec-recommend .goods:nth-child(even) {
	float: right;
}
.sec-recommend .goods:last-child {}
.sec-recommend .inn .goods .img {
	margin: 0px 0px 10px;
	height: auto;
}
.sec-recommend .inn .goods .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
.sec-recommend .btn1 {}

}


/*********************************************/
.sec-about {
	background: url(../images/index/about-bg.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 170px;
}
.sec-about .inn {
	margin: 0px auto;
	max-width: 970px;
	position: relative;
	min-height: 450px;
}
.sec-about .inn .text {
	position: absolute;
	left: 0px;
	top: -35px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: absolute;
	top: -40px;
	right: 0px;
	width: 62%;
}
.sec-about .inn .text .copy {
	font-size: 40px;
	margin: 0px 0px 35px;
	font-weight: bold;
	line-height: 1.6;
}
.sec-about .inn .text p {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.8;
}
.sec-about .inn .btn2 {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
}

@media only screen and (max-width: 768px){
.sec-about {
	background: url(../images/index/about-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 70px;
}
.sec-about .inn {
	margin: 0px 5%;
	min-height: 450px;
}
.sec-about .inn .text {
	position: static;
	top: 0;
	padding: 30px 0 10px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: static;
	top: auto;
	right: auto;
	width: 88%;
	margin: 0 auto;
}
.sec-about .inn .text .copy {
	font-size: 22px;
	margin: 0px 0px 15px;
	line-height: 1.5;
}
.sec-about .inn .text p {
	font-size: 14px;
	line-height: 1.6;
}
.sec-about .inn .btn2 {
	bottom: -15px;
}

}


/*********************************************/
.sec-reason {
	background: url(../images/index/rea-bg.png) no-repeat center top;
	background-size:cover;
	margin: 0 0 160px;
}
.sec-reason .inn {
	margin: 0px auto;
	max-width: 970px;
	padding: 90px 0px 80px;
}
.sec-reason .inn .copy {
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	margin: 0px 0px 40px;
}
.sec-reason .inn ul {
	text-align:center;
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	letter-spacing: normal;
	vertical-align:middle;
	width: 21.64%;
	display:inline-block;
	margin: 0 2.5% 0 0;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

@media only screen and (max-width: 768px){
.sec-reason {
	background: url(../images/index/rea-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0 0 50px;
}
.sec-reason .inn {
	margin: 0px 5%;
	padding: 45px 0px 40px;
}
.sec-reason .inn .copy {
	font-size: 24px;
	margin: 0px 0px 20px;
	line-height: 1.4;
}
.sec-reason .inn ul {
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	width: 46%;
	display:inline-block;
	margin: 5px;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

}


@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}


/*********************************************/
.sec-infomation {
	margin: 0px auto 130px;
	max-width: 970px;
	position: relative;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
	border-bottom: 1px solid #0068B7;
}
.sec-infomation .news dl dt {
	width: 15%;
	padding: 1em;
	float: left;
}
.sec-infomation .news dl dd {
	width: 80%;
	padding: 1em 1em 1em 0;
	float: right;
}
.sec-infomation .news dl a {
	display: block;
}
.sec-infomation .btn1 {
	width: 20%;
	position:absolute;
	top:0;
	right: 0;
}

@media only screen and (max-width: 768px){
.sec-infomation {
	margin: 0px 5% 60px;
	position: static;
}
.sec-infomation .news dl:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-infomation .news dl {
}
.sec-infomation .news dl dt {
	width: 100%;
	padding: 1em 0 0 0;
	float: none;
}
.sec-infomation .news dl dd {
	width: 100%;
	padding: 0.5em 0 1em 0;
	float: none;
}
.sec-infomation .news dl a {
}
.sec-infomation .btn1 {
	width: 50%;
	position: static;
	left: 0;
	margin: 0 auto;
}

}


/*********************************************/
.sec-recommend {
	margin: 0px auto 200px;
	max-width: 970px;
}
.sec-recommend .inn {
	padding: 0 0 95px;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	float: left;
	width: 28%;
	margin: 0px 8% 0px 0px;
}
.sec-recommend .goods:last-child {
	margin: 0px;
}
.sec-recommend .inn .goods .img {
	text-align: center;
	margin: 0px 0px 20px;
	border: 1px solid #0068B7;
	overflow: hidden;
	width: 100%;
	height: 238px;
}
.sec-recommend .inn .goods .img img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .img img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.sec-recommend .inn .goods .sttl {
	font-size: 17px;
	font-weight: bold;
	margin: 0px 0px 15px;
}
.sec-recommend .btn1 {
	margin: 0 auto;
}

@media only screen and (max-width: 768px){
.sec-recommend {
	margin: 0 5% 50px;
}
.sec-recommend .inn {
	padding: 0;
}
.sec-recommend .inn:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.sec-recommend .goods {
	width: 48%;
	margin: 0 0 10px;
}
.sec-recommend .goods:nth-child(even) {
	float: right;
}
.sec-recommend .goods:last-child {}
.sec-recommend .inn .goods .img {
	margin: 0px 0px 10px;
	height: auto;
}
.sec-recommend .inn .goods .sttl {
	font-size: 16px;
	margin: 0px 0px 10px;
}
.sec-recommend .btn1 {}

}


/*********************************************/
.sec-about {
	background: url(../images/index/about-bg.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 170px;
}
.sec-about .inn {
	margin: 0px auto;
	max-width: 970px;
	position: relative;
	min-height: 450px;
}
.sec-about .inn .text {
	position: absolute;
	left: 0px;
	top: -35px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: absolute;
	top: -40px;
	right: 0px;
	width: 62%;
}
.sec-about .inn .text .copy {
	font-size: 40px;
	margin: 0px 0px 35px;
	font-weight: bold;
	line-height: 1.6;
}
.sec-about .inn .text p {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.8;
}
.sec-about .inn .btn2 {
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -30px;
}

@media only screen and (max-width: 768px){
.sec-about {
	background: url(../images/index/about-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0px 0px 70px;
}
.sec-about .inn {
	margin: 0px 5%;
	min-height: 450px;
}
.sec-about .inn .text {
	position: static;
	top: 0;
	padding: 30px 0 10px;
}
.sec-about .inn .text span {
	color:#0068b7;
}
.sec-about .inn .img {
	position: static;
	top: auto;
	right: auto;
	width: 88%;
	margin: 0 auto;
}
.sec-about .inn .text .copy {
	font-size: 22px;
	margin: 0px 0px 15px;
	line-height: 1.5;
}
.sec-about .inn .text p {
	font-size: 14px;
	line-height: 1.6;
}
.sec-about .inn .btn2 {
	bottom: -15px;
}

}


/*********************************************/
.sec-reason {
	background: url(../images/index/rea-bg.png) no-repeat center top;
	background-size:cover;
	margin: 0 0 160px;
}
.sec-reason .inn {
	margin: 0px auto;
	max-width: 970px;
	padding: 90px 0px 80px;
}
.sec-reason .inn .copy {
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
	margin: 0px 0px 40px;
}
.sec-reason .inn ul {
	text-align:center;
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	letter-spacing: normal;
	vertical-align:middle;
	width: 21.64%;
	display:inline-block;
	margin: 0 2.5% 0 0;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

@media only screen and (max-width: 768px){
.sec-reason {
	background: url(../images/index/rea-bg_sp.png) no-repeat center top;
	background-size: cover;
	margin: 0 0 50px;
}
.sec-reason .inn {
	margin: 0px 5%;
	padding: 45px 0px 40px;
}
.sec-reason .inn .copy {
	font-size: 24px;
	margin: 0px 0px 20px;
	line-height: 1.4;
}
.sec-reason .inn ul {
	letter-spacing: -0.4em;
}
.sec-reason .inn ul li {
	width: 46%;
	display:inline-block;
	margin: 5px;
}
.sec-reason .inn ul li:last-child {
	margin: 0;
}

}


@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width: 768px){
}



#main {
	margin: 0px 0px 100px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}
/*#main .main-slide img {
	width: 100%;
	height: 555px;
	object-fit: cover;
}*/
.object-fit-img {
	object-fit: cover;
	font-family: 'object-fit: cover;'
}

@media only screen and (max-width: 1150px){

}
@media only screen and (max-width: 768px){
#main {
	margin: 0px 0px 50px;
}
#main .main-slide img {
	width: 100%;
	height: auto;
}

}

h2.ttl {
	font: bold 30px 'Hind', sans-serif;
	color: #0068b7;
	text-align: center;
	line-height: 1.5;
	margin: 0px 0px 35px;
	letter-spacing: 0.1em;
}
h2.ttl p {
	font-size: 15px;
	color: #333;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px){
h2.ttl {
	font: bold 22px 'Hind', sans-serif;
	margin: 0px 0px 20px;
	line-height: 1.3;
}
h2.ttl p {
	font-size: 14px;
}

}

/***************
　ボタンのボバー
***************/
.butt {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
}
.butt:hover {
	color: #125FAD !important;
}
.butt::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #fff;
	transform-origin: center center;
	transform: scale(0, 1);
	transition: transform .3s;
}
.butt:hover::before {
	transform: scale(1, 1);
}
.btn1 {
	max-width: 180px;
	text-align: center;
}
.btn1 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	box-shadow: 4px 4px #053868;
	padding: 1.1em 1.5em 1em;
	position:relative;
}
.btn1 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1em;
}
.btn2 {
	max-width: 350px;
	text-align: center;
}
.btn2 a {
	background: #0068b7;
	display: block;
	color: #FFF;
	box-shadow: 4px 4px #053868;
	padding: 1.5em 1.5em 1.3em;
	position:relative;
	font-size: 18px;
	font-weight: bold;
}
.btn2 a:after{
	margin: 0;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 17px;
	background: url(../images/common/arrow02.png) no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 1.5em;
	top: 1.7em;
}

@media only screen and (max-width: 768px){
.btn1 {
}
.btn1 a {
	box-shadow: 3px 3px #053868;
	padding: 0.8em 1.2em 0.6em;
}
.btn1 a:after{
	width: 6px;
	height: 13px;
	top: 1.1em;
}
.btn2 {
	max-width: 350px;
}
.btn2 a {
	box-shadow: 3px 3px #053868;
	padding: 1em 1em 0.8em;
	font-size: 13px;
}
.btn2 a:after{
	width: 7px;
	height: 13px;
	right: 1.2em;
	top: 1.2em;
}
}


.sec-pickup {
	margin: 0px 0px 80px;
}
@media only screen and (max-width: 768px){

}

/********
技術紹介
********/
.about .sec-intro {
	background: url(https://www.sunsunnet.co.jp/images/about/main-bg.jpg) no-repeat center top;
	background-size:cover;
}
.about .sec-intro .inn {
	margin: 0px auto;
	max-width: 1025px;
	padding: 150px 0px 85px;
}
.about .sec-intro .inn .copy1 {
	font-size: 40px;
	line-height: 1.7;
	font-weight: bold;
	margin: 0px 0px 30px;
}
.about .sec-intro .inn .text1 {
	font-size: 15px;
	margin: 0px 0px 60px;
	line-height: 2;
	font-weight: bold;
}
.about .sec-intro .inn .knowhow .box {
	background: rgba(255,255,255,0.87);
	width: 53%;
	padding: 40px 0 60px;
}
.about .sec-intro .inn .knowhow {
	position: relative;
}
.about .sec-intro .inn .knowhow .box p {
	width: 75%;
	margin: 0 0 0 8%;
	text-align: justify;
	font-size: 15px;
	line-height: 1.8;
}
.about .sec-intro .inn .knowhow .box .copy {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 15px;
	line-height: 1.6;
}
.about .sec-intro .inn .knowhow .img {
	width: 49%;
	position:absolute;
	top: 30px;
	right: 0;
}
@media only screen and (max-width: 768px){
.about .sec-intro {
}
.about .sec-intro .inn {
	margin: 0px 5%;
	padding: 65px 0px 45px;
}
.about .sec-intro .inn .copy1 {
	font-size: 22px;
	line-height: 1.5;
	margin: 0px 0px 20px;
}
.about .sec-intro .inn .text1 {
	font-size: 13px;
	margin: 0px 0px 30px;
	text-align: justify;
}
.about .sec-intro .inn .knowhow .box {
	width: 95%;
	padding: 30px 0px 35px;
}
.about .sec-intro .inn .knowhow {}
.about .sec-intro .inn .knowhow .box p {
	width: auto;
	margin: 0 5%;
	text-align: justify;
	font-size: 15px;
}
.about .sec-intro .inn .knowhow .box .copy {
	font-size: 18px;
	margin-bottom: 10px;
}
.about .sec-intro .inn .knowhow .img {
	width: 90%;
	position: static;
	margin: -10px 0 0 10%;
}
}

/*********************************************/

.about .sec-award {
	margin: 0px auto;
	max-width: 1025px;
	padding: 80px 0px 100px;
}
.about .sec-award:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.about .sec-award .img {
	float: left;
	width: 42%;
}
.about .sec-award .text {
	float: right;
	width: 52%;
}
.about .sec-award .text .copy {
	font-size: 30px;
	font-weight: bold;
	margin: 0px 0px 35px;
}
.about .sec-award .text .txt {
	margin: 0px 0px 15px;
	font-size: 15px;
	line-height: 2;
}

@media only screen and (max-width: 768px){
.about .sec-award {
	margin: 0px 5%;
	padding: 40px 0px 50px;
}
.about .sec-award:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility:hidden;
}
.about .sec-award .img {
	float: none;
	width: 90%;
	margin: 0 0 20px;
}
.about .sec-award .text {
	float: none;
	width: auto;
}
.about .sec-award .text .copy {
	font-size: 18px;
	margin: 0px 0px 20px;
	line-height: 1.5;
}
.about .sec-award .text .txt {
	margin: 0px 0px 10px;
	font-size: 14px;
	line-height: 1.8;
}
.about .sec-award .text .logo {
	margin: 0px auto;
	width: 70%;
}
}


/*********************************************/

.about .sec-taiken {
	line-height: 2;
	font-weight: bold;
	color: #FFF;
	background: url(https://www.sunsunnet.co.jp/images/about/about-bg.jpg) no-repeat center top;
	background-size:cover;
	text-align: center;
	margin: 0 0 100px;
	padding: 60px 10px 55px;
	font-size: 22px;
}
.about .sec-taiken p {
	color: #FFF;
}
@media only screen and (max-width: 768px){
.about .sec-taiken {
	line-height: 1.5;
	margin: 0 0 50px;
	padding: 30px 10px 25px;
	font-size: 16px;
	text-align: justify;
}
}


/*********************************************/
/* item-detail */

#item-detail {
	padding-top: 20px;
	max-width: 970px;
	margin: 0 auto;
}
.item-detail-left {
	float: left;
	max-width: 480px;
	width: 100%;
}

.item-detail-right {
	float: right;
	width: 42.26%;
}

.item-detail-photo-main {
	position: relative;
	border: solid 1px #0068b7;
	margin: 0 0 10px;
	overflow:hidden;
}

.item-detail-photo {
	position: relative;
	overflow: hidden;
	width: 480px;
	height: 480px;
}

.item-detail-photo ul li {
	float: left;
	width: 480px;
	height: 480px;
}

.item-detail-photo img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: auto;
}

.item-detail-photo-backbtn {
	position: absolute;
	top: 50%;
	left: 0;
	display: block !important;
	margin-top: -27px;
}

.item-detail-photo-backbtn a {
	display: block;
	width: 54px;
	height: 54px;
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-photo-prev.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.item-detail-photo-nextbtn {
	position: absolute;
	top: 50%;
	right: 0;
	display: block !important;
	margin-top: -27px;
}

.item-detail-photo-nextbtn a {
	display: block;
	width: 54px;
	height: 54px;
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-photo-next.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.item-detail-thumb {
	width: 100%;
	margin-bottom: 20px;
}

.item-detail-thumb-photo {
	float: left;
	width: 87px;
	margin-right: 11px;
}

.item-detail-thumb-photo img {
	max-width: 100%;
	max-height: 87px;
	border: #d0d0d0 solid 1px;
}

.item-detail-thumb-photo:nth-child(5n) {
	margin-right: 0;
}

.item-detail-thumb-photo:nth-child(5n+1) {
	clear: left;
}

.item-detail-info {
	width: 100%;
	margin-bottom: 15px;
}

.item-detail-info dl {
	display: table;
	width: 100%;
}
.item-detail-vari-itemcode dl {
	border-bottom: solid 1px #ccc;
	margin-bottom: 40px;
	color: #8a8a8a;
}
.item-detail-info dl dt {
	display: table-cell;
	width: 120px;
	padding: 3px;
	vertical-align: middle;
}

.item-detail-info dl dd {
	display: table-cell;
	vertical-align: middle;
	font-weight:bold;
}

.item-detail-category {
	font-size: 17px;
	font-weight:bold;
	margin-bottom: 45px;
}

.item-detail-name {
	font-size: 26px;
	font-weight:bold;
	margin-bottom: 40px;
}

.item-detail-vari-price dl dt {
	display: none;
}
.item-detail-input p {
	font-size: 14px;
	margin-bottom: 5px;
}

.item-detail-vari-price-num {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
}

.item-detail-cart {
	width: 100%;
	margin-bottom: 25px;
}

.item-detail-cart p {
	font-size: 14px;
	margin-bottom: 10px;
}

.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 #d0d0d0;
	background-color: #fff;
}

.item-detail-select,
.item-detail-cart-vari-select {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 56px;
	margin-bottom: 18px;
	vertical-align: middle;
	border: 1px solid #d0d0d0;
	background-color: #fff;
}

.item-detail-select label:before,
.item-detail-cart-vari-select label:before {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 20px;
	width: 0;
	height: 0;
	margin-top: -3px;
	content: '';
	border-width: 7px 5px 0 4px;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
}

.item-detail-select select,
.item-detail-cart-vari-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;
}

select::-ms-expand {
	display: none;
}


/* radio */
.item-detail-cart-vari-radio {
	overflow: hidden;
	width: 100%;
	margin-bottom: 18px;
}
.item-detail-cart-vari-radio div {
	margin-bottom: 10px;
	padding-bottom: 1px;
}
.item-detail-cart-vari-radio input {
	position: absolute;
	opacity: .0;
}
.item-detail-cart-vari-radio input + label {
	font-size: 18px;
	line-height: 1;
	position: relative;
	display: inline-block;
	padding-left: 20px;
}
.item-detail-cart-vari-radio input + label::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: block;
	width: 15px;
	height: 15px;
	margin-top: -1px;
	content: '';
	border: 1px solid #ccc;
	border-radius: 50%;
}
.item-detail-cart-vari-radio input:checked + label::after {
	position: absolute;
	top: 3px;
	left: 3px;
	display: block;
	width: 11px;
	height: 11px;
	content: '';
	border-radius: 50%;
	background-color: #3c9faf;
}
.item-detail-cart-vari-radio {
	overflow: hidden;
	width: 100%;
	margin-bottom: 18px;
}
.item-detail-cart-vari-radio label {
	font-size: 18px;
	line-height: 2;
	display: block;
	padding: 0;
}


.item-detail-num-count {
	font-size: 0;
	display: flex;
	width: 100%;
	margin-bottom: 18px;
}

.item-detail-num-plus {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
}

.item-detail-num-plus a {
	font-size: 18px;
	line-height: 55px;
	display: block;
	width: 55px;
	height: 55px;
	text-align: center;
	text-decoration: none;
	background-color: #f1f1f1;
}

.item-detail-num-minus {
	font-size: 14px;
	display: inline-block;
	margin-right: 12px;
	vertical-align: middle;
}

.item-detail-num-minus a {
	font-size: 18px;
	line-height: 55px;
	display: block;
	width: 55px;
	height: 55px;
	text-align: center;
	text-decoration: none;
	background-color: #f1f1f1;
}

.item-detail-num {
	height: 55px;
	margin-right: 12px;
	padding: 0;
	vertical-align: middle;
}

.item-detail-num input[type=number] {
	font-size: 14px;
	line-height: 55px;
	display: block;
	width: 55px;
	height: 55px;
	text-align: center;
	border: solid 1px #ccc;
	-moz-appearance: textfield;
}

.item-detail-num input[type=number]::-webkit-inner-spin-button,
.item-detail-num input[type=number]::-webkit-outer-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 #d0d0d0;
	background-color: #fff;
}

.item-detail-num-select label:before {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 20px;
	width: 0;
	height: 0;
	margin-top: -3px;
	content: '';
	border-width: 7px 5px 0 4px;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
}

.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-btn {
	width: 100%;
	margin-bottom: 20px;
}

.item-detail-cart-btn a {
	font-size: 20px;
	line-height: 55px;
	display: block;
	width: 100%;
	height: 55px;
	text-align: center;
	color: #fff;
	background-color: #0068b7;
	border-radius:50px ;
	-webkit-border-radius:50px ;
	-moz-border-radius:50px ;
}

.item-detail-cart-btn a span {
	position: relative;
}

.item-detail-cart-btn a span:before {
	position: absolute;
	top: 50%;
	left: -46px;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	content: '';
	vertical-align: middle;
	background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-cart-btn.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.item-detail-txt {
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: #d0d0d0 solid 1px;
}

.item-detail-txt p {
	font-size: 13px;
	padding: 3px;
}

.item-detail-share {
	margin-bottom: 20px;
	text-align: center;
}
.item-detail-share ul li {
	display: inline-block;
	width: 24px;
	margin: 0 10px;
}
.item-detail-share ul li img {
	width: 100%;
	height: auto;
}

.item-comment {
	margin-bottom: 20px;
	padding-top: 20px;
}

.item-comment h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #0068b7;
}

.item-comment p {
	font-size: 13px;
}

.item-comment table {
	width: 100%;
}

.item-comment table tr th {
	font-size: 13px;
	font-weight: normal;
	width: 180px;
	padding: 4px 12px;
	text-align: left;
}

.item-comment table tr td {
	font-size: 13px;
	padding: 4px 12px;
	text-align: left;
}

.item-comment table tr:nth-child(2n-1) th,
.item-comment table tr:nth-child(2n-1) td {
	background-color: #eee;
}
.item-detail-spec {
	display:none;
}


@media only screen and (max-width: 600px) {
	#item-detail {
		padding-top: 0;
	}
	.item-detail-left {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}
	.item-detail-right {
		float: none;
		width: 100%;
	}
	.item-detail-photo-main {
		position: relative;
		width: 280px;
		margin: 0 auto;
		padding: 0;
	}
	.item-detail-photo {
		position: relative;
		overflow: hidden;
		width: 280px;
		height: 280px;
		margin: 0 auto 10px;
	}
	.item-detail-photo ul {
		width: 100%;
		height: 280px;
		margin: 0 auto;
	}
	.item-detail-photo ul li {
		display: block;
		float: left;
		width: 280px;
		height: 280px;
		margin: 0;
	}
	.item-detail-photo-backbtn {
		position: absolute;
		top: 50%;
		left: -20px;
		display: block;
		margin-top: -20px;
	}
	.item-detail-photo-backbtn a {
		display: block;
		width: 40px;
		height: 40px;
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-photo-prev_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.item-detail-photo-nextbtn {
		position: absolute;
		top: 50%;
		right: -20px;
		display: block;
		margin-top: -20px;
	}
	.item-detail-photo-nextbtn a {
		display: block;
		width: 40px;
		height: 40px;
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-arrow-photo-next_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.item-detail-thumb {
		display: none;
	}
	.item-detail-info {
		width: 100%;
		margin-bottom: 18px;
		padding-right: 10px;
		padding-left: 10px;
	}
	.item-detail-category {
		font-size: 12px;
		margin-bottom: 12px;
	}
	.item-detail-name {
		font-size: 16px;
		font-weight: normal;
		line-height: 32px;
		margin-bottom: 8px;
		letter-spacing: 1px;
	}
	.item-detail-price {
		font-size: 16px;
		font-weight: normal;
		margin-bottom: 15px;
	}
	.item-detail-price span {
		font-size: 12px;
		font-weight: normal;
	}
	.item-detail-input {
		padding: 0 10px;
	}
	.item-detail-input p {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.item-detail-num-count {
		font-size: 0;
		display: inline-block;
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}
	.item-detail-num-minus {
		font-size: 14px;
		display: inline-block;
		margin-right: 12px;
	}
	.item-detail-num-minus a {
		font-size: 18px;
		line-height: 55px;
		display: block;
		width: 55px;
		height: 55px;
		text-align: center;
		background-color: #f1f1f1;
	}
	.item-detail-num {
		font-size: 16px;
		line-height: 55px;
		display: inline-block;
		width: 55px;
		height: 55px;
		margin-right: 12px;
		text-align: center;
	}
	.item-detail-num input[type=number] {
		font-size: 16px;
	}
	.item-detail-num-plus {
		font-size: 14px;
		display: inline-block;
	}
	.item-detail-num-plus a {
		font-size: 18px;
		line-height: 55px;
		display: block;
		width: 55px;
		height: 55px;
		text-align: center;
		background-color: #f1f1f1;
	}
	.item-detail-num-select select {
		font-size: 16px;
	}
	.item-detail-cart {
		width: 100%;
		margin-bottom: 18px;
		padding-right: 10px;
		padding-left: 10px;
	}
	.item-detail-cart-vari-select select {
		font-size: 16px;
	}
	.item-detail-cart-btn {
		width: 100%;
		margin-bottom: 30px;
	}
	.item-detail-cart-btn a {
		font-size: 20px;
		line-height: 55px;
		display: block;
		width: 100%;
		height: 55px;
		text-align: center;
		color: #fff;
	}
	.item-detail-cart-btn a span {
		position: relative;
	}
	.item-detail-cart-btn a span:before {
		position: absolute;
		top: 50%;
		left: -40px;
		display: inline-block;
		width: 24px;
		height: 24px;
		margin-top: -12px;
		content: '';
		vertical-align: middle;
		background-image: url(https://image.raku-uru.jp/cms/yt00005/img/icn-cart-btn.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.item-detail-share {
		margin-bottom: 0;
		text-align: center;
	}
	.item-detail-share dl dd ul li {
		display: inline-block;
		width: 33%;
		margin-right: 0;
	}
	.item-detail-share dl dd ul li a {
		display: block;
		width: 24px;
		height: 24px;
		margin: 0 auto;
	}
	.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 {
		margin-bottom: 0;
		padding-top: 20px;
		padding-right: 10px;
		padding-bottom: 20px;
		padding-left: 10px;
		border-bottom: #d0d0d0 solid 1px;
	}
	.item-comment h4 {
		font-size: 14px;
		font-weight: normal;
		margin-bottom: 15px;
	}
	.item-comment p {
		font-size: 13px;
	}
}
