@charset "UTF-8";

body {
	background-color: #ffc5d1;
	background-image: url("https://www.transparenttextures.com/patterns/sandpaper.png");
	color: #1c1c1c;
	font-size: 16px;
	font-family: "Noto Serif JP", "游明朝", "YuMincho", "メイリオ", "Meiryo", serif, sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.bg-wh {
	background-color: #fff;
}

.main-title {
	font-family: "リュウミン H-KL", "Ryumin Heavy KL", "Noto Serif JP", "游明朝", "YuMincho", serif;
	font-size: min(7vw, 32px);
	font-weight: 700;
	text-align: center;
}

.section-spacing {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 767.98px) {
	.section-spacing {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
.section-title {
	color: #d61d4b;
	font-size: min(6.5vw, 32px);
	font-weight: 700;
	text-align: center;
}

ul.note {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
p.note,
ul.note > li {
	font-size: 14px;
	margin-left: 1.25em;
	text-indent: -1.25em;
}
p.note::before,
ul.note > li::before {
	content: "※";
	display: inline-block;
	margin-left: 1.25em;
}

.box-shadow {
	background-color: #fff;
}

.intro {
	position: fixed;
	z-index: 9;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	background-color: #fff;
}
.intro-item-icon {
	text-align: center;
}
.intro-item-name {
	color: #294345;
	font-family: "Prelude Compressed Pro Medium";
	font-size: 24px;
}
.intro-icon {
	width: 100px;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-name: fork;
	        animation-name: fork;
}
@-webkit-keyframes fork {
	from {
		opacity: 0;
		transform: rotate(0deg);
	}
	60% {
		opacity: 1;
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(45deg);
	}

	to {
		transform: rotate(0deg);
	}
}
@keyframes fork {
	from {
		opacity: 0;
		transform: rotate(0deg);
	}
	60% {
		opacity: 1;
		transform: rotate(0deg);
	}
	80% {
		transform: rotate(45deg);
	}

	to {
		transform: rotate(0deg);
	}
}

.wrap {
	visibility: hidden;
	opacity: 0;
	transition: all ease-in 0.5s;
}
.wrap.show {
	visibility: visible;
	opacity: 1;
}


/* ヘッダー */
.header {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 16px 0;
	box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.2);
	height: 60px;
}

.header .logo {
	max-width: 240px;
}

.header .logo img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 767.98px) {
	.header .logo {
		max-width: 160px;
	}
}

/* メインビジュアル */
.mv {
	position: relative;
	background-color: #fff;
	width: 100%;
	overflow: hidden;
}
.mv-bg {
	height: 600px;
}
.mv-bg-img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.mv-title {
	position: absolute;
	top: 0;
	right: 50%;
	transform: rotate(-5deg);
	z-index: 2;
	width: 50%;
	max-width: 600px;
}
.mv-title img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	max-width: 100%;
	height: auto;
}

.mv-text {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: calc(100% - 10px);
}
.mv-text-inner {
	position: relative;
	max-width: 1920px;
	margin-right: auto;
	margin-left: auto;
}
.mv-text-bg {
	position: absolute;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 80%, transparent);
}
.mv-text .l-text {
	top: 0;
	left: 3%;
}
.mv-text .r-text {
	top: 0;
	right: 3%;
}
.mv-text-line {
	border-right: 1px solid #000;
	border-left: 1px solid #000;
	margin: 0 0.5rem 3rem;
	padding: 0.5rem 4px;
	font-family: "リュウミン H-KL", "Ryumin Heavy KL", "Noto Serif JP", "游明朝", "YuMincho", serif;
	font-size: min(3vw, 24px);
	font-weight: 700;
	line-height: 1.2;
	writing-mode: vertical-rl;
}
.mv-text-line strong {
	font-size: min(4vw, 36px);
}

@media (max-width: 767.98px) {
	.mv-bg {
		height: calc(100vh - 120px);
	}
	.mv-title {
		top: 0;
		left: -5%;
		width: 85%;
	}
	.mv-text-inner {
		height: 100%;
	}
	.mv-text .l-text {
		top: 5%;
		left: 0;
		background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 80%, transparent);
	}
	.mv-text .r-text {
		top: auto;
		right: 0;
		bottom: 5%;
		background: linear-gradient(to left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8) 80%, transparent);
	}
	.mv-text-line {
		border-top: 1px solid #000;
		border-right: none;
		border-bottom: 1px solid #000;
		border-left: none;
		padding: 4px 0.5rem;
		font-size: min(5vw, 22px);
		font-weight: 700;
		line-height: 1.2;
		writing-mode: horizontal-tb;
	}
	.mv-text-line strong {
		font-size: min(6vw, 32px);
	}
	.mv-text .l-text .mv-text-line {
		margin: 0.5rem 2.5rem 0.5rem 0;
	}
	.mv-text .r-text .mv-text-line {
		margin: 0.5rem 0 0.5rem 2.5rem;
	}
}

