@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: 16px;
	line-height: 1.9rem;
	color: #000;
	overflow-x: hidden;
}
body {
	margin: 0 auto;
	/* overflow-x: hidden; */
}
main {
	opacity: 0;
	background-color: #EBEBEB;
	position: relative;
}
p {
	/* text-align: justify;
	text-justify: inter-ideograph; */
}
img {
	border: none;
	vertical-align: top;
	height: auto;
}
span {
	display: inline-block;
	white-space: pre-wrap;
}
a {
	display: inline-block;
	text-decoration: none;
	/* color: #3A7FCB; */
	color: currentcolor;
	/* transition: .5s; */
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
	opacity: .8;
}
ul {
	list-style-type: none;
}
hr {
	height: 1px;
	background-color: #bbbbbb;
	border: none;
}

/*--------------------------------------------
メンテナンス
--------------------------------------------*/

#maintenance {
	height: 100vh;
}
#maintenance section .center {
	padding: 80px 10% 80px;
	text-align: center;
}
#maintenance section .center img {
	max-width: 300px;
	margin-bottom: 80px;
}
#maintenance section .center h3 {
	margin-bottom: 50px;
}

/*--------------------------------------------
Common
--------------------------------------------*/
#vh {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	/* bottom: 0; */
	/* right: 0; */
	z-index: -1;
	pointer-events: none;
	/* background-color: mediumaquamarine; */
}
#progress-box {
	width: 100%;
	height: 5px;
	position: fixed;
}
#progress-bar {
	width: 0;
	height: 10px;
	background: #999;
	position: absolute;
	left: 0;
	top: 0;
}
.base {
	width: 100%;
	padding-left: 1%;
	padding-right: 4%;
}
.base.w270 {
	padding-left: 270px;
	padding-right: 270px;
}
.base.w435 {
	max-width: 435px;
	/* max-width: 380px; */
	margin: 0 auto;
}
.base.w380 {
	max-width: 380px;
	margin: 0 auto;
}
.base.mobile {
	padding-left: 0;
	padding-right: 0;
}
.center {
	text-align: center;
}
.container {
	width: 100%;
	/* position: relative; */
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
}
.container.w1920 {
	max-width: 1920px;
}
.container.w1500 {
	max-width: 1500px;
}
.container.w1380 {
	max-width: 1380px;
	background-color: #fff;
	/* background-color: antiquewhite; */
}
.btn {
	border-radius: 50px;
	background-color: #3A7FCB;
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 4px 17px 5px;
	line-height: 19px;
	display: inline-block;
	font-weight: bold;
	text-decoration: none;
}
.link {
	font-size: 15px;
	line-height: 15px;
	cursor: pointer;
}
.link::after {
	content: "";
	background-image: url("/img/common/link-arrow.svg");
	/* background-size: 6px 13px; */
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 7px;
	height: 15px;
	display: inline-block;
	margin-left: 15px;
}
.link.white::after {
	background-image: url("/img/common/link-arrow-w.svg");
}
.r_contnent {
	margin-top: 2rem;
	text-align: right;
	/* background-color: #999; */
	padding: 0;
	line-height: 1rem;
	/* display: block; */
	/* width: 100%; */
}
p.link {
	pointer-events: none;
}
.link-box {
	border: 1px solid #000;
	/* border-color: currentColor; */
	padding: 7px 40px;
	line-height: 1em;
	font-size: 15px;
}
.xmark {
	background-image: url("/img/common/xmark.svg");
	background-position: -15px center;
	width: 15px;
	height: 15px;
	/* text-indent: 100%; */
	/* white-space: nowrap; */
	overflow: hidden;
	/* font-size: 15px;
	line-height: 15px; */
	/* background-color: #3A7FCB; */
}
.xmark::before {
	content: "　";
}
.xclose::after {
	content: "";
	background-image: url("/img/common/link-close.svg");
	/* background-size: 6px 13px; */
	background-position: center center;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
	display: inline-block;
	margin-left: 10px;
}
.prevmark::before {
	content: "";
	background-image: url("/img/common/prev-arrow-w.svg");
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 7px;
	height: 15px;
	display: inline-block;
	margin-right: 15px;
}
.fs12 {font-size: 12px !important;}
.fs14 {font-size: 14px !important; line-height: 26px;}
.fs15 {font-size: 15px !important; line-height: 24px;}
.fs16 {font-size: 16px !important;}
.fs20 {font-size: 20px !important;}

.slideshow *:focus {
	outline: none;
}

.bg_black {
	background-color: #000;
}

.line {
	padding: 0 1.5% 0;
}

