@charset "UTF-8";
@font-face {
	font-family: "RakutenSans_Bd";
	src: url("/fonts/RakutenSans_Bd.woff2") format("woff2"), url("/fonts/RakutenSans_Bd.woff") format("woff");
	font-display: swap;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	*zoom: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after {
	content: '';
	content: none;
}
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
em {
	font-style: normal;
}
b, strong {
	font-weight: bolder;
}
hr {
	margin: 1em 0;
	background-color: transparent;
	border-top: 1px solid #c7c7c7;
	border-bottom: none;
}
hr.spacer {
	padding: 0.75em 0;
	border: none;
	outline: none;
	margin: 0;
}
main {
	display: block;
}
html {
	width: 100%;
	height: 100%;
	overflow: visible;
	font-size: 62.5%;
}
body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	color: #333;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	letter-spacing: 0.08em;
	background: transparent url("../images/bg.png") no-repeat center center fixed;
}
:root {
	--color-main: #a9002e;
	--color-accent: #ff007f;
	--color-bg-light: #f8fafc;
	--color-text-dark: #1e293b;
	--grad-camp: linear-gradient(135deg, #4fa8de 0%, #a5ffd6 100%);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 10px 30px rgba(169, 0, 46, 0.06);
}
body {
	color: var(--color-text-dark);
	background-color: var(--color-bg-light);
}
.content {
	position: relative;
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 834px) {
	body {
		background: transparent url("../images/sp-bg.png") no-repeat center center fixed;
	}
	body::before {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
	}
}
a {
	word-break: break-all;
	transition: all 0.25s;
	color: #00339b;
}
a:hover {
	text-decoration: none;
}
a.underline {
	text-decoration: underline !important;
}
a.underline:hover {
	text-decoration: none !important;
}
a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
}
* {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	border-style: none;
}
.reset, .reset > li, .reset > dt, .reset > dd {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.reset-t {
	margin-top: 0;
	padding-top: 0;
}
.reset-b {
	margin-bottom: 0;
	padding-bottom: 0;
}
ul.default {
	list-style-type: disc;
}
ul.default > li {
	margin-left: 1.5em;
}
strong {
	display: block;
	margin: 0.5em 0;
}
p {
	margin-bottom: 1em;
	word-break: auto-phrase;
}
.textC {
	text-align: center;
}
.textL {
	text-align: left;
}
.textR {
	text-align: right;
}
.textLarge {
	font-size: 1.8rem;
}
.textSmall {
	font-size: 1.3rem;
}
hr.spacer {
	margin-bottom: 0;
	padding: 10px 0;
	border: none;
}
hr.spacer-2x {
	margin-bottom: 0;
	padding: 20px 0;
	border: none;
}
.w-max {
	width: 100%;
}
.w-min {
	width: 1%;
	white-space: nowrap;
}
.round-5x {
	border-radius: 5px;
	overflow: hidden;
}
.round-10x {
	border-radius: 10px;
	overflow: hidden;
}
.box {
	padding: 10px;
}
.box-2x {
	padding: 20px;
}
.text-white {
	color: #ffffff;
}
.text-red {
	color: #a9002e;
}
/*----------------------------------------
HEADER MENU
----------------------------------------*/
html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #a9002e;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}
.header-container {
	max-width: 1060px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	box-sizing: border-box;
}
.header-logo {
	display: flex;
	align-items: center;
	height: 100%;
}
.header-logo a {
	display: block;
	line-height: 0;
}
.logo-main-img {
	width: auto;
	max-width: 80px;
	height: auto;
	object-fit: contain;
	vertical-align: middle;
	transition: opacity 0.2s ease;
	margin-top: 1.5em;
}
.header-logo a:hover .logo-main-img {
	opacity: 0.85;
}
.nav-unseen {
	display: none;
}
.hamburger-btn {
	display: none;
}
.global-nav {
	height: 100%;
}
.nav-list {
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 5px;
}
.nav-item {
	width: 110px;
	text-align: center;
}
.nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	height: 60px;
	transition: background-color 0.2s ease;
}
.nav-link:hover {
	background-color: #fff;
	opacity: 1 !important;
}
.nav-link:hover .en {
	color: #a9002e;
}
.nav-link:hover .ja {
	color: #333;
}
.nav-link .en {
	font-family: 'RakutenSans_Bd', sans-serif;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.2;
}
.nav-link .ja {
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 2px;
	line-height: 1.2;
}
.itemKv {
	margin-top: 60px;
}
@media (max-width: 834px) {
	.site-header {
		height: 50px;
	}
	html {
		scroll-padding-top: 50px;
	}
	.itemKv {
		margin-top: 50px;
	}
	.header-container {
		justify-content: space-between;
		padding: 0 15px;
	}
	.hamburger-btn {
		display: block;
		position: relative;
		width: 25px;
		height: 18px;
		cursor: pointer;
		z-index: 1010;
	}
	.hamburger-btn span {
		display: block;
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		border-radius: 2px;
		transition: all 0.3s ease;
	}
	.hamburger-btn span:nth-child(1) {
		top: 0;
	}
	.hamburger-btn span:nth-child(2) {
		top: 8px;
	}
	.hamburger-btn span:nth-child(3) {
		top: 16px;
	}
	.nav-unseen:checked ~ .hamburger-btn span:nth-child(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	.nav-unseen:checked ~ .hamburger-btn span:nth-child(2) {
		opacity: 0;
	}
	.nav-unseen:checked ~ .hamburger-btn span:nth-child(3) {
		transform: translateY(-8px) rotate(45deg);
	}
	.global-nav {
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: auto;
		background-color: #a9002e;
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
		transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 1005;
		padding: 60px 0 20px 0;
	}
	.nav-unseen:checked ~ .global-nav {
		top: 0;
	}
	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
	}
	.nav-item {
		width: 100%;
	}
	.nav-item:last-child {
		border-bottom: none;
	}
	.nav-link {
		height: auto;
		padding: 15px 20px;
		flex-direction: row;
		justify-content: flex-start;
		gap: 15px;
	}
	.nav-link .en {
		font-size: 1.4rem;
	}
	.nav-link .ja {
		margin-top: 0;
		font-size: 1.1rem;
	}
	.header-logo {
		padding-left: 10px;
	}
	.logo-main-img {
		max-width: 42px;
		margin-top: 0.2em;
	}
}

