@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Lora');

* {
	box-sizing: border-box;
}
html, body {
	font-family: sans-serif;
	font-size: 13px;
	letter-spacing: 0.03em;
	color: #444;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body, div, p, h1, h2, h3, ul, ol {
	margin: 0;
	padding: 0;
}
p, li {
	line-height: 1.7;
}
ul, ol {
	list-style-type: none;
}
address, em {
	font-style: normal;
}
a {
	color: #444;
	text-decoration: underline;
	outline: none;
}
a:hover {
	text-decoration: none;
	color: #045fb4;
	-webkit-transition: color 0.4s ease-out;
	transition: color 0.4s ease-out;
}
img {
	width: 100%;
	height: auto;
	display: block;
	border: 0;
}


/* ==== 共通 ==== */
main h1 {
	font-size: 2rem;
	font-family: 'Lora', serif;
	font-weight: normal;
	margin: 0 0 20px 0;
}
main h2 {
	font-size: 1.4rem;
	font-weight: normal;
	color: #666;
	font-family: 'Lora', serif;
}
h3 {
	font-size: 1.1rem;
	font-weight: normal;
}
.container {
	margin: 0 auto;
	padding: 0 10px;
	max-width: 950px;
}
.main-inner {
	padding: 0 10px;
}
.sankaku {
	padding-left: 16px;
	background: url(../images/arrow2-migi.png) 0 center/13px auto no-repeat;
}
.attention {
	color: #df013a;
}
.orderstop {
	display: block;
	font-weight: bold;
	margin: 1rem 0;
}


/* ==== ヘッダー ==== */
.header-logo {
	padding: 10px 0;
	width: 75%;
	height: auto;
}
@media screen and (min-width:500px) {
	.header-logo {
		width: 320px;
	}
}


/* ==== グロナビ ====*/
.openbtn {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 9999;
	cursor: pointer;
	width: 50px;
	height: 50px;
	border: 1px solid #666;
	border-radius: 5px;
	background: #fff;
}
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 12px;
	height: 3px;
	border-radius: 2px;
	background: #666;
	width: 50%;
}

.openbtn span:nth-of-type(1) {
	top: 15px;
}
.openbtn span:nth-of-type(2) {
	top: 23px;
}
.openbtn span:nth-of-type(3) {
	top: 31px;
}
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 12px;
	transform: translateY(6px) rotate(-45deg);
	width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
	top: 30px;
	left: 12px;
	transform: translateY(-6px) rotate(45deg);
	width: 50%;
}

nav {
	margin-bottom: 20px;
}

#g-nav.panelactive #g-nav-list {
	position: fixed;
	z-index: 999;
	width: 50%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#g-nav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%;
	width: 50%;
	height: 100vh;
	background: #fff;
	transition: all 0.6s;
}
#g-nav.panelactive {
	right: 0;
}
#g-nav ul {
	position: absolute;
	z-index: 999;
	top: 80px;
	right: 50px;
	transform: translate(0,0);
}
#g-nav-list li {
	margin-bottom: 7px;
	font-size: 15px;
	font-family: 'Lora', serif;
}
#g-nav-list a {
	text-decoration: none;
}

.gnavi {
	display: flex;
	font-size: 15px;
	margin-bottom: 10px;
}
.gnavi768,
.gnavi890 {
	display: none;
}
.gnavi li {
	margin-right: 35px;
	font-family: 'Lora', serif;
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
}
.gnavi li:last-child {
	margin-right: 0;
}
.gnavi a {
	text-decoration: none;
}
@media screen and (min-width:768px) {
	.openbtn,
	#g-nav {
		display: none;
	}
	.gnavi768 {
		display: block;
	}
	.gnavi {
		font-size: inherit;
		margin-bottom: 0;
	}
	.gnavi890 .gnavi {
		justify-content: space-between;
	}
	.gnavi li {
		margin-right: 25px;
	}
	.gnavi890 .gnavi li {
		margin-right: 0;
	}
}
@media screen and (min-width:890px) {
	.gnavi768 {
		display: none;
	}
	.gnavi890 {
		display: block;
	}
}