ul.disc {
	list-style-type: disc;
	padding-left: 1em;
}
ul.disc li {
	margin-bottom: 1.2em;
}

/*--------------------------------------------
ヘッダー
--------------------------------------------*/

header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	/* background-color: #000; */
	height: 85px;
	color: #fff;
	border-color: #fff;
	transition: .5s;
	display: flex;
	align-items: center;
}
header.home {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
}
header.sub {
	color: #000;
	background-color: #fff;
	border-color: #000;
}
header.sub2 {
	color: #000;
	background-color: transparent;
	border-color: #000;
}
header.main {
	color: #000;
	background-color: #fff;
	border-color: #000;
}
header.active {
	color: #fff;
	background-color: transparent;
	border-color: #fff;
}
header .container {
	max-width: 1920px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	line-height: 0;
}
header .left {
	width: 340px;
	/* margin-top: 14px; */
}
header .left .page_logo {
	position: relative;
	z-index: 1500;
}
header .right {
	position: relative;
	display: flex;
	align-items: center;
	/* background-color: darkgrey; */
	height: 100%;
}
header .right nav {
	display: block;
	/* line-height: 0; */
}
header .right ul {
	display: flex;
	align-items: center;
	margin-right: 55px;
}
header .right li:not(:last-child) {
	margin-left: 34px;
}
header .right nav li {
	position: relative;
	z-index: 1500;
}

/*--------------------------------------------
ドロワー
--------------------------------------------*/

/* ハンバーガーメニュー */

.hamburger_menu {
	display: none;
	margin-left: 34px;
	width: 32px;
	height: 28px;
	vertical-align: middle;
	cursor: pointer;
	/* margin-bottom: 2%; */
	/* background-color: darkkhaki; */
	pointer-events: auto;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
	position: relative;
	/* z-index: 1500; */
}
.hamburger_menu span {
	display: inline-block;
	/* box-sizing: border-box; */
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	overflow: hidden;
	border: 1px solid;
	border-color: currentcolor;
	transition: transform .5s;
	/* border-radius: 1px; */
}
.hamburger_menu.active span {
	border-color: #fff;
}
.hamburger_menu span:nth-of-type(1) {
  top: 0;
}
.hamburger_menu.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
.hamburger_menu span:nth-of-type(2) {
  top: 13px;
}
.hamburger_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger_menu span:nth-of-type(3) {
  bottom: 0;
}
.hamburger_menu.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

/* スライドメニュー */

.overlay.pc {
	display: none;
}
.overlay {
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	/* bottom: 0;
	right: 0; */
	z-index: 200;
	transition: opacity .5s;
}
.overlay.open {
	/* display: block; */
	width: 100%;
	height: 100%;
	opacity: 1;
}

/* PC時の表示（常に表示） */

.drawer.pc {
	position: absolute;
	/* width: 100%; */
	height: 100%;
	z-index: 300;
	pointer-events: none;
}
.drawer.open {
	/* display: block; */
}
.drawer.pc .area {
	height: 100vh;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
	/* background-color: #3A7FCB; */
}
.drawer.pc nav {
	position: relative;
	width: 157px;
	height: 100%;
	/* padding: 148px 0 0; */
	padding: 110px 0 0;
	overflow-y: auto;
	/* pointer-events: initial; */
	pointer-events: none;
}
.drawer.pc ul > li:not(:first-child) {
	/* padding-top: 3.5rem; */
	padding-top: 2.75rem;
}
.drawer.pc ul > li .icon-mail {
	padding-top: .5rem;
}

/* モバイル時の表示（隠れる） */

