/*-----------------------------------------------------	*/
/* All
/*-----------------------------------------------------	*/

body {
	background-color: #ffffff;
	box-sizing: border-box;
	color: #000000;
	font-family: 'Noto Sans JP', 'Lato', sans-serif;
	font-feature-settings: "palt";
}

img {
	height: auto;
	width: 100%;
}

a {
	color: #b5761d;
}

a:hover,
a:hover img {
	opacity: 0.75;
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Noto Serif JP', serif;
}

h2 {
	font-size: 2.0rem;
	line-height: 2.2rem;
	margin: 0px 0px 32px 0px;
}

h2 span {
	align-items: center;
	display: flex;
	font-family: 'Noto Sans JP', 'Lato', sans-serif;
	font-size: 1.0rem;
	font-weight: normal;
	margin: 0px 0px 16px 0px;
	justify-content: center;
}

h2 span:before,
h2 span:after {
	border-top: 1px solid #000000;
	content: "";
	width: 20px;
}

h2 span:before {
	margin-right: 8px;
}

h2 span:after {
	margin-left: 8px;
}

h3 {
	font-size: 1.35rem;
	margin: 0px 0px 16px 0px;
}

h3 span {
	align-items: center;
	display: flex;
	font-family: 'Noto Sans JP', 'Lato', sans-serif;
	font-size: 1.0rem;
	font-weight: normal;
	margin: 0px 0px 16px 0px;
	justify-content: center;
}

.btn {
	display: flex;
	font-size: 0rem;
	justify-content: center;
	margin: 0px 16px;
	margin-bottom: 16px;
}

.btn li {
	font-size: 1.0rem;
	list-style-type: none;
	margin: 0px 2px 0px 2px;
	width: 380px;
}

.btn li a {
	background: #333333;
	border-bottom: 4px solid;
	border-color: #000000;
	box-sizing: border-box;
	color: #ffffff;
	display: block;
	padding: 16px;
	position: relative;
	text-decoration: none;
}

.btn li a::after {
	content: "\e5cc";
	font-family: "Material Icons";
	padding: 2px 0px 0px 0px;
	position: absolute;
	right: 13px;
}

.btn.flex {
	display: flex;
	justify-content: center;
}

.btn.icon {
	display: block;
}

.btn.icon li {
	margin: 0px 0px 8px 0px;
	width: auto;
}

.btn.icon li a::after {
	content: none;
}

.btn.icon li a img {
	height: auto;
	margin: 1px 4px 0px 0px;
	width: 30px;
}

.btn.icon li a img,
.btn.icon li a span {
	vertical-align: middle;
}

.btn.icon.grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -2px;
}

.btn.icon.grid li {
	margin: 0px 2px 4px 2px;
	position: relative;
	width: calc(33.33% - 4px);
}

.btn.icon.grid li::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.btn.icon.grid li a {
	height: 100%;
	padding: 0px;
	position: absolute;
	top: 0;
	width: 100%;
}

.btn.icon.grid li a div {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}

.btn.icon.grid li a div img {
	margin: 0px;
}

.btn.icon.grid li a div span {
	display: block;
	word-break: keep-all;
}

.btn.small li {
	width: 115px;
}

.btn.small li a {
	font-size: 0.9rem;
	padding: 8px;
}

.btn.small li a::after {
	right: 6px;
}

.btn.red li a {
	background: #8e2121;
	border-color: #7c0e0e;
}

.btn.yellow li a {
	background: #e0af77;
	border-color: #e1a866;
}

/*-----------------------------------------------------	*/
/* Header
/*-----------------------------------------------------	*/

header {
	font-size: 0.9rem;
}

header nav ul {
	display: flex;
}

header nav ul li {
	align-items: center;
	display: none;
	margin: 0px 16px 0px 0px;
}

header nav ul li:first-child {
	display: flex;
}

header nav ul li a {
	color: #ffffff;
	text-decoration: none;
}

header nav ul li a::before {
	content: "\e5cc";
	font-family: "Material Icons";
	position: relative;
	top: 2px;
}

header nav ul li.logo {
	margin-right: auto;
}

header nav ul li.logo a {
	padding: 16px;
}

header nav ul li.logo a::before {
	content: none;
}

header nav ul li.logo a img {
	max-height: 64px;
	width: auto;
}

header div.menu-btn {
	background: #000000;
	font-size: 2.0rem;
	padding: 15px 18px;
	position: fixed;
	right: 0px;
	top: 0px;
	z-index: 999;
}

header div.menu-btn a.btn-open,
header div.menu-btn a.btn-close {
	display: contents;
	text-decoration: none;
}

header div.menu-btn a.btn-open {
	color: #ffffff;
}

header div.menu-btn a.btn-open::before {
	content: "\e5d2";
	font-family: "Material Icons";
}

header div.menu-btn a.btn-close {
	color: #ffffff;
}

header div.menu-btn a.btn-close::before {
	content: "\e5cd";
	font-family: "Material Icons";
}

header div.overlay {
	background: #000000;
	display: none;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}

