@charset "UTF-8";

/*----------------------

・目次・

# Universal
# Header
# Footer
# Contents
# Index_module
# Article_module
# Event
# レスポンシブ

----------------------*/


/* Universal
------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

body {
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--surface-light);
	font-size: 1.6rem;
	overflow-x: hidden;
}

.page_title{
	margin-top: 4.2rem;
}

.page_title h1,
.h_def-L span{
	font-size: 3.2rem;
	display: inline-block;
	font-weight: 700;
	color: var(--point-blue);
	position: relative;
	padding-bottom: 0.8rem;
}

.page_title h1::after,
.h_def-L span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	background-color: var(--accent);
	border-radius: 2px;
}

.page_title h1{
	color: var(--text-primary);
}
.page_title h1::after{
	background-color: var(--primary);
}

.page_title .lead,
.h_lead {
	margin-top: 0.8rem;
}

.page_title .lead p,
.h_lead .article_text p {
	color: var(--text-secondary);
	font-size: 1.76rem;
	font-weight: 400;
}

.main_column_middle > div:has(.h_lead){
	max-width: 100%;
}

.main_column_middle:has( > div:first-child .h_lead){
	gap: 3.2rem 2rem;
}

.linkBtnBlock{
	text-align: center;
}

.btn1 a {
	width: 100%;
	max-width: 300px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	background-color: var(--btn-c1);
	color: var(--text-light);
	border: none;
	border-radius: 50px;
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn1 a:hover {
	background-color: var(--btn-c1-h);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn1 a::after {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='white'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.btn1 a:has(li.blank a, div.blank a, span.blank){
	background-color: var(--btn-c2);
	color: var(--text-light);
	position: relative;
}

.btn1 a:has(li.blank a, div.blank a, span.blank):hover{
	background-color: var(--btn-c2-h);
}

.btn1 a:has(li.blank a, div.blank a, span.blank)::before{
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s ease;
}

.btn1 a:has(li.blank a, div.blank a, span.blank)::after{
	content: none;
}

.btn1 a li.blank a, div.blank a, span.blank{
	background: none;
	padding: 0;
}


/* Header
------------------------------------------------------------------*/
header.open ,
header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 1.2rem 0;
	overflow: hidden;
	background-color: #ffffff;
	color: var(--text-primary);
	box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}
header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}

.header_inner{
	max-width: none;
	padding: 0 3rem;
	align-items: center;
}

.header_top{
	flex: 2;
}

#main_logo{
	display: flex;
	align-items: center;
}

#main_logo a{
	max-width: 400px;
	line-height: 0;
	margin-right: 2rem;
	transition: all 0.3s ease;
}
#main_logo a img{
	line-height: 1;
}

.utility_menu {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-right: 2rem;
}

.social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* social-linkの背景を:after疑似要素で実装 */
.social-link::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary);
	opacity: 0.1;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 0;
}

.social-link:hover::after {
	background-color: var(--primary);
	opacity: 1;
}

.social-link:hover {
	transform: translateY(-2px);
}

.social-link svg {
	width: 18px;
	height: 18px;
	fill: var(--primary);
	position: relative;
	z-index: 1;
	transition: fill 0.3s ease;
}

.social-link:hover svg {
	fill: white;
}

.social-link svg.x-logo {
	width: 14px;
	height: 14px;
}

.nies a {
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
	padding: 0.8rem 1.44rem 0.56rem;
	max-width: calc(150px + 2.88rem);
	width: 100%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nies a img {
	width: 100%;
	height: auto;
	line-height: 1;
}

/* メインナビゲーション */
.global_menu {
	position: relative;
	z-index: 1;
	padding: 1.2rem 0 0;
	margin: 0 auto;
	width: 100%;
}

.global_menu .gn_left {
	max-width: var(--pc-max-width);
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 100%;
}

.global_menu .gn_left > ul {
	display: flex;
	list-style: none;
	border-radius: 12px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
	margin: 0;
	padding: 0;
	flex-direction: row;
	gap: 0;
}

/* ナビゲーションの背景を疑似要素で実装 */
.global_menu .gn_left > ul::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary);
	opacity: 0.1;
	border-radius: 12px;
	z-index: 0;
}

.global_menu > div > ul > li.g_navi {
	flex: 1;
	position: relative;
	text-align: center;
}

.global_menu > div > ul > li.g_navi > span {
	display: block;
	position: relative;
	z-index: 1;
}

.global_menu > div > ul > li.g_navi > span > a {
	display: block;
	padding: 1.12rem 1.6rem;
	color: var(--text-tertiary);
	text-decoration: none;
	text-align: center;
	font-weight: 500;
	transition: all 0.3s ease;
	white-space: nowrap;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 2;
}