.drawer.mobile {
	position: fixed;
	width: 100%;
	height: calc( var(--vh) * 100 );
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 300;
	/* color: #000; */
	color: #fff;
}
.drawer.open {
	/* display: block; */
}
.drawer.mobile .area {
	/* max-width: 500px; */
	margin: 0 auto;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.drawer.mobile nav {
	position: absolute;
	right: 0;
	/* width: 80%;
	max-width: 300px; */
	/* margin-top: 56px; */
	width: 0;
	height: 100%;
	padding: 140px 10% 13vh;
	/* box-sizing: border-box; */
	background-color: #E50563;
	transform: translate(100%);
	transition: all .5s;
	overflow-y: auto;
	pointer-events: initial;
	font-size: 15px;
	/* background-color: aqua; */
}
.drawer.mobile ul {
	width: 100%;
	position: relative;
	padding-bottom: 40px;
}
.drawer.mobile ul > li:not(:first-child) {
	/* padding-top: 3.5rem; */
	padding-top: 2rem;
}
.drawer.mobile nav .olive {
	width: 112px;
	float: right;
}
.drawer.mobile nav .prevmark {
	margin-top: 50px;
}
.drawer.mobile nav h4 {
	text-align: center;
	margin-top: 100px;
	/* display: inline-block; */
	white-space: nowrap;
}

/* PC,モバイル時の内容切り替え */

.drawer.pc nav:last-child {
	display: none;
}
.drawer.pc nav:first-child {
	display: block;
}
.drawer.mobile nav:first-child {
	display: none;
}
.drawer.mobile nav:last-child {
	display: block;
}

/* PC,モバイル時の表示（共通） */

.drawer nav.open:last-child {
	transform: translateZ(0);
	width: 100%;
}
.drawer nav:first-child {
	width: 100%;
}
.drawer ul {
	padding: 0 auto;
	pointer-events: initial;
}
.drawer ul > li {
	/* padding-top: 3.5rem; */
	font-weight: bold;
	text-align: left;
	line-height: 1.5rem;
}
.drawer ul > li a {
	text-decoration: none;
	/* color: #fff; */
}


/*--------------------------------------------
コンテンツ共通
--------------------------------------------*/

h1 {
	font-size: 1.6rem;
	line-height: 1.8em;
	font-weight: normal;
}
h2 {
	font-size: 1.6rem;
	letter-spacing: .2em;
	/* display: inline-block; */
	font-weight: normal;
	line-height: 1.7em;
}
h3 {
	font-size: 1.4rem;
	/* line-height: 2.3rem; */
	letter-spacing: .14em;
	font-weight: normal;
}
h4 {
	/* font-size: 1.2rem; */
	font-size: 1.6rem;
	letter-spacing: .05em;
	font-weight: normal;
	line-height: 2.3rem;
}
h5 {
	/* font-size: 1.2rem; */
	font-size: 1.4rem;
	letter-spacing: .05em;
	font-weight: normal;
}
h5 span {
	font-size: .9rem;
	letter-spacing: normal;
	line-height: 1.8em;
	padding-top: .3em;
}
h5 small {
	display: inline;
	font-size: .9rem;
	letter-spacing: normal;
	line-height: normal;
	padding-top: 0;
}
.content {
	padding: 107px 0 97px;
}
.content .container {
	/* position: relative;
	max-width: 1400px; */
}
.box {
	max-width: 450px;
	/* padding: 43px 57px; */
	padding: 3% 4%;
	/* padding: 2.2vw 2.8vw; */
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, .07);
	background-color: #fff;
}
.box h3 {
	margin-bottom: 1.7rem;
	/* border-left: 3px solid #3A7FCB; */
	/* padding-left: 25px; */
	display: block;
	margin-left: 1.8rem;
	position: relative;
}
.box h3::before {
	content: "";
	display: block;
	/* padding-right: 1.7rem; */
	border-left: 3px solid #3A7FCB;
	height: 1.7rem;
	width: 3px;
	/* width: 10px; */
	position: absolute;
	left: -1.8rem;
	top: .4rem;
}
.box p:not(:last-child) {
	/* margin-bottom: 1rem; */
	/* margin-bottom: .7rem; */
}

/*--------------------------------------------
フッター
--------------------------------------------*/


/*--------------------------------------------
店舗情報
--------------------------------------------*/

footer #info .logo {
	width: 90%;
}
footer #info .container:first-child {
	padding: 56px 0 0;
}
footer #info .container:last-child {
	padding: 0 0 50px;
}
footer #info .item:not(:last-child) {
	padding: 0 0 61px 0;
}
footer #info .link-box {
	margin-top: 2.5em;
}
footer #info.unico .link-box {
	margin-top: .5em;
	margin-bottom: .5em;
	margin-left: 1em;
}
footer #info .item.maplink {
	text-align: center;
	/* background-color: #FADB2A; */
	width: 100%;
}
footer #info .item.time {
	padding-top: 65px;
}
footer #info .item.address p {
	display: inline-block;
	text-align: left;
	margin-bottom: 2.5em;
}
footer #info .map {
	text-align: center;
	background-color: #fff;
}
footer #info .map img {
	width: 100%;
	max-width: 450px;
}
footer dt {
	float: left !important;
}
footer dd {
	margin-left: 100px !important;
}