/* 出だし */
.main-information {
	margin-top: 30px;
	font-weight: 600;
	text-align: center;
	line-height: 1.8;
}
@media (max-width: 767.98px) {
	.main-information {
		text-align: left;
		line-height: 1.6;
	}
}

.during {
	background-color: #fff;
	border: 1px solid #d61d4b;
	max-width: 800px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	padding: 16px;
	text-align: center;
}

.during-title {
	font-size: min(5.5vw, 24px);
}

.during-date {
	margin-top: 1rem;
	font-family: "ヒラギノ角ゴ W7 JIS2004", "Hiragino Kaku Gothic W7 JIS2004";
	font-size: min(5vw, 32px);
	font-weight: 700;
}
.during-date .small {
	font-size: 0.75em;
}

.during-info {
	font-size: min(4vw, 20px);
	font-weight: 600;
}

/* メインディッシュ */
.main-dish {
	display: flex;
	flex-wrap: wrap;
	max-width: 1080px;
	margin-top: 60px;
	margin-right: auto;
	margin-left: auto;
}

.main-dish > * {
	flex: 0 0 auto;
}

.main-dish-img {
	width: 60%;
}

.main-dish-img img {
	max-width: 100%;
	height: auto;
}

.main-dish-info {
	width: 40%;
}

.main-dish-info h3 {
	color: #d61d4b;
	border-bottom: 1px solid #d61d4b;
	padding: 40px 0.5rem 20px 30px;
	font-size: 22px;
	font-weight: 600;
}

.main-dish-info p {
	margin-top: 20px;
	padding-left: 30px;
	font-weight: 500;
	line-height: 1.8;
}

.main-dish-info ul {
	margin-top: 20px;
	/* padding-left: calc(1.5em + 30px); */
	font-weight: 500;
	line-height: 1.8;
}

.main-dish-info ul.note {
	padding-left: 30px;
}
.main-dish-info .note {
	margin-top: 10px;
	line-height: 1.6;
}

.grid_img {
	display: flex;
}
/* .grid_img img {
	width: 33.3333%;
	height: auto;
} */
.grid_img a {
	display: block;
}

@media (min-width: 768px) {
	.main-dish.rev {
		flex-direction: row-reverse;
	}
	.main-dish.rev .main-dish-info h3 {
		padding-right: 30px;
	}
	.main-dish.rev .main-dish-info p {
		padding-right: 30px;
	}
	.main-dish.rev .main-dish-info ul {
		padding-right: 30px;
	}
}