/* 既存の疑似要素ボーダーを無効化 */
.global_menu > div > ul > li.g_navi > span > a:before,
.global_menu > div > ul > li.g_navi:last-child > span > a:after {
	display: none;
}

.global_menu > div > ul > li.g_navi > span > a:hover {
	color: var(--accent-dark);
	opacity: 1;
	text-decoration: none;
}

.global_menu > div > ul > li.g_navi > span > a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background-color: var(--accent);
	transition: width 0.3s ease;
	z-index: 1;
}

/* アクティブ状態 */
.global_menu > div > ul > li.g_navi.active > span > a,
.global_menu > div > ul > li.g_navi > span > a.active {
	color: var(--accent-dark);
}

.global_menu > div > ul > li.g_navi.active > span > a::after,
.global_menu > div > ul > li.g_navi > span > a.active::after,
.global_menu > div > ul > li.g_navi > span > a:hover::after {
	width: 100%;
}

/* フォーカス状態のアクセシビリティ */
.global_menu > div > ul > li.g_navi > span > a:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}

/*SP表示時ヘッダメニュー*/
header.sp .header_inner {
	padding: 0 1.6rem;
}
header.sp .header_top {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
	padding: 0;
	flex-direction: row;
	gap: 1.6rem;
	width: 100%;
}
header.sp #main_logo a{
	max-width: 200px;
}
header.sp .header_inner > .global_menu,
header.sp .header_inner > .utility_wrap {
 	display: none;
 }
.sp_menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	transition: all 0.3s ease;
	position: relative;
}
.sp_menu span,
.sp_menu span::before,
.sp_menu span::after {
	content: '';
	position: absolute;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: var(--primary);
	border-radius: 2px;
	transition: all 0.3s ease;
    transform-origin: center;
}

.sp_menu span { top: 50%; transform: translateY(-50%); }

.sp_menu span::before { top: -10px; }
.sp_menu span::after { top:	10px; }

.open .sp_menu span {
	background: transparent;
}
.open .sp_menu span::before {
	transform: translateY(10px) rotate(45deg);
}
.open .sp_menu span::after {
	transform: translateY(-10px) rotate(-45deg);
}

.sp .sp_menu {
	display: inline-block;
}
.header_inner .sp_wrapper {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 90vw;
	height: 100vh;
	background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1000;
	transition: right 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	overflow-y: auto;
	box-shadow: -10px 0 30px rgba(0,0,0,0.1);
	border-left: 1px solid rgba(255,255,255,0.3);
}

.header_inner .sp_wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}

.header_inner .sp_wrapper .mobile_menu {
	padding: 7.2rem 3.2rem 3.2rem;
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.header_inner .sp_wrapper .mobile_menu .global_menu {
	order: 1;
	padding: 0;
	margin-bottom: 3.2rem;
}
.header_inner .sp_wrapper .mobile_menu .utility_wrap {
	ordwer: 2;
}
.header_inner .sp_wrapper .mobile_menu .global_menu > div > ul > li.g_navi {
	margin-bottom: 0.8rem;
}
.header_inner .sp_wrapper .mobile_menu .global_menu > div > ul > li.g_navi > span > a::after {
	display: none;
}

.sp_wrapper .global_menu .gn_left > ul {
	display: block;
	border-radius: 0;
	padding:0;
	box-shadow: none;
	background: none;
	overflow: visible;
}
.sp_wrapper .global_menu .gn_left > ul::after {
	border-radius: 0;
}
.sp_wrapper .global_menu > div > ul > li.g_navi > span > a {
 	display: block;
	padding: 1.6rem 2.4rem;
	margin: 0;
	color: var(--text-primary);
	text-decoration: none;
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	font-weight: 500;
	font-size: 1.76rem;
	position: relative;
	overflow: hidden;
	background: rgba(255,255,255,1);
	border: 1px solid rgba(255,255,255,1);
	backdrop-filter: blur(10px);
	text-align: center;
}
.sp_wrapper .global_menu > div > ul > li.g_navi > span > a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s;
}
.sp_wrapper .global_menu > div > ul > li.g_navi > span > a:hover,
.sp_wrapper .global_menu > div > ul > li.g_navi.active> span > a {
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(51,105,30,0.3);
	border-color: var(--primary);
}
.sp_wrapper .global_menu > div > ul > li.g_navi.active > span > a {
	background: linear-gradient(135deg, var(--primary-light), var(--primary));
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(51, 105, 30, 0.3);
	border-color: var(--primary);
}
.sp_wrapper .global_menu > div > ul > li.g_navi > span > a:hover::before,
.sp_wrapper .global_menu > div > ul > li.g_navi.active > span > a::before {
	left: 100%;
}
.sp_wrapper .utility_wrap {
	display: block;
}
.sp_wrapper .social-link {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	position: relative;
	overflow: hidden;
}
.sp_wrapper .social-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 16px;
}
.sp_wrapper .social-link:hover::before {
	opacity: 1;
}

