@charset "utf-8";
/* * {
	margin: 0;
	padding: 0;
}

table,
img,
p {
	border: 0;
}

body {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #555555;
    font-size: 72.5%;
    line-height: 150%;
    letter-spacing:1px;
    max-width: 2000px;
    margin: 0 auto;
    min-width: 1060px;
}

li {
	list-style-type: none;
}

select {
	border: solid 1px #ccc;
	font-size: 14px;
}

img {
	max-width: 100%;
} */

/* clear fix */
.clearfix {
	zoom: 1;
}
.clearfix:after {
	content: ' ';
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}

/*PHOTO*/
.picture {
	border: 1px solid #fff;
}
.mt0 {
	margin-top: 0 !important;
}
.mt5 {
	margin-top: 5px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt15 {
	margin-top: 15px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt25 {
	margin-top: 25px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt35 {
	margin-top: 35px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt45 {
	margin-top: 45px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt55 {
	margin-top: 55px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb15 {
	margin-bottom: 15px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb25 {
	margin-bottom: 25px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 40px !important;
}
.mb55 {
	margin-bottom: 55px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb65 {
	margin-bottom: 65px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb75 {
	margin-bottom: 75px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mb85 {
	margin-bottom: 85px !important;
}
.ml0 {
	margin-left: 0;
}
.ml5 {
	margin-left: 5px;
}
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 20px;
}
.ml30 {
	margin-left: 30px;
}
.mr0 {
	margin-right: 0;
}
.mr5 {
	margin-right: 5px;
}
.mr10 {
	margin-right: 10px;
}
.mr20 {
	margin-right: 20px;
}
.mr30 {
	margin-right: 30px;
}

.pt5 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt25 {
	padding-top: 25px;
}
.pt30 {
	padding-top: 30px;
}
.pt35 {
	padding-top: 35px;
}
.pt40 {
	padding-top: 40px;
}

.pd5 {
	padding: 5px;
}

.pl70 {
	padding-left: 70px;
}

.t-c {
	text-align: center !important;
}
.t-r {
	text-align: right !important;
}
.t-l {
	text-align: left !important;
}
.va-m {
	vertical-align: middle;
}

.fs-12 {
	font-size: 12px !important;
}
.fs-14 {
	font-size: 14px !important;
}
.fs-16 {
	font-size: 16px !important;
}
.fs-17 {
	font-size: 17px !important;
}
.fs-18 {
	font-size: 18px !important;
}
.fs-24 {
	font-size: 24px !important;
}
.fs-26 {
	font-size: 26px !important;
}
.fs-32 {
	font-size: 32px !important;
}

/* チェックボックスのカスタム
 * http://codepen.io/nxworld/pen/yywLwJ
 * custom02を流用
----------------------------------------------- */
.customCheckBox input[type='checkbox'] {
	display: none;
}
.customCheckBox label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.customCheckBox label::before,
.customCheckBox label::after {
	position: absolute;
	content: '';
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.customCheckBox label::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.customCheckBox label::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg) scale(0.5);
	transform: rotate(-45deg) scale(0.5);
}
.customCheckBox label:hover::before {
	background: #fff;
}
.customCheckBox input[type='checkbox']:checked + label::before {
	background: #fff;
	border: 1px solid #3498db;
}
.customCheckBox input[type='checkbox']:checked + label::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}

/* 酒注意文言、チェックボックス
----------------------------------------------- */
label.liquor_chk_lbl {
	color: #c00;
	font-size: 16px;
	font-weight: bold;
}

/* フロート回り込み解除
----------------------------------------------- */
br.clear {
	clear: both;
	display: none;
	font-size: 0px;
	line-height: 0%;
	height: 0px;
}
/* リンク指定
----------------------------------------------- */
a {
	text-decoration: underline;
}

a.tlink {
	color: #000;
	text-decoration: underline;
}
a.whBtnS {
	border: 1px solid #000;
	border-radius: 30px;
	display: inline-block;
	font-size: 12px;
	padding: 5px 10px;
	text-decoration: none !important;
	color: #000;
	box-sizing: border-box;
	line-height: 150%;
}

a.whBtn {
	border: 2px solid #000;
	border-radius: 30px;
	display: inline-block;
	font-size: 16px;
	padding: 15px 20px;
	text-decoration: none !important;
}
a.whBtn200 {
	border: 1px solid #000;
	border-radius: 36px;
	box-sizing: border-box;
	color: #000;
	display: inline-block;
	font-size: 14px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	text-decoration: none !important;
	width: 200px;
}
a.del {
	display: inline-block;
	vertical-align: middle;
}

.btnArea {
	position: relative;
}
.btnArea .back {
	position: absolute;
	left: 0;
	text-decoration: underline;
	color: #000;
	font-size: 14px;
}

/* フォント
----------------------------------------------- */
/* h1,
h2,
h3,
h4,
h5 {
	font-size: 100%;
	line-height: 150%;
} */
.price {
	color: #cc6600;
	font-weight: bold;
}
.attention {
	color: #cc6600;
}
.mini {
	font-size: 90%;
}
em {
	font-style: normal;
	color: #cc6600;
}

/* フレーム
----------------------------------------------- */
div#container {
	/*width: 1280px;*/
	/*margin: 0 auto 0;*/
	padding: 0;
	background-color: #fff;
	/*text-align: center;*/
}
#container:after {
	/* firefox背景色表示用 */
	content: '';
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}

div.information {
	width: 100%;
	text-align: center;
	height: 36px;
	line-height: 36px;
	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
div.information a {
	color: #da0000;
	font-weight: bold;
}

div#leftcolumn {
	float: left;
	width: 166px;
}

div#leftcolumn h2 {
	padding: 15px 0 0 0;
}
div#leftcolumn h2 img {
	vertical-align: bottom;
}
div#rightcolumn {
	float: right;
	width: 166px;
}

div#rightcolumn h2 {
	padding: 15px 0 0 0;
}
div#rightcolumn h2 img {
	vertical-align: bottom;
}
/* メインコンテンツ
----------------------------------------------- */
/* 3カラム設定 */
div#three_maincolumn {
	float: left;
	width: 560px;
	padding: 15px 0 0 0;
	margin-left: 34px;
}