footer #footer {
	text-align: center;
}
footer #footer nav {
	display: none;
}
footer #footer .container {
	padding: 1px 0 105px;
}
footer #footer .link-box {
	margin-bottom: 49px;
	font-size: 15px;
}
footer #footer .contact {
	font-size: 15px;
	margin-top: 50px;
	margin-bottom: 70px;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.11em;
}
footer #footer .contact a {
	display: inline-block;
}
footer .contact p {
	margin-bottom: 28px;
}
footer #footer .contact img {
	width: 29px;
}
footer #footer h1 {
	margin-bottom: 40px;
}
footer #footer .line {
	margin-bottom: 30px;
}
footer #footer .copylight,
footer #footer .pp {
	color: #6E6E6E;
	display: inline-block;
	margin: 0 10px;
}

footer #footer .item.title {
	margin: 90px auto 0;
	text-align: center;
}
footer #footer .item.title .tel {
	font-family: 'Noto Sans JP', sans-serif;
}
footer #footer .item.title .tel p {
	letter-spacing: 0.11em;
	margin-bottom: 5px;
}
footer #footer .item.title .tel h4 {
	font-size: 1.5em;
}
footer #footer .item.title img {
	/* max-width: 214px; */
	max-width: 194px;
	/* max-width: 160px; */
}
footer #footer .item.title .mini {
	font-size: .85em;
	line-height: 1.9em;
	/* line-height: 2.2em; */
	/* letter-spacing: .1em; */
	letter-spacing: .1%;
	margin-top: 2em;
	margin-bottom: 3em;
}

/*--------------------------------------------
店舗情報ボタン
--------------------------------------------*/

#info_btn {
	position: fixed;
	display:flex;
 	flex-flow: column;
	align-items: flex-end;
	right: 4vw;
	bottom: 4vw;
	z-index: 1000;
}
#info_btn > div {
	/* background-color: rgb(219, 148, 54); */
	display: flex;
	justify-content: flex-end;
	position: relative;
}
#info_btn > div > img {
	height: 15vw;
	max-height: 70px;
	position: absolute;
	left: 0;
	transform: translateX(-100%);
}
#info_btn a {
	height: 15vw;
	max-height: 70px;
}
#info_btn > a:not(:first-child) {
	max-width: 70px;
	margin-top: 10px;
}
#info_btn a img {
	height: 100%;
	max-height: 70px;
}

/*--------------------------------------------
折りたたみ
--------------------------------------------*/

.folding {
	text-align: right;
	position: relative;
	line-height: 1.8em;
}
.folding * {
	text-align: justify;
}
.folding .link {
	display: inline-block;
	/* text-align: right; */
	/* width: 100%; */
	/* position: absolute; */
	margin-top: .85em;
	/* right: 0; */
	font-size: .8em;
}
.folding .xmark {
	display: block;
	position: absolute;
	/* top: 20px; */
	right: 0;
}
.folding .close {
	/* margin-top: 24px; */
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: all .8s;
	-moz-transition: all .8s;
	-ms-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}
.folding:not(:last-child) .close {
	/* border-bottom: 1px solid #bbbbbb; */
}
.folding .close.active {
	margin-top: 2em;
	max-height: 1200px;
	opacity: 1;
}
.folding:not(:last-child) .close.active {
	/* margin-bottom: 40px; */
	/* padding-bottom: 80px; */
}

/*--------------------------------------------
サムネイル スライドショー
--------------------------------------------*/

.slideshow_thumb {
	overflow: hidden;
	/* height: 250px; */
	position: relative;
}
.slideshow_thumb *:focus {
	outline: none;
}
.slideshow_thumb .page {
	width: 100%;
}
.slideshow_thumb .page img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	font-family: "object-fit: cover; object-position: center;";
}

/* サムネイル */
.thumbnail {
	/* background-color: aqua; */
}
.thumbnail img {
	height: auto;
	width: 100%;
}
.thumbnail .slick-track {
	transform: unset !important;
}
.thumbnail-img {
	opacity: 0.3;
	transition: opacity .3s linear;
}
.thumbnail .slick-current {
	opacity: 1;
}
.thumbnail .slick-current img{
	/* border: 2px solid #000; */
}
.thumb_cafe .slick-slide {
	padding: 0 5px;
}
.thumb_shop .slick-slide {
	padding: 0 5px;
}

/* ドット */
.slick-dots1 {
	position: absolute;
	/* bottom: 15px; */
	/* bottom: 34.5%; */
	bottom: 36%;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
	/* background-color: #3A7FCB; */
	height: 8px;
	/* overflow: hidden; */
}
.slick-dots1 li {
	position: relative;
	display: inline-block;
	height: 8px !important;
	width: 8px !important;
	margin: 0 6px;
	padding: 0;
}
.slick-dots1 > li:first-child:last-child {
    display: none;
}
.slick-dots1 li.slick-active button::before {
	content: "●";
}
.slick-dots1 li button {
	/* background-color: aqua; */
	background: transparent;
	border:0;
	font-size: 0pt;
}
.slick-dots1 li button::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "○";
	width: 8px !important;
	height: 8px !important;
	font-family: "slick";
	font-size: 8px !important;
	line-height: 8px !important;
	text-align: center;
	color: #fff;
	cursor: pointer;
}

