@charset "utf-8";
/* CSS Document */

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
/*	font-family:  "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;*/
	margin: 0px;
}
#contents {
	margin-right: auto;
	margin-left: auto;
	width: 900px;
	margin-top: 0px;


}
#main {
	padding: 10px;
}

/* ヘッダー全体 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%; /* 固定幅 */
  margin: 0 auto; /* 中央寄せ */
  padding: 0 20px;
  
background: linear-gradient(
  to bottom,
  #e6f0fa 0%,      /* 上：すごく薄い青 */
  #d4e3f9 50%,     /* 中間：ちょい青 */
  #b2ccf2 85%,     /* 下の手前：うすめの青 */
  #8ab4eb 100%     /* 一番下：今より薄い青 */
);
  

  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.header-text {
  text-align: left;
}

#header a {
  color: black;
  text-decoration: none;
}

/* ボタン配置 */
.button-group {
  margin-bottom: 10px;
	margin-right: 30px;
}

.button-group a {
  color: #fff !important;       /* ← 強制的に白文字にする */
  text-decoration: none;
  padding: 6px 12px;
  margin: 0 5px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: normal;
	text-align: center;
	line-height: 30px;
  display: inline-block;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);	
}

/* 少し濃いめのピンク */
.button-group a.btn-pink {
  background-color: #ff8da0;
	width: 130px;
	height: 30px;
}

/* 少し濃いめのグレー */
.button-group a.btn-gray {
  background-color: #999;
	width: 130px;
	height: 30px;
}

/* 画像の表示 */
.image-container {
  margin-top: 100px; /* ← ここで画像を少し下にずらす！ */
  text-align: center;
}



