@charset "utf-8";

.tag {
	background: #dcd2be;
}
/* SP専用要素を非表示 */
.header__hamburger {
	display: none;
}

.sp-menu {
	display: none;
}
: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: 16px;
	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;
	gap: 40px;
	padding: 0 40px;
	height: 70px;
}

.header__logo {
	flex-shrink: 0;
}

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

.header__nav {
	flex: 1;
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header__nav-list li a {
	font-size: 14px;
	padding: 6px 16px 9px 16px;
	border: 2px solid transparent;
	border-radius: 4px;
	transition: border-color 0.2s;
	white-space: nowrap;
	font-weight: 700;
	color: var(--color-dark);
}

.header__nav-list li a:hover {
	border:2px solid var(--color-dark);
}

.header__util {
	display: flex;
	align-items: center;
	gap: 25px;
	flex-shrink: 0;
	margin-left: auto;
}

.header__instagram {
	display: flex;
	align-items: center;
}

.header__instagram img {
	width: 20px;
	height: 20px;
}

.header__lang {
	position: relative;
}

.header__lang-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--color-dark);
	font-family: 'Noto Sans JP', sans-serif;
}

.header__lang-icon {
	width: 18px;
	height: 18px;
}

.header__lang-arrow {
	font-size: 10px;
	transition: transform 0.2s;
}

.header__lang.is-open .header__lang-arrow {
	transform: rotate(180deg);
}

.header__lang-drop {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: var(--color-bg);
	border: 1px solid var(--color-bg3);
	border-radius: 4px;
	overflow: hidden;
	white-space: nowrap;
	min-width: 80px;
}

.header__lang-drop.is-open {
	display: block;
}

.header__lang-item {
	display: block;
	padding: 8px 16px;
	font-size: 13px;
	color: var(--color-dark);
	opacity: 0.4;
	transition: opacity 0.2s, background 0.2s;
}

.header__lang-item:hover {
	opacity: 1;
	background: var(--color-bg2);
	color: var(--color-bg);
}

.header__lang-item.is-active {
	opacity: 1;
	font-weight: 600;
}





/* メインビジュアル */
.mv {
	position: relative;
	width: 100%;
	height: 750px;
	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;
}

@keyframes mvLoop {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* 中央テキスト */
.mv__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 8%;
}

.mv__band {
	background: rgba(50, 42, 31, 0.95);
	padding: 30px 3%;
	width: 100%;
	margin:0px auto;
	max-width: 660px;
}

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

.mv__title {
	font-size: 40px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.3;
	text-align: center;
}



/* 共通ボタン */
.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 3px solid var(--color-dark);
	padding: 12px 20px;
	font-weight: 700;
	font-size: 16px;
	width: auto;
	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: 14px;
	width: auto;
	transition: filter 0.2s;
}

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


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


.news__inner {
	display: flex;
	align-items: flex-start;
	gap: 120px;
	padding-left: 8vw;
}

.news__head {
	flex-shrink: 0;
	width: 200px;
}

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

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


/* スライダー */
.news__slider {
	flex: 1;
	overflow-x: auto;
	cursor: grab;
	scrollbar-width: none;
}

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

.news__slider:active {
	cursor: grabbing;
}

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

/* カード */
.news__card {
	flex-shrink: 0;
	width: 340px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	padding: 17px;
}

.news__card a {
	display: block;
}

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

.news__card-body {
	padding: 20px;
}

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

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

.news__card-tags li {
	font-size: 11px;
	/* border: 1px solid var(--color-dark); */
	padding: 2px 8px;
	letter-spacing: 0.05em;
}

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


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

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

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

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






/* ABOUT */
.about {
	background-color: var(--color-bg2);
	padding: 160px 0;
	position: relative;
	overflow: hidden;
	background-image: 
		url(../../assets/images/bg-brick.png),
		url(../../assets/images/bg-map.png);
	background-size: 
		185px,
		43vw;
	background-repeat: 
		no-repeat,
		no-repeat;
	background-position: 
		top left,
		bottom right;
}


.about__inner {
	display: flex;
	align-items: flex-start;
	gap: 4vw;
	padding: 0 8vw;
}

.about__head {
	flex-shrink: 0;
	width: 291px;
}

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

.about__title {
	font-size: 54px;
	font-weight: 900;
	color: var(--color-dark);
	line-height: 1.5;
	margin-bottom: 32px;
}

.about__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 44px;
	padding-top: 8px;
	/* width: 100px; */
}