.sp_wrapper .social-link::after {
	background-color: transparent;
}

.sp_wrapper .social-link:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 30px rgba(51,105,30,0.3);
	background-color: var(--primary);
}
.sp_wrapper .social-link svg {
	width: 22px;
	height: 22px;
	fill: var(--primary);
	z-index: 1;
	position: relative;
	transition: fill 0.3s ease;
}
.sp_wrapper .social-link svg.x-logo {
	width: 18px;
	height: 18px;
}
.sp_wrapper .social-link:hover svg {
	fill: white;
}
.sp_wrapper .utility_menu {
    gap: 2.4rem;
    margin-bottom: 0;
    justify-content: center;
    margin-right:0;
}
.sp_wrapper .utility_wrap .nies {
	text-align: center;
	margin-top: 3.2rem;
	padding: 1.76rem 2.4rem 1.52rem;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	transition: all 0.3s ease;
}
.sp_wrapper .utility_wrap .nies:hover {
	background: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.sp_wrapper .utility_wrap .nies a {
	box-shadow: none;
	padding: 0;
	display: inline-block;
}
.sp_wrapper .utility_wrap .nies a img {
	max-width: 140px;
}

.open .header_inner .sp_wrapper {
	right: 0;
}

header.sp .menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
header.open.sp .menuOverlay {
    opacity: 1;
    visibility: visible;
}

.mobile_menu_close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
	z-index: 2;
}

.mobile_menu_close:hover {
	background: rgba(255,255,255,1);
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mobile_menu_close svg {
	width: 20px;
	height: 20px;
	fill: var(--text-primary);
	transition: fill 0.3s ease;
}

.mobile_menu_close:hover svg {
	fill: var(--primary);
}

.mobile_menu_section_title {
	font-size: 1.44rem;
	font-weight: 600;
	color: var(--text-tertiary);
	margin-bottom: 2.4rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
}

.mobile_menu_section_title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, var(--secondary), var(--accent));
	border-radius: 1px;
}


/* Footer
------------------------------------------------------------------*/
footer {
	background-color: var(--tertiary);
	color: var(--text-light);
	padding: 6.4rem 0 3.2rem;
	position: relative;
	overflow: hidden;
	margin-top: 10rem;
	top: auto;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		var(--accent) 20%,
		var(--secondary) 40%,
		var(--primary-light) 60%,
		var(--accent) 80%,
		transparent 100%);
	animation: footerGlow 4s ease-in-out infinite;
}

@keyframes footerGlow {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.to_top {
	position: fixed;
	bottom: 2rem;
	right: 2.3rem;
	z-index: 1000;
	background: none;
	border-radius: 0;
	width: auto;
	height: auto;
	background-color: transparent;
}

.to_top a {
	padding: 1.7rem 1.7rem;
	background: #555C5C;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50px;
	color: white;
	text-decoration: none;
	font-size: 1.4rem;
	font-weight: 500;
	transition: all 0.3s ease;
	text-indent: 0;
	overflow: visible;
	transform: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.to_top a:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.to_top a:before{
	content: "";
	height: 14px;
	width: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}

#footer_inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 86.4rem;
	margin: 0 auto;
	padding: 0 3.2rem;
}

.f_logo {
	display: none;
}

#footer_inner h2 {
	font-size: 2.88rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.footer-logo-icon {
	width: 55px;
	height: auto;
	/*background-color: rgba(255,255,255,0.1);*/
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 2.2rem;
	padding-top: 0.35rem;
}

.footer-logo-icon svg {
	width: 55px;
	height: auto;
	/*fill: var(--accent);*/
}

.ft_main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4.8rem;
	margin-top: 6rem;
	align-items: start;
}

.ft_main ul {
	display: block;
	flex-direction: column;
	justify-content: flex-start;
}

.footer-contact {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 3.2rem 3.2rem 4.8rem 3.2rem;
	border: 1px solid rgba(255,255,255,0.1);
}

.footer-contact h3 {
	font-size: 1.92rem;
	font-weight: 700;
	border-bottom: 2px solid var(--accent);
	padding-bottom: 0.8rem;
	display: inline-block;
}

.contact-item {
	margin-top: 1.6rem;
}