div#three_maincolumn h2 {
	padding: 15px 0 0 0;
}

/* 2カラム設定 */
div#two_maincolumn {
	float: left;
	width: 750px;
	padding: 0;
	margin-left: 34px;
}

div#two_maincolumn h2 {
	padding: 15px 0 0 0;
}

/* 1カラム設定 */
div#one_maincolumn {
	/*margin-top: 70px;*/
}

#one_maincolumn .line {
	margin: 26px auto;
}
#one_maincolumn .lead {
	margin-bottom: 50px;
}
.main img {
	width: 100%;
	display: block;
}
#one_maincolumn .content-feature .feature-list {
	width: 1284px;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
	max-width: 100%;
}
#one_maincolumn .content-feature .feature-list li {
	display: block;
	padding: 1px;
	float: left;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#one_maincolumn .content-feature .feature-list li img {
	display: block;
	max-width: 100%;
}
#one_maincolumn .content-feature .feature-list li:first-child {
	margin-right: 0;
}
#one_maincolumn .content-feature .feature-list li a {
	display: block;
}
#one_maincolumn .content-feature .more {
	height: 46px;
	line-height: 46px;
	text-align: right;
	width: 1320px;
	max-width: 100%;
	margin: 0 auto;
	padding-right: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#one_maincolumn .content-feature .more a {
	color: #000;
	font-size: 16px;
}
#one_maincolumn .content-feature .more a:after {
	content: url('/user_data/packages/default/images/top/arrow_gr.png');
}
#one_maincolumn .content-scene {
	text-align: center;
	background: url('/user_data/packages/default/images/top/scene_bg.png') center 0;
	padding: 100px 0;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
	background-size: 100% auto;
	width: 1280px;
	margin: 0 auto;
}
.lead {
	font-size: 16px;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}
