@charset "utf-8";

.tag {
	background: #dcd2be;
}

:root {
	--color-bg: #f0f0f0;
	--color-dark: #322a1f;
	--color-bg2: #e8eaea;
	--color-bg3: #dcd2be;
	--color-accent: #0d598e;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color: var(--color-dark);
	line-height: 1.7;
	background: var(--color-bg);
}

/* ヘッダー */
.header {
	width: 100%;
	background: var(--color-bg);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--color-bg3);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	height: 60px;
}

.header__logo img {
	height: 28px;
	width: auto;
}

.header__nav,
.header__util {
	display: none;
}

.header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 200;
	position: relative;
}

.header__hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-dark);
	transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* 全画面メニュー */
.sp-menu {
	position: fixed;
	inset: 0;
	background: var(--color-dark);
	z-index: 150;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s;
}

.sp-menu.is-open {
	opacity: 1;
	pointer-events: auto;
}

.sp-menu__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	margin-bottom: 48px;
}

.sp-menu__list li a {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
}

.sp-menu__util {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.sp-menu__instagram {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 13px;
}

.sp-menu__instagram img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.sp-menu__lang {
	display: flex;
	gap: 16px;
}

.sp-menu__lang-item {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
}

.sp-menu__lang-item.is-active {
	color: #fff;
	font-weight: 700;
}

/* MV */
.mv {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	background: var(--color-dark);
}

.mv__bg {
	position: absolute;
	inset: 0;
}

.mv__track {
	display: flex;
	height: 100%;
}

.mv__track img {
	height: 100%;
	width: auto;
	flex-shrink: 0;
}

.mv__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 5%;
}

.mv__band {
	background: rgba(50, 42, 31, 0.95);
	padding: 24px 5%;
	width: 100%;
}

.mv__sub {
	font-size: 13px;
	color: #fff;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
	text-align: center;
}

.mv__title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.4;
	text-align: center;
}

/* NEWS */
.news {
	background: var(--color-bg);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
}

.news__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 0 5vw;
}

.news__head {
	width: 100%;
}

.news__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 8px;
}

.news__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
	margin-bottom: 24px;
	letter-spacing: -0.04em;
}

.news__slider {
	overflow-x: auto;
	cursor: grab;
	scrollbar-width: none;
}

.news__slider::-webkit-scrollbar {
	display: none;
}

.news__track {
	display: flex;
	gap: 16px;
	user-select: none;
}

.news__card {
	flex-shrink: 0;
	width: 280px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	padding: 12px;
}

.news__card a {
	display: block;
}

.news__card-img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.news__card-body {
	padding: 12px 4px 0;
}

.news__card-date {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.news__card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 8px;
	font-family: 'Lexend Exa', sans-serif;
	font-weight: 700;
}

.news__card-text {
	font-size: 13px;
	line-height: 1.7;
	color: var(--color-dark);
}

.tag {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 2px;
	letter-spacing: 0.05em;
}

.tag--brick {
	background: #d7b08a;
	color: var(--color-dark);
}

.tag--event,
.tag--enevt {
	background: #e7c3c4;
	color: var(--color-dark);
}

.tag--information {
	background: #d0d0da;
	color: var(--color-dark);
}

/* 共通ボタン */
.c-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 3px solid var(--color-dark);
	padding: 12px 20px;
	font-weight: 700;
	font-size: 14px;
	width: 100%;
	transition: background 0.2s, color 0.2s;
	border-radius: 5px;
	white-space: nowrap;
}

.c-btn:hover {
	background: var(--color-dark);
	color: #fff;
}

.c-btn__arrow {
	height: 12px;
	width: auto;
	transition: filter 0.2s;
}

.c-btn:hover .c-btn__arrow {
	filter: brightness(0) invert(1);
}

/* ABOUT */
.about {
	background-color: var(--color-bg2);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
}

.about__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 0 5vw;
}

.about__head {
	width: 100%;
}

.about__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 8px;
}

.about__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1.3;
	letter-spacing: -0.04em;
}