/* ==== フッター ====*/
footer {
	margin: 40px 0 0;
}
.footer-container {
	padding-bottom: 10px;
}
#pagetop {
	text-align: right;
	margin-bottom: 15px;
	font-family: 'Lora', serif;
}
#pagetop a {
	text-decoration: none;
	display: inline-block;
	padding-right: 1em;
	background: url(../images/arrow2-ue.png) right 3px center/auto 11px no-repeat;
}
.footer-nav {
	margin: 20px 0 10px;
}
.footer-menu {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 12px;
}
.footer-menu li {
	font-family: 'Lora', serif;
	padding-bottom: 11px;
	width: 50%;
}
.footer-menu a {
	text-decoration: none;
}
.footer-sns li {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 14px;
	width: 40px;
	height: 40px;
}
.footer-erigroup-inner li {
	display: inline-block;
	width: 56px;
	margin-right: 10px;
}
.footer-erigroup-inner a img:hover {
	opacity: 0.9;
}
.copyright {
	font-size: 0.9em;
	margin-top: 15px;
	font-family: 'Lora', serif;
}
@media screen and (min-width:768px) {
	footer {
		font-size: 0.9rem;
	}
	.footer-content {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}
	.footer-nav {
		margin: 0;
	}
	.footer-menu {
		display: block;
	}
	.footer-menu li {
		display: inline-block;
		margin-right: 17px;
		padding-bottom: 0;
		width: auto;
	}
	.footer-sns li {
		margin-right: 14px;
		width: 35px;
		height: 35px;
	}
}