.contact-item:first-of-type {
	margin-top: 2.4rem;
}

.contact-item h4 {
	font-size: 1.44rem;
	font-weight: 600;
	color: var(--accent-light, #f7fa46);
	display: block;
}

.contact-item p {
	font-size: 1.6rem;
	color: rgba(255,255,255,0.9);
	font-family: 'Courier New', monospace;
	margin: 0;
	text-align: center;
	margin-top: 0.4rem;
}

.contact-item p a{
	color: rgba(255,255,255,0.9);
}

.contact-value-op {
	font-size: 1.3rem;
}

.required_menu {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	align-items: flex-start;
}

.required_menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	align-items: flex-start;
}

.required_menu ul li {
	width: 100%;
	margin-left: 0;
}

.required_menu ul li:not(:first-child) {
	margin-left: 0;
}

.required_menu ul li a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	font-size: 1.52rem;
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
	padding: 1.28rem 2.4rem;
	border-radius: 25px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
	display: block;
	width: 100%;
	text-align: center;
	z-index: 1;
}

.required_menu ul li a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--primary-light), var(--accent));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 25px;
	z-index: -1;
}

.required_menu ul li a:hover::after {
	opacity: 1;
}

.required_menu ul li a:hover {
	color: white;
	transform: translateY(-0.32rem);
	text-shadow: 0 0.32rem 1.28rem rgba(0,0,0,0.3);
	text-decoration: none;
}

.copyright {
	color: rgba(255,255,255,0.6);
	font-size: 1.36rem;
	font-weight: 300;
	background: rgba(255,255,255,0.02);
	padding: 2.4rem 3.2rem;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.05);
	position: relative;
	margin-top: 4.8rem;
}

.copyright::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* フッター内の装飾要素 */
.footer-decoration {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,171,0,0.1) 0%, transparent 70%);
	filter: blur(40px);
	animation: floatDecoration 8s ease-in-out infinite;
}

.footer-decoration:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.footer-decoration:nth-child(2) {
	bottom: 30%;
	right: 15%;
	animation-delay: -4s;
	background: radial-gradient(circle, rgba(51,105,30,0.1) 0%, transparent 70%);
}

@keyframes floatDecoration {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(180deg); }
}


/* Index_module
------------------------------------------------------------------*/
.index_module:has(.list1, .list2, .list3, .list4){
	margin-top: 2rem;
	background-color: var(--surface-light);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.index_module .list1,
.index_module .list2,
.index_module .list3,
.index_module .list4 {
	padding: 2.4rem;
	margin-top: 0;
}

.index_module .list1 > li:first-child{
	border-top: none;
	padding-top: 0;
}

.index_module .list1 > li:last-child{
	border-bottom: none;
	padding-bottom: 0;
}

.index_module .tile1.slide_done,
.index_module .tile2.slide_done,
.index_module .tile3.slide_done,
.index_module .tile4.slide_done,
.index_module .tile5.slide_done {
	padding: 0 3rem;
	margin-left: -3rem;
	margin-right: -3rem;
}

.index_module .tile1 li,
.index_module .tile2 li,
.index_module .tile3 li,
.index_module .tile4 li,
.index_module .tile5 li {
	background-color: var(--surface-light);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid rgba(0,0,0,0.05);
	overflow: hidden;
}

#news {
	margin-bottom: 6.4rem;
}

#news .index_module {
	margin-top: 0;
}

#news .news_list {
	background-color: var(--surface-light);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
}

#news .news_list:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#news .news_list ul {
	list-style: none;
	padding: 2.4rem;
	margin: 0;
}

#news .news_list ul.list1 {
	margin-top: 0;
}

#news .news_list li {
	padding: 1.6rem 0;
	border-bottom: 1px solid var(--divider);
	border-top: none;
	margin-top: 0;
}

#news .news_list li:not(:first-child) {
	margin-top: 0;
	padding-top: 1.6rem;
}

#news .news_list li:last-child {
	border-bottom: none;
	padding-bottom: 1.6rem;
}

#news .news_list li:first-child {
	padding-top: 1.6rem;
}

#news .news_list .text {
	display: flex;
	align-items: center;
}

#news .news_list .date {
	flex-shrink: 0;
	color: var(--primary-dark);
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	font-size: 1.4rem;
	font-weight: 600;
	margin-right: 1.6rem;
	min-width: 132px;
	text-align: center;
	position: relative;
}

#news .news_list .date::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary);
	opacity: 0.1;
	border-radius: 50px;
	z-index: 1;
}

#news .news_list .date::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid var(--primary);
	opacity: 0.2;
	border-radius: 50px;
	z-index: 2;
	pointer-events: none;
}

