@charset 'utf-8';

/*---------------------------------------------------------------------- */
/* Global Styles
------------------------------------------------------------------------ */

/* Initialize
---------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, picture {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 100%;
}

html, body {
	height: 100%;
}

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	line-height: 1.8;
	background: #fff;
	color: #000;
	word-break: normal;
	word-wrap: break-word;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
}

main {
	display: block;
}

ul, ol {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
}

a {
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

ins {
	background-color: #ff9;
	color: #fff;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #fff;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	border: 0;
	font-size: 1em;
}

input, select, textarea {
	padding: 2px;
}

input, select, button {
    vertical-align: middle;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: none;
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

area {
	outline: 0;
}


/* Override
---------------------------------------------------------- */

body {
	line-height: 1.8;
	color: #525252;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: #525252;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #525252;
	text-decoration: none;
}

input, select, textarea, button {
	box-sizing: border-box;
	box-shadow: none;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

select, input[type='text'], input[type='email'], input[type='tel'], input[type='url'], textarea {
	border: 1px solid #a0a0a0;
	border-radius: 0;
	font-size: 1.6rem;
}

input[type='text'], input[type='email'], input[type='tel'], input[type='url'], textarea {
	-webkit-appearance: none;
}

input[type='text']::input-placeholder,
input[type='email']::input-placeholder,
input[type='tel']::input-placeholder,
input[type='url']::input-placeholder {
	color: #a0a0a0;
}

/* Utillities
---------------------------------------------------------- */

/* Hide Contents --------------------------------- */

.break-sp,
#btn-menu {
	display: none !important;
}

/* Button --------------------------------- */

.btn  {
	display: block;
	margin: 0 auto;
	width: 300px;
	height: 53px;
	line-height: 53px;
	background: #a0a0a0;
	color: #fff;
	font-weight: 500;
	font-size: 2rem;
	text-align: center;
	text-decoration: none;
	letter-spacing: .05em;
}

.btn:hover,
.btn:focus {
	color: #fff;
}

.btn-fade {
	transition: opacity 200ms linear;
}

.btn-fade:hover,
.btn-fade:focus {
	opacity: .7;
}

/* Align --------------------------------- */

.alignleft {
	display: inline;
	float: left;
}