/*--------------------------------------------
詳しく見る（アイコン付き）
--------------------------------------------*/

.details {
	/* padding: 31px 0 37px; */
	padding: 0;
	text-align: left;
	position: relative;
	max-width: 226px;
	/* background-color: #FADB2A; */
	margin: 0 auto;
}
.details h3 {
	/* margin-bottom: 16px; */
	width: 70%;
	font-size: 1em;
}
.details .link {
	/* position: absolute; */
	/* bottom: 0; */
	/* right: 0; */
	display: block;
	width: fit-content;
	font-size: .8em;
	/* text-align: right; */
	margin-left: auto;
	margin-top: 44px;
	margin-right: -6%;
}

/*--------------------------------------------
Mobile
--------------------------------------------*/

@media (max-width: 1680px) {
	.base.w270 {
		padding-left: 0;
		padding-right: 0;
	}
	.container.w1380 {
		/* max-width: initial; */
		/* max-width: initial; */
	}
	.hamburger_menu {
		display: block;
	}
	header .right ul {
		margin-right: 0;
	}
}

/* タブレット表示 */
@media (max-width: 1200px) {

	.base.mobile {
		/* padding-left: 4%; */
		/* padding-right: 4%; */
	}

	header .page_logo svg {
		margin-left: 30px;
	}

	footer .contact {
		/* margin-bottom: 44px; */
	}
	footer h1 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	footer nav {
		display: block;
		border-top: 1px solid #CBCBCB;
		padding: 79px 0 104px;
		margin-top: 47px;
		text-align: left;
	}
	footer nav li {
		font-size: 14px;
		line-height: 14px;
	}
	footer nav li:not(:last-child) {
		margin-bottom: 30px;
	}
	footer nav img {
		width: 59px;
		margin-bottom: 30px;
	}
	footer .copylight,
	footer .pp {
		font-size: 14px;
	}
}

@media (max-width: 850px) {

	a:hover {
		/* opacity: 1; */
	}

	.base {
		padding-left: 2%;
		padding-right: 2%;
	}

	/* header */

	header {
		height: 56px;
	}
	header.home.mobile {
		background-color: rgba(255, 255, 255, .5);
		color: #000;
		border-color: #000;
	}
	header.home.active {
		color: #fff;
		background-color: transparent;
		border-color: #fff;
	}
	header .page_logo svg {
		margin-left: 0;
		width: 171px;
		height: 35px;
	}
	.icon-instagram {
		width: 21px;
		height: 21px;
	}
	.icon-facebbok {
		width: 20px;
		height: 20px;
	}
	.icon-ec {
		width: 25px;
		height: 21px;
	}
	.hamburger_menu { 
		width: 21px;
		height: 18px;
		margin-left: 17px;
	}
	header .right li:not(:last-child) {
		margin-left: 11px;
	} 
	.hamburger_menu.active span:nth-of-type(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	.hamburger_menu span:nth-of-type(2) {
		top: 8px;
	}
	.hamburger_menu.active span:nth-of-type(2) {
		opacity: 0;
	}
	.hamburger_menu span:nth-of-type(3) {
		bottom: 0;
	}
	.hamburger_menu.active span:nth-of-type(3) {
		transform: translateY(-8px) rotate(45deg);
	}
	
	footer nav {
		border-top: none;
	}
	footer nav li {
		padding-bottom: 15px;
		border-bottom: 1px solid #CBCBCB;
	}
	footer nav li:first-child {
		padding-top: 15px;
		border-top: 1px solid #CBCBCB;
	}
	footer nav li:not(:last-child) {
		margin-bottom: 20px;
	}
	footer nav {
		padding: 60px 0 65px;
	}
	footer nav img {
		margin-bottom: 10px;
	}
	footer nav li a {
		display: block;
		width: 100%;
	}
	footer h1 {
		font-size: 20px;
		margin-bottom: 10px;
	}
}

@media (max-width: 650px) {

	.base.mobile {
		padding-left: 4%;
		padding-right: 4%;
	}

}

@media (max-width: 450px) {
	#shop_moji {
		opacity: 0;
	}
}

@media (max-width: 350px) {
	.drawer.mobile nav h4 {
		font-size: 1.45rem;
		letter-spacing: .04em;
	}
}
