* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
	font-family: "こぶりなゴシック W3 JIS2004", sans-serif;
	font-size: clamp(14px, 1.11vw, 18px);
	color: #40220F;
	line-height: 1.8;
	overflow-x: hidden;
}
.sp,
.spnav {
	display: none !important;
}

/*---------------------------
PCナビ、フッターナビ用テキストリンク
----------------------------*/
nav a,
.flink a {
	color: #40220F;
	text-decoration: none;
	padding-bottom: 3px;
	background-image: linear-gradient(#40220F, #40220F);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 0 1px;
	transition: background-size 0.3s;
}
nav a:hover,
.flink a:hover {
	background-position: bottom left;
	background-size: 100% 1px;
}

/*---------------------------
ボタンリンク
----------------------------*/
.btn {
	text-align: right;
	font-size: 20px;
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	display: block;
	padding-right: 20px;
}
.btn a {
	color: #40220F;
	position: relative;
	text-decoration: none;
	display: inline-block;
}
.btnW a {color: #FFF;}
.btn a::before,
.btn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: currentColor;
  pointer-events: none;
  backface-visibility: hidden;
}
.btn a::before {
  left: 0;
  width: 100%; /* 通常時の1px下線 */
  opacity: 1;
}
.btn a::after {
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease;
}
.btn a:hover::before {
  opacity: 0; /* 通常下線をフェードアウト */
}
.btn a:hover::after {
  transform: scaleX(1); /* 左から1px線を引く */
}
.arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 10.5px;
  margin-left: 10px;
  border-radius: 9999px;
  background-color: #40220F;
}
.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 14px;
  height: 1px;
  border-radius: 9999px;
  background-color: #40220F;
  transform: rotate(30deg);
  transform-origin: calc(100% - 1.5px) 50%;
}
.btnW a .arrow {
  background-color: #FFF;
}
.btnW a .arrow::before {
  background-color: #FFF;
}

/*---------------------------
フォント
----------------------------*/

.a1mr {font-family: "A1明朝 R JIS2004 AP"; }
.a1mm {font-family: "A1明朝 M JIS2004 AP"; }
.a1mb {font-family: "A1明朝 B JIS2004 AP"; }
.futura {
	font-family: futura-pt, sans-serif;
	font-weight: 300;
	font-style: normal;
}

/*---------------------------
フォントカラー
----------------------------*/

.focean {color: #007995;}
.fland {color: #6D5C4A;}

/*---------------------------
グローバルナビ
----------------------------*/
/*------PC-------*/
#container .nav {
	position: fixed;
	top: 0;
	left: 0;
}
#container .nav #nav-inn {
	background-color:hsla(43,3%,96%,.5);
	padding:5.7291666667vw 6.46875vw;
	position:relative;
	width:100%;
	height: 70vh;
	box-sizing: border-box;
}
#container .nav #nav-inn .logo img {
	width: clamp(200px, 17.36vw, 300px);
	height: auto;
}
#container .nav #nav-inn nav {
	margin-top: 40px;
}
#container .nav #nav-inn nav a {
	font-size: clamp(24px, 1.944vw, 30px);
	font-family: futura-pt, sans-serif;
	font-weight: 300;
	font-style: normal;
}
#container .nav #nav-inn nav ul li {margin-bottom: 10px;}

@media screen and (max-width: 810px){
/*------SP-------*/
#container .header {
  position: fixed;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 99;
}
#container .header .hamburger {
  top: 16px;
  right: 16px;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}
#container .header .hamburger span {
  display: block;
  height: 1px;
  background: #40220F;
  border-radius: 2px;
  transition: 0.3s;
}
/* × 変形 */
#container .header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
#container .header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
#container .header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* オーバーレイ（ヘッダー下から全画面表示） */
#container .header .overlay {
  position: fixed;
  top: 60px; 
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: rgba(245, 243, 237, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 100;
  overflow: auto;
}
#container .header .overlay.active {
  opacity: 1;
  visibility: visible;
}
#container .header .overlay ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
#container .header .overlay .menu {
	font-size: 24px;
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	padding: 40px;
	line-height: 2.0;
}
#container .header .overlay .shop {
	padding: 0 40px;
}
#container .header .overlay .shop li {
	margin-bottom: 10px;
}
#container .header .overlay .sns {
	margin: 30px 0 15px;
}
}
/*---------------------------
PC右メニュー
----------------------------*/
#container .rmenu {
	position: fixed;
	bottom: 0;
	right: 0; 
}
#container .rmenu .rmenu-inn {
	background-color:hsla(43,3%,96%,.5);
	/* width:100%; */
	padding:2.7777vw 1.38888vw 1.38888vw;
	line-height: 1.4;
	box-sizing: border-box;
}
#container .rmenu .rmenu-inn .flink {margin-top: 1.74vw;}
#container .rmenu .rmenu-inn .logo-saraya img {
	width: 70px;
	margin: 20px auto;
}

