@charset "UTF-8";

/* layout */
/* ===============================================
reset
=============================================== */
* {
	margin: 0;
	padding: 0;
}

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
	border-width: 0;
	border-style: solid;
	background-origin: border-box;
	background-repeat: no-repeat;
	outline: none;
}

html {
	block-size: 100%;
	-webkit-text-size-adjust: none;
}

body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeSpeed;
	min-block-size: 100%;
}

/* 各メディア要素のデフォルト */
:where(img, svg, video) {
	block-size: auto;
	max-inline-size: 100%;
}

:where(svg) {
	stroke: none;
	fill: currentColor;
}

body :where(figure) {
	margin: 0;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* width属性のないSVGのサイズ */
:where(svg):where(:not([width])) {
	inline-size: 5rem;
}

/* フォーム内のスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
	color: inherit;
	font: inherit;
	font-size: inherit;
	letter-spacing: inherit;
}

:where(input[type=submit]) {
	border: none;
	background: transparent;
	cursor: pointer;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblock */
:where(textarea) {
	resize: vertical;
}

@supports (resize: block) {
	:where(textarea) {
		resize: block;
	}
}

/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
	font-size: 1em;
	font-weight: 500;
	overflow-wrap: break-word;
}

:where(ul, ol)[role=list] {
	list-style: none;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

:where(input[type=file]) {
	cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
	cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
	cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション */
@media (prefers-reduced-motion: no-preference) {
	:focus-visible {
		-webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
		transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
	}

	:where(:not(:active)):focus-visible {
		-webkit-transition-duration: 0.25s;
		transition-duration: 0.25s;
	}
}

:where(:not(:active)):focus-visible {
	outline-offset: 5px;
}

a {
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button {
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	cursor: pointer;
}

ol,
ul,
menu {
	list-style: none;
}

em {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

textarea {
	white-space: revert;
}

::-webkit-input-placeholder {
	color: unset;
}

::-moz-placeholder {
	color: unset;
}

:-ms-input-placeholder {
	color: unset;
}

::-ms-input-placeholder {
	color: unset;
}

::placeholder {
	color: unset;
}

:where([hidden]) {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

	.sip-slider,
	.swiper-container,
	.swiper-wrapper,
	.swiper-slide,
	.swiper-slide img {
		-webkit-transition-duration: 100ms !important;
		transition-duration: 100ms !important;
	}
}

/* ===============================================
  base
  =============================================== */
body {
	margin-inline: auto;
	padding: 0;
	font-family:  "BIZ UDGothic", "游ゴシック", "Yu Gothic", "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", sans-serif;
	color: #333333;
	line-height: 1.3;
	word-wrap: break-word;
	width: 100%;
	height: 100dvh;
	font-weight: 500;
	overscroll-behavior-y: none;
	-webkit-font-smoothing: antialiased;
	position: relative;
	top: 0;
}

body.fixed {
	overflow: hidden;
	height: 100vh;
}

@media screen and (max-width: 1024px) {
	body {
		line-height: 1.5;
	}
}

a {
	color: #333333;
}

@media (hover: hover) and (pointer: fine) {
	a:hover img {
		opacity: 0.75;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
}

input,
select,
textarea {
	font-size: 16px;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-weight: initial;
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	font-weight: initial;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-weight: initial;
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-weight: initial;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	font-weight: initial;
}

:where(input:not(input[type=submit])),
select,
textarea {
	border: 1px solid;
	cursor: text;
}

select {
	color: #333333;
	cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
	button:hover {
		opacity: 0.75;
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
}

/* ===============================================
  utility
  =============================================== */
/* ===============================================
  layout overall
  =============================================== */
.innerS,
.innerM,
.innerL {
	margin-inline: auto;
}

.innerL {
	width: min(90%, 1500px);
}

.innerM {
	width: min(84%, 1200px);
}

.innerS {
	width: min(100%, 980px);
	padding: 0 5%;
	overflow: hidden;
}
@media screen and (min-width: 1087px) {
	.innerS {
		width: min(100%, 980px);
	}
}

.wrapper {
	width: 100%;
	position: relative;
}

.wrapper img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
}

.wrapper :where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

/*---------- none ----------*/
@media screen and (min-width: 769px) {
	.pc_none {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.sp_none {
		display: none !important;
	}
}

@media screen and (max-width: 425px) {
	.sp_s_none {
		display: none !important;
	}
}

@media screen and (min-width: 426px) {
	.ss_view {
		display: none !important;
	}
}

/* ryoshindo */
#ryoshindo {
	overflow: hidden;
}

header {
	font-family: "Zen Old Mincho", serif;
	display: block;
	background: #f5f0e3;
	padding-top: min(2.4%, 35px);
	padding-bottom: min(2.4%, 35px);
	position: fixed;
	width: 100%;
	z-index: 1000;
}

.header-flex {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.header-flex {
		display: block;
	}
}

.top-link {
	color: #564c28;
	font-size: clamp(20px, 1.7vw, 25px);
}
@media screen and (max-width: 425px) {
	.top-link {
		font-size: clamp(19px, 1.7vw, 25px);
        display: block;
        width: fit-content;
	}
}

.header-core {
	display: block;
}
@media screen and (max-width: 768px) {
	.header-core {
		display: flex;
		align-items: center;
		justify-content: space-between;
}
}

.header-menu {
	display: flex;
		width: 50%;
	align-items: center;
	justify-content: space-between;
	font-size: clamp(16px, 1.25vw, 18px);
}
@media screen and (max-width: 768px) {
	.header-menu {
		width: 60%;
		gap: 1em;
		margin-top: 0.5em;
	}
}
@media screen and (max-width: 425px) {
	.header-menu {
		width: 100%;
	}
}

.header-menu a {
	color: #564c28;
}

.header-menu a:hover {
	color: #908355;
}

.tel-btn {
    display: flex;
    width: 27%;
    align-items: center;
}
.tel-btn img {
	width: 30px;
	height: auto;
	margin-right: 5px;
}
@media screen and (max-width: 768px) {
	.tel-btn {
		width: 28%;
	}
}
@media screen and (max-width: 425px) {
	.tel-btn .pc_none {
		display: none;
	}
	.tel-btn {
		width: 10%;
	}
}

.mv {
	padding-top: min(13.75%, 198px);
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.mv {
	padding-top: min(18.75%, 198px);
	}
}
@media screen and (max-width: 425px) {
	.mv {
	padding-top: min(20%, 80px);
	}
}

.mv h1 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-bottom: min(7%, 100px);
}
@media screen and (max-width: 768px) {
	.mv h1 {
		width: 140%;
		margin-left: -20%;
	}
}
@media screen and (max-width: 425px) {
	.mv h1 {
		width: 200%;
        margin-left: -50%;
		margin-bottom: 15%;
	}
}

#about {
	padding-bottom: min(19%, 270px);
	position: relative;
}
@media screen and (max-width: 425px) {
	#about {
		padding-bottom: 35%;
	}
}

#about::before {
	content: "";
	position: absolute;
	background: url(../img/circle1.png) no-repeat center center / contain;
	width: 38vw;
	height: 38vw;
	top: 5%;
	right: -5%;
	z-index: -1;
}
@media screen and (max-width: 425px) {
	#about::before {
		top: 36%;
	}
}