.alignright {
	display: inline;
	float: right;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

/* Pagination --------------------------------- */

.pagination {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	padding-top: 60px;
	overflow: hidden;
	text-align: center;
}

.pagination li {
	line-height: 1.1;
}

.pagination li a {
	display: block;
	padding: 0 10px;
	color: #a0a0a0;
	font-weight: 500;
	font-size: 1.6rem;
	text-decoration: none;
}

.pagination li a:hover,
.pagination li a:focus {
	text-decoration: underline;
}

.pagination li a.current {
	color: #525252;
}

.pagination li.last {
	margin-left: -10px;
}

.pagination li.first a,
.pagination li.last a {
	letter-spacing: -.5em;
}

.pagination .btn-prev,
.pagination .btn-next {
	margin: 0 100px;
}

.pagination .btn-prev a,
.pagination .btn-next a {
	font-family: 'Roboto';
	font-weight: 400;
}

/* List --------------------------------- */

/* .legend */

.legend {
	margin: -15px 50px 50px 50px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
	text-align: center;
}

.legend-title {
	font-size: 1.4rem;
	font-weight: bold;
}

.legend-content {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}

.legend-content li a {
	display: block;
	padding-bottom: 1px;
	border-bottom: 1px solid transparent;
}

.legend-content li:nth-child(1) .current { border-color: #b1a871; }
.legend-content li:nth-child(2) .current { border-color: #abd6a9; }
.legend-content li:nth-child(3) .current { border-color: #6d84b8; }
.legend-content li:nth-child(4) .current { border-color: #ca2d62; }
.legend-content li:nth-child(5) .current { border-color: #999; }

/* .list-items, .list-coordinate */

.list-items:not(.slides),
.list-coordinate:not(.slides) {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin: 0 0 -40px -30px;
}

.list-items:not(.slides) li,
.list-coordinate:not(.slides) li {
	margin: 0 0 40px 30px;
	width: 200px;
}

.list-items li,
.list-coordinate li {
	font-size: 1rem;
}

.list-items li a,
.list-coordinate li a {
	display: block;
	margin-bottom: 20px;
}

.list-items li a img,
.list-coordinate li a img {
	width: 100% !important;
	height: auto !important;
}

.list-items li .title,
.list-items li .price {
	text-align: center;
}

.list-items li .date,
.list-coordinate li .date {
	color: #c89032;
}

.list-items li .cat,
.list-coordinate li .cat {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.list-items li .cat li,
.list-coordinate li .cat li {
	display: block;
	margin: 0 3px;
	width: 8px;
	height: 8px;
}

.list-items li .cat li.lx { background: #b5a875; }
.list-items li .cat li.ac { background: #bae2b2; }
.list-items li .cat li.rc { background: #728cc0; }
.list-items li .cat li.cs { background: #c84d6c; }

.list-coordinate + .list-coordinate {
	margin-top: 60px;
}

.list-coordinate.accordion {
	height: 380px;
	overflow: hidden;
	transition: height .5s ease-out;
}

.list-coordinate.accordion.active {
	height: 1220px;
}

.list-coordinate.accordion + .btn-more {
	width: 100%;
	height: 40px;
	background: #fff;
}

.list-coordinate.accordion + .btn-more button {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100px;
	height: 40px;
	font-family: 'Cormorant Garamond';
	font-weight: 600;
	font-size: 1.4rem;
	transform: translateX(-50%);
}

.list-coordinate.accordion + .btn-more button:after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 12px;
	background: url(../images/icon-more.svg) no-repeat center bottom;
	background-size: 30px;
	content: '';
}

.list-coordinate.accordion.active + .btn-more button:before {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: #fff;
	content: 'CLOSE';
}

.list-coordinate.accordion.active + .btn-more button:after {
	transform: scaleY(-1);
}

/* .list-feature, .list-topics, .list-blog */

.list-feature,
.list-topics,
.list-blog {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 -32px -40px 0;
}

.list-feature li,
.list-topics li,
.list-blog li {
	margin: 0 32px 40px 0;
	width: 253px;
}

.list-feature li a,
.list-topics li a,
.list-blog li a {
	display: block;
	margin-bottom: 10px;
	text-align: center;
}

.list-feature li .title,
.list-topics li .title,
.list-blog li .title {
	line-height: 1.4;
	font-size: 1.3rem;
}

.list-feature li .date,
.list-topics li .date,
.list-blog li .date {
	color: #6f6f6f;
	font-size: 1.1rem;
}

.list-blog li .cat {
	font-size: 1.3rem;
}

/* .list-news */

.list-news li {
	margin-bottom: 20px;
}

.list-news li .date,
.list-news li .cat {
	margin-right: 10px;
}

.list-news li .cat {
	display: inline-block;
	padding: 1px 0;
	width: 80px;
	background: #f0e8d1;
	vertical-align: middle;
	color: #764c24;
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
}

.list-news li .title {
	font-weight: bold;
}

/* .list-collection */

.list-collection {
	display: flex;
	flex-flow: row wrap;
	margin: 0 -42px -40px 0;
}

.list-collection li {
	margin: 0 42px 40px 0;
	width: 340px;
}

/*
.list-collection li.list-post-lxac2022aw {
  display: none;
}
*/

.list-collection li a {
	display: block;
	text-align: center;
	text-decoration: none;
}

.list-collection li a .img,
.list-collection li a .txt {
	display: block;
}

.list-collection li a .img {
	margin-bottom: 20px;
}

.list-collectio li a .txt {
	color: #3b3b3b;
	font-family: 'Cormorant Garamond';
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: .05em;
}

.list-collection.col {
	flex-flow: column;
	margin: 0 0 -40px 0;
}

.list-collection.col li {
	margin: 0 auto 40px auto;
	width: 700px;
}

.list-collection.col li a .img {
	margin-bottom: 10px;
}

.list-collection.col li a .img img {
	width: 100%;
	height: auto;
}

/* Section --------------------------------- */

.section {
	position: relative;
	padding: 35px 0;
	width: 100%;
}

.section:last-child {
	padding-bottom: 0;
}

.section .link-all {
	position: absolute;
	top: 42px;
	left: 50%;
	margin: -9px 0 0 -560px;
	width: 1120px;
	text-align: right;
}

.section .link-all a {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	font-family: 'Cormorant Garamond';
	font-weight: 600;
	font-size: 1.6rem;
	text-decoration: none;
	letter-spacing: .1em;
}

.section-header {
	position: relative;
	padding-bottom: 16px;
	width: 100%;
}

.section-header .title {
	margin: 0 auto;
	width: 1200px;
	line-height: 1;
	color: #3b3b3b;
	font-family: 'Cormorant Garamond';
	font-weight: 600;
	font-size: 2.5rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.section-content {
	position: relative;
	padding: 50px 0;
}

.section-content-inner {
	margin: 0 auto;
	width: 1120px;
}

.section-content .subtitle {
	position: relative;
	margin: 60px 0 25px 0;
}

.section-content .subtitle h2 {
	margin: 0 auto;
	width: 389px;
}

.section-content .subtitle .link-all {
	position: absolute;
	top: 5px;
	right: -40px;
}

/* #section-collection */

#section-collection {
	padding: 90px 0 100px;
	background: #f5f4f0;
}

#section-collection .section-content {
	padding: 0;
}

#section-collection .section-content:after {
	display: none;
}

.collection-group {
	margin: 30px 0 0 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.collection-block {
	position: relative;
	padding: 0 0 27px 0;
	width: 30.5%;
	box-sizing: border-box;
}

.collection-block::after {
	content: "";
	display: block;
	position: absolute;
	right: 2px;
	bottom: 0;
	background: url(../images/arrow.png) no-repeat;
	background-size: contain;
	width: 80px;
	height: 7px;
}

.collection-block-inner {
	position: relative;
	padding: 30px 20px 65px;
	background: #fff;
	box-sizing: border-box;
}

.collection-brand-name {
	font-family: 'Lustria', serif;
	font-weight: normal;
	font-size: 1.7rem;
	line-height: 1;
	letter-spacing: .1em;
	text-align: center;
	color: #726b5a;
}

.collection-image {
	margin: 22px 0 0 0;
}

.collection-theme {
	position: absolute;
	bottom: -12px;
	left: 20px;
	font-family: 'Lustria', serif;
	font-weight: normal;
	line-height: 1;
	color: #726b5a;
}

.collection-theme dt {
	font-size: 1.4rem;
	letter-spacing: .175em;
}

.collection-theme dd {
	margin: 10px 0 0 0;
	font-size: 2.8rem;
	letter-spacing: .1em;
}

.collection-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* #section-sns */

#section-sns {
	padding: 90px 0 70px;
	background: #f5f4f0;
}

.sns-link-group {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.sns-link-block {
	position: relative;
	width: 23%;
}

/* Block --------------------------------- */

.block {
	margin: 0 auto 40px auto;
	width: 960px;
	line-height: 2.1;
	font-size: 1.2rem;
}

.block h1,
.block h2,
.block h3,
.block h4,
.block h5,
.block h6 {
	letter-spacing: .05em;
}

.block h1 {
	font-size: 3rem;
}

.block h2 {
	font-size: 2.2rem;
}

.block h3 {
	font-size: 1.8rem;
}

.block h4 {
	font-size: 1.6rem;
}

.block h5,
.block h6 {
	font-size: 1.4rem;
}

.block a {
	text-decoration: none;
}

.block a:hover,
.block a:focus {
	text-decoration: underline;
}

.block a img {
	transition: opacity 200ms linear;
}

.block a:hover img,
.block a:focus img {
	opacity: .7;
}

.block hr {
	margin: 3px 0;
	height: 0;
	border: 0;
	border-bottom: 1px solid #999;
}

/* .block-simple */

.block-simple p {
	text-align: center;
}

/* .block-post */

.block-post .block-header {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #999;
}

.block-post .block-header .date {
	margin-bottom: 5px;
	color: #bbb;
}

.block-post .block-header .title {
	line-height: 1.4;
	font-size: 1.8rem;
}

.block-post table {
	margin: 0 auto;
}

.block-post table th,
.block-post table td {
	vertical-align: middle;
}

.block-post table:not([border='0']),
.block-post table:not([border='0']) > thead > tr > th,
.block-post table:not([border='0']) > thead > tr > td
.block-post table:not([border='0']) > tbody > tr > th,
.block-post table:not([border='0']) > tbody > tr > td,
.block-post table:not([border='0']) > tfoot > tr > th,
.block-post table:not([border='0']) > tfoot > tr > td {
	border-style: solid;
	border-width: 1px;
}

.block-post ul {
	margin-left: 20px;
}

/* .block-form */

.block-form {
	margin: 0 auto;
	width: 700px;
}

.sent .block-form {
	display: none;
}

.block-form > .notes {
	margin-bottom: 20px;
}

.block-form .wpcf7-not-valid-tip {
	display: block;
	padding-top: 10px;
	color: #f00;
	font-size: 1.2rem;
}

.block-form .wpcf7-response-output {
	margin-bottom: 15px;
	padding: 0;
	border: 0;
	color: #f00;
	text-align: center;
}

.block-form .wpcf7-validation-errors {
	color: #f00;
}

.block-form .wpcf7-not-valid {
	border: 1px solid #f00;
}

.block-form .ajax-loader {
	padding: 10px;
}

.block-form .required {
	color: #e50012;
}

.block-form select,
.block-form input[type='text'],
.block-form input[type='tel'],
.block-form input[type='email'],
.block-form input[type='url'],
.block-form textarea {
	width: 100%;
	font-size: 1.6rem;
}

.block-form select,
.block-form input[type='text'],
.block-form input[type='tel'],
.block-form input[type='email'],
.block-form input[type='url'] {
	height: 40px;
}

.block-form input[type='text'],
.block-form input[type='tel'],
.block-form input[type='email'],
.block-form input[type='url'] {
	padding: 2px 10px;
}

.block-form input[type='radio'] {
	margin-right: 5px;
	vertical-align: middle;
}

.block-form textarea {
	padding: 10px;
	height: 230px;
}

.block-form dl {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
}

.block-form dl dt,
.block-form dl dd {
	box-sizing: border-box;
}

.block-form dl dt {
	padding-top: 5px;
	font-size: 1.4rem;
}

.block-form dl dt,
.block-form dl dd {
	margin-bottom: 45px;
}

.block-form dl dt {
	width: 200px;
	font-weight: bold;
}

.block-form dl dd {
	width: 500px;
}

.block-form dl dd ul li {
	display: flex;
	flex-flow: row nowrap;
}

.block-form dl dd label {
	margin-right: 40px;
}

.block-form .btn-container {
	margin-top: 40px;
	text-align: center;
}

.block-thanks {
	display: none;
	margin: 0 auto;
	width: 700px;
	text-align: center;
}

.block-thanks h3 {
	margin-bottom: 40px;
}

.sent .block-thanks {
	display: block;
}

/* Slick.js --------------------------------- */

.slick-slider {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.slick-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	display: block;
	position: relative;
	top: 0;
	left: 0;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	padding: 0 11px;
	min-height: 1px;
	height: 100%;
}

.slick-slide a {
	display: block;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-loading .slick-list {
	background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

.slick-prev,
.slick-next {
	display: block;
	position: absolute;
	top: 50%;
	z-index: 100;
	width: 13px;
	height: 25px;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	transform: translate(0, -50%);
	transition: opacity 200ms linear; 
}

.slick-prev {
	left: -40px;
	background: url(../images/btn-prev.png) no-repeat left top;
}

.slick-next {
	right: -40px;
	background: url(../images/btn-next.png) no-repeat left top;
}

.slick-prev:hover,
.slick-next:hover {
	opacity: .7;
}

/* Elementor --------------------------------- */

.elementor-widget-heading .elementor-heading-title {
	line-height: inherit;
}


/* Layout
---------------------------------------------------------- */

/* Base --------------------------------- */

#container {
	position: relative;
	min-width: 1200px;
	min-height: 100%;
	overflow: hidden;
	background: #fff;
}

#header, #gnav, #main, #footer {
	width: 100%;
	box-sizing: border-box;
}

#header {
	border-bottom: 1px solid #cdcdcd;
	background: #fff;
}

#header-inner, #gnav-inner, #footer-inner {
	position: relative;
	box-sizing: border-box;
}

#gnav-inner {
	position: relative;
	margin: 0 auto;
	width: 1200px;
	box-sizing: border-box;
}

#main {
	padding-bottom: 274px;
}

#footer {
	position: absolute;
	bottom: 0;
	background: #fff;
}

#footer-inner {
	padding: 130px 0;
}

/* #header --------------------------------- */

#header-inner-upper {
	padding: 30px 35px 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
} 

/* #logo */

#logo {
	
}

#logo a {
	display: block;
	width: 151px;
	text-decoration: none;
}