#news .news_list .item_icon {
	flex-grow: 1;
	margin-bottom: 1px;
}

#news .news_list .item_icon a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 400;
}

#news .news_list .item_icon a:hover {
	color: var(--primary);
	text-decoration: underline;
}

.open,
.close,
.list ,
.index_module .list {
	text-align: center;
	display: block;
}
.open,
.close {
	border-top: none;
}

.index_module:has(.list1, .list2, .list3, .list4) .open,
.index_module:has(.list1, .list2, .list3, .list4) .close,
#news .news_list .open,
#news .news_list .close,
#news .news_list .list {
	padding: 2.4rem;
	border-top: 1px solid var(--divider);
	background-color: var(--surface);
	text-align: center;
	display: block;
	margin-top: 0;
}

.close .list {
	margin-top: 2rem;
}

.open:not(header) a,
.close a,
.list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	border: none;
	border-radius: 50px;
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.open:not(header) a,
.close a{
	background-color: var(--btn-c1);
	color: var(--text-light);
}

.list a {
	background-color: var(--btn-c2);
	color: var(--text-light);
}

.open:not(header) a,
.close a {
	width: 100%;
	max-width: 300px;
}

.open:not(header) a:hover,
.close a:hover{
	background-color: var(--btn-c1-h);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	text-decoration: none;
}

.list a:hover {
	background-color: var(--btn-c2-h);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	text-decoration: none;
}

.list a::after {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='white'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.open:not(header) a::after {
	transform: rotate(90deg);
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='white'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
    transition: transform .3s;
}

.close a::after {
	transform: rotate(-90deg);
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' fill='white'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
    transition: transform .3s;
}

.close .list a::after {
	transform: rotate(0deg);
}


/* Event
------------------------------------------------------------------*/

/* イベントフィルター */
.col1of1:has(.event_filter){
	margin-top: 3.2rem;
}

.main_column_middle:has(.event_filter){
	gap: 0;
}

.main_column_middle article.event_filter{
	display: block;
}

.filter-section {
	background-color: var(--surface);
	border-radius: 16px;
	padding: 2.4rem 3.2rem;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.filter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 1.6rem;
	border-bottom: 2px solid var(--divider);
}

.filter-header h2 {
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--primary-dark);
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex: 1;
}

.filter-header svg {
	width: 24px;
	height: 24px;
}

.filter-header h2 svg {
	min-width: 24px;
	min-height: 24px;
	fill: var(--secondary);
}

.reset-button {
	background-color: #dcd9d4;
	color: var(--text-primary);
	border: 1px solid #d2cfca;
	border-radius: 50px;
	padding: 0.8rem 2rem;
	font-size: 1.44rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.reset-button:hover {
	background-color: #d2cfca;
	color: var(--text-primary);
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	border-color: #c8c5c0;
}

.reset-button:focus {
	outline: var(--focus-outline);
}

.reset-button svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.filter-group {
	margin-top: 3.2rem;
}

.filter-group:first-of-type {
	margin-top: 3.2rem;
}

.filter-title {
	font-size: 1.76rem;
	font-weight: 500;
	color: var(--primary-dark);
	position: relative;
	padding-left: 2.4rem;
}

.filter-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background-color: var(--primary);
	border-radius: 50%;
}

.filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 1.6rem;
}

.filter-button {
	background-color: var(--surface-light);
	border: 1px solid var(--divider);
	color: var(--text-secondary);
	border-radius: 50px;
	padding: 0.8rem 2rem;
	font-size: 1.44rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.filter-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: all 0.5s ease;
}

.filter-button:hover::before {
	left: 100%;
}