#about::after {
	content: "";
	position: absolute;
	background: url(../img/circle2.png) no-repeat center center / contain;
	width: 15.8vw;
	height: 15.8vw;
	bottom: 13%;
    left: 3%;
	z-index: -1;
}

.section-ttl {
	background: #f5f0e3;
	margin-bottom: min(7%, 100px);
}
@media screen and (max-width: 425px) {
	.section-ttl {
		margin-bottom: 10%;
		padding: 10% 0
	}
}

.section-ttl-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 425px) {
	.section-ttl-flex {
		display: block;
	}
}

.section-ttl-img {
	display: flex;
    margin-right: -4%;
}
@media screen and (max-width: 425px) {
	.section-ttl-img {
		margin-right: 0;
	}
}

.section-ttl h2 {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	gap: 1em;
}
@media screen and (max-width: 1024px) {
	.section-ttl h2 {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.section-ttl h2 {
		display: block;
	}
}
@media screen and (max-width: 425px) {
	.section-ttl h2 {
		text-align: center;
		margin-bottom: 5%;
	}
}

.section-ttl h2 span {
	display: block;
	padding-right: min(10em, 145px);
	font-family: "Zen Old Mincho", serif;
	color: #908355;
	font-size: clamp(22px, 3.8vw, 55px);
	font-weight: 700;
	letter-spacing: 0.2em;
	position: relative;
}
@media screen and (max-width: 768px) {
	.section-ttl h2 span {
		padding-bottom: min(0.5em, 45px);
		margin-bottom: min(0.5em, 45px);
	}
}
@media screen and (max-width: 425px) {
	.section-ttl h2 span {
		padding-right: initial;
		font-size: 25px;
	}
}

.section-ttl h2 span::after {
	content: "";
	position: absolute;
	width: min(85%, 137px);
    height: 1px;
    background-color: #908355;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
@media screen and (max-width: 768px) {
	.section-ttl h2 span::after {
		width: 100%;
		top: initial;
		bottom: 0;
		transform: initial;
		left: 0;
	}
}

.about-content {
	display: grid;
	grid-template-columns: 30% 30% 4% 36%;
	grid-template-areas:
		". . . img1"
		"txt txt . img1"
		". . . img1"
		". img2 . img1"
		". img2 . .";
}
@media screen and (max-width: 768px) {
	.about-content {
	grid-template-columns: 1fr 1fr;
        grid-template-areas:
        "txt txt"
        "img2 img1";
    gap: 1.5em 5%;
	}
}

.about-content .about-txt {
	grid-area: txt;
	font-size: clamp(16px, 1.3vw, 19px);
	line-height: 1.7;
	text-align: justify;
}

.about-content .about-img1 {
	display: flex;
	grid-area: img1;
}

.about-content .about-img2 {
	display: flex;
	grid-area: img2;
}

#menu {
	padding-bottom: min(19%, 270px);
	position: relative;
}
@media screen and (max-width: 425px) {
	#menu {
		padding-bottom: 35%;
	}
}