#logo a img {
	width: 151px;
	height: auto;
}

/* #header-link-list */

#header-link-list {
	
}

#header-link-list li {
	display: inline-block;
	vertical-align: middle;
}

#header-link-list li + li {
	margin: 0 0 0 20px;
}

#header-link-list li.line {
	width: 22px;
}

#header-link-list li.cart {
	width: 30px;
}

#header-link-list li a {
	display: block;
}

/* #gnav */

#gnav {
	padding: 40px 0 25px 0;
}

#gnav ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}

#gnav ul li a {
	line-height: 1.1;
	color: #726b5a;
	font-family: 'Lustria', serif;
	font-size: 1.6rem;
	text-decoration: none;
	letter-spacing: .1em;
}

/* #link-online */

#link-online {
	position: absolute;
	top: 45px;
	right: 0;
	width: 51px;
	height: 40px;
}

/* #main --------------------------------- */

/* #path */

#path {
	margin: 0 auto;
	padding: 20px 0 50px 0;
	width: 1200px;
	line-height: 1.1;
}

#path li {
	display: inline;
	margin-right: 5px;
}

#path li:not(:last-child):after {
	margin-left: 7px;
	content: '>';
}

#path li a {
	color: #999;
}

#path li:last-child a {
	color: #666;
}

/* #main-header */