.about__text {
	font-size: 17px;
	line-height: 2.6;
	color: var(--color-dark);
	width: 73%;
}



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

.calendar__inner {
	padding: 0 8vw;
}

.calendar__head {
	margin-bottom: 80px;
}

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

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

.calendar__body {
	margin:0px auto;
	text-align:center;
}

.calendar__body img {
	width: 100%;
	margin:0px auto;
	max-width: 1200px;
}



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

.story__inner {
	padding: 0 8vw;
}

.story__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 60px;
}

.story__head-right .c-btn {
	width: 280px;
}

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

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

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

.story__card a {
	display: block;
}

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

.story__card-body {
	padding: 16px 4px 0;
}

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

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


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

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

.base__block {
	display: flex;
	align-items: center;
	gap: 6vw;
	padding: 100px 8vw;
}

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

.base__body {
        flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: flex-start;
}

.base__img {
	flex: 1;
}

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

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

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

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

.base__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 15px;
	line-height: 2;
	color: var(--color-dark);
}




/* FOOTER */
.footer {
	background-color: #222222;
	color: #fff;
	padding: 80px 0 40px;
	font-size: 12px;
}

.footer__inner {
	padding: 0 8vw;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer__logo {
	margin-bottom: 20px;
}

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

.footer__instagram {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	font-size: 12px;
	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: 12px;
	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;
	align-items: flex-end;
	justify-content: space-between;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	gap: 40px;
}

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

.footer__bottom-right {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-shrink: 0;
}

.footer__nav {
	display: flex;
	gap: 24px;
}

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

.footer__copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
}


.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: 160px 0;
	background-image: url(../../assets/images/bg-brick.png);
	background-size: 185px;
	background-repeat: no-repeat;
	background-position: top left;
}

.instagram__inner {
	padding: 0 8vw;
}

.instagram__head {
	margin-bottom: 80px;
}

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

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















/* ============================================
   PC（769px以上）← style-pc.cssに追記する分
============================================ */


.archive-news {
	padding: 160px 0;
	background-size: 185px;
}

.archive-news__inner {

}

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

.archive-news__label {
	font-size: 16px;
	margin-bottom: 13px;
}

.archive-news__title {
	font-size: 60px;
}

.archive-news__date {
	font-size: 17px;
	min-width: 120px;
}

.archive-news__text {
	font-size: 17px;
}

.archive-news__item{
	border-bottom: 1px solid var(--color-bg3);
	padding:20px 0;
}

.archive-news__item time{
	padding-right:20px;
}

.archive-news__item a {
	padding: 22px 0;
	gap: 40px;
}

.archive-news__pagination {
	margin-top: 80px;
}

.archive-news__pagination .nav-links {
	gap: 8px;
}

.archive-news__pagination .page-numbers {
	width: 48px;
	height: 48px;
	font-size: 15px;
}

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



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

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

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


















.archive-story {
	padding: 40px 0 160px;
}

.archive-story__inner {
	padding: 0 8vw;
}

.archive-story__pagination {
	margin-top: 80px;
}

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

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

.archive-story__pagination .page-numbers:hover,
.archive-story__pagination .page-numbers.current {
	background: var(--color-dark) !important;
	color: #fff !important;
}

.archive-story__pagination .page-numbers.dots {
	border: none !important;
	background: none;
	width: 24px;
}











/* ============================================
   archive-story（ストーリー一覧）
   style-sp.cssの末尾に追記
============================================ */

.archive-story {
	padding: 40px 0 80px;
}

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

.archive-story__none {
	font-size: 14px;
	color: var(--color-dark);
	padding: 40px 0;
	text-align: center;
}

/* サムネイルなし */
.story__card-img--noimg {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: var(--color-bg2);
	border-radius: 6px;
}

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

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

.archive-story__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-story__pagination .page-numbers:hover {
	background: var(--color-dark);
	color: #fff;
}

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

.archive-story__pagination .page-numbers.dots {
	border: none;
	background: none;
	width: 24px;
}

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


.p-page-story .p-page__content {
	max-width: 100%;
}

.p-page-story .archive-story__inner {
	padding: 0 8vw;
}

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

/* ============================================
   NEWS一覧：カテゴリー表示（legacy打ち消し込み）
============================================ */

.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__item a {
	display: flex;
	align-items: baseline;
	gap: 40px;
	padding: 22px 0;
}

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

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



/* 投稿ページ：カテゴリー色分け */
.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;
}

/* 大画面 */
@media screen and (min-width: 1440px) {
	.simcal-calendar .simcal-event-title {
		font-size: 15px;
	}
}