/* ==== トップページ ==== */
.keyvisual {
	padding-top: 10px;
}
.keyimg {
	margin: 5px auto 0;
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.keyimg ul {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.keyimg li {
	top: 0;
	left: 0;
	width: 100%;
	position: absolute;
}

.homemain-content {
	margin-bottom: 10px;
}
.naka {
	padding: 10px
}
.naka h2 {
	padding-bottom: 5px;
}
.info-content {
	padding: 5px;
}
.info-content li {
	padding: 5px 2px;
	border-bottom: 1px dotted #ccc;
}
.date {
	font-size: 0.85em;
	display: block;
	color: #888;
	text-align: right;
}
.newrelease-container {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column;
	flex-flow: column;
}
.newrelease-content {
	padding: 10px;
	border-top: 1px dotted #ddd;
}
.newrelease-content:first-child {
	padding-top: 0;
	border-top: 0;
}
.newrelease-content h3 a {
	text-decoration: none;
}
.sale {
	color: #666;
	font-size: 0.9em;
}
.newrelease-content p {
	margin-bottom: .5em;
}
.newrelease-content img {
	margin: 5px 0;
}
.umekomi {
  width: 100%;
  height: auto;
  margin: 5px 0;
  padding: 0;
}
.umekomi-inner {
  padding-top: 75%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.umekomi-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hatsubai {
	color: #df013a;
	font-weight: bold;
	font-size: .9em;
}
.hatsubai::before {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background: url(../images/arrow-red.png) left center/10px no-repeat;
	margin-right: 2px;
}
.hatsubai::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background: url(../images/arrow-red.png) left center/10px no-repeat;
	margin-left: 2px;
}

.bottombanner {
	margin-top: 50px;
}
.bottombanner li {
	margin-bottom: 15px;
}
.linebanner {
	margin-top: 50px;
	border: 1px solid #ddd;
}
@media screen and (min-width:768px) {
	.bottombanner {
		margin-top: 0;
	}
}

.insta-timeline {
	display: none;
	margin-top: 100px;
}
.insta-content {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.insta-icon {
	margin-left: 5px;
	width: 29px;
}

.sale-stop::before {
	content: "SALE";
	color: #df013a;
	margin-right: 3px;
}

@media screen and (min-width:768px) {
.newrelease-container {
	flex-flow: row;
	justify-content: space-between;
  flex-wrap: wrap;
	}
	.newrelease-content {
    width: 50%;
    padding: 0;
		padding-top: 5px !important;
    margin-bottom: 50px;
		border-top: 0;
	}
  .newrelease-content:nth-of-type(odd) {
    padding-right: 20px;
  }
  .newrelease-content:nth-of-type(even) {
    padding-left: 20px;
  }
	.onsale-container {
		-webkit-flex-flow: row;
		flex-flow: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	.onsale-content {
		padding: 10px 10px 20px !important;
		-webkit-flex: 1 1 180px;
		flex: 1 1 180px;
	}
	.dummy {
		display: list-item;
	}
	.insta-timeline {
		display: block;
	}
	.konkaidake {
		display: inline-block;
		height: 44px;
	}
}
@media screen and (min-width:801px) {
	.onsale-content {
		-webkit-flex: 1 1 190px;
		flex: 1 1 190px;
	}
}


/* ==== アバウト ==== */
.about-content {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column;
	flex-flow: column;
	margin-bottom: 10px;
}
.about-photo {
	width: 60%;
	margin-bottom: 6px;
}
.about-photo img {
	border: 1px solid #ccc;
}
.about-photo-inner {
	width: 310px;
	border: 1px solid #ccc;
}
.about-content p {
	margin: 0.3em 0 1.3em 0;
}
.publish {
	margin-bottom: 30px;
}
.publish li {
	margin-top: 1em;
	padding: 1em;
	border: 1px solid #ddd;
}
.publish li:first-child {
	margin-top: 0;
}
.publish li a {
	display: block;
	padding-top: 7px;
	color: #777;
}
.publish li a:hover {
	color: #045fb4;
}
.about-history {
	margin-bottom: 10px;
}
.history {
	border-collapse: separate;
	border-spacing: 5px;
	border: 0;
}
.history caption {
	color: #666;
	font-family: 'Lora', serif;
	font-size: 1.2rem;
	text-align: left;
	margin-bottom: 5px;
}
.history th {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
	padding: 0 5px 5px 0;
}
.history td {
	padding: 0 0 5px 0;
	vertical-align: top;
}
.history li {
	padding-left: 10px;
	background: url(../images/arrow-red-migi.png) left 0.5em/6px no-repeat;
}
.exhibit {
	display: block;
	padding-left: 1em;
}
.history-blog {
	padding-left: 1.2em;
	background: url(../images/arrow2-migi.png) left center/1em no-repeat;
	margin-left: 1em;
}

@media screen and (min-width:768px) {
	.about-content {
		-webkit-flex-flow: row;
		flex-flow: row;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		margin-bottom: 50px;
	}
	.about-history {
		margin-bottom: 50px;
	}
	.about-photo {
		width: auto;
		margin-bottom: 0;
		-webkit-flex: 0 0 310px;
		flex: 0 0 310px;
		padding-top: 37px;
	}
	.about-txt {
		-webkit-flex: 1 1 auto;
		flex: 1 1 auto;
		padding: 0 0 0 20px;
	}
	.about-content-r .about-txt {
		padding: 0 20px 0 0;
	}
	.publish {
		margin-top: -40px;
		margin-bottom: 50px;
	}
	.publish li {
		padding: 15px;
	}
	.exhibit {
		display: inline;
	}
}


/* ====ギャラリー ==== */
.leather-read {
	padding: 0 5px;
}
.leather-read h2 {
	color: #444;
}
.sekai {
	padding-left: 0.6em;
	display: block;
	text-align: right;
}
.leather-read p {
	margin: 0.7em 0;
	padding-left: 0.7em;
}
.gallery-nav {
	overflow: hidden;
	margin: 20px 0 10px;
}
.gallery-nav li {
	display: block;
	color: #808080;
	font-family: 'Lora', serif;
	line-height: 1;
}
.gallery-nav li:last-child {
	float: right;
}
.gallery-nav h2 {
	color: #444;
	font-size: 1.7rem;
}
.gallery-nav-bottom {
	text-align: right;
	margin-top: 20px;
	color: #808080;
	font-family: 'Lora', serif;
}
.gallery-nav a,
.gallery-nav-bottom a {
	text-decoration: none;
	color: #999;
}
.gallery-nav a:hover {
	color: #666;
}
.gallery-nav-bottom a:hover {
	color: #045fb4;
}
.gallery-content {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column;
	flex-flow: column;
}
.gallery-inner {
	margin-bottom: 30px;
}
.gallery-inner:last-child {
	margin-bottom: 0;
}
.gallery-inner h3 {
	margin-bottom: 3px;
	font-family: 'Lora', serif;
	letter-spacing: 0.07em;
	color: #666;
}
.leather-txt h2 {
	border-bottom: 1px solid #ddd;
}
.leather-txt p {
	margin: 0.7em 0 1em;
}
.illust-notxt {
	margin: 0 auto;
	padding-top: 40px;
}

.slick-prev,
.slick-next {
	position: absolute;
	z-index: 3;
	top: 42%;
	cursor: pointer;
	outline: none;
	border-top: 3px solid #ccc;
	border-right: 3px solid #ccc;
	width: 15px;
	height: 15px;
}
.slick-prev {
	left: 2.5%;
	transform: rotate(-135deg);
}
.slick-next {
	right: 2.5%;
	transform: rotate(45deg);
}

.ue {
	background: #333;
	border: 1px solid #ccc;
	overflow: hidden;
}
.tmb {
	margin-top: 10px;
}
.tmb-content {
	outline: none;
	margin: 0 1px;
	cursor: pointer;
}
.tmb-content img {
	opacity: 0.6;
}
.tmb-content.slick-current img {
	opacity: 1;
}


.illust-content {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: column;
	flex-flow: column;
}
.illust-content-notxt {
	text-align: center;
}
.illust-content section {
	padding: 10px 5px 5px;
}
.illust-h3 {
	margin-top: 0.5em;
	margin-bottom: 1em;
	text-indent: -5px;
}
.illust-content p {
	margin-bottom: 1em;
	line-height: 1.8;
}
.illust-slide {
	margin-bottom: 0;
}
.ill-ue {
	background: #fff;
}

@media screen and (min-width:768px) {
	.leather-read {
		padding: 0;
	}
	.leather-read h2 {
		font-size: 1.5rem;
	}
	.sekai {
		display: inline-block;
	}
	.gallery-nav li {
		display: inline-block;
		margin-right: 40px;
		line-height: 1.7;
	}
	.gallery-nav li:last-child {
		margin-right: 0;
		float: none;
	}
	.gallery-content {
		-webkit-flex-flow: row;
		flex-flow: row;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding: 10px;
	}
	.gallery-inner {
		width: 330px;
		-webkit-flex: 0 0 330px;
		flex: 0 0 330px;
	}
	.leather-txt {
		-webkit-flex: 1 1 auto;
		flex: 1 1 auto;
		padding-left: 30px;
	}
	.ue {
		width: 330px;
		height: 330px;
	}
	.illust-container {
		padding: 10px;
	}
	.illust-content {
		-webkit-flex-flow: row;
		flex-flow: row;
		-webkit-align-items: center;
		align-items: center;
	}
	.illust-content-1 {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.illust-content section {
		padding: 0;
	}
	.illust-content-1 section {
		margin-left: 40px;
	}
	.illust-content-2 section {
		margin-right: 40px;
	}
	.illust-h3 {
		margin-top: 0;
		text-indent: -1rem;
	}
}
@media screen and (min-width:890px) {
	.gallery-inner {
		width: 400px;
		-webkit-flex: 0 0 400px;
		flex: 0 0 400px;
	}
	.leather-txt {
		-webkit-flex: 1 1 auto;
		flex: 1 1 auto;
		padding-left: 30px;
	}
	.ue {
		width: 400px;
		height: 400px;
	}
}


/* ====ショップリスト ====*/
.shop {
	margin-bottom: 2em;
}
.shop h3 {
	font-size: 1.15em;
	padding-left: 18px;
	background: url(../images/arrow2-migi.png) 0 center/13px auto no-repeat;
}
.shop h3 span {
	display: inline-block;
	padding-left: 10px;
	font-size: 0.8em;
}
.shop p {
	margin: 0.3em 0;
	padding-left: 2.5em;
	text-indent: -1em;
}

/* ==== コンタクト ==== */
.contactmain-inner p,
.contactmain-inner address {
	line-height: 1.8;
	margin-bottom: 2em;
}
.contact-ano {
	text-decoration: none;
}
.contact-ano:hover {
	text-decoration: underline;
}
.contact-attention {
	border: 3px double #df013a;
	padding: 20px;
	line-height: inherit;
	display: inline-block;
}
.link-order {
	font-family: 'Lora', serif;
}


/* ==== オーダーメイド ==== */
.order-img {
	margin-top: 10px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.order-img-inner {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.order-img-inner:last-child {
	border-right: 1px solid #ddd;
}
.order-txt {
	margin: 2em 0;
}
.order-txt h2 {
	border-bottom: 1px solid #ddd;
	font-family: serif;
}
.sub {
	display: block;
	font-size: 13px;
	margin-left: 0.5em;
}
.order-txt p {
	margin: 0.5em 0 1em;
	padding: 0 0.6em;
}
.order-content {
	margin: 2em 0;
}
.order-content h2 {
	color: #444;
	font-family: serif;
}
.flow {
	margin: 5px 0;
}
.flow-content {
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 3px;
}
.flow li::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url(../images/arrow2-shita.png) 0/contain no-repeat;
	margin: 7px 0 7px 13px;
}
.flow li:last-child::after {
	display: none;
}
.flow-order {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 4px;
	border: 1px solid #666;
	border-radius: 50px;
	padding: 2px;
	background: #f2f2f2;
	font-size: 16px;
	line-height: 1;
	text-align: center;
}
.flow p {
	margin: 0.7em 0;
	padding: 0 0 0 0.5em;
}
.flow-small {
	font-size: 0.9em;
	vertical-align: bottom;
}
.flow .important {
	text-indent: -1em;
	padding-left: 1.5em;
	color: #df013a;
}
.flow .danraku {
	text-indent: -1em;
	padding-left: 1.5em;
}
.order-content p {
	margin: 0.5em 0;
	padding: 0 5px;
}
.order-price table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ccc;
	margin-top: 10px;
}
.order-price caption {
	display: none;
}
.order-price tr {
	border-bottom: 1px solid #ccc;
}
.order-price tr:first-child {
	border-bottom: 1px solid #ccc;
	background: #f2f2f2;
}
.order-price td {
	border-left: 1px dotted #ccc;
	padding: 5px 10px;
}
.price {
	white-space: nowrap;
}
.price-attention li {
	color: #df013a;
	padding-left: 1.5em;
	text-indent: -1.5em;
	margin: 0.5em 0;
	line-height: 1.6;
}
.color-sample {
	max-width: 600px;
	border: 1px solid #ccc;
}
.order-color .sample-attention {
	margin-top: 0;
	padding-left: 5px;
	font-size: 0.9rem;
	color: #666;
}
.stamp-sample {
	max-width: 500px;
	border: 1px solid #ccc;
}
@media screen and (min-width:768px) {
	.order-txt {
		margin: 3em 0;
	}
	.order-content {
		margin: 3em 0;
	}
	.sub {
		display: inline-block;
	}
	.order-txt p {
		padding: 0 1em;
		margin-top: 1em;
	}
	.flow-small {
		display: block;
	}
}