#main-header {
	position: relative;
	margin-bottom: 4px;
	padding-bottom: 10px;
	width: 100%;
	border-bottom: 3px solid #6a6a6a;
}

#main-header:after {
	position: absolute;
	bottom: -7px;
	left: 0;
	width: 100%;
	height: 0;
	border-bottom: 1px solid #6a6a6a;
	content: '';
}

#main-header-inner {
	position: relative;
	margin: 0 auto;
	width: 1200px;
}

#main-header .title,
#main-header .desc {
	display: table-cell;
	vertical-align: middle;
}

#main-header .title {
	line-height: 1;
	color: #3b3b3b;
	font-family: 'Cormorant Garamond';
	font-weight: 700;
	font-size: 2.5rem;
	text-transform: uppercase;
	letter-spacing: .1em;
}

#main-header .title a {
	text-decoration: none;
}

#main-header .desc {
	padding-left: 30px;
	color: #888;
	font-size: 1.1rem;
}

/* #main-visual */

#main-visual {
	position: relative;
	width: 100%;
}

#main-visual .img img {
	width: 100%;
	height: auto;
}

/* #main-content */

#main-content {
	position: relative;
	margin: 0 auto;
	padding: 50px 0;
	width: 1120px;
	font-size: 1.2rem;
}

/* #main-content-fair */

