@charset "utf-8";
/* CSS Document */
html {scroll-behavior: smooth;}
body {position: relative;
    background: #000000;
    font-family: 'Noto Sans JP', 'Helvetica Neue', 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, YuGothic, Arial, 'メイリオ', Meiryo, sans-serif;
    color:#FFFFFF;
	font-size: 15px;
	line-height: 1.6;
    -webkit-text-size-adjust: 100%;
	word-break: break-all;
	text-align: justify;
	
	
}

/* ヘッダー */

header {
 position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* 半透明にする */
  z-index: 10;
  height: 50px;

}


.nav {
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 15px;
  position: relative;
	margin-right: 20px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.menu li a {
  color: #fff;
  text-decoration: none;
}
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
}


section[id] {
  scroll-margin-top: 30px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    background: rgba(68, 68, 68, 0.9); /* ← 半透明のグレー */
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    font-size: 80%;
	padding-left: 20px;
    box-sizing: border-box; /* ← paddingを幅に含める */
	 
  }
.menu.active {
  max-height: 500px;

}



	
	
ul {
  margin: 0;
  padding: 0;
  list-style: disc;
}

li {
  padding: 6px 0;
  margin: 0; /* ← 念のため margin もリセット */
}

  .hamburger {
    display: block;
  }
}


h1{margin-top: 50px;
	font-size: 280%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: bold;
	text-align: center;
	color: transparent;
	background-image: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.pc-1260{
	display: block;
}
.top_image{
	width: 100%;
	height: auto;
	display: flex;
	gap: 10px;
	align-items: center;
	
	vertical-align: bottom;
}

.top_image img {
	width: 100%;
	height: 100vh; 
	object-fit: cover;
	object-position: center top; /* ここを変えて試してもOK */
}

.flex_item{
	display: block;
	text-align: center;
	width: 45%;
	
}

.top_point{
	display: inline-block;
	margin: 20px auto;
	font-size: 150%;
	font-weight: bold;
	
	color: #FFFFFF;
	text-align: left;
	padding: 20px 0px;
	border-top: 1px solid #acebe4;

	max-width: 800px;
}

.top_point p{
	margin-bottom: 10px;
	margin-top: 15px;
}

.gradient-underline {
  position: relative;
  display: block; /* 必要に応じて block に変更可能 */
  padding-bottom: 16px; /* 下線との余白 */
}

.gradient-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}


.ticket_point{
	display: flex;
	gap:20px;
}

.ticket_title{
	text-align: center;
	
	font-weight: bold;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	  background-image: linear-gradient(0deg, rgba(150, 51, 62, 1), rgba(245, 0, 0, 1));
	padding: 5px;
	color: #FFFFFF;
}
.b-w{
	background-color:rgba(255,255,255,0.80);
	padding: 3px 0;
	color: #acebe4;
}

.day{
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
	margin: 10px 0;
	font-size: 150%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	
}

.qa{
	font-weight: bold;
	text-align: center;
	font-size: 160%;
	color: #000000;
	background-color: #FFFFFF;
	border:  solid 2px rgba(62,62,62,1.00);
display: block;
}

.qa :hover{
background-color: rgba(140,187,243,1.00);
}

.qa a{
	text-decoration: none;
	display: block;
	padding: 10px 0;
}
figure {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    unicode-bidi: isolate;
}

figcaption{
	text-align: right;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}



@media (max-width: 1260px) {
	h1{
		font-size: 250%;
		margin: 0;
	}
	.top_image{
		display: block;
	}
	
	.top_image img{
		width: 100%;
		object-position: top 100%; /* ここを変えて試してもOK */
		height: 75vh;
		max-height: 800px;
		min-height: 250px;
		margin-top: 50px;
	}
	.pc-1260{
	display: none!important;
}
	
	.flex_item{
		width: 100%;
		margin: 0 auto;
		
	}
}

@media (max-width: 480px) {
.top_image img{
		width: 100%;
		object-position: center top; /* ここを変えて試してもOK */
		height: 50vh;
		max-height: 800px;
		min-height: 250px;
		margin-top: 50px;
	}
}


main {
	margin-top: 150px;
	width: 1000px;
	margin: 0 auto;
	
	/* 
	box-shadow: 0 0 8px #fff, 0 0 8px #ccc, 0 0 8px #999;
	-webkit-box-shadow: 0 0 8px #fff, 0 0 8px #ccc, 0 0 8px #999;
	-moz-box-shadow: 0 0 8px #fff, 0 0 8px #ccc, 0 0 8px #999;*/
}

.contents_box{
	padding: 15px 50px;
	margin: 0 auto;
}



h2{color: #fff;
	text-align: left;
	margin-top: 2rem;
	padding: 5px 0px 5px 10px ;
	background-color: #455e5b;
	font-size: 130%;
}