.about__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about__text {
	font-size: 14px;
	line-height: 2;
	color: var(--color-dark);
	width: 100%;
}

/* CALENDAR */
.calendar {
	background-color: var(--color-bg);
	padding: 80px 0;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
}

.calendar__inner {
	padding: 0 5vw;
}

.calendar__head {
	margin-bottom: 40px;
}

.calendar__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 8px;
}

.calendar__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
	letter-spacing: -0.04em;
}

.calendar__body img {
	width: 100%;
}

/* STORY */
.story {
	background-color: var(--color-bg3);
	padding: 80px 0;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
}

.story__inner {
	padding: 0 5vw;
}

.story__head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.story__head-right .c-btn {
	width: 100%;
}

.story__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 8px;
}

.story__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
	letter-spacing: -0.04em;
}

.story__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.story__card a {
	display: block;
}

.story__card-img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
}

.story__card-body {
	padding: 10px 2px 0;
}

.story__card-date {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-dark);
	margin-bottom: 6px;
}

.story__card-text {
	font-size: 12px;
	line-height: 1.6;
	color: var(--color-dark);
}

/* BASE */
.base {
	background-color: var(--color-bg);
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
}

.base__inner {
	display: flex;
	flex-direction: column;
}

.base__block {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 60px 5vw;
}

.base__block--reverse {
	flex-direction: column;
}

.base__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.base__img img {
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.base__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
}

.base__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 36px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
	letter-spacing: -0.04em;
}

.base__sub {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1.4;
}

.base__text {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
	line-height: 1.9;
	color: var(--color-dark);
}

.base .c-btn {
	width: 100%;
}

/* FOOTER */
.footer {
	background-color: #222222;
	color: #fff;
	padding: 60px 0 32px;
	font-size: 10px;
}

.footer__inner {
	padding: 0 5vw;
}

.footer__grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
	margin-bottom: 48px;
}

.footer__logo {
	margin-bottom: 16px;
}

.footer__logo img {
	height: 32px;
	width: auto;
}

.footer__instagram {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 10px;
	color: #fff;
}

.footer__instagram img {
	width: 16px;
	height: 16px;
	filter: brightness(0) invert(1);
}

.footer__info {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 16px;
	font-size: 10px;
	line-height: 1.8;
}

.footer__info dt {
	font-weight: 700;
	white-space: nowrap;
}

.footer__info dd {
	color: rgba(255,255,255,0.8);
}

.footer__map {
	display: inline-block;
	margin-left: 8px;
	color: #fff;
	text-decoration: underline;
}

.footer__info a {
	color: #fff;
	text-decoration: underline;
}

.footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.2);
}

.footer__food {
	font-size: 10px;
	line-height: 1.8;
	color: rgba(255,255,255,0.8);
}

.footer__bottom-right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.footer__nav a {
	font-size: 10px;
	color: #fff;
	text-decoration: underline;
}

.footer__copy {
	font-size: 10px;
	color: rgba(255,255,255,0.8);
}



.calendar__text {
	font-size: 15px;
	line-height: 2;
	margin-top: 24px;
	color: var(--color-dark);
}

.footer__col-title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}


/* INSTAGRAM */
.instagram {
	background-color: #fff;
	padding: 80px 0;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
}

.instagram__inner {
	padding: 0 5vw;
}

.instagram__head {
	margin-bottom: 40px;
}

.instagram__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 8px;
}

.instagram__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
	letter-spacing: -0.04em;
}


















/* ============================================
   archive-news（お知らせ一覧）SP
============================================ */

.archive-news {
	background: var(--color-bg);
	padding: 80px 0;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 120px;
	background-repeat: no-repeat;
	background-position: top left;
	min-height: 60vh;
}

.archive-news__inner {
	padding: 0 5vw;
}

.archive-news__head {
	margin-bottom: 40px;
}

.archive-news__label {
	font-size: 14px;
	color: var(--color-accent);
	font-weight: 700;
	margin-bottom: 8px;
}