#main-content-fair {
	padding: 0;
	width: 100%;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#main-content-fair .section-header .title {
	font-family: 'Lustria', serif;
	font-size: 3rem;
	font-weight: normal;
	text-transform: none;
	color: #726b5a;
}

#main-content-fair .section-header .title-desc {
	margin: 18px 0 0 0;
	font-family: 'Lustria', serif;
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: .1em;
	font-weight: normal;
	color: #726b5a;
	text-align: center;
}

/* #footer --------------------------------- */

/* #btn-pagetop */

#btn-pagetop {
	display: none;
	position: fixed;
	width: 60px;
	height: 60px;
	right: 60px;
	bottom: 50px;
	z-index: 50;
}

#footer-contents {
	padding: 0 60px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/* #fnav */

#fnav {
	font-family: 'Lustria', serif;
	font-weight: normal;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: .1em;
}

#fnav li {
	display: inline-block;
}

#fnav li + li {
	margin: 0 0 0 25px;
}

#fnav li a {
	text-decoration: none;
	color: #726b5a;
}

/* #copyright */

#copyright {
	font-family: 'Lustria', serif;
	font-weight: normal;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: .1em;
	color: #726b5a;
}





/*---------------------------------------------------------------------- */
/* 667px SmartPhone Styles
------------------------------------------------------------------------ */

@media screen and (max-width: 667px) {

/* Override
---------------------------------------------------------- */

body {
	line-height: 1.6;
}

select, input[type='text'], input[type='email'], input[type='tel'], input[type='url'], textarea {
	font-size: 1.2rem;
}

/* Utilities
---------------------------------------------------------- */

/* Hide Contents --------------------------------- */

.nobreak-sp,
#path {
	display: none;
}

/* Show Contents --------------------------------- */

.break-sp,
#btn-menu {
	display: block !important;
}

/* Button --------------------------------- */

.btn {
	margin: 0 auto;
	width: 127px;
	height: 30px;
	line-height: 30px;
	font-size: 1.2rem;
}

/* Pagination --------------------------------- */

.pagination {
	padding-top: 30px;
}

.pagination li a {
	font-size: 1.1rem;
}

.pagination li.last {
	margin-left: 0;
}

.pagination li.first a,
.pagination li.last a {
	letter-spacing: -.2em;
}