a.btn_02 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	max-width: 100%;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #27acd9;
	background: #27acd9;
	color: #fff;
	transition: 0.5s;
}
a.btn_02:hover {
	color: #27acd9;
	background: #fff;
}

dt {
  color: #FFFFFF;
  border-bottom: 2px solid #455e5b;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 115%;
  position: relative;
  padding-left: 1.2em; /* 縦線と文字の間隔確保 */
	padding-bottom: 6px;
}

dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px; /* 縦線の太さ */
  background-color: #acebe4; /* 縦線の色 */
  border-radius: 0px; /* 角を丸くする（任意） */
}

dd{
	margin-top: 10px;
	margin-left: 10px;
}

ol,ul{
padding-inline-start: 25px;

}

.sch table, .pay table{
	border-spacing:0;
	border-style: 1px solid #a9a9a9;
	width: 100%;
	border-collapse:collapse;
	margin: 20px 0;
	
}
.sch th, .pay th{
	background-color: #455e5b;
	color: #FFFFFF;
	padding: 5px;
	vertical-align: middle;
	border: 1px solid #a9a9a9;
text-align: center;
}

.sch th{
border: 1px solid #a9a9a9;
text-align: center;
}

.pay td{
border: 1px solid #a9a9a9;
text-align: center;
vertical-align: middle;
background-color: #f5f5f5;
color: #000000;
}

.sch td{
	padding: 5px 5px;
	vertical-align: top;
	font-size: 90%;
	background-color: #f5f5f5;
color: #000000;
text-align: center;
border: 1px solid #a9a9a9;
}

.sch p{
	margin: 0;
}

.pay td{
	padding:10px;
	height: 100px;
	background-color: #f5f5f5;
color: #000000;
}

.mt--15{
	margin-top: -15px;
}

.sch-title{

	font-size: 120%;
	font-weight: bold;
}


.t-l{
	text-align: left!important;
}
.t-right{
	text-align: right!important;
}
.t-c{
	text-align: center!important;
}

.f-125{
	font-size: 125%;
	font-weight: bold;
}

.f-140{
	font-size: 140%;
	font-weight: bold;
}

.f-180{
	font-size: 180%;
	font-weight: bold;
}

.f-250{
	font-size: 250%;
	font-weight: bold;
}

.f-300{
	font-size: 300%;
	font-weight: bold;
}

.f-80{
	font-size: 80%;
}

.f-90{
	font-size: 90%;
}
.f-110{
	font-size: 110%;
}

.mb-15{
	margin-bottom: 15px;
}

.mb-30{
	margin-bottom: 30px;
}

.mt-15{
	margin-top: 15px;
}

.ml-15{
	margin-left: 15px;
}


.fwb{
	font-weight: bold;
}
.entry{
	border: 1px solid #a9a9a9;
	padding: 10px 25px;
	background-color: #FFFFFF;
	color: #000000;
}
.step{
	text-align: center;
	background-color: #455e5b;
	padding: 10px 0;
	color: #FFFFFF;
	font-weight: bold;
	margin-bottom: 0!important;
	border: 1px solid #a9a9a9;
	border-bottom: none;
}

.bank{
	border: 2px solid 
		#C8C8C8;
	padding: 1rem;
}

.arr {
	margin: 10px 0;
	text-align: center;
}
.box{
	border: 1px dashed
		#C8C8C8;
	padding: 10px;
}

.logo_knt{
	max-width: 400px;
}

.entry_area{
	text-align: center;
	margin: 50px 0;
}

.point{
	border: 2px dashed #acebe4;
	margin-bottom: 3rem;
	padding: 0 1rem 1rem 1rem;
}

.point_box{
	width: 700px;
	margin: 0 auto;
	
}
.point p{
	width: auto;
	font-size: 150%;
}

.point_medama{
	display: inline-block;
	border-bottom: solid 1px #acebe4;
	font-weight: bold;
	font-size: 120%;
	padding: 10px 0;
color: #C1036E;
	
}

.point_naiyo{
	display: inline-block;
	border-bottom: solid 1px #acebe4;
	font-weight: bold;
	
}

.medama_box{
	 display: inline-block;
  width: 100%;
font-size: 100%;
  height: 40px;
  background: #C1036E;
  text-align:center;
  line-height: 40px;
margin-right: 10px auto;
	color: #FFFFFF;
	font-weight: bold;
	
}

.p_box{
	 display: inline-block;
  width: 100px;
font-size: 80%;
  height: 40px;
  background: #acebe4;
  text-align:center;
  line-height: 40px;
margin-right: 10px;
	color: #FFFFFF;
	font-weight: bold;
	
}
.flex{
	display: flex;
	justify-content: center;
}
.flex p{
	margin: 10px;;
}
footer{
	background-color: #4B4B4B;
	color: #FFFFFF;
	width: 100%;

}

.footer_in{
	font-size: 90%;
	padding: 20px 10px;
	text-align: center;
}
.footer_in a{
	color: #FFFFFF;
}