.filter-button:hover {
	background-color: var(--surface-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.filter-button:focus {
	outline: var(--focus-outline);
}

.filter-button.active {
	background-color: var(--primary);
	color: var(--text-light);
	border-color: var(--primary);
	box-shadow: 0 4px 12px rgba(51, 105, 30, 0.3);
}

/* イベントリスト */
.event_list{
	margin-top: 4.8rem;
}

.event_con{
	margin-top: 4rem;
}

.event-list {
}

.event-item {
	background-color: var(--surface-light);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	position: relative;
	margin-top: 3.2rem;
	border: 1px solid rgba(0,0,0,0.05);
	display: grid;
	grid-template-columns: 2fr 1fr;
}

.event-item:first-child {
	margin-top: 0;
}

.event-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.event-content {
	padding: 3.2rem;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.title{
	width: calc(100% - 93px);
}

.event-image {
	height: 100%;
	min-height: 250px;
	overflow: hidden;
	position: relative;
	border-radius: 0 16px 16px 0;
	line-height: 0;
}

.event-image svg ,
.event-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: top;
	border-radius: 0 0 0 16px;
	transition: all 0.5s ease;
	line-height: 1;
}

/* タグエリアのスタイル調整 */
.event-tags {
	margin-top: 1.6rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.6rem 0.8rem;
	align-items: center;
	width: 100%;
}

.event-tags:first-child {
	margin-top: 0;
}

.event-tag {
	display: block;
	width: auto;
	background: var(--surface);
	color: var(--text-primary);
	padding: 6px 32px 6px 32px;
	border-radius: 0 5px 5px 0;
	margin-left: -32px;
	font-size: 1.6rem;
	font-weight: 600;
	margin-right: 10px;
}

/* 事前予約制タグ */
.reservation-tag {
	display: inline-block;
	background: linear-gradient(135deg, #649E9A, #4C9C45);
	color: var(--text-light);
	padding: 0.48rem 1.6rem;
	border-radius: 10px 10px 0 10px;
	font-size: 1.6rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: absolute;
	overflow: hidden;
	left: -10px;
	top: -20px;
	z-index: 3;
}

.target-tag-group{
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.event-target-tag {
	display: inline-block;
	padding: 0.4rem 1.6rem;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	background-color: #efebe9;
	color: #5d4037;
	border: 1px solid #8d6e63;
}

.event-title {
	width: 100%;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--primary-dark);
	margin-top: 1.6rem;
	line-height: 1.7;
	display: flex;
	align-items: start;
	min-width: 0;
}

/* イベントNo.のスタイル */
.event-number {
	flex-shrink: 0;
	color: var(--text-light);
	background: var(--primary-dark);
	padding: 0.24rem 0.72rem;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: 600;
	min-width: 80px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	margin-right: 1.3rem;
	margin-top: .5rem;
}
.event-number+span {
	line-height: 1.8;
}
.event-number+span ruby {
	padding-top: 1em;
}
.event-title ruby rt {
	letter-spacing: -0.05em;
	font-size: 1rem;
}


::-webkit-full-page-media, :future, :root .event-title {
	margin-top: 0;
}

::-webkit-full-page-media, :future, :root .event-number {
	margin-top: 1.8rem;
}

::-webkit-full-page-media, :future, :root .event-number+span {
	margin-top: 1.3rem;
}

::-webkit-full-page-media, :future, :root .event-number+span:has(ruby) {
	margin-top: 0.2rem;
}

::-webkit-full-page-media, :future, :root .event-number+span ruby{
	padding-top: 0.5em;
}

::-webkit-full-page-media, :future, :root .event-number+span ruby rt {
	line-height: 1;
}

::-webkit-full-page-media, :future, :root .event-title ruby rt{
	transform: translateY(0.7em);
}

::-webkit-full-page-media, :future, :root .event-title:has(ruby) .event-number {
	margin-top: 1.8rem;
}

.event-desc {
	width: 100%;
	color: var(--text-secondary);
	margin-top: 1.6rem;
	line-height: 1.8;
}

::-webkit-full-page-media, :future, :root .event-desc{
	line-height: 1.6;
}

::-webkit-full-page-media, :future, :root .event-desc ruby rt{
	transform: translateY(0.5em);
}

::-webkit-full-page-media, :future, :root .event-desc:has(ruby) {
	margin-top: 1rem;
}

.event-note {
	width: 100%;
	color: var(--text-secondary);
	margin-top: 1.6rem;
}
.event-note:empty {
	display: none;
}
.event-place {
	width: 100%;
	color: var(--primary-dark);
	font-weight: 500;
	margin-top: 0.6rem;
	font-size: 1.8rem;
	display: flex;
	gap: 0.8rem;
	align-items: start;
}

.event-details {
	width: 100%;
	margin-top: 2.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.event-detail {
	color: var(--primary-dark);
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 0.8rem;
	font-size: 1.8rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px dashed #d1d1d1;
}

.event-detail svg {
	width: 20px;
	height: 20px;
	fill: var(--primary);
	flex-shrink: 0;
}

.date-time svg {
	margin-top: 0.5rem;
}

.duration svg {
	margin-top: 0.6rem;
}

.capacity svg {
	margin-top: 0.6rem;
}

.event-place svg {
	width: 20px;
	height: 20px;
	fill: var(--primary);
	flex-shrink: 0;
	margin-top: 0.5rem;
}

.event-detail span {
	flex: 1;
}

.event-actions {
	width: 100%;
	display: flex;
	gap: 1.6rem;
	margin-top: 2.4rem;
}

/* ページナビゲーション */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 4.8rem;
}

.pagination-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--surface);
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.pagination-item:hover {
	background-color: var(--surface-dark);
	transform: translateY(-2px);
}

.pagination-item:focus {
	outline: var(--focus-outline);
}

.pagination-item.active {
	background-color: var(--primary);
	color: var(--text-light);
}

.pagination-prev,
.pagination-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--surface);
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
	background-color: var(--surface-dark);
	transform: translateY(-2px);
}