.pagination .btn-prev,
.pagination .btn-next {
	margin: 0 30px;
}

/* List --------------------------------- */

/* .legend */

.legend {
	margin: 0 0 25px 0;
	padding-bottom: 10px;
}

.legend-title {
	font-size: 1rem;
}

.legend-content {
	justify-content: center;
}

/* .list-items, .list-coordinate */

.list-items:not(.slides),
.list-coordinate:not(.slides) {
	justify-content: center;
	margin-bottom: -30px;
}

.list-items:not(.slides) li,
.list-coordinate:not(.slides) li {
	margin-bottom: 30px;
	width: 110px;
}

.list-items li,
.list-coordinate li {
	font-size: .9rem;
}

.list-items li .cat li,
.list-coordinate li .cat li {
	margin: 0 2px;
	width: 6px;
	height: 6px;
}

.list-coordinate + .list-coordinate {
	margin-top: 30px;
}

.list-coordinate.accordion {
	height: 480px;
}

.list-coordinate.accordion.active {
	height: 970px;
}

.list-coordinate.accordion + .btn-more button {
	margin-bottom: 20px;
	height: 25px;
	font-size: 1rem;
}

.list-coordinate.accordion + .btn-more button:after {
	height: 10px;
	background-size: 20px;
}

/* .list-feature, .list-topics, .list-blog */

.list-feature,
.list-topics,
.list-blog {
	margin: 0 -15px -20px 0;
}

.list-feature li,
.list-topics li,
.list-blog li {
	margin: 0 15px 20px 0;
	width: calc(50% - 15px);
}

.list-feature li .title,
.list-topics li .title,
.list-blog li .title {
	font-size: .7rem;
}

.list-feature li .date,
.list-topics li .date,
.list-blog li .date {
	font-size: .6rem;
}

.list-blog li .cat {
	font-weight: bold;
	font-size: .8rem;
}

/* .list-news */

.list-news .title {
	display: block;
	margin-top: 5px;
}

/* .list-collection */

.list-collection,
.list-collection.col {
	flex-flow: column;
	align-items: center;
	margin: 0 0 -20px 0;
}

.list-collection li,
.list-collection.col li {
	margin: 0 auto 20px auto;
	width: 245px;
}

.list-collection li a .img,
.list-collection.col li a .img {
	margin-bottom: 10px;
}

.list-collection li a .txt {
	font-size: .8rem;
}

/* Section --------------------------------- */

.section {
	padding: 15px 0;
}

.section .link-all {
	position: static;
	margin: 0 auto 20px auto;
	width: 104px;
}

.section .link-all a {
	display: block;
	margin: 0 auto;
	position: relative;
	width: 100%;
	height: 28px;
	line-height: 28px;
	overflow: hidden;
}

.section .link-all a:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #e0e0e0;
	background: #fff;
	box-sizing: border-box;
	font-size: .8rem;
	text-align: center;
	content: attr(data-txt);
}

.section-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #000;
}

.section-header .title {
	width: 100%;
	font-size: 1.5rem;
	text-align: center;
}

.section-content {
	padding: 25px 0;
}

.section-content:after {
	top: 2px;
}

.section-content-inner {
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.section-content .subtitle {
	margin: 30px 0 15px 0;
}

.section-content .subtitle h2 {
	width: 200px;
}

.section-content .subtitle .link-all {
	right: 0;
}

/* #section-collection */

#section-collection {
	padding: 60px 0 60px;
}

#section-collection .section-content {
	padding: 0;
}

#section-collection .section-content:after {
	display: none;
}

.collection-group {
	margin: -10px 0 0 0;
	display: block;
}

.collection-block {
	margin: 40px 0 0 0;
	padding: 0 0 25px 0;
	width: 100%;
}

.collection-block::after {
	right: -1px;
	width: 70px;
	height: 6px;
}

.collection-block-inner {
	padding: 30px 20px 55px;
}

.collection-brand-name {
	font-size: 1.4rem;
}

.collection-image {
	margin: 22px 0 0 0;
}

.collection-theme {
	bottom: -10px;
	left: 20px;
}

.collection-theme dt {
	font-size: 1.2rem;
	letter-spacing: .175em;
}

.collection-theme dd {
	margin: 10px 0 0 0;
	font-size: 2.4rem;
	letter-spacing: .1em;
}

.collection-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* #section-sns */

#section-sns {
	padding: 60px 0 45px;
}