header div.overlay ul li {
	border-bottom: 1px solid #aaaaaa;
	font-size: 1.0rem;
}

header div.overlay ul li a {
	color: #ffffff;
	display: block;
	padding: 32px 16px;
	text-decoration: none;
}

header div.overlay ul li a:hover {
	background: #ffffff;
	color: #000000;
}

header div.overlay ul li.logo {
	text-align: center;
}

header div.overlay ul li.logo a:hover {
	background: none;
}

header div.overlay ul li.logo a img {
	max-height: 64px;
	width: auto;
}

header.under nav ul li a {
	color: #000000;
}

header.under nav ul li.logo a img {
	max-height: 31px;
}

/*-----------------------------------------------------	*/
/* Visual
/*-----------------------------------------------------	*/

.visual-top,
.visual-under {
	display: block;
	position: relative;
	z-index: -1;
}

.visual-top {
	background: url("../images/visual-top-sp.jpg") center center;
	background-size: cover;
	min-height: 100vh;
	margin: -97px 0px 64px 0px;
}

@supports (-webkit-touch-callout: none) {
	.visual-top {
		min-height: -webkit-fill-available;
	}
}

.visual-under {
	height: 32vh;
	margin: 0px 0px 16px 0px;
}

.visual-under.company {
	background: url("../images/visual-under-company.jpg") center center;
	background-size: cover;
}

.visual-top div.catch-copy,
.visual-under div.catch-copy {
	color: #ffffff;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.visual-top div.catch-copy::before,
.visual-under div.catch-copy::before {
	background: rgba(0, 0, 0, 0.125);
	bottom: -16px;
	content: '';
	filter: blur(16px);
	left: -16px;
	position: absolute;
	right: -16px;
	top: -16px;
	z-index: -1;
}

.visual-top div.catch-copy p,
.visual-top div.catch-copy h1,
.visual-under div.catch-copy p,
.visual-under div.catch-copy h1 {
	white-space: nowrap;
}

.visual-top div.catch-copy p,
.visual-under div.catch-copy p {
	font-size: 1.5rem;
}

.visual-top div.catch-copy h1 {
	font-size: 5.0rem;
}

.visual-under div.catch-copy h1 {
	font-size: 2.5rem;
}

.visual-top div.catch-copy h1 span,
.visual-under div.catch-copy h1 span {
	font-size: 2.5rem;
}

.visual-top div.scroll {
	left: 50%;
	position: absolute;
	bottom: 5%;
	transform: translateY(0%) translateX(-50%);
}

.visual-top div.scroll img {
	max-height: 12vh;
	width: auto;
}

/*-----------------------------------------------------	*/
/* Breadcrumb
/*-----------------------------------------------------	*/

.breadcrumb {
	margin: 0px auto;
	max-width: 1280px;
}

.breadcrumb ul {
	margin: 0px 16px 64px 16px;
}

.breadcrumb ul li {
	display: inline-block;
}

.breadcrumb ul li::after {
	content: "\e5cc";
	font-family: "Material Icons";
	position: relative;
	top: 2px;
}

.breadcrumb ul li:last-of-type::after {
	content: none;
}

.breadcrumb ul li a {
	text-decoration: none;
}

/*-----------------------------------------------------	*/
/* Footer
/*-----------------------------------------------------	*/

footer {
	background: #000000;
	color: #ffffff;
	font-size: 0.75rem;
	padding: 32px;
	text-align: center;
}

footer a {
	color: #ffffff;
	text-decoration: none;
}

footer nav {
	border-bottom: 1px solid #333333;
	margin: 0px 0px 32px 0px;
	padding: 0px 0px 32px 0px;
	width: 100%;
}

footer nav ul {
	display: inline-block;
	margin: 0px 16px;
	text-align: left;
}

footer nav ul li {
	display: inline-block;
	margin: 0px 10px 16px 10px;
}

footer nav ul li:last-child {
	margin: 0px;
}

footer nav ul li a::before {
	content: "\e5cc";
	font-family: "Material Icons";
	position: relative;
	top: 2px;
}

footer div p,
footer div address {
	margin: 0px 16px 24px 16px;
}

footer div p:last-of-type {
	margin: 0px 16px;
}

footer div p img {
	max-height: 48px;
	width: auto;
}

footer div p span {
	background: #ffffff;
	border-radius: 8px;
	color: #000000;
	padding: 8px 16px;
}

footer div address {
	font-style: normal;
}

footer #page_top{
	background: url("../images/pagetop.png") center center;
	background-size: cover;
	bottom: 3%;
	display: block;
	height: 64px;
	position: fixed;
	right: 3%;
	width: 64px;
}

footer #page_top a{
	display: block;
	position: relative;
	text-decoration: none;
	height: 64px;
	width: 64px;
}

/*-----------------------------------------------------	*/
/* Main
/*-----------------------------------------------------	*/

main {
	line-height: 1.5rem;
	margin: 0px auto;
	text-align: center;
}

main section {
	margin: 0px 0px 64px 0px;
}