.breadcrumb {
position: static; /* または relative */
top: auto;
left: auto;
  font-size: 13px;
  color: #000000;
  background-color: transparent;
  z-index: 1000;
  margin-bottom: 10px;  /* 下に10pxの隙間 */	
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.button-group {
  text-align: right;
  margin-bottom: 10px;
  margin-top: 10px;  /* ここで下げる余白を追加 */	
}

.info-box {
  background-color: #FFFFFF;  /* 白背景 */
  color: black;               /* 黒文字 */
  padding: 10px 15px;         /* 内側の余白 */
  font-size: 17px;            /* 文字サイズ調整（お好みで） */
  line-height: 1.6;           /* 行間で読みやすく */
  border-radius: 4px;         /* 角に少し丸み（お好み） */
  max-width: 100%;             /* 横幅調整（お好みで） */
  margin: 10px auto;          /* 中央寄せ */
　text-align: center;	
}

.info-box2 {
  display: flex;
  align-items: center;      /* 縦中央揃え */
  justify-content: center;  /* 横中央揃え ← ここ追加 */
  background-color: #4169e1;
  padding: 16px 24px;
  border-radius: 12px;
  gap: 12px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  max-width: 600px;
  margin: 0 auto;
}

.info-box2:hover {
  color: orange;               /* ← ホバー時はオレンジに！ */
}

.info-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.info-text {
  font-size: 1.7rem;
  line-height: 1;
}

.info-box3 {
  display: block;
  background-color: #3366cc;  /* 青系の色 */
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.info-box4 {
  display: block;
  background-color: #FFEB3A;  /* 黄色系の色 */
  color: black;
  text-align: center;
  padding: 15px;
  font-size: 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.info-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;              /* 小さくならないように */
}


.notice-wrapper {
  width: 95%;
  max-width: 800px;
  margin: 30px auto;
  font-size: 14px;
  line-height: 1.6;
  background-color: white; /* 全体は白背景 */
}

.notice-header {
  background-color: #e0efff;      /* 薄青背景 */
  color: #000033;                 /* 濃紺の文字色 */
  border: 2px solid #003366;      /* 紺の枠線はここだけ */
  padding: 8px 15px;
  font-weight: bold;
  font-size: 16px;
  width: 100;      /* 幅は文字幅に合わせて */
  margin: 0 auto 10px;     /* 横中央寄せ＆下に余白 */
  	
}

.notice-item {
  display: flex;
  align-items: flex-start; /* 上揃え */
  margin-bottom: 10px; /* 項目間のスペース */
  padding-top: 10px;	
}

.notice-item:last-child {
  border-bottom: none; /* 最後の項目の下線を消す */
}


.notice-date {
  width: 130px;           /* 日付の幅を固定 */
  flex-shrink: 0;         /* 縮まらないように */
  padding-right: 10px;    /* 右の余白 */
  white-space: nowrap;    /* 改行させない */
}

.notice-text {
  flex-grow: 1;           /* 残りの幅を全部使う */
}

.notice-text {
  flex: 1;
  color: #000;
}


.custom-line {
  border: none;
  border-top: 1px solid #000000; /* 黒い横線 */
  margin: 20px 0; /* 上下の余白はお好みで */
}

.sponsor-section {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}

.sponsor-section p {
　margin-top: 15px;	
  margin-bottom: 15px;
}

.sponsor-section strong {
  font-weight: bold;
  margin-bottom: 15px;  /* ← 下に5pxの余白 */	
}


.sponsor-row {
  display: flex;
  align-items: center;   /* ← 画像とテキストの高さ揃える */
  gap: 10px;
}

.logo {
  width: 130px;
  height: auto;
}

.indent {
  display: inline-block;
  text-indent: 30px; /* ← ここを調整。例：1em〜2em */
}

.accessibility-note {
  font-size: 12px;
}

.accessibility-note a {
  color: black;                 /* 文字色を黒に */
　text-decoration: none;	
}

.gray-title-box,
.gray-text {
  width: 100%;
  max-width: 900px;       /* #main に合わせて */
  margin: 0 auto;
  padding: 10px 20px;     /* ← 横の余白をそろえる！ */
  box-sizing: border-box;
}
.gray-title-box {
  background-color: #d9d9d9;
}

.table-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto; /* スマホ対応 */
}
.dataTable {
  width: 100%;
  table-layout: fixed; /* これもあると安定する */
}

h1 {
	background-color: #CFF;
	margin-top: 0px;
}
h2 {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #014fa0;
	color: #FFF;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	font-size: 120%;
	clear: both;
}
h2 .h2span {
	font-size: 80%;
}

h3 {
	font-size: 100%;
	color: #333;
	background-color: #f3f3f3;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #014fa0;
	padding-left: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #d6d6d6;
	margin-top: 1px;
	margin-bottom: 1px;

}
h4 {
	font-size: 90%;
	border-left-width: 10px;
	border-left-style: double;
	border-left-color: #014fa0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d6d6d6;
	background-color: #f3f3f3;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 10px;
	margin-bottom: 10px;
}

img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

p {
	font-size: 90%;
	line-height: 18px;
	color: #333;
	margin-left: 20px;
	margin-bottom: 1em;
}
li {
	list-style-type: none;
	font-size: 90%;
	line-height: 18px;
	color: #333;
}
a {
	color: #014fa0;
}

a:hover {
	color: #F69300;
}

#main #nav {
	margin-bottom: 20px;
}
#main #nav .navbtn {
	width: 645px;
	margin-right: auto;
	margin-left: auto;
}





#main div.erea p{
	text-align: center;
}
#main div.erea table {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	font-size: 80%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #CCC;
	margin-bottom: 20px;
}
#main div.erea table tr th {
	background-color: #d8fff2;
	color: #333;
}

#main div.erea table tr th, #main div.erea table tr td {
	padding: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #333;
}
#main div.erea table tr td a .btn {
	vertical-align: bottom;
}

#main div.erea table tr td.to_entry {
	text-align: center;
}


#main div.calendar p{
	text-align: center;
}
#main div.calendar table {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	font-size: 80%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #CCC;
	margin-bottom: 20px;
}
#main div.calendar table tr th {
	background-color: #d8fff2;
	color: #333;
}

#main div.calendar table tr th, #main div.calendar table tr td {
	padding: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #333;
	text-align: center;
	width: 14%;
}
#main div.calendar table tr td {
	vertical-align: top;
}

#main div.calendar table tr td .day {
	font-weight: bold;
}
#main div.calendar table tr td .sun {
	color: #F00;
}
#main div.calendar table tr td .sat {
	color: #06F;
}


#footer {
	padding: 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
}