@media (max-width: 767.98px) {
	.main-dish {
		margin-top: 30px;
	}
	.main-dish-img {
		width: 100%;
	}
	.main-dish-info {
		width: 100%;
	}
	.main-dish-info h3 {
		padding-left: 0.5rem;
		text-align: center;
	}
	.main-dish-info p {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.main-dish-info ul {
		padding-right: 0.5rem;
		padding-left: 1.5rem;
	}
}


/* その他メニュー */
.dishes-title {
	font-size: min(5.5vw, 24px);
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
}
.dishes-category-title {
	font-size: min(4.5vw, 20px);
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
}
.dish-lists {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.dish-lists {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.dish-lists > li {
	flex: 0 0 auto;
	width: calc(100% / 3);
	margin-top: 16px;
	padding: 8px;
}

.dish-item {
	display: block;
	margin: 0;
	padding: 1vw;
}

.dish-item img {
	display: block;
	max-width: 100%;
	height: auto;
}

.dish-item figcaption {
	margin-top: 1rem;
	font-weight: 600;
	text-align: center;
}

@media (max-width: 767.98px) {
	.dish-lists > li {
		width: 50%;
	}
	.dish-item {
		padding: 0;
	}
	.dish-item figcaption {
		margin-top: 0.5rem;
		font-size: 14px;
	}
}


/* テキストメニューリスト */
.menu-lists {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
	border: 1px solid #d61d4b;
	max-width: 960px;
	margin: 2rem auto;
	padding: 20px 10px 15px;
}
.menu-lists > li {
	flex: 0 0 auto;
	width: 100%;
	margin-bottom: 0.5rem;
	padding-right: 1em;
	padding-left: 2.25em;
	text-indent: -1.25em;
}
@media (min-width: 768px) {
	.menu-lists > li {
		width: calc(100% / 2);
	}
}
@media (min-width: 992px) {
	.menu-lists > li {
		width: calc(100% / 3);
	}
}
.menu-lists > li::before {
	content: "●";
	padding-right: 0.25em;
	color: #db735e;
	opacity: 0.5;
}



/* パララックス */
.parallax-window {
	min-height: 600px;
	background: transparent;
}
@media (max-width: 767.98px) {
	.parallax-window {
		min-height: 320px;
	}
}

/* インフォメーション */
.information2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1080px;
	margin-right: auto;
	margin-left: auto;
}

.information2 > * {
	flex: 0 0 auto;
}

.information2-img {
	width: 50%;
}

.information2-img img {
	max-width: 100%;
	height: auto;
}

.information2-info {
	width: 50%;
}

.information2-info p {
	padding-left: 30px;
	font-weight: 500;
	line-height: 2.4;
}
@media (max-width: 767.98px) {
	.information2-info p {
		margin-top: 1rem;
		line-height: 1.8;
	}
}

.information2-info ul {
	margin-top: 20px;
	padding-left: 30px;
	font-weight: 500;
	line-height: 1.8;
}

.information2-info .note {
	margin-top: 10px;
	line-height: 1.6;
}

@media (max-width: 767.98px) {
	.information2 {
		margin-top: 30px;
	}
	.information2-img {
		width: 100%;
	}
	.information2-info {
		width: 100%;
	}
	.information2-info h3 {
		padding-left: 0.5rem;
		text-align: center;
	}
	.information2-info p {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
	.information2-info ul {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
}

/* プラン一覧 */
.plan-intro {
	margin-top: 40px;
	font-weight: 500;
	text-align: center;
}
.plan-lists {
	list-style: none;
	max-width: 1000px;
	margin: 40px auto 0;
	padding: 0;
}

.plan-lists li {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	background-color:  #fff;
	border: 1px solid #d61d4b;
	margin-top: 20px;
	padding: 30px 15px;
}

.plan-lists li > * {
	flex: 0 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}

.plan-thumb {
	width: 30%;
}

.plan-thumb img {
	max-width: 100%;
	height: auto;
}

.plan-info {
	width: 70%;
}

.plan-info h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.plan-info dl {
	margin-top: 16px;
	font-size: 14px;
}

.plan-link  {
	margin-top: 1.5rem;
}

.link-button {
	position: relative;
	display: inline-block;
	background-color: #734e3f;
	min-width: 200px;
	height: 48px;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 48px;
	transition: all ease-in-out 0.2s;
}
.link-button:hover {
	background-color: #7c584b;
}
.link-button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	display: block;
	background-image: url(../images/link_arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	width: 24px;
	height: 24px;
	transition: all ease-in-out 0.2s;
}
.link-button:hover::after {
	right: 8px;
}

@media (max-width: 767.98px) {
	.plan-intro {
		margin-top: 1.5rem;
		text-align: left;
	}
	.plan-thumb {
		width: 100%;
	}
	.plan-info {
		width: 100%;
	}
	.plan-info h3 {
		margin-top: 1rem;
		font-size: 16px;
	}
	.plan-link {
		text-align: center;
	}
}



/* フッター */
.footer {
	background-color: #734e3f;
	padding: 20px 0;
}
.copy {
	text-align: center;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
}



@media (max-width: 767.98px) {
	.pc-only {
		display: none;
	}
}
@media (min-width: 768px) {
	.sp-only {
		display: none;
	}
}


/* 追記 2025.10.28 by H.O. 地元割引キャンペーン */
.SpecialPrice {
	text-align: center !important;
}
.SpecialPrice .section-title, .Reservation .section-title {
	color: #1c1c1c;
	line-height: 1.5;
	font-size: min(4.5vw, 20px);
}
.SpecialPrice .section-title strong, .Reservation .section-title {
	font-size: min(6vw, 32px);
}
.SpecialPrice h3 {
	margin-top: 40px;
	font-weight: bold;
	font-size: min(4vw, 20px);
	span {
		font-size: 80%;
	}
}
.SpecialPrice dl {
	margin-bottom: 40px;
}
.SpecialPrice dt {
	margin-top: 20px !important;
	font-size: min(4vw, 20px);
}
.SpecialPrice dd {
	font-size: min(4.5vw, 18px);
}
.SpecialPrice dd strong {
	color: #c11d10;
	padding-left: 0.25em;
}
.SpecialPrice dd span {
	font-size: 150%;
}
.SpecialPrice p {
	font-size: min(4.5vw, 24px);
}
.SpecialPrice p.note {
	margin-bottom: 0.25em;
	font-size: min(4vw, 16px);
	text-align: justify;
}
@media (min-width: 768px) {
	.SpecialPrice dd br {
		display: none;
	}
	.SpecialPrice p.note {
		text-align: center;
	}
}
.extension {
	color: #d30223;
	font-weight: bold;
	font-size: 2rem;
}
@media (max-width: 767.98px) {
	.extension {
		font-size: 1.5rem;
	}
}


/* ===============================================
追記
=============================================== */
.main-dish-img, .information2-img {
	margin: 0 -2px;
}

.main-dish-img a, .information2-img a {
	display: block;
	margin: 0 2px 4px;
}