@media (max-width: 999px) {
	main{
		width: 100%;
	}
	.point_box{
	width: 100%;
	margin: 0 auto;
}
	.flex{display: block;}
	.point p{
		width: auto;
	}
}

/* スクロールアイコン */
.scroll-wrapper {
  position: relative;
}

.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5); /* 黒背景・半透明 */
  color: #fff;
  padding: 100px 20px;
  font-size: 1.4rem;
  border-radius: 8px;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.scroll-hint.hidden {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 601px) {
  .scroll-hint {
    display: none;
  }
}

/* スクロールアイコンここまで */


@media (max-width: 600px) {
	body{
		font-size: 14px;
	}
	.contents_box{
	padding:0 15px;
	margin: 0 auto;
}
	.logo_knt{
	max-width: 90%;
}
	.teble_scroll {
    overflow-x: auto;
    display: block;
}

.teble_scroll table th,
.teble_scroll table td {
    white-space: nowrap;
}

	
	.entry ol, .entry ul{
		padding-inline-start: 10px;
	}
	.point p{
		font-size: 100%!important;
		text-align: center;
	}
	.p_box{
	 display: inline-block;
  width: 100%;
font-size: 100%;
  height: 20px;
  background: #acebe4;
  text-align:center;
  line-height: 20px;
margin-right: 10px auto;
	color: #FFFFFF;
	font-weight: bold;
	
}
	
	h1{font-size: 200%;
	
}
	.top_point{
		font-size: 110%;
		padding: 20px;
	}
}

.pc{
	display: block;
}
.sp{
	display: none;
}

@media (max-width: 600px) {
	.pc{
	display: none;
}
.sp{
	display: block;
}
	
	
}
.red{
color: #ff0000;
}

.pink{
	color: #C1036E;
	font-weight: bold;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.bg-w{
	background-color: #FFFFFF;
}

.bg-lg{
	background-color:rgba(224,240,222,1.00);
}

.bg-lp{
	background-color:#faf0f0!important;
}
.caption{
	font-size: 80%;
	color: #FFFFFF;
	margin: 0 0 10px 15px;
	padding: 0;
}

.dot_box{
	border:  1px dotted rgba(55,55,55,1.00);
	padding: 1rem;
}

[id] {
  scroll-margin-top: 60px;
}

.b_course{
	background-color: #008A2D;
	color: #FFFFFF;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	width: 4.5rem;
	margin-right: 6px;
}

.c_course{
	background-color: #D90000;
	color: #FFFFFF;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	width: 4.5rem;
	margin-right: 6px;
}

.a_course{
	background-color:#2C00AC;
	color: #FFFFFF;
	font-weight: bold;
	display: inline-block;
	text-align: center;
	width: 4.5rem;
	margin-right: 6px;
}

.bg_b{
	background-color:#008A2D!important;
	color: #FFFFFF;
	font-weight: bold;
}


.bg_c{
	background-color: #D90000!important;
	color: #FFFFFF;
	font-weight: bold;
}

.bg_a{
	background-color:#2C00AC!important;
	color: #FFFFFF;
	font-weight: bold;
}

.h_30{
	height: 30px!important;
}

.bg-r-fw{
	font-weight: bold;
	background-color: red;
	color: #FFFFFF;
	padding: 5px;
}

.bgw{
	background-color: #FFFFFF!important;
}

.sch-title {
  cursor: pointer;
  background-color: #acebe4; /* 明るめのブルー */
  color: #000000;            /* 濃い青系文字でコントラスト強調 */
  padding: 14px;
  border: 2px solid #455e5b;
  transition: background-color 0.3s, border-color 0.3s;
  text-align: left;
  font-weight: bold;
}

.sch-title:hover {
  background-color: #FFFFFF;
  border-color:#FFFFFF;
}

.toggle-label {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
  color: #003366;
  width: 100%;
}

/* 閉じているとき（.table-toggle に active クラスがない状態） */
.table-toggle:not(.active) .sch-title {
  margin-bottom: 20px; /* お好みの値に変更可能 */
}

/* 開いているとき（active付き）は余白なし */
.table-toggle.active .sch-title {
  margin-bottom: 0;
}


.toggle-icon {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.table-toggle.active .toggle-icon {
  transform: rotate(180deg);
}


.toggle-container {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.table-toggle.active + .toggle-container {
  max-height: 1500px;
}

/* モバイルでも中央揃え */
@media screen and (max-width: 768px) {
  .toggle-label {
    font-size: 13px;
  }
}

/* 黒背景の中で使うリンクスタイル */
.black-bg {
  color: #acebe4; /* 明るい水色：目立つ */
  text-decoration: underline;
  transition: color 0.3s;
}

.black-bg:hover {
  color: #F7FD00; /* ホバー時は真っ白でさらに強調 */
  text-decoration: none;
}

.lightgreen{
	color: #acebe4;
}

.white{
	color: white!important;
}