/* ===== Font SET ===== */
@font-face {
	font-family: "Dela";
	src: url("../font/dela-suko-gothic-one-r.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Tamanegi";
	src: url("../font/tamanegi-kaisho.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "MochiyPop";
	src: url("../font/MochiyPopOne-Regular.woff2") format("woff2");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* ===== Modern CSS Reset ===== */
*, *::before, *::after {
	box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6,
p, ul, ol, li, figure,
blockquote, dl, dd {
	margin: 0;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

ul, ol {
	list-style: none;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

img, picture {
	max-width: 100%;
	display: block;
}

input, button, textarea, select {
	font: inherit;
}

button {
	background: none;
	border: none;
	cursor: pointer;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



/*****************************************
* 全体
*****************************************/
html, body {
	height: 100%;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-image: url("../../images/bk_1.jpeg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	font-family: "MochiyPop", sans-serif;
}

main.site-main {
	flex: 1;
	margin-top: 70px;
	margin-bottom: 60px;
}

.container {
	width: min(1000px, 92%);
	margin: 0 auto;
}



/*****************************************
* COMMON
*****************************************/
.default__btn {
	text-align: center;
	margin: 30px 0 60px;
}

.default__btn a {
	display: inline-block;
	background: #be2e2d;
	color: #fff;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.08em;
}

.default__btn a:hover {
	background: #900000;
	transform: translateY(-2px);
}


/*****************************************
* HEADER
*****************************************/
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	z-index: 99999;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 70px;
	padding: 0 3vw;
	border-bottom: 1px solid #e5e5e5;
}

.site-header h1 img {
	width: 130px;
	height: 100%;
}

.site-nav-inner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.site-nav .menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: "Dela", sans-serif;
}

.nav-toggle{
	display: none;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
	padding: 0;
}


.nav-toggle span{
	position: absolute;
	left: 50%;
	width: 30px;
	height: 4px;
	background: #ad3535;
	border-radius: 3px;
	transform: translateX(-50%);
	transition: transform .35s ease, opacity .25s ease, top .35s ease;
}


.nav-toggle span:nth-child(1){ 
	top: 14px;
}

.nav-toggle span:nth-child(2){ 
	top: 23px; 
}

.nav-toggle span:nth-child(3){ 
	top: 32px; 
}

.nav-toggle.is-active span:nth-child(1){
	top: 20px;
	transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2){
	opacity: 0;
}
.nav-toggle.is-active span:nth-child(3){
	top: 20px;
	transform: translateX(-50%) rotate(-45deg);
}

a.reserve_btn {
	padding: 5px 10px;
	border-radius: 5px;
	background: #be2e2d;
	color: #fff;
	font-family: "Dela", sans-serif;
}

/*****************************************
* TOP PAGE
*****************************************/
.top-inner h2 {
	font-family: "Tamanegi";
	text-align: center;
	font-size: 2rem;
	color: #be2e2d;
}

/*スライダー*/
/* スライダー */
.topHero {
	position: relative;
	height: 85vh;
	min-height: 320px;
	overflow: hidden;
}

.topHero__slider {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.topHero__slider .slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.topHero__slider .slide.is-active {
	opacity: 1;
	z-index: 1;
}

.topHero__slider .slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

.topHero__slider .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition: transform 8s ease;
}

.topHero__slider .slide.is-active img {
	transform: scale(1.1);
}

/* 黒マスク＋ロゴ */
.topHero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
	padding: 20px;
	box-sizing: border-box;
}

.topHero__logo {
	width: min(480px, 70%);
	height: auto;
	display: block;
	margin-bottom: 50px;
}

@media (max-width: 767px) {
	.topHero {
		height: 80vh;
		min-height: 500px;
	}

	.topHero__logo {
		width: 72%;
		max-width: 260px;
	}
}

/*メニュー*/
.top__menu__intro {
	width: 100%;
	margin: 50px 0;
	text-align: center;
}

.top__menu__intro img {
	display: inline-block;
	width: 40%;
}

.top__menu__intro p {
	margin: 24px 0;
	font-size: 1.8rem;
	font-family: "Dela", sans-serif;
}

/*お知らせ*/
.news-item {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 15px 0;
	border-bottom: 3px solid #dedad7;
}

.news-cat {
	background: #be2e2d;;
	color: #fff;
	padding: 4px 10px;
	font-size: 12px;
}

.news-date {
	font-size: 14px;
	color: #777;
}

.news-title {
	text-decoration: none;
	color: #000;
	font-weight: bold;
}

.news-title:hover {
	text-decoration: underline;
}

/*インスタグラム*/
.insta-grid {
	margin-top: 60px;
}

/*ユーチューブ*/
.youtube-grid h3 {
	margin: 60px 0 5px;
	color: #bd2e2d;
	font-size: 30px;
}


/*****************************************
* PAGE
*****************************************/
.page-title {
	position: relative;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 60px;
	padding: 90px 20px;
	text-align: center;
	color: #fff;
	font-family: "Dela", sans-serif;
	font-size: 2.5rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	letter-spacing: 0.5rem;
	overflow: hidden;
}

.page-title::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5); /* ←濃さ調整 */
	z-index: -1;
}

.page-title {
	z-index: 2;
}

/*****************************************
* PAGE -MENU-
*****************************************/

.sumire_menu img {
    border: solid 5px #000;
}

.sumire_menu > div > .wp-block-image:first-child img {
    border-bottom: none;
}


/*****************************************
* NEWS
*****************************************/

.pagination {
	margin-top: 30px;
	text-align: center;
}

.pagination a,
.pagination span {
	margin: 0 5px;
	padding: 6px 12px;
	border: 1px solid #000;
	text-decoration: none;
	color: #000;
}

.pagination .current {
	background: #000;
	color: #fff;
}

/*****************************************
* SINGLE
*****************************************/
h1.single-title {
	margin: 38px 0 25px;
	border-bottom: solid 3px #dedad7;
}

.post-card__meta {
	font-size: 14px;
	color: #777;
}

.single time {
    color: #999;
}


/*****************************************
* FOOTER
*****************************************/
.site-footer__inner {
	background: #f1f1f1;
	padding: 50px 30px 20px;
}

.site-footer__logo {
	text-align: center;
}

.site-footer__logo img {
	display: inline-block;
	width: 38%;
}

.site-footer__logo p {
	color: #666;
	font-size: 0.9rem;
}

.copyright {
	display: block;
	margin-top: 40px;
	text-align: right;
	color: #aaa;
}

/*フッター上部*/
.footer-cta {
	display: flex;
	gap: 1px;
}

.access-section {
	width: 100%;
}

.map-inner {
	position: relative;
	width: 100%;
	padding-top: 25%;
}

.map-inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.access-inner {
	padding: 25px 15px;
	background: #fff;
}

.address p {
	display: inline-block;
}

.address a {
	display: inline-block;
	padding: 3px 7px;
	border-radius: 4px;
	background: #be2e2d;
	color: #fff;
	font-size: 0.6rem;
}

.access-inner a[href^="tel:"] {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	text-decoration: underline;
}

.access-inner a[href^="tel:"]::before {
	content: "";
	display: inline-block;  /* blockだと改行される */
	width: 25px;
	height: 25px;
	background-image: url("../../images/tel-icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.access-inner__text {
	margin-bottom: 2px;
	color: #7c7c7c;
}

.access__sns {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	padding-top: 12px;
	border-top: solid 1px #ddd;
}

.access__sns img {
	width: 40px;
	height: 40px;
}

/*固定追っかけボタン*/
.footerSticky.is-closed {
	transform: translateY(100%);/* 非表示状態 */
}

.footerSticky {
	position: relative;
	display: none;
	align-items: center;
	position: fixed;
	z-index: 110;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 72px;
	padding: 0 12px;
	box-sizing: border-box;
	background-color: #be2e2d;
	box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
	transition: transform .4s ease;
}

.footerSticky-pref-closed .footerSticky {
	transition: none !important;
}

.footerSticky-toggle {
	position: absolute;
	top: -55px;
	right: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border: solid 2px rgb(240 235 232);
	border-radius: 50px;
	background: #333;
	z-index: 1;
}

.footerSticky-open .footerSticky-toggle {
	top: -31px;
	right: 3px;
	width: 38px;
	height: 38px;
}

.footerSticky-toggle::before,
.footerSticky-toggle::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: .3s;
}

.footerSticky-toggle::before {
	transform: rotate(0);
}
.footerSticky-toggle::after {
	transform: rotate(90deg);
}

.footerSticky-open .footerSticky-toggle::before {
	transform: rotate(45deg);
}

.footerSticky-open .footerSticky-toggle::after {
	transform: rotate(-45deg);
}

.footerSticky__map,
.footerSticky__tel {
	width: 54px;
	height: 54px;
	min-width: 54px;
	min-height: 54px;
	margin: 0 4px;
	border-radius: 100%;
	background-color: #fff;
	font-size: 0.8rem;
}

.footerSticky__map span,
.footerSticky__tel span{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.footerSticky__map span::before,
.footerSticky__tel span::before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background-image: url(../../images/map-icon_150×150.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.footerSticky__tel span::before {
	background-image: url(../../images/tel-icon_150×150.png);
}

a.footerSticky__reserve {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 48px;
	margin-left: 13px;
	padding: 0 8px;
	background: #fff900;
	color: #be2e2d;
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 1.2rem;
	line-height: 1;
}


/*****************************************
* 768px以下
*****************************************/
@media (max-width: 768px) {
	/*全体*/
	body {
		background-size: contain;
		background-repeat: repeat-y; /* 下方向に繰り返す */
	}
	/*ヘッダー*/
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		display: none;
	}

	nav.site-nav.is-open {
		position: fixed;
		top: 70px;
		left: 0;
		bottom: 0;
		display: block;
		width: 100%;
		padding: 30px 20px;
		background: #000000de;
		color: #fff;
	}

	.site-nav-inner {
		flex-direction: column;
		margin-top: 30px;
	}

	.site-nav .menu {
		align-items: center;
		flex-direction: column;
		gap: 16px;
	}

	.site-nav .menu li a {
		font-size: 1.6rem;
	}

	a.reserve_btn {
		margin-top: 28px;
		font-size: 1.4rem;
	}


	/*TOP*/
	.top-inner h2 {
		font-size: 1.8rem;
	}

	.top__menu__intro img {
		width: 70%;
	}

	.top__menu__intro p {
		margin: 24px 0;
		font-size: 1.4rem;
	}

	/*お知らせ*/
	.news-item{
		display: flex;
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
	}

	.news-cat{
		width: auto;
		display: inline-block;
	}

	.news-row{
		display: flex;
		gap: 14px;
		align-items: baseline;
		width: 100%;
	}

	.news-date{
		white-space: nowrap;
		flex: 0 0 auto;
	}

	.news-title{
		flex: 1;
		min-width: 0;
	}

	/*インスタグラム*/
	.insta-grid {
		margin-top: 40px;
	}

	/*固定ページ*/
	.page-title {
		margin-bottom: 30px;
		padding: 65px 20px;
	}
	
	/*固定ページ　メニュー*/
	.sumire_menu img {
		border: solid 4.5px #000;
	}

	/*フッター上部*/
	.footer-cta {
		display: block;
	}
	.footer-cta a {
		display: block;
	}
	.footer-cta a:first-of-type {
		margin-bottom: 1px;
	}

	.map-inner {
		padding-top: 56.25%;
	}
	
	/*フッター*/
	.site-footer__logo img {
		width: 50%;
	}

	/*追っかけボタン*/
	.footerSticky-open .site-footer {
		padding-bottom: 70px;
	}
	.footerSticky {
		display: flex;
	}

}