.sns-link-group {
	margin: -5px 0 0 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sns-link-block {
	margin: 15px 0 0 0;
	width: 48%;
}

/* Block --------------------------------- */

/* .block */

.block {
	margin-bottom: 20px;
	width: 100%;
}

.block h1,
.block h2,
.block h3 {
	text-align: center;
}

.block h1 {
	font-size: 1.6rem;
}

.block h2 {
	font-size: 1.4rem;
}

.block h3,
.block h4,
.block h5,
.block h6 {
	font-size: 1.2rem;
}

.block img {
	height: auto !important;
}

/* .block-post */

.block-post h1,
.block-post h2,
.block-post h3 {
	text-align: inherit;
}

.block-post .block-header {
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.block-post .block-header .title {
	font-size: 1.4rem;
}

.block-post table {
	width: 100% !important;
	border-collapse: collapse;
	border-spacing: 0;
}

.block-post table tr {
	display: flex;
	flex-flow: column;
	padding-bottom: 20px;
	height: auto !important;
}

.block-post table th,
.block-post table td {
	padding: 0;
	width: 100% !important;
	height: auto !important;
	box-sizing: border-box;
}

.block-post table th {
	padding-bottom: 10px;
	border-width: 1px 0 0 0;
}

.block-post table:not([border='0']),
.block-post table:not([border='0']) > thead > tr > th,
.block-post table:not([border='0']) > thead > tr > td
.block-post table:not([border='0']) > tbody > tr > th,
.block-post table:not([border='0']) > tbody > tr > td,
.block-post table:not([border='0']) > tfoot > tr > th,
.block-post table:not([border='0']) > tfoot > tr > td {
	border: 0;
}

.block-post .alignleft-sp {
	display: block;
	text-align: left;
}

.block-post .aligncenter-sp {
	display: table;
	margin: 0 auto;
	text-align: center;
}

.block-post .alignright-sp {
	display: block;
	text-align: right;
}

.block-post .elastic-sp img {
	width: 100% !important;
	height: auto !important;
}

/* .block-form */

.block-form {
	width: 100%;
	padding-top: 12px;
}

.block-form dl {
	flex-direction: column;
}

.block-form dl dt,
.block-form dl dd {
	width: 100%;
}

.block-form .wpcf7-not-valid-tip {
	padding-top: 5px;
	font-size: 1rem;
}

.block-form select,
.block-form input[type='text'],
.block-form input[type='tel'],
.block-form input[type='email'],
.block-form input[type='url'],
.block-form textarea {
	font-size: 1.2rem;
}

.block-form input[type='text'],
.block-form input[type='tel'],
.block-form input[type='email'],
.block-form input[type='url'] {
	padding: 2px 7px;
	height: 30px;
	line-height: 30px;
}

.block-form textarea {
	padding: 5px 7px;
	height: 115px;
}

.block-form dl dt {
	padding-top: 0;
	font-size: 1.2rem;
}

.block-form dl dt {
	margin-bottom: 3px;
	width: 100%;
}

.block-form dl dd {
	margin-bottom: 12px;
	padding-left: 0;
}

.block-form .btn-container {
	margin-top: 20px;
	width: 100%;
}

.block-form .btn-container .btn {
	margin: 0 auto;
}

.block-thanks {
	width: 100%;
}

.block-thanks h3 {
	margin-bottom: 20px;
}

/* Slick.js --------------------------------- */

.slick-slider {
	padding: 0 10px;
}

.slick-slide {
	padding: 0 8px;
}

.slick-prev,
.slick-next {
	width: 7px;
	height: 12px;
	background-size: contain;
}

.slick-prev {
	left: 0;
}

.slick-next {
	right: 0;
}


/* Layout
---------------------------------------------------------- */

/* Base --------------------------------- */

#container {
	min-width: 320px;
	width: 100%;
}

#header {
	position: relative;
	height: 55px;
	z-index: 200;
}

#main {
	padding-bottom: 0;
}

#footer {
	position: relative;
	padding: 20px 0 100px;
	background: #fff;
}

#header-inner,  #footer-inner {
	width: 100%;
}

#footer-inner {
	padding: 0;
}

.nav-active #header {
	position: fixed;
}

.nav-active #main,
.nav-active #footer {
	padding: 0;
	height: 0;
	opacity: 0;
	pointer-events: none;
}

/* #header --------------------------------- */

#header-inner-upper {
	padding: 0 55px 0 20px;
} 

/* #logo */

#logo {
	padding-top: 20px;
}