.pagination-prev:focus,
.pagination-next:focus {
	outline: var(--focus-outline);
}

.pagination-prev svg,
.pagination-next svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* ボタン */
.btn_secondary ,
.detail ,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	background-color: var(--btn-c1);
	color: var(--text-light);
	border: none;
	border-radius: 50px;
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn_secondary::before ,
.detail::before ,
.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: all 0.5s ease;
}

.btn_secondary:not(.disabled):hover::before ,
.detail:not(.disabled):hover::before ,
.btn:not(.disabled):hover::before {
	left: 100%;
}

.btn_secondary:not(.disabled):hover ,
.detail:not(.disabled):hover ,
.btn:not(.disabled):hover {
	text-decoration: none;
	background-color: var(--btn-c1-h);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn_secondary:not(.disabled):focus ,
.detail:not(.disabled):focus ,
.btn:not(.disabled):focus {
	outline: var(--focus-outline);
}

.btn_secondary svg ,
.detail svg ,
.btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.btn_secondary {
	background-color: var(--btn-c2);
	color: var(--text-light);
}

.btn_secondary:not(.disabled):hover {
	background-color: var(--btn-c2-h);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: var(--text-light);
}

.btn-outline.btn_secondary {
	color: var(--secondary);
	border-color: var(--secondary);
}

.btn-outline.btn_secondary:hover {
	background-color: var(--secondary);
	color: var(--text-light);
}

.disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	border: none;
	border-radius: 50px;
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	background: var(--sub-gray-bg);
	cursor: auto;
	color: #888888;
}

/* イベント非表示状態 */
.event-item.hidden {
	display: none;
}


/* レスポンシブ
------------------------------------------------------------------*/

/* PC/タブレット (1200px以下) */
@media (max-width: 1200px) {
	.top_navi,
	.page_title,
	.block_title,
	.block_title2,
	.main_column_middle{
		padding: 0 2.4rem;
	}

	.index_module .tile1.slide_done,
	.index_module .tile2.slide_done,
	.index_module .tile3.slide_done,
	.index_module .tile4.slide_done,
	.index_module .tile5.slide_done {
		padding: 0 2.4rem;
		margin-left: -2.4rem;
		margin-right: -2.4rem;
	}
}

/* タブレット (992px以下) */
@media (max-width: 992px) {
	.event-item {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
	}

	.event-image {
		order: -1;
		height: auto;
		min-height: auto;
		border-radius: 16px 16px 0 0;
	}
	.event-image svg,
	.event-image img{
		object-fit: cover;
		border-radius: 0;
	}
}