#footer p {
	margin-right: auto;
	margin-left: 20px;
	width: 100%;
	font-weight: bold;
}

/* 申込フォーム */
#main p.entry_top {
	color: #000;
	text-align: center;
	margin-bottom: 5px;
}
#main .closing {
	font-size: 120%;
	font-weight: bold;
}
#main div.place {
	text-align: center;
	background-color: #CFF;
}
#main div.place h2{
	color: #333;
	font-size: 100%;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#main div.place p {
	color: #333;
	padding-bottom: 5px;
}
#main #mailform  table.mailform_t{
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	font-size: 90%;
}
#main #mailform table.mailform_t tr th {
	text-align: right;
}
#main #mailform table.mailform_t tr th, #main #mailform table.mailform_t tr td {
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
#main table.SSL   tr td{
	font-size: 90%;
	padding: 5px;
}
#main div.totop {
	margin-top: 10px;
	margin-bottom: 10px;

}
#main div.totop .btn_totop{
  background: #f2aab8;
  background-image: -webkit-linear-gradient(top, #f2aab8, #e85478);
  background-image: -moz-linear-gradient(top, #f2aab8, #e85478);
  background-image: -ms-linear-gradient(top, #f2aab8, #e85478);
  background-image: -o-linear-gradient(top, #f2aab8, #e85478);
  background-image: linear-gradient(to bottom, #f2aab8, #e85478);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #ffffff;
	font-size: 11px;
	text-decoration: none;
	text-align:center;
	padding-top: 8px;
	padding-right: 14px;
	padding-bottom: 8px;
	padding-left: 14px;
	float: right;
}
#main div.totop .btn_totop:hover{
  background: #e85478;
  background-image: -webkit-linear-gradient(top, #e85478, #f2aab8);
  background-image: -moz-linear-gradient(top, #e85478, #f2aab8);
  background-image: -ms-linear-gradient(top, #e85478, #f2aab8);
  background-image: -o-linear-gradient(top, #e85478, #f2aab8);
  background-image: linear-gradient(to bottom, #e85478, #f2aab8);
  text-decoration: none;
  color: #ffffff;  
}

th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center; /* ←これで文字を中央にする */
}

th:nth-child(6),
td:nth-child(6) {
  width: 120px;           /* 必要に応じて調整 */
  white-space: nowrap;    /* 折り返し防止 */
  text-align: center;
}

.end {
	color: #F00;
}

/* ==========▼ clearfix ▼========== */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  /**/
}
/* ==========▲ clearfix ▲========== */

/* ==========▼ button ▼========== */
/* メニューボタン */
.btn_menu{
  background: #f2aab8;
  background-image: -webkit-linear-gradient(top, #f2aab8, #e85478);
  background-image: -moz-linear-gradient(top, #f2aab8, #e85478);
  background-image: -ms-linear-gradient(top, #f2aab8, #e85478);
  background-image: -o-linear-gradient(top, #f2aab8, #e85478);
  background-image: linear-gradient(to bottom, #f2aab8, #e85478);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #ffffff;
	font-size: 14px;
	padding: 10px 10px 10px 10px;
	display: inline-block;
  margin: 0 auto;
  width: 50px;
  text-align: center;
}

.btn_menu:hover {
  background: #e85478;
  background-image: -webkit-linear-gradient(top, #e85478, #f2aab8);
  background-image: -moz-linear-gradient(top, #e85478, #f2aab8);
  background-image: -ms-linear-gradient(top, #e85478, #f2aab8);
  background-image: -o-linear-gradient(top, #e85478, #f2aab8);
  background-image: linear-gradient(to bottom, #e85478, #f2aab8);
  text-decoration: none;
  color: #ffffff;  
}
.btn_menu_cr{
  background: #f2aab8;
  background-image: -webkit-linear-gradient(top, #f2aab8, #e85478);
  background-image: -moz-linear-gradient(top, #f2aab8, #e85478);
  background-image: -ms-linear-gradient(top, #f2aab8, #e85478);
  background-image: -o-linear-gradient(top, #f2aab8, #e85478);
  background-image: linear-gradient(to bottom, #f2aab8, #e85478);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #FF0;
	font-size: 14px;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
	display:block;
	width:160px;
	margin-left:15px;
	text-align:center;
}
.btn_menu_cr:hover {
  background: #e85478;
  background-image: -webkit-linear-gradient(top, #e85478, #f2aab8);
  background-image: -moz-linear-gradient(top, #e85478, #f2aab8);
  background-image: -ms-linear-gradient(top, #e85478, #f2aab8);
  background-image: -o-linear-gradient(top, #e85478, #f2aab8);
  background-image: linear-gradient(to bottom, #e85478, #f2aab8);
  text-decoration: none;
  color: #FF0;  
}


.btn_menu2{
  background: #C0C0C0;
  background-image: -webkit-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -moz-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -ms-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -o-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: linear-gradient(to bottom, #C0C0C0, #C0C0C0);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #ffffff;
	font-size: 14px;
	padding: 10px 10px 10px 10px;
	display: inline-block;
  margin: 0 auto;
  width: 100px;
  text-align: center;
}

.btn_menu2:hover {
  background: #C0C0C0;
  background-image: -webkit-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -moz-linear-gradient(top, #C0C0C0, #f2aab8);
  background-image: -ms-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -o-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: linear-gradient(to bottom, #C0C0C0, #C0C0C0);
  text-decoration: none;
  color: #ffffff;  
}
.btn_menu2_cr{
  background: #C0C0C0;
  background-image: -webkit-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -moz-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -ms-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -o-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: linear-gradient(to bottom, #C0C0C0, #C0C0C0);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #FF0;
	font-size: 14px;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
	display:block;
	width:160px;
	margin-left:15px;
	text-align:center;
}
.btn_menu2_cr:hover {
  background: #e85478;
  background-image: -webkit-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -moz-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -ms-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: -o-linear-gradient(top, #C0C0C0, #C0C0C0);
  background-image: linear-gradient(to bottom, #C0C0C0, #C0C0C0);
  text-decoration: none;
  color: #FF0;  
}



/* 開催地エリア別リストページのボタン */
.btn_area{
  background: #f2aab8;
  background-image: -webkit-linear-gradient(top, #f2aab8, #e85478);
  background-image: -moz-linear-gradient(top, #f2aab8, #e85478);
  background-image: -ms-linear-gradient(top, #f2aab8, #e85478);
  background-image: -o-linear-gradient(top, #f2aab8, #e85478);
  background-image: linear-gradient(to bottom, #f2aab8, #e85478);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #ffffff;
	font-size: 11px;
	padding: 4px 12px;
	text-decoration: none;
	text-align:center;
}

.btn_area:hover {
  background: #e85478;
  background-image: -webkit-linear-gradient(top, #e85478, #f2aab8);
  background-image: -moz-linear-gradient(top, #e85478, #f2aab8);
  background-image: -ms-linear-gradient(top, #e85478, #f2aab8);
  background-image: -o-linear-gradient(top, #e85478, #f2aab8);
  background-image: linear-gradient(to bottom, #e85478, #f2aab8);
  text-decoration: none;
  color: #ffffff;  
}
/* 開催日カレンダーページのボタン */
.btn_calender{
  background: #f2aab8;
  background-image: -webkit-linear-gradient(top, #f2aab8, #e85478);
  background-image: -moz-linear-gradient(top, #f2aab8, #e85478);
  background-image: -ms-linear-gradient(top, #f2aab8, #e85478);
  background-image: -o-linear-gradient(top, #f2aab8, #e85478);
  background-image: linear-gradient(to bottom, #f2aab8, #e85478);
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
	border-radius: 10px;
	color: #ffffff;
	font-size: 11px;
	padding: 1px 10px;
	text-decoration: none;
	text-align:center;
}

.btn_calender:hover {
  background: #e85478;
  background-image: -webkit-linear-gradient(top, #e85478, #f2aab8);
  background-image: -moz-linear-gradient(top, #e85478, #f2aab8);
  background-image: -ms-linear-gradient(top, #e85478, #f2aab8);
  background-image: -o-linear-gradient(top, #e85478, #f2aab8);
  background-image: linear-gradient(to bottom, #e85478, #f2aab8);
  text-decoration: none;
  color: #ffffff;  
}
/* ==========▲ button ▲========== */
