@charset "utf-8";
/* CSS Document */
html {scroll-behavior: smooth;}
body {position: relative;
    background: #fff;
    font-family: 'Noto Sans JP', 'Helvetica Neue', 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, YuGothic, Arial, 'メイリオ', Meiryo, sans-serif;
    color:#1E1E1E;
	font-size: 16px;
	line-height: 1.6;
    -webkit-text-size-adjust: 100%;
	word-break: break-all;
	text-align: justify;
	background-image: linear-gradient(90deg, rgba(87, 129, 131, 1), rgba(34, 60, 61, 1));
	
}

/* ヘッダー */

header {
 position: fixed;
  top: 0;
  width: 100%;
  background: rgba(51, 51, 51, 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: #444;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease; /* ← ややゆっくり展開 */
	 font-size: 80%;
	  padding-left: 10px;
  }
	ul{
	}
	li{
		
		padding:5px 0;
	}
  .menu.active {
    max-height: 500px; /* 十分な高さを指定 */
  }
  .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;
	margin-bottom: 20px;
	background-image: linear-gradient(90deg, rgba(87, 129, 131, 1), rgba(34, 60, 61, 1));
	vertical-align: bottom;
}

.top_image img {
	width: 50%;
	height: 100vh; 
	object-fit: cover;
	object-position: left top; /* ここを変えて試してもOK */
}

.flex_item{
	display: block;
	text-align: center;
	width: 45%;
	
}

.top_point{
	display: inline-block;
	margin: 20px auto;
	font-size: 130%;
	font-weight: bold;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color: #FFFFFF;
	text-align: center;
	padding: 10px 20px;
	border: 2px solid rgba(255,255,255,1.00);
}

.top_point p{
	margin-bottom: 10px;
}

.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: #223c3d;
}

.day{
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
	margin: 10px 0;
	font-size: 150%;
	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: 60vh;
		max-height: 600px;
		min-height: 250px;
		margin-top: 50px;
	}
	.pc-1260{
	display: none!important;
}
	
	.flex_item{
		width: 95%;
		margin: 0 auto;
		
	}
}


main {
	margin-top: 150px;
	width: 1000px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.90)
	/* 
	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: #223c3d;
	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: #223c3d;
  border-bottom: 1px solid #223c3d;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 115%;
  position: relative;
  padding-left: 1em; /* 縦線と文字の間隔確保 */
}

dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px; /* 縦線の太さ */
  background-color: #223c3d; /* 縦線の色 */
  border-radius: 2px; /* 角を丸くする（任意） */
}

dd{
	margin-top: 10px;
	margin-left: 10px;
}

ol,ul{
padding-inline-start: 25px;

}

.sch table, .pay table{
	border-spacing:0;
	border-style: 1px solid #575959;
	width: 100%;
	border-collapse:collapse;
	margin: 20px 0;
	
}
.sch th, .pay th{
	background-color: #223c3d;
	color: #FFFFFF;
	padding: 5px;
	vertical-align: middle;
}

.sch th{
border: 1px solid #575959;
text-align: center;
}

.pay th,td{
border: 1px solid #575959;
text-align: center;
vertical-align: middle;
}

.sch td{
	padding: 5px 5px;
	vertical-align: top;
	font-size: 90%;
}

.sch p{
	margin: 0;
}

.pay td{
	padding:10px;
	height: 100px;
}

.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-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;
}

.fwb{
	font-weight: bold;
}
.entry{
	border: 1px solid #575959;
	padding: 10px 25px;
}
.step{
	text-align: center;
	background-color: #223c3d;
	padding: 10px 0;
	color: #FFFFFF;
	font-weight: bold;
	margin-bottom: 0!important;
	border: 1px solid #575959;
	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 #223c3d;
	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 #223c3d;
	font-weight: bold;
	font-size: 120%;
	padding: 10px 0;
color: #C1036E;
	
}

.point_naiyo{
	display: inline-block;
	border-bottom: solid 1px #223c3d;
	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: #223c3d;
  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;
	}
}

@media (max-width: 600px) {
	body{
		font-size: 14px;
	}
	.contents_box{
	padding: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: #223c3d;
  text-align:center;
  line-height: 20px;
margin-right: 10px auto;
	color: #FFFFFF;
	font-weight: bold;
	
}
	
	h1{font-size: 200%;
	
}
	.top_point{
		font-size: 120%;
	}
}

.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);
}
.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;
}