main section p {
	margin: 0px 16px 32px 16px;
}

main section div.news {
	background: #f3ede6;
	margin: 0px 16px 16px 16px;
	padding: 10px 10px 20px 10px;
}

main section div.news dl {
	background: #ffffff;
	margin: 0px 0px 4px 0px;
	padding: 16px;
	text-align: left;
}

main section div.news dl:last-of-type {
	margin: 0px 0px 32px 0px;
}

main section div.news dl dt {
	font-size: 0.8rem;
}

main section div.news dl dd {
	font-size: 0.9rem;
}

main section div.news dl dd a {
	text-decoration: none;
}

main section div.information {
	background: #f3ede6;
	margin: 0px 16px 16px 16px;
	padding: 10px 10px 20px 10px;
}

main section div.information dl {
	background: #ffffff;
	margin: 0px 0px 4px 0px;
	padding: 16px 20px;
	text-align: left;
}

main section div.information dl:last-of-type {
	margin-bottom: 8px;
}

main section div.information dl dt {
	color: #e1a866;
	margin: 0px 0px 8px 0px;
}

main section div.information dl dd a {
	text-decoration: none;
}

main section div.information iframe {
	height: 256px;
	margin: 24px 0px 0px 0px;
	width: 100%;
}

main section ul.line {
	display: block;
	list-style-type: none;
}

main section ul.line li {
	margin: 0px 16px 16px 16px;
}

main section div.slick {
	margin: 0px 0px 48px 0px;
}

main section div.slick ul li {
	margin: 0px 16px;
}

main section div.slick ul li a {
	text-decoration: none;
}

main section div.slick ul li img {
	margin: 0px 0px 16px 0px;
	width: 100%;
}

.slick-track {
	margin-bottom: 16px;
}

.slick-prev {
    left: 0px;
	z-index: 1;
}

.slick-next {
    right: 0px;
	z-index: 1;
}

.slick-dots {
	bottom: 0px;
	position: relative;
}

main section ul.shop-info {
	font-size: 0rem;
	list-style-type: none;
	margin: 0px auto;
	max-width: 1280px;
	width: 100%;
}

main section ul.shop-info li {
	display: inline-block;
	margin: 0px 16px 32px 16px;
	vertical-align: top;
}

main section ul.shop-info li a {
	color: #000000;
	display: block;
	text-decoration: none;
}

main section ul.shop-info li a img {
	margin: 0px 0px 8px 0px;
	max-width: 280px;
	width: 100%;
}

main section dl.company {
	margin: 0px 16px;
	text-align: left;
}

main section dl.company dt {
	border-top: 1px solid #aaaaaa;
	font-weight: bold;
	padding: 16px 16px 2px 16px;
}

main section dl.company dd {
	padding: 2px 16px 16px 16px;
}

.archive main section,
.single main section,
.page main section,
.error404 main section {
	margin: 0px auto;
	margin-bottom: 64px;
	max-width: 760px;
}

.home main section {
	max-width: none;
}

/*-----------------------------------------------------	*/
/* archive
/*-----------------------------------------------------	*/

.archive main section ul {
	font-size: 0rem;
	list-style-type: none;
	text-align: left;
	width: 100%;
}

.archive main section ul li {
	display: inline-block;
	font-size: 0.875rem;
	margin: 0px 24px 48px 24px;
	vertical-align: top;
	width: calc(100% - 48px);
}

.archive main section ul li article a {
	display: block;
	text-decoration: none;
}

.archive main section ul li article a img {
	height: clamp(150px, 15vmin, 200px);
	margin: 0px 0px 8px 0px;
	object-fit: cover;
	width: 100%;
}

.archive main section ul li article a ul {
	margin: 0px 0px 8px 0px;
}

.archive main section ul li article a ul li {
	color: #666666;
	margin: 0px 4px 0px 0px;
	width: auto;
}

.archive main section ul li article a ul li:first-child::after {
	content: "/";
}

.archive main section ul li article a span {
	color: #000000;
	font-size: 1.125rem;
	display: block;
}

/*-----------------------------------------------------	*/
/* single
/*-----------------------------------------------------	*/

.single main section {
	padding: 0px 16px;
}

/*-----------------------------------------------------	*/
/* 404
/*-----------------------------------------------------	*/

.error404 main section {
	margin-bottom: 256px;
}

.error404 main section p {
	margin: 0px 16px 64px 16px;
}

/*-----------------------------------------------------	*/
/* ブロックエディター
/*-----------------------------------------------------	*/

.wp-block-media-text {
	margin-bottom: 10vmin;
}

.wp-block-media-text .wp-block-media-text__content {
	padding: 0;
}

.wp-block-group {
	margin-bottom: 10vmin;
}

.wp-block-group .wp-block-group {
	margin-bottom: 5vmin;
}

.smallColumn {
	max-width: 500px;
	margin: 0 auto 10vmin;
}

.smallWide {
	max-width: 500px;
}

p.has-background {
	padding: 1.25rem 1rem;
}