#one_maincolumn .content-scene h2 {
}
#one_maincolumn .content-scene a {
	font-size: 18px;
	color: #4b0615;
	display: block;
	text-decoration: none;
}
#one_maincolumn .content-scene .scene-list-large {
	width: 1024px;
	margin: 0 auto 20px;
}
#one_maincolumn .content-scene .scene-list-large .child {
	width: 502px;
	float: left;
	background-color: #fff;
}
#one_maincolumn .content-scene .scene-list-large .child img {
	display: block;
}
#one_maincolumn .content-scene .scene-list-large .child ul {
	width: 502px;
	display: table;
	table-layout: fixed;
	height: 60px;
	padding: 5px 0;
}
#one_maincolumn .content-scene .scene-list-large .child li {
	display: table-cell;
	background-color: #fff;
	vertical-align: middle;
	border-left: 1px solid;
}
#one_maincolumn .content-scene .scene-list-large .child li:first-child {
	border-left: 0;
}
#one_maincolumn .content-scene .scene-list-large .child:nth-child(odd) {
	margin-right: 10px;
}
#one_maincolumn .content-scene .scene-list-large .child:nth-child(even) {
	margin-left: 10px;
}

#one_maincolumn .content-scene .scene-list-middle {
	width: 1024px;
	margin: 0 auto;
}
#one_maincolumn .content-scene .scene-list-middle .child {
	width: 241px;
	margin: 0 10px;
	float: left;
}
#one_maincolumn .content-scene .scene-list-middle .child:first-child {
	margin-left: 0;
}
#one_maincolumn .content-scene .scene-list-middle .child:nth-child(4n) {
	margin-right: 0;
}
#one_maincolumn .content-scene .scene-list-middle .child:nth-child(5n) {
	margin-left: 0;
}
#one_maincolumn .content-scene .scene-list-middle .child img {
	display: block;
}
#one_maincolumn .content-scene .scene-list-middle .child a {
	display: block;
	height: 60px;
	line-height: 60px;
	background-color: #fff;
}
#one_maincolumn .content-scene .scene-list-s {
	width: 1024px;
	margin: 20px auto 0;
}
#one_maincolumn .content-scene .scene-list-s .child {
	width: 241px;
	margin: 0 10px 20px;
	float: left;
}
#one_maincolumn .content-scene .scene-list-s .child:nth-child(4n + 1) {
	margin-left: 0;
}
#one_maincolumn .content-scene .scene-list-s .child:nth-child(4n) {
	margin-right: 0;
}
#one_maincolumn .content-scene .scene-list-s .child a {
	display: block;
	height: 60px;
	line-height: 60px;
	background-color: #fff;
}
#one_maincolumn .content-scene .more {
	margin: 40px auto 0;
	width: 512px;
	height: 60px;
}
#one_maincolumn .content-scene .more a {
	display: block;
	line-height: 60px;
	border: 1px solid #4b0615;
	text-decoration: none;
}
#one_maincolumn .content-scene .more a:hover {
	background-color: #4b0615;
	color: #fff;
}
#one_maincolumn .content-scene .more a.open {
	background-image: url('/user_data/packages/default/images/top/under_arrow_off.png');
	background-position: 95% center;
	background-repeat: no-repeat;
	background-size: 17px 10px;
}
#one_maincolumn .content-scene .more a.open:hover {
	background-image: url('/user_data/packages/default/images/top/under_arrow_on.png');
}
#one_maincolumn .content-scene .more a.close {
	background-image: url('/user_data/packages/default/images/top/top_arrow_off.png');
	background-position: 95% center;
	background-repeat: no-repeat;
	background-size: 17px 10px;
}
#one_maincolumn .content-scene .more a.close:hover {
	background-image: url('/user_data/packages/default/images/top/top_arrow_on.png');
}

#one_maincolumn .content-about {
	text-align: center;
	padding-top: 100px;
	margin-bottom: 9px;
}
#one_maincolumn .content-about .about-list-large,
#one_maincolumn .content-about .about-list {
	width: 1280px;
	margin: 0 auto;
	max-width: 100%;
}