#logo a {
	width: 90px;
	height: 14px;
}

#logo a img {
	width: 90px;
}

/* #header-link-list */

#header-link-list {
	
}

#header-link-list li {
	
}

#header-link-list li + li {
	margin: 0;
}

#header-link-list li.line {
	display: none;
}

#header-link-list li.cart {
	padding: 14px 0 0 0;
	width: 28px;
}

/* #gnav */

#gnav {
	position: absolute;
	top: 55px;
	left: 0;
	padding: 0;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transform-origin: center top;
	transition: all .5s ease;
}

.nav-active #gnav {
	opacity: 1;
	pointer-events: auto;
}

#gnav ul {
	flex-flow: column wrap;
	justify-content: flex-start;
	width: 100%;
	padding: 30px 0 0 0;
}

#gnav ul li {
	margin-left: 0;
	width: 100%;
}

#gnav ul li a {
	display: block;
	padding: 0 60px;
	height: 35px;
	line-height: 35px;
	font-size: 1.4rem;
}

/* #btn-menu */

#btn-menu {
	position: absolute;
	top: 0;
	width: 40px;
	height: 40px;
}

#btn-menu .icons,
#btn-menu .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
}

#btn-menu {
	top: 7px;
	right: 6px;
	z-index: 100;
	overflow: hidden;
	box-sizing: border-box;
	cursor: pointer;
}

#btn-menu .icons {
	display: block;
	transform: rotate(0);
	transition: all .3s ease-out;
}

#btn-menu .icon {
	transition: all .3s ease-out;
}

#btn-menu .icon span {
	display: block;
	position: absolute;
	left: 10px;
	width: 20px;
	height: 3px;
	background: #726b5a;
	transition: all .3s ease-out;
}

#btn-menu .icon-top span {
	top: 20px;
	transform: translateY(-10px);
}

#btn-menu .icon-mid span {
	top: 19px;
}

#btn-menu .icon-bot span {
	bottom: 9px;
}

.nav-active #btn-menu .icons {
	transform: rotate(90deg);
}

.nav-active #btn-menu .icon span {
	left: 8px;
	width: 24px;
}

.nav-active #btn-menu .icon-top  {
	
}

.nav-active #btn-menu .icon-top span {
	transform: rotate(45deg);
	top: 19px;
}

.nav-active #btn-menu .icon-mid {
	opacity: 0;
}

.nav-active #btn-menu .icon-bot  {
	
}

.nav-active #btn-menu .icon-bot span {
	transform: rotate(-45deg);
	top: 19px;
}

.nav-active #btn-menu .icon-top span {
	
}

.nav-active #btn-menu .icon-bot span {
	
}

/* #link-online */

#link-online {
	top: 15px;
	right: 15px;
	width: 25px;
	height: 20px;
}

/* #main --------------------------------- */

/* #main-header */

#main-header {
	margin-bottom: 5px;
	padding: 25px 0 10px 0;
	border-bottom: 2px solid #6a6a6a;
}

#main-header-inner {
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

#main-header .title,
#main-header .desc {
	display: block;
	text-align: center;
}

#main-header .title {
	font-size: 1.6rem;
}

#main-header .desc {
	margin-top: 10px;
	padding-left: 0;
	font-size: 1rem;
	text-align: left;
}


/* #main-content */

#main-content {
	margin-bottom: 50px;
	padding: 25px 20px 0 20px;
	width: 100%;
	box-sizing: border-box;
}

/* #main-content-fair */

#main-content-fair {
	
}

#main-content-fair .section-header {
	padding: 0;
	border-bottom: none;
}

#main-content-fair .section-header .title {
	font-size: 2.4rem;
}

#main-content-fair .section-header .title-desc {
	font-size: 1.2rem;
}

/* #footer --------------------------------- */

/* #btn-pagetop */

#btn-pagetop {
	bottom: 40px;
	right: 20px;
	margin-left: 0;
	width: 50px;
	height: 50px;
}

#footer-contents {
	padding: 0;
	display: block;
}

/* #fnav */

#fnav {
	position: static;
	top: 0;
	left: 0;
	font-size: 1.2rem;
	margin-bottom: 50px;
	text-align: center;
}

#fnav li {
	margin: 0;
}

#fnav li + li {
	margin: 0 0 0 30px;
}

#fnav li a {
	font-weight: normal;
}

/* #copyright */

#copyright {
	font-weight: normal;
	font-size: 1rem;
	text-align: center;
}


}