#menu::before {
	content: "";
	position: absolute;
	background: url(../img/circle3.png) no-repeat center center / contain;
    width: 30.6vw;
    height: 30.6vw;
    top: 2.5%;
    left: 2%;
    z-index: -1;
}
@media screen and (max-width: 425px) {
	#menu::before {
		top: 29%;
	}
}

#menu::after {
	content: "";
	position: absolute;
	background: url(../img/circle4.png) no-repeat center center / contain;
    width: 17.3vw;
    height: 17.3vw;
    bottom: 8%;
    right: 3%;
    z-index: -1;
}

.menu-list {
	border: 1px solid #908355;
}

.menu-list:not(:first-of-type) {
	border-top: none;
}

.menu-ttl {
	display: flex;
	background: #f9f6ec;
	border-bottom: 1px solid #908355;
	align-items: center;
	justify-content: space-between;
	padding: 1.5em 1em;
	cursor: pointer; 
}

.menu-list.collapsed .menu-ttl {
	border-bottom: none;
}

.menu-category {
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(20px, 1.9vw, 28px);
	color: #908355;
	font-weight: 700;
}

.menu-triangle {
	font-family: "Noto Sans JP";
	color: #908355;
}

.collapsed .menu-triangle {
    transform: rotate(-90deg);
	transition: transform 0.3s;
}

.menu-info {
	display: block;
	background: #FFF;
}

.menu-info li {
	padding: 2em 1em;
}

.menu-info li:not(:last-of-type) {
	border-bottom: 1px solid #908355;
}

.menu-info-ttl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(18px, 1.6vw, 24px);
	color: #908355;
	font-weight: 700;
	margin-bottom: min(3%, 40px);
}
@media screen and (max-width: 768px) {
	.menu-info-ttl {
		display: block;
	}
}

.price span {
	font-size: clamp(15px, 1.25vw, 18px);
}

.menu-caution {
	font-family: "Zen Old Mincho", serif;
	font-size: clamp(15px, 1.25vw, 18px);
	line-height: 1.4em;
	margin-top: min(1.6%, 20px);
}

#shop {
	padding-bottom: min(19%, 100px);
	position: relative;
}
/*
@media screen and (max-width: 425px) {
	#shop {
		padding-bottom: 35%;
	}
}
*/
#shop::before {
	content: "";
	position: absolute;
	background: url(../img/circle5.png) no-repeat center center / contain;
    width: 38.4vw;
    height: 38.4vw;
    top: 10%;
    right: -5%;
    z-index: -1;
}
@media screen and (max-width: 425px) {
	#shop::before {
		top: 20%;
	}
}