/* タブレット/スマートフォン (768px以下) */
@media (max-width: 768px) {
	/* 共通レイアウト */
	.top_navi,
	.page_title,
	.block_title,
	.block_title2,
	.main_column_middle{
		padding: 0 1.6rem;
	}

	.index_module .tile1.slide_done,
	.index_module .tile2.slide_done,
	.index_module .tile3.slide_done,
	.index_module .tile4.slide_done,
	.index_module .tile5.slide_done {
		padding: 0 1.6rem;
		margin-left: -1.6rem;
		margin-right: -1.6rem;
	}

	/* ヘッダー */
	.global_menu {
		padding: 1.2rem 0 0;
	}

	.global_menu > div > ul > li.g_navi {
		flex: 0 0 100%;
		flex-basis: 100%;
		margin-bottom: 0.4rem;
	}

	.global_menu > div > ul > li.g_navi:last-child {
		margin-bottom: 0;
	}

	.global_menu > div > ul > li.g_navi > span > a {
		padding: 1.28rem 1.6rem;
		border-radius: 8px;
		margin: 0 0.4rem;
	}

	.global_menu .gn_left > ul {
		flex-direction: column;
		gap: 0.4rem;
		padding: 0.8rem;
	}

	.sp_wrapper .utility_wrap .nies{
		line-height: 0;
	}

	.h_def-L span{
		font-size: 2.8rem;
	}

	/* フッター */
	footer {
		padding: 6.4rem 0 3.2rem;
	}

	#footer_inner {
		padding: 0 1.6rem;
	}

	#footer_inner h2 {
		font-size: 2.24rem;
		flex-direction: column;
		gap: 8px;
	}

	.footer-logo-icon {
		margin-right: 0;
		padding-top: 0;
	}

	.ft_main {
		grid-template-columns: 1fr;
		gap: 3.2rem;
		margin-top: 4rem;
	}

	.footer-contact {
		text-align: center;
	}

	.required_menu {
		align-items: center;
	}

	.to_top {
		bottom: 1.6rem;
		right: 1.6rem;
	}

	.to_top a {
		padding: 1.8rem 1.8rem;
		font-size: 1.2rem;
	}

	/* ニュース */
	#news .news_list .text {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	#news .news_list .date {
		margin-right: 0;
		min-width: auto;
		align-self: flex-start;
	}

	/* イベント */
	.filter-options {
		overflow-x: auto;
		padding-bottom: 1.6rem;
		flex-wrap: nowrap;
	}

	.filter-button {
		white-space: nowrap;
		padding: 0.8rem 1.6rem;
		font-size: 1.36rem;
		min-width: auto;
		flex-shrink: 0;
	}

	.event-actions {
		flex-direction: column;
	}

	.filter-header {
		flex-direction: row;
		align-items: center;
		gap: 1.6rem;
	}

	.filter-header h2 {
		font-size: 2.08rem;
		gap: 0.8rem;
	}

	.filter-header svg {
		width: 20px;
		height: 20px;
	}

	.filter-header h2 svg {
		min-width: 0;
		min-height: 0;
	}

	.reset-button {
		padding: 0.64rem 1.6rem;
		font-size: 1.28rem;
		flex-shrink: 0;
	}

	/* イベントNo.のモバイル調整 */
	.event-number {
		font-size: 1.6rem;
		padding: 0.32rem 0.96rem;
		min-width: 75px;
		margin-top: 0.2rem;
	}

	.event-title {
		font-size: 2.08rem;
	}

	.event-title ruby rt{
		font-size: 0.8rem;
		letter-spacing: -0.05em;
	}

	::-webkit-full-page-media, :future, :root .event-number+span {
		margin-top: 1.55rem;
	}
	::-webkit-full-page-media, :future, :root .event-number+span:has(ruby){
		margin-top: 0.8rem;
	}
}

/* スマートフォン (576px以下) */
@media (max-width: 576px) {
	/* ヘッダー */
	.global_menu {
		padding: 0.8rem 0 0;
	}

	.global_menu > div > ul > li.g_navi > span > a {
		font-size: 1.36rem;
		padding: 1.12rem 1.28rem;
	}

	/* イベント */
	.event-content{
		padding: 2.4rem;
	}

	.event-tag{
		margin-left: -2.4rem;
	}

	.pagination {
		flex-wrap: wrap;
		justify-content: center;
	}

	.filter-header h2 {
		font-size: 1.92rem;
		gap: 0.64rem;
	}

	.filter-header svg {
		width: 18px;
		height: 18px;
	}

	.reset-button {
		padding: 0.56rem 1.28rem;
		font-size: 1.2rem;
	}

	.filter-button {
		padding: 0.64rem 1.28rem;
		font-size: 1.28rem;
	}

	/* イベントNo.のさらなるモバイル調整 */
	.event-number {
		padding: 0.24rem 0.8rem;
		min-width: 65px;
		margin-top: 0.3rem;
	}

	::-webkit-full-page-media, :future, :root .event-number+span {
		margin-top: 1.5rem;
	}
	::-webkit-full-page-media, :future, :root .event-number+span:has(ruby){
		margin-top: 0.7rem;
	}

	.reservation-tag {
		font-size: 1.4rem;
		padding: 0.4rem 1.28rem;
	}
}

/* 小型スマートフォン (480px以下) */
@media (max-width: 480px) {
	/* フッター */
	footer {
		padding: 5.12rem 0 2.56rem;
	}

	#footer_inner {
		padding: 0 1.2rem;
	}

	#footer_inner h2 {
		font-size: 2.1rem;
	}

	.footer-contact h3 {
		font-size: 1.6rem;
	}

	.contact-item:first-of-type {
		margin-top: 1.6rem;
	}

	.contact-item {
		margin-top: 1.6rem;
	}

	.contact-item h4 {
		font-size: 1.2rem;
	}

	.contact-item p {
		font-size: 1.4rem;
	}

	.required_menu ul li a {
		font-size: 1.4rem;
		padding: 1.2rem 3.2rem;
	}

	.copyright {
		font-size: 1.2rem;
		padding: 2.4rem 3.2rem;
	}

	.h_def-L span{
		font-size: 2.4rem;
	}

	.event-number {
		padding: 0.24rem 0.4rem;
		min-width: 45px;
	}
}