.archive-news__title {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
	letter-spacing: -0.04em;
}

/* リスト */
.archive-news__list {
	display: flex;
	flex-direction: column;
	margin-bottom: 48px;
}

.archive-news__item a {
	display: flex;
	align-items: baseline;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--color-bg3);
	transition: opacity 0.2s;
}

.archive-news__item:first-child a {
	border-top: 1px solid var(--color-bg3);
}

.archive-news__item a:hover {
	opacity: 0.6;
}

.archive-news__date {
	font-family: 'Lexend Exa', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-dark);
	flex-shrink: 0;
}

.archive-news__text {
	font-size: 13px;
	line-height: 1.7;
	color: var(--color-dark);
}

/* 空表示 */
.archive-news__none {
	font-size: 14px;
	color: var(--color-dark);
	padding: 40px 0;
	text-align: center;
}

/* ページネーション */
.archive-news__pagination {
	margin-top: 48px;
}

.archive-news__pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}

.archive-news__pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid var(--color-dark);
	border-radius: 4px;
	font-family: 'Lexend Exa', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-dark);
	transition: background 0.2s, color 0.2s;
	background: transparent;
}

.archive-news__pagination .page-numbers:hover {
	background: var(--color-dark);
	color: #fff;
}

.archive-news__pagination .page-numbers.current {
	background: var(--color-dark);
	color: #fff;
	pointer-events: none;
}

.archive-news__pagination .page-numbers.dots {
	border: none;
	background: none;
	width: 24px;
	letter-spacing: 0;
}

.archive-news__pagination .prev.page-numbers,
.archive-news__pagination .next.page-numbers {
	font-family: inherit;
	font-size: 16px;
}



.mv__track img {
	height: 100%;
	width: auto;
	flex-shrink: 0;
	object-fit: cover;
}



/* NEWS一覧：カテゴリー表示 */
.c-article .archive-news__list li {
	list-style: none;
	margin-left: 0;
	margin-top: 0;
	font-size: inherit;
}

.c-article .archive-news__list a {
	text-decoration: none;
}

.archive-news__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.archive-news__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

/* 投稿ページ：カテゴリー色分け */
.p-single__category .c-category--event,
.p-single__category .c-category--enevt {
	background-color: #e7c3c4;
}

.p-single__category .c-category--information {
	background-color: #d0d0da;
}

.p-single__category .c-category--brick {
	background-color: #d7b08a;
}

/* STORYカード：カテゴリー表示 */
.story__card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
	font-family: 'Lexend Exa', sans-serif;
	font-weight: 700;
}

/* ※enevt は既存サイト側のスラッグタイポ対応 */
.tag--event,
.tag--enevt {
	background: #e7c3c4;
}

/* STORYカード：カテゴリー表示（色分けなし・白背景） */
.story__card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
	font-family: 'Lexend Exa', sans-serif;
	font-weight: 700;
}

.story__card-tags .tag {
	background: #fff;
}

/* ============================================
   カレンダー：イベント文字サイズ調整
   ※プラグイン側が .68em 指定のため上書き
============================================ */

.simcal-calendar .simcal-event-title {
	font-size: clamp(12px, 0.9vw, 16px);
	line-height: 1.5;
}



/* ============================================
   SPメニュー：×ボタンを前面に出す
   ※.header の z-index が階層を作るため引き上げ
============================================ */

.header {
	z-index: 200;
}

/* メニュー展開中はヘッダーを透明にして×だけ見せる */
.header:has(.header__hamburger.is-open) {
	background: transparent;
	border-bottom-color: transparent;
}

.header:has(.header__hamburger.is-open) .header__logo {
	opacity: 0;
	pointer-events: none;
}

/* ×印は白に */
.header__hamburger.is-open span {
	background: #fff;
}


.p-page__header{
	width: 100%!important;
	padding-top: 0px!important;
}

.p-page__title{
	    font-size: 26px!important;
}

.l-contents__header{
	padding-top: 0px!important;
}