@media (min-width: 835px) {
  header .header-container {
    display: flex !important;
    justify-content: space-between !important;
    max-width: 960px !important;
    margin: 0 auto !important;
  }
}


/*----------------------------------------
	Footer
----------------------------------------*/
footer {
	margin-top: 3.0em;
	padding: 2.0em 0;
	color: #fff;
	background-color: #a9002e;
	text-align: center;
}
footer ul.itemtxt li a {
	color: #fff;
	text-decoration: none;
}
footer ul.itemtxt li a:before {
	display: inline-block;
	content: "";
	width: 6px;
	height: 6px;
	margin-right: 0.5em;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	vertical-align: 2px;
}
footer p {
	margin-top: 1.0em;
	font-size: 0.75em;
}
.footer_logo {
	margin: 0 auto;
	padding-bottom: 1em;
}
footer img {
	width: 15%;
}
footer ul.itemtxt {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1em;
}
footer ul.itemtxt li {
	margin: 0 10px;
}

@media (max-width: 834px) {
	footer ul {
		flex-wrap: wrap;
	}
	footer ul li {
		width: 100%;
		margin-bottom: 0.5em;
	}

	footer img {
		width: 20%;
	}
	
	footer ul.itemtxt {
		flex-wrap: wrap;
	}
	footer ul.itemtxt li {
		width: 100%;
		margin-bottom: 0.5em;
		font-size: 1.3rem;
	}
	footer p {
		padding: 0 1.0em;
		font-size: 0.9rem;
	}
}
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 2.8rem;
	z-index: 100;
}
#page-top a {
	display: block;
	color: #c4b05c;
	width: 90px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	text-decoration: none;
}
#page-top img {
	width: 60px;
	padding-bottom: 10px;
}
#page-top a:hover {
	text-decoration: none;
	transition: 0.2s;
}
@media (max-width: 834px) {
	#page-top img {
		width: 50px;
		padding-top: 8px;
	}
	#page-top {
		bottom: 10px;
		right: 10px;
		font-size: 2.0rem;
	}
	#page-top a {
		display: block;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
}
/*----------------------------
main innerWrap section
-----------------------------*/
main {
	position: relative;
	z-index: 100;
}
.innerWrap {
	margin: 0 auto;
	text-align: left;
	z-index: 100;
}
section p, article p {
	padding-bottom: 0;
}
main > section {
	padding:  3.0em 0;
	overflow: hidden;
	position: relative;
}
main > section.schedule {
	padding-top: 3.0em;
}
main > section > h1 {
	margin-bottom: 1.0em;
	text-align: center;
}
@media (max-width: 834px) {
	main > section.schedule {
		padding-top: 1.0em;
	}
	main > section {
		padding: 0 0 1.0em;
		overflow: hidden;
	}
}
/* セクション背景 */
section.schedule, section.access, section.sns {
	background: var(--grad-camp);
	padding: 30px 0 50px;
	position: relative;
	border-radius: 0 0 100px 100px / 0 0 40px 40px;
	z-index: 2;
}
section.schedule .camp-schedule-table {
	border-radius: 12px;
	border: none;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
section.map {
	/*background-color: #ffffff;*/
	padding: 100px 0 60px;
	margin-top: -60px;
	position: relative;
	z-index: 1;
}
#MOVIE, #PHOTO {
	padding: 100px 0 60px;
	margin-top: -60px;
}
@media (max-width: 834px) {
	section.schedule {
		padding: 40px 0 0;
		border-radius: 0 0 50px 50px / 0 0 20px 20px;
	}
	section.map {
		padding: 60px 0 40px;
		margin-top: -40px;
	}
	section.access {
		padding: 50px 0 70px;
		border-radius: 0 0 50px 50px / 0 0 20px 20px;
	}
	#MOVIE, #PHOTO {
		padding: 60px 0 40px;
		margin-top: -40px;
	}
}
@media (max-width: 834px) {
	.mini-container {
		display: block !important;
		width: 100% !important;
		padding: 15px !important;
		border-width: 3px;
    box-shadow: var(--shadow-md) !important;
    border-radius: 16px;
		border: 1px solid rgba(0, 0, 0, 0.05);
		margin: 20px auto 0 !important;
		margin-top: 20px;
	}
}
.mini-container {
	background-color: #ffffff !important;
	border-radius: 20px;
	padding: 40px 30px;
	max-width: 988px;
	margin: 30px auto 0;
	border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}