/*---------------------------
タイトル
----------------------------*/
/*---縦書き----*/
.tit01 {
	font-size: clamp(24px, 1.944vw, 30px);
	font-family: futura-pt, sans-serif;
	font-weight: 300;
	font-style: normal;
	writing-mode: vertical-rl;
	padding-left: 15px;
}
/*---左側に横線装飾----*/
.tit02 {
	font-size: clamp(28px, 2.0833333vw, 32px);
	display: flex;
	align-items: center;
	line-height: 1.5;
}
.tit02::before {
	content: "";
	width:clamp(30px, 2.7777777vw, 40px);
	height: 1px;
	background: #40220F;
	margin-right: clamp(8px, 0.6944444vw, 10px);
}

/*---------------------------
背景スライドショー 通常Ver
----------------------------*/
#slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
	overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 3.5s ease-out, transform 9s ease-out;
  z-index: 0;
}

/* 表示中のスライド */
.slide.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}
/* フェードアウトするスライド（前の画像） */
.slide.fade-out {
  opacity: 0;
  transform: scale(1.1);
  z-index: 1;
}

/*-------------------------
 背景スライドショー スクロール位置で背景切り替えVer
 --------------------------*/
#bg-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1);
  z-index: 0;
  transition:
    opacity 2.5s ease,
    filter 2.5s ease,
    transform 20s ease-in-out;
}

.bg-image.active {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1.1);
  z-index: 1;
}

.bg-image.fade-out {
  opacity: 0;
  filter: blur(20px);
  transform: scale(1);
  z-index: 0;
}


@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 576px){
	.bg-image {
    background-position: center center;
    background-size: cover;
  }
}

/*---------------------------
コンテンツ
----------------------------*/
#container {
	position: relative;
	z-index: 50;
	min-height: 100vh;
}
#container .flex {
	display: flex;
	justify-content: center;
}
#container .flex .nav,
#container .flex .rmenu {
	width: calc((100% - 540px)/2);
}
#container .cnt {
	position: relative;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	max-width: 540px;
	container-type: inline-size;
}
.bgW {background-color:hsla(0,0%,100%,.9);}

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

}

/*---------------------------
フッター
----------------------------*/
footer {
	background: url(../images/bg_footer.webp) no-repeat center top;
	background-size: cover;
	margin-top: -10px;
	padding-bottom: 50px;
	overflow: hidden;
}
footer .tit01 span {
	padding-top: clamp(10px, calc(20 / 540 * 100cqw), 25px);
	color: #FFF;
}
footer .logo {
	margin-top:6.944vw;
}
footer .logo img {
	width: clamp(220px, 17.36vw, 280px);
	margin-top: clamp(70px, 6.944vw, 100px);
	margin-bottom: clamp(50px, 3.82vw, 60px);
	margin-left: auto;
	margin-right: auto;
}
.shop {
	margin-top: 2.083vw;
	padding: 0 20px;
}
.shop li:first-child a {
	font-size: clamp(14px, 1.111vw, 18px);
	border: solid 0.75px #40220F;
	background: none;
	text-decoration: none;
	color: #40220F;
}
.shop li a {
	background: #FFF;
	height: clamp(60px, 4.2vw, 70px);
	border: solid 0.75px #FFF;
}
.shop li img {
    width: 150px;
    height: auto;
    margin: 0 auto;
  }
.sns li img {
	width: clamp(26px, 2.083vw, 34px);
}
.sns li:nth-child(2) img {
	width: clamp(30px, 2.361vw, 38px);
}
.flink {margin-top: 2.08vw;}
.flink li a {font-size: 13px;}
footer p small {
	font-size: 12px;
	margin-top: 30px;
}
@media screen and (max-width: 810px){
	.pc,.nav{display:none;}
	.sp, .spnav {display:block !important;}
}
@media screen and (max-width: 576px){
	footer .tit01 span {padding-top:5px;}
}

/*---------------------------
要素のフェードイン
----------------------------*/
.fadein {
  opacity: 0;
  filter: blur(6px);  /* ぼかした状態からスタート */
  transition: opacity 1s ease, filter 1.8s ease; 
}

.fadein.show {
  opacity: 1;
  filter: blur(0); /* クリアに */
}

/* 小さめから拡大してふわっと表示 */
.fadein02 {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1); 
}
.fadein02.show {
  opacity: 1;
}

/*---------------------------
404
----------------------------*/
.notfound {
	background: url("../images/bg_notfound.webp") bottom center no-repeat;
	background-size: 100% auto;
	padding: 60px;
}
.notfound h1 {
	font-size: clamp(28px, 2.0833333vw, 32px);
}
.notfound p:first-of-type {
	margin: 30px 0;
}

@media screen and (max-width: 576px){
	.notfound {padding: 90px 40px 60px;}
	.notfound .btn {padding-right: 0;}
}