#one_maincolumn .content-about .about-list-large li,
#one_maincolumn .content-about .about-list li {
	float: left;
	padding-right: 1px;
	padding-bottom: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#one_maincolumn .content-about .about-list-large li:last-child,
#one_maincolumn .content-about .about-list li:last-chlid {
	padding-right: 0;
}

#one_maincolumn .content-about .about-list-large li {
	width: 50%;
}

#one_maincolumn .content-about .about-list li {
	width: 33.3333%;
}

#one_maincolumn .content-about .about-list-large li img,
#one_maincolumn .content-about .about-list li img {
	max-width: 100%;
}

#one_maincolumn .content-about img {
	display: block;
}
#one_maincolumn .content-about h2 img {
	display: inline;
}

#one_maincolumn .content-adviser {
	width: 1280px;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	background-color: #434343;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 60px;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}

.bottom-col .content-adviser {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
	background-color: #434343;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 60px;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}

.content-adviser p {
	font-size: 15px;
	margin-bottom: 45px;
}
.content-adviser .lead {
	font-size: 16px;
	margin-top: 15px;
}
.content-adviser .inquiry-area {
	width: 824px;
	margin: 0 auto;
}
.content-adviser .inquiry-area .freedial {
	width: 288px;
	float: left;
	padding-right: 5px;
	border-right: 1px solid #fff;
}
.content-adviser .inquiry-area .freedial img {
	display: block;
}
.content-adviser .inquiry-area .inquiry {
	float: left;
	margin-left: 35px;
}
.content-adviser .inquiry-area .inquiry li a {
	width: 495px;
	height: 45px;
	border-radius: 45px;
	display: block;
	line-height: 45px;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
}
.content-adviser .inquiry-area .inquiry li.form {
	margin-bottom: 10px;
}
.content-adviser .inquiry-area .inquiry li.form a {
	background-color: #fff;
	color: #000;
	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	text-decoration: none;
}
.content-adviser .inquiry-area .inquiry li.catalog a {
	background-color: #000;
	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
#one_maincolumn .content-news {
	text-align: center;
	padding: 100px 0;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}
#one_maincolumn .content-news dl {
	width: 770px;
	margin: 0 auto;
}
#one_maincolumn .content-news dl dt {
	width: 100px;
	height: 23px;
	line-height: 23px;
	float: left;
	background-color: #f2f2f2;
	font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
#one_maincolumn .content-news dl dt.cmp {
	background-color: #ffeaea;
	color: #c20404;
}
#one_maincolumn .content-news dl dd {
	font-size: 14px;
	margin-left: 130px;
	text-align: left;
	margin-bottom: 10px;
	line-height: 23px;
}

/* カゴの中
----------------------------------------------- */
div#cartarea {
	width: 144px;
	padding: 10px;
	border: solid 1px #eaeaea;
}

div#cartarea p {
	padding: 5px 0 10px 0;
}

div#cartarea p.item {
	padding: 0 0 10px 0;
	background: url('../img/side/line_146.gif') no-repeat bottom;
}

div#cartarea .btn {
	padding: 0;
	text-align: center;
}

/* カテゴリー
----------------------------------------------- */
div#categoryarea {
	width: 144px;
	padding: 10px;
	border: solid 1px #eaeaea;
}

div#categoryarea li {
	padding: 0 0 0 20px;
	background: url('../img/common/arrow_blue.gif') 0 3px no-repeat;
}
div#categoryarea li.onmark {
	background: url('../img/common/arrow_red.gif') 0 3px no-repeat;
}
div#categoryarea li.level1 {
	font-weight: bold;
}
div#categoryarea li.level1 li {
	font-weight: normal;
}
div#categoryarea li a {
	display: block;
	padding: 3px 0;
}

a.onlink {
	text-decoration: underline;
}
a.onlink:link {
	color: #cc6600;
}
a.onlink:visited {
	color: #cc6600;
}
a.onlink:hover {
	color: #cc6600;
}

/* バナー
----------------------------------------------- */
ul#banner {
	padding: 15px 0 0 0;
}

#banner li {
	padding: 0 0 10px 0;
}