#shop::after {
	content: "";
	position: absolute;
	background: url(../img/circle6.png) no-repeat center center / contain;
	width: 19vw;
    height: 19vw;
    bottom: 11%;
    left: 6%;
    z-index: -1;
}
@media screen and (max-width: 425px) {
	#shop::after {
		bottom: 5%;
	}
}

#shop iframe {
	border:0;
	aspect-ratio: 3 / 1;
}
@media screen and (max-width: 768px) {
	#shop iframe {
		aspect-ratio: 1 / 1;
	}
}

.shop-info-container {
	display: block;
	width: 100%;
	margin-top: min(4.4%, 53px);
}

.shop-info-list {
	display: block;
	width: 48.25%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.shop-info-list {
		width: 100%;
	}
}

.shop-info-list li {
	display: flex;
	gap: 5em;
	justify-content: space-between;
	font-family: "Zen Old Mincho", serif;
	color: #908355;
	font-size: clamp(15px, 1.1vw, 16px);
}
@media screen and (max-width: 768px) {
	.shop-info-list li {
		display: block;
	}
}

.shop-info-list li:not(:last-of-type) {
	margin-bottom: min(8%, 42px);
}

.shop-info-ttl {
	display: block;
	width: 22%;
	line-height: 1.75em;
}
@media screen and (max-width: 768px) {
	.shop-info-ttl {
		width: fit-content;
		margin: 0 auto 0.5em;
	}
}

.shop-info-txt {
	display: block;
	width: 27em;
	text-align: left;
	line-height: 1.75em;
}
@media screen and (max-width: 768px) {
	.shop-info-txt {
		width: fit-content;
		margin: 0 auto;
	}
}

a.shop-info-txt {
	color: #908355;
	text-decoration: underline;
}

#reserve {
	padding-bottom: min(15%, 100px);
	position: relative;
}
@media screen and (max-width: 425px) {
	#reserve {
		padding-bottom: 35%;
	}
}

#reserve::before {
	content: "";
	position: absolute;
	background: url(../img/circle7.png) no-repeat center center / contain;
    width: 29vw;
    height: 29vw;
    top: 8%;
    left: -7%;
    z-index: -1;
}
@media screen and (max-width: 425px) {
	#reserve::before {
		top: 40%;
	}
}

#reserve::after {
	content: "";
	position: absolute;
	background: url(../img/circle8.png) no-repeat center center / contain;
	width: 17vw;
    height: 17vw;
    bottom: -6%;
    right: -3%;
    z-index: -1;
}
@media screen and (max-width: 425px) {
	#reserve::after {
		height: 17vw;
		bottom: -2%;
	}
}

.reserve-txt {
	display: block;
	width: fit-content;
	margin-bottom: min(5%, 61px);
	margin-left: auto;
	margin-right: auto;
	font-family: "Zen Old Mincho", serif;
	color: #908355;
	font-size: clamp(16px, 1.3vw, 19px);
}

.reserve-btn {
	display: block;
	width: 45.8%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.reserve-btn {
		width: 75%;
	}
}
@media screen and (max-width: 425px) {
	.reserve-btn {
		width: 100%;
	}
}

.reserve-btn a {
	display: block;
	width: 100%;
	font-size: clamp(16px, 1.38vw, 20px);
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	color: #908355;
	border: 1px solid #564c28;
	background: #f5f0e3;
	padding: 1em;
	text-align: center;
}

.reserve-btn a:first-of-type {
	margin-bottom: min(4.5%, 25px);
}

.reserve-btn a:hover {
	background: #564c28;
	color: #FFF;
	transition: 0.3s
}

ul.photo {
	margin: 100px auto;
	padding: 0;
	width: 100%;
	max-width: 1200px;
	display: flex;
	align-items: center;
	list-style-type: none;
	justify-content: space-between;
	flex-wrap: wrap;
}
ul.photo li {
	margin: 0 auto;
	padding: 0;
	width: 21%;
}
@media screen and (max-width: 425px) {
ul.photo {
		width: 95%;
	}
	ul.photo li {
		width: 48%;
	}
}

#footer {
	width: 100%;
	margin-bottom: 50px;
	font-family: "Zen Old Mincho", serif;
	color: #908355;
	font-size: clamp(12px, 1vw, 14px);
	text-align: center;
	border-top: 1px solid #f5f0e3;
	border-bottom: 1px solid #f5f0e3;
	padding: 5px 0;

}