/*----------------------------
横並び
-----------------------------*/
.row {
	display: flex;
	flex-wrap: wrap;
}
.row.center {
	justify-content: center;
	text-align: center;
}
@media (max-width: 834px) {
	.col, .col-2 {
		position: relative;
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
	.col-3 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
		margin-bottom: 10px;
		padding-left: 10px;
	}
	.col-4 {
		flex: 0 0 48%;
		max-width: 50%;
		margin-bottom: 10px;
		margin-left: 5px;
	}
}
@media (min-width: 835px) {
	.col-2 {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 10px;
	}
	.col-3 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
		margin-bottom: 10px;
		padding-left: 10px;
	}
	.col-4 {
		max-width: 24%;
		margin-left: 5px;
		margin-bottom: 10px;
	}
}
.comingsoon {
	padding: 1.0em;
	color: #333333;
	background-color: #eeeeee;
	text-align: center;
}
/*----------------------------
h1-h3
-----------------------------*/
section h1 {
	position: relative;
	font-size: 5.0rem;
	text-align: center;
	font-weight: 700;
	letter-spacing: normal;
	text-transform: uppercase;
	line-height: 1.0;
	/*margin-bottom: 40px;*/
}
h1 {
	text-align: center;
	padding: 0 15px;
	margin-bottom: 0.5em;
}
h1 .heading_main {
	font-family: 'RakutenSans_Bd', sans-serif;
	display: inline-block;
	position: relative;
	color: #111;
	font-size: 4.2rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	padding: 0 0 12px 0;
	color: var(--color-text-dark);
}
h1 .heading_main::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--color-main), var(--color-accent));
	border-radius: 2px;
	skewX: 0deg;
}
@media (max-width: 834px) {
	h1 .heading_main {
		padding: 10px 20px;
		font-size: 2.5rem;
	}
	h1 .heading_main::after {
		height: 6px;
	}
}
section.schedule h1 .heading_main, section.access h1 .heading_main, section.sns h1 .heading_main {
	color: #ffffff;
}
.container b {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	margin-bottom: 10px;
}
.ttl-regular {
	display: block;
	font-family: 'RakutenSans_Bd', sans-serif;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #010101;
	padding: 6px 16px;
	margin-bottom: 15px;
}
/*----------------------------------------
	Ul
----------------------------------------*/
.list-normal > li:not(:first-child) {
	margin: 1em 0;
}
.list-normal > li {
	position: relative;
	padding-left: 1em;
}
.list-normal > li::before {
	position: absolute;
	left: 0;
	top: 0.75em;
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #a9002e;
}
/*----------------------------------------
	button
----------------------------------------*/
.btn {
	display: inline-block;
	min-width: 200px;
	padding: 30px;
	text-align: center;
	text-decoration: none;
	line-height: 1.4;
	cursor: pointer;
	margin-top: 40px;
	border-radius: 5px;
	transition: color 0.5s ease;
	position: relative;
}
.btn-l {
	width: 100%;
	max-width: 400px;
	padding: 20px 30px;
	font-size: 1.0em;
	letter-spacing: 0.08em;
}
.btn-m {
	width: 100%;
	max-width: 240px;
	padding: 10px 30px;
	font-size: 1.2em;
	letter-spacing: 0.08em;
}
.btn-s {
	min-width: 0;
	padding: 10px 20px;
	font-size: 0.85em;
	margin-top: 10px;
}
.btn-default {
	background-color: #a9002e;
	color: #ffffff;
	overflow: hidden;
	z-index: 1;
}
.btn-default:hover {
	color: #0d0003 !important;
	font-weight: bold;
}
.btns-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.btn-text {
	position: relative;
}
@media (min-width: 835px) {
	.btns-center {
		flex-direction: row;
		justify-content: center;
	}
	.btns-center .btn:not(:first-child) {
		margin-left: 20px;
	}
}
@media (max-width: 834px) {
	.btn {
		margin: 10px 0;
	}
	.btns-center .btn:first-child {
		margin-top: 20px;
	}
	.btn-l {
		width: 80%;
		padding: 10px 20px;
	}
}
/*------------------
kv
------------------*/
.itemKv {
	text-align: center;
}
.itemKv img {
	width: 100%;
}
/*----------------------------------------
title
-----------------------------------*/
.heading {
	text-align: center;
	line-height: 1.0;
	margin-bottom: 0.5em;
	position: relative;
}
.heading_main {
	font-family: 'RakutenSans_Bd', sans-serif;
	font-size: 4.5rem;
}
.ttlBold {
	margin: 40px 0 20px;
	padding: 14px 20px;
	color: #ffffff;
	background: linear-gradient(90deg, var(--color-main), var(--color-accent));
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	box-shadow: var(--shadow-sm);
}
.ttlSmall {
	font-size: 1.8rem;
	font-weight: bold;
	color: #333;
	margin: 40px 0 15px;
	padding-left: 10px;
	border-left: 4px solid #a9002e;
}
.ttlSmall:first-of-type {
	margin-top: 20px;
}
@media (max-width: 834px) {
	.heading .heading_main {
		font-size: 2.8rem;
	}
	.heading {
		margin-bottom: 0.5em;
	}
	section h1 {
		font-size: 3.8rem;
		letter-spacing: 0;
	}
	.container b {
		font-size: 1.8rem;
		line-height: 1.4;
	}
	.ttl-regular {
		font-size: 1.8rem;
	}
	.ttlBold {
		font-size: 1.8rem;
	}
	.faq-category-title {
		font-size: 1.6rem;
		margin: 30px 0 12px;
	}
}
@media (min-width: 835px) {
	.ttlBold strong {
		width: 1060px;
	}
	.heading_sub, .heading_sub02 {
		font-size: 2.8rem;
	}
	.ttlBold {
		margin-bottom: 1em;
	}
}
/*----------------------------------------
	tab
----------------------------------------*/
.ui-tab {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.ui-tab li {
	background-color: #111;
	color: #C0B661;
	margin: 0 5px;
	width: calc(33% - 10px);
	text-align: center;
	padding: 10px 0;
	border-radius: 4px;
	cursor: pointer;
}
.ui-tab li.active {
	background-color: #a9002e;
	color: #fff;
}
.tab-content li.field {
	display: none;
	padding-top: 10px;
	padding-bottom: 20px;
}
.tab-content li.field.active {
	display: block;
}
/*----------------------------------------
	Schedule					
----------------------------------------*/
.camp-schedule-table {
	width: 100%;
	margin-top: 10px;
}
.camp-schedule-table th, .camp-schedule-table td {
	text-align: center;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	height: 3.0em !important;
}
.camp-schedule-table .col-date {
	width: 15%;
}
.camp-schedule-table .col-am {
	width: 15%;
}
.camp-schedule-table .col-pm {
	width: 20%;
}
.camp-schedule-table .col-venue {
	width: 50%;
}
.camp-schedule-table thead th {
	background-color: #1e293b;
	font-family: 'RakutenSans_Bd', sans-serif !important;
	letter-spacing: 0.05em;
	font-size: 1.6rem;
}
.camp-schedule-table td.text-left {
	text-align: left;
	padding-left: 20px;
}
.camp-schedule-table .font-bold {
	font-weight: 700;
}
.camp-schedule-table tr.trm-match td {
	background-color: #ffcccc !important;
}
.badge-trm {
	display: inline-block;
	background-color: var(--color-accent);
	color: #ffffff;
	font-family: 'RakutenSans_Bd', sans-serif;
	font-size: 1.1rem;
	padding: 2px 8px;
	border-radius: 4px;
	margin-right: 8px;
	font-weight: 700;
}
.badge-notice {
	display: inline-block;
	background-color: #64748b;
	color: #ffffff;
	font-size: 1.1rem;
	padding: 2px 8px;
	border-radius: 4px;
	margin-right: 8px;
	font-weight: 700;
}
.camp-schedule-table tr.camp-off td {
	background-color: #eee !important;
	color: #777777;
}
.camp-schedule-table tr.camp-private td {
	color: #a9002e;
}
@media (max-width: 834px) {
	.tableWrap:before {
		display: none !important;
	}
	.camp-schedule-table, .camp-schedule-table thead, .camp-schedule-table tbody, .camp-schedule-table th {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}
	.camp-schedule-table thead {
		display: none;
	}
	.camp-schedule-table tbody tr {
		background-color: #fff !important;
		border-radius: 8px;
		margin-bottom: 15px;
		padding: 12px;
		position: relative;
		overflow: hidden;
		display: flex !important;
		flex-wrap: wrap !important;
		transition: background-color 0.2s ease;
		border-bottom: 1px solid #f1f5f9;
		height: auto;
	}
	.camp-schedule-table tbody tr:hover {
  background-color: #f8fafc;
}
	.camp-schedule-table tbody th {
		width: 100% !important;
		background-color: rgba(169, 0, 49, 0.9) !important;
		color: #ffffff !important;
		text-align: left;
		padding: 6px 12px !important;
		font-size: 1.4rem;
		border-radius: 4px;
		height: auto !important;
		margin-bottom: 10px;
	}
	.camp-schedule-table tbody td {
		display: flex !important;
		align-items: center;
		background-color: transparent !important;
		text-align: left !important;
		padding: 4px 8px !important;
		font-size: 1.4rem;
		height: auto !important;
		box-sizing: border-box;
		width: 100% !important;
	}
	.camp-schedule-table tbody tr td:nth-of-type(1), .camp-schedule-table tbody tr td:nth-of-type(2) {
		width: 50% !important; /* これで綺麗に半分ずつ2列で横に並びます */
	}
	.camp-schedule-table tbody tr.camp-off td:nth-of-type(2) {
		width: 100% !important;
	}
	.camp-schedule-table tbody td:nth-of-type(1)::before {
		content: "AM：";
		font-weight: bold;
		color: #666;
		margin-right: 5px;
	}
	.camp-schedule-table tbody td:nth-of-type(2)::before {
		content: "PM：";
		font-weight: bold;
		color: #666;
		margin-right: 5px;
	}
	.camp-schedule-table tbody td:nth-of-type(3)::before {
		content: "備考：";
		font-weight: bold;
		color: #666;
		margin-right: 5px;
	}
	.camp-schedule-table tbody td:nth-of-type(3) {
		border-top: 1px dashed #dddddd;
		margin-top: 10px;
		padding-top: 10px !important;
		word-break: break-all;
		width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    padding: 10px 12px !important;
	}
	
	.camp-schedule-table td.text-left {
		padding-left: 8px !important;
	}
	.camp-schedule-table tr.trm-match {
		background-color: #f9f9f9 !important;
	}
	.camp-schedule-table tr.camp-off {
		background-color: #f9f9f9 !important;
		opacity: 0.8;
	}
	.camp-schedule-table tr.camp-off td:nth-of-type(1) {
		width: 100% !important;
	}
	.camp-schedule-table tr.camp-off td::before {
		display: none;
	}
	.camp-schedule-table tr.camp-off td {
		justify-content: center;
		font-size: 1.6rem;
	}
}
/*----------------------------------------
	Map					
----------------------------------------*/
section.map {
	background-color: rgba(255, 255, 255, 0.5);
}
.map .box {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0 0 10px 10px;
}
@media (min-width: 835px) {
	.map .box {
		width: 500px;
		margin: 0 auto;
	}
	.map .table th {
		width: 200px;
	}
}
.map .container table.table tr td {
	background-color: #f9f9f9 !important;
	color: #333;
}
@media (max-width: 834px) {
	.map .container table.table, .map .container table.table tbody, .map .container table.table tr {
		display: block !important;
		width: 100% !important;
		box-sizing: border-box;
	}
	.map .container table.table tr {
		padding-bottom: 15px;
	}
	.map .container table.table tr:last-child {
		margin-bottom: 0;
		border-bottom: none;
		padding-bottom: 0;
	}
	.map .container table.table th {
		display: block !important;
		width: 100% !important;
		text-align: left !important;
		color: #fff;
		padding: 6px 12px !important;
		font-size: 1.4rem !important;
		border-radius: 4px;
		margin-bottom: 8px;
		box-sizing: border-box;
		height: auto !important;
	}
	.map .container table.table thead th:first-child {
		color: #333;
		border-radius: 0;
	}
	.map .container table.table td {
		display: block !important;
		width: 100% !important;
		text-align: left !important;
		padding: 6px 15px !important;
		font-size: 1.4rem !important;
		background-color: transparent !important;
		line-height: 1.6;
		box-sizing: border-box;
		height: auto !important;
	}
	.map .container table.table td p.note {
		font-size: 1.2rem !important;
		margin-top: 8px;
		line-height: 1.5;
		color: #666666;
		background-color: rgba(169, 0, 49, 0.08) !important;
		padding: 10px;
		border-radius: 4px;
	}
}
/*----------------------------------------
	Access										
----------------------------------------*/
.access .map {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.access .map iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.access-block {
	margin-bottom: 40px;
}
.access-block:last-of-type {
	margin-bottom: 0;
}
.access-title {
	font-size: 1.8rem;
	font-weight: bold;
	color: #a9002e;
	display: flex;
	padding-bottom: 12px;
	border-bottom: 2px solid #a9002e;
	margin-bottom: 18px;
	align-items: center;
	gap: 12px;
}
.access-title .icon-circle {
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #a9002e;
	border-radius: 50%;
	position: relative;
	display: inline-flex;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	flex-shrink: 0;
}
.access-title .icon-circle i.fa {
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	display: block;
	text-align: center;
}
.access-title .icon-circle i.fa-map-marker {
	transform: translateY(-1px);
}
.access-content {
	padding-left: 8px;
}
.access-item {
	margin-bottom: 25px;
}
.access-item:last-of-type {
	margin-bottom: 0;
}
.access-sub-title {
	font-size: 1.6rem;
	font-weight: bold;
	color: #111111;
	margin-bottom: 8px;
	position: relative;
	padding-left: 1em;
	background-color: #FFF8DC;
	padding: 0.5em;
}
.access-sub-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 14px;
}
.access-text {
	line-height: 1.6;
	color: #333333;
	padding-left: 1em;
}
.alert-text {
	font-weight: bold;
	color: #a9002e;
}
.access-route {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 20px 0;
}
.route-text.text-nowrap {
	white-space: pre-line;
}
.route-card {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 15px 20px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	box-sizing: border-box;
	box-shadow: var(--shadow-sm);
}
.route-card.highlight-card {
	border-color: var(--color-main);
  background-color: rgba(169, 0, 46, 0.02);
}
.route-badge {
	background-color: #333;
	color: #ffffff !important;
	font-size: 1.1rem;
	font-weight: bold;
	padding: 4px 10px;
	border-radius: 8px;
	white-space: nowrap;
	flex-shrink: 0;
}
.route-card.highlight-card .route-badge {
	background-color: var(--color-main);
  border-radius: 6px;
}
.route-text {
	font-size: 1.4rem !important;
	color: #111111 !important;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 !important;
	text-align: left;
}
.route-text strong {
	font-size: 1.6rem;
	color: #a9002e;
	display: inline-block;
}
.route-time {
	color: #666666 !important;
	font-size: 1.2rem;
	font-weight: normal;
}
.route-arrow-box {
	color: var(--color-main);
  opacity: 0.6;
	font-size: 2.2rem;
	margin: 12px 0;
	font-weight: bold;
}
@media (max-width: 834px) {
	.route-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 10px;
		border-width: 2px;
		width: 100%;
		/*overflow-x: auto;*/
	}
	.route-badge {
		font-size: 1.0rem;
		padding: 2px 8px;
	}
	.route-text {
		font-size: 1.2rem !important;
	}
	.route-text strong {
		font-size: 1.3rem;
	}
	.route-arrow-box {
		font-size: 1.6rem;
		margin: 2px 0;
	}
	.route-text.text-nowrap {
		font-size: 1.18rem !important;
	}
	.route-text.text-nowrap strong {
		font-size: 1.25rem;
	}
}
.note {
	font-size: 1.3rem;
	color: #666666;
	margin-top: 8px;
	line-height: 1.5;
}
@media (max-width: 834px) {
	.camp-access-section h1 .heading_main {
		font-size: 2.8rem;
		padding: 8px 25px;
		text-shadow: 1px 1px 0 #111111, 2px 2px 0 #111111, 3px 3px 0 #111111;
	}
	.access-title {
		font-size: 1.6rem;
		margin-bottom: 14px;
	}
	.access-title .icon-circle {
		width: 30px;
		height: 30px;
	}
	.access-content {
		padding-left: 2px;
	}
	.access-sub-title {
		font-size: 1.4rem;
		margin-bottom: 6px;
	}
	.access-text {
		font-size: 1.35rem;
	}
	.route-step {
		font-size: 1.3rem;
	}
	.note {
		font-size: 1.2rem;
	}
}
.camp-notes-container {
	max-width: 1060px;
	margin: 50px auto 0;
	padding: 0 10px;
	text-align: left;
	box-sizing: border-box;
}
.camp-notes-main-title {
	margin-bottom: 20px;
	border-radius: 5px;
	border: 1px solid #ffcccc;
	background: repeating-linear-gradient(45deg, #f8eeec, #f8eeec 10px, #ffffff 10px, #ffffff 20px);
	padding: 15px;
}
.camp-notes-main-title h2 {
	font-size: 2.0rem;
	font-weight: bold;
	color: #a9002e;
	margin-bottom: 10px;
	line-height: 1.4;
}
.camp-notes-main-title p {
	font-size: 1.6rem;
	color: #111111;
	font-weight: bold;
	line-height: 1.5;
}
.camp-notes-row {
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #e5e5e5;
	padding: 24px 0;
}
.camp-notes-row:last-child {
	border-bottom: none;
}
.camp-notes-label {
	width: 240px;
	flex-shrink: 0;
	font-size: 1.6rem;
	font-weight: bold;
	color: #111111;
	line-height: 1.4;
	padding-right: 15px;
	box-sizing: border-box;
}
.camp-notes-content {
	flex-grow: 1;
}
.notes-text {
	font-size: 1.5rem;
	color: #333333;
	line-height: 1.6;
}
.notes-sub-text {
	font-size: 1.4rem;
	color: #666666;
	margin-top: 4px;
	line-height: 1.5;
}
.notes-list {
	list-style-type: disc;
	padding-left: 20px;
}
.notes-list li {
	font-size: 1.5rem;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 8px;
}
.notes-list li:last-child {
	margin-bottom: 0;
}
.camp-notes-container .margin-top-xs {
	margin-top: 5px;
}
.camp-notes-container .margin-top-sm {
	margin-top: 12px;
}
@media (max-width: 834px) {
	.camp-notes-main-title {
		padding: 5px 1;
	}
	.camp-notes-container {
		margin-top: 35px;
	}
	.camp-notes-main-title h2 {
		font-size: 1.6rem;
	}
	.camp-notes-main-title p {
		font-size: 1.4rem;
	}
	.camp-notes-row {
		display: block !important;
		padding: 16px 0;
		border-bottom: 1px dotted #dddddd;
	}
	.camp-notes-label {
		width: 100% !important;
		margin-bottom: 8px;
		font-size: 1.4rem;
		padding-right: 0;
	}
	.camp-notes-content {
		width: 100% !important;
	}
	.notes-text, .notes-list li {
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.notes-sub-text {
		font-size: 1.3rem;
	}
	.notes-list {
		padding-left: 16px;
	}
	.notes-list li {
		margin-bottom: 6px;
	}
}
/*----------------------------------------
	Movie					
----------------------------------------*/
section#MOVIE {
	background-color: rgba(255, 255, 255, 0.5);
}
.youtubeArea {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtubeArea iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.movie_list > div.col-3 b {
	font-size: 1.4rem;
	line-height: 1.4;
	padding: 20px 10px 0;
}
.movie_list > div.col-3 a {
	color: #a9002e;
}
.movie_list > div.col-3 {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 5px;
	color: #a9002e;
}
.movie_list > div.col-3 img {
	border-radius: 5px 5px 0 0;
	padding-top: 16px;
}
@media (max-width: 834px) {
	.movie_list {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: space-between;
		gap: 20px 4%;
	}
	.movie_list .col-34 {
		width: 45% !important;
		max-width: 45% !important;
		flex: 0 0 45% !important;
		margin-bottom: 0 !important;
		display: flex;
		flex-direction: column;
	}
	.movie_list .col-3 span {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.movie_list .col-3 img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
	.movie_list .col-3 p {
		margin-top: 10px !important;
		flex-grow: 1;
		font-size: 1.3rem;
		line-height: 1.4;
	}
	.movie_list > div.col-3 b {
		font-size: 1.2rem;
	}
}
/*----------------------------------------
	PHOTO
----------------------------------------*/
section#PHOTO {
	background-color: rgba(255, 255, 255, 0.5);
}
.fancybox-skin {
	position: relative;
	background-color: transparent;
}
.photo_group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 834px) {
	.photo_group {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 834px) {
	.photo_group li {
		width: 49.5%;
	}
}
.photo_group li a {
	width: 260px;
	overflow: hidden;
	text-align: center;
	margin: 2px;
	display: block;
}
@media only screen and (max-width: 834px) {
	.photo_group li a {
		width: 100%;
	}
}
.photo_group li a img {
	object-fit: scale-down;
	font-family: 'object-fit: scale-down;';
	width: 100%;
	transition: all 0.2s ease-in-out;
}
.photo_group li a img:hover {
	transform: scale(1.05);
}
/*----------------------------------------
	SNS
----------------------------------------*/
.heading-sns {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #333333;
}
.heading-sns::before, .heading-sns::after {
	width: 2px !important;
	height: 40px;
	background-color: #FF008C;
	content: '';
}
.heading-sns::before {
	transform: rotate(-35deg);
	margin-right: 30px;
}
.heading-sns::after {
	transform: rotate(35deg);
	margin-left: 30px;
}
.camp-sns-buttons-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 120px;
	width: 100%;
	padding-top: 3em;
}
.sns-btn-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	box-shadow: 4px 4px 0 #111111;
	background-color: #ffffff !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	cursor: pointer;
	flex-shrink: 0;
	text-decoration: none;
}
.sns-btn-item .heading-sns {
	position: absolute;
	bottom: 6em;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.1rem !important;
	font-weight: bold !important;
	color: #111111 !important;
	padding: 3px 10px !important;
	white-space: nowrap;
	margin: 0 !important;
	line-height: 1.2;
}
.sns-btn-item:hover {
	transform: translate(2px, 2px);
	box-shadow: 0 0 0 #111111;
}
.sns-btn-item i.fa {
	font-size: 4.4rem;
	line-height: 1;
}
.sns-btn-item i.fa-instagram {
	color: #e1306c;
}
.sns-btn-item i.fa-youtube-play {
	color: #ff0000;
}
.sns-btn-item .sns-custom-img {
	width: auto;
	height: 45px;
	max-width: 45px;
	object-fit: contain;
}
@media (max-width: 834px) {
	.heading-sns::before, .heading-sns::after {
		width: 2px !important;
		height: 20px;
	}
	.heading-sns::before {
		transform: rotate(-35deg);
		margin-right: 10px;
	}
	.heading-sns::after {
		transform: rotate(35deg);
		margin-left: 10px;
	}
	.camp-sns-buttons-wrap {
		gap: 36px;
		padding-top: 2em;
	}
	.sns-btn-item {
		width: 56px;
		height: 56px;
		border-width: 2.5px;
		box-shadow: 3px 3px 0 #111111;
	}
	.sns-btn-item .heading-sns {
		font-size: 0.95rem !important;
		padding: 2px 6px !important;
		white-space: pre-wrap;
	}
	.sns-btn-item i.fa {
		font-size: 2.8rem;
	}
	.sns-btn-item .sns-custom-img {
		height: 27px;
	}
}
/*----------------------------------------
	FAQ
----------------------------------------*/
section.faq {
	padding: 3.0em 0;
}
.faq-container {
	margin: 0 auto;
	padding: 0 10px;
}
.faq-item {
	background-color: #f9f9f9;
	border: 2px solid #e5e5e5;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}
.faq-item[open] {
	border-color: #a9002e;
	border-radius: 10px;
}
.faq-question {
	padding: 16px 50px 16px 60px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #111111;
	cursor: pointer;
	position: relative;
	list-style: none;
	user-select: none;
}
.faq-question::-webkit-details-marker {
	display: none;
}
.faq-question::before {
	content: "Q";
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'RakutenSans_Bd', sans-serif;
	font-size: 2.0rem;
	color: #a9002e;
}
.faq-question::after {
	content: "";
	position: absolute;
	right: 25px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 2px solid #666666;
	border-bottom: 2px solid #666666;
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
	transform: translateY(-30%) rotate(-135deg);
}
.faq-answer {
	padding: 0 25px 20px 60px;
	font-size: 1.45rem;
	line-height: 1.7;
	color: #444444;
	position: relative;
	animation: fadeInFaq 0.4s ease forwards;
}
.faq-answer::before {
	content: "A";
	position: absolute;
	left: 25px;
	top: 0px;
	font-family: 'RakutenSans_Bd', sans-serif;
	font-size: 2.0rem;
	font-weight: bold;
	color: #111111;
}
@keyframes fadeInFaq {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 834px) {
	.faq-container {
		max-width: 900px;
		margin: 0 auto;
		padding: 0 10px;
	}
	.faq-question {
		padding: 14px 40px 14px 45px;
		font-size: 1.4rem;
	}
	.faq-question::before {
		left: 18px;
		font-size: 1.8rem;
	}
	.faq-question::after {
		right: 20px;
		width: 10px;
		height: 10px;
	}
	.faq-answer {
		padding: 0 20px 16px 45px;
		font-size: 1.35rem;
	}
	.faq-answer::before {
		left: 18px;
		font-size: 1.8rem;
	}
}
/*----------------------------------------
	Partner					
----------------------------------------*/

section.partner{
	
}


/*----------------------------------------
	table
----------------------------------------*/
.innerWrap .table {
	width: calc(100% + 4px);
	border-collapse: separate;
	border-spacing: 4px;
	border-top: none;
	/*transform: translate(-4px);*/
}
.innerWrap .table th, section .innerWrap .table td {
	/* padding: 0.8em 0; */
	padding-left: 0.8em;
	border-bottom: none;
	line-height: 1.4;
	box-sizing: border-box;
	vertical-align: middle;
}
.innerWrap .table thead th {
	color: #fff;
	background-color: #777;
	text-align: center;
}
.innerWrap .table th, .innerWrap .table td {
	padding: 0.8em 0.4em;
}
.innerWrap .table tbody th {
	color: #ffffff;
	background-color: rgba(169, 0, 49, 0.9);
	text-align: center;
}
.innerWrap .table tbody td {
	background-color: #fff;
}
.innerWrap .table tr.red td {
	background-color: rgba(169, 0, 49, 0.20)
}
main ul.default {
	margin-left: 1.5rem;
	line-height: 1.6;
	list-style-type: disc;
}
.innerWrap .table tbody td {
	height: 3.0em;
}
@media (max-width: 834px) {
	.tableWrap {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		/*margin-bottom: 20px;*/
	}
	.tableWrap th, .tableWrap td {
		white-space: nowrap;
	}
	.tableWrap th {
		font-size: 1.2rem;
	}
	.tableWrap:before {
		content: "※右にスクロール可能です。";
		font-size: 1.2rem;
	}
	.tableWrap::-webkit-scrollbar {
		height: 5px;
	}
	.tableWrap::-webkit-scrollbar-track {
		border-radius: 5px;
		background: #eee;
	}
	.tableWrap::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #666;
	}
	.innerWrap .table thead th {
		padding-left: 10px;
		border-left: 4px solid #a9002e;
		background-color: #fff;
		color: #333;
		width: 100%;
	}
}
/*----------------------------------------
	sp
----------------------------------------*/
@media (max-width: 834px) {
	body {
		min-width: 100%;
	}
	.only-pc {
		display: none !important;
	}
	.container {
		padding-bottom: 20px;
		margin: 0 auto;
	}
	.container:first-child {
		padding-bottom: 0;
	}
	section {
		padding: 20px 0;
	}
	.innerWrap {
		padding: 0 10px;
	}
	.fs-12 {
		font-size: 2.5vw;
	}
	.fs-14 {
		font-size: 3vw;
	}
	.fs-16 {
		font-size: 3.5vw;
	}
	.fs-18 {
		font-size: 4.0vw;
	}
	.fs-20 {
		font-size: 4.5vw;
	}
	.fs-22 {
		font-size: 5.0vw;
	}
	.container b {
		font-size: 1.8rem;
		line-height: 1.4;
		padding-top: 20px;
	}
}
/*----------------------------------------
	pc
----------------------------------------*/
@media (min-width: 835px) {
	.only-sp {
		display: none !important;
	}
	a.anchor {
		display: block;
		padding-top: 0;
		margin-top: -0;
	}
	.innerWrap {
		width: 1060px;
		margin-right: auto;
		margin-left: auto;
	}
	.fs-12 {
		font-size: 1.2rem;
	}
	.fs-14 {
		font-size: 1.4rem;
	}
	.fs-16 {
		font-size: 1.6rem;
	}
	.fs-18 {
		font-size: 1.8rem;
	}
	.fs-20 {
		font-size: 2.0rem;
	}
	.fs-22 {
		font-size: 2.2rem;
	}
	.container b {
		font-size: 2.4rem;
		line-height: 1.4;
		padding: 20px;
	}
	#Schedule, #Map, #Access, #Movie, #Photo, #SNS, #Faq {
  scroll-margin-top: 80px; /* 固定ヘッダーの高さ分（px）を指定 */
}
}
/*----------------------------------------
	swiper
----------------------------------------*/
.swiper {
	overflow: visible;
}
.lp-slide {
	margin: 0 auto;
	max-width: 1060px;
	width: 100%;
}
.swiper-slide a {
	display: block;
	overflow: hidden;
	text-decoration: none;
	border-radius: 5px;
}
.border-radius-swiper {
	border-radius: 0 0 10px 10px;
}
.swiper-button-next, .swiper-button-prev {
	border-radius: 5px;
}
@media (min-width: 835px) {
	.swiper-container {
		padding: 0;
		position: relative;
	}
	.swiper-button-next, .swiper-button-prev {
		top: auto;
		bottom: 0;
		width: 30px;
		height: 30px;
	}
	.itemSwiper {
		max-width: 100%;
		overflow: hidden;
	}
	swiper-slide:first-child {
		margin-left: 0;
	}
	.swiper-pagination {
		margin-bottom: 0;
	}
}
/*----------------------------------------
	animation
----------------------------------------*/