@charset "utf-8";


.org {
	text-align: center;
}


/*1 左メニューのランダム団体エリア全体のデザイン */
/* ボタンを囲むコンテナの外枠（必要に応じて） */
#random-group-area {
    margin-top: 10px;
    padding: 0px 5px;
}


/* 各ボタンの間隔 */
.side-button-item {
    margin-bottom: 8px;
}

/* ボタン本体のデザイン */
.side-button {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 10px 5px;
    background-color: #ffffff; /* ボタンの背景色 */
    color: #333 !important;    /* 文字色 */
    border: 1px solid #ddd;    /* 枠線 */
    border-radius: 5px;        /* 角を少し丸く */
    font-size: 0.85em;
    transition: all 0.3s;     /* 変化を滑らかに */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* 軽い影で立体感を出す */
}

/* マウスを乗せた（ホバー）時の動き */
.side-button:hover {
    background-color: #58859a; /* ホバー時の背景色（オレンジ系） */
    color: #fff !important;    /* ホバー時の文字色 */
    border-color: #58859a;
    transform: translateY(-2px); /* 少し上に浮き上がる演出 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}



/*1 検索機能のデザイン */
/* 検索ボックス全体のコンテナ */
.search-custom-container {
    background: #ffffff;
    border: 1px solid #d1d9dd;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0 40px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.search-instruction {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    font-weight: bold;
}

/* 入力欄とボタンのグループ */
.search-input-group {
    display: flex;
    gap: 0;
}

/* 入力ボックス */
#searchInput {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #58859a;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    outline: none;
    transition: background 0.3s;
}

#searchInput:focus {
    background: #f0f7f9;
}

/*1 検索ボタン */
#searchBtn {
    background-color: #58859a;
    color: #fff;
    border: 2px solid #58859a;
    border-radius: 0 6px 6px 0;
    padding: 0 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* マウスオーバー時の色（少し明るくし、わずかに浮き上がらせる） */
#searchBtn:hover {
    background-color: #6b9fb7;
    border-color: #6b9fb7;
}

/* 検索結果のリスト表示 */
#searchResult li {
    padding: 20px;
    border-bottom: 1px solid #eef2f4;
    background: #fff;
    transition: background 0.2s;
}

#searchResult li:hover {
    background: #f9fbff;
}

#searchResult li a {
    text-decoration: none;
    color: #58859a; /* リンク色もテーマカラーに */
    font-size: 1.15em;
    font-weight: bold;
}

#searchResult li a:hover {
    color: #6b9fb7;
    text-decoration: underline;
}

/* キーワードタグの装飾 */
.tag-span {
    display: inline-block;
    background: #f0f4f7;
    color: #58859a;
    padding: 3px 10px;
    font-size: 0.75rem;
    margin-right: 5px;
    margin-top: 8px;
    border-radius: 4px;
    border: 1px solid #d1dee5;
}

/* 検索ヒット件数のメッセージ */
#statusMessage {
    margin-top: 20px;
    padding: 10px 15px;
    color: #58859a;
    font-weight: bold;
    font-size: 0.9rem;
}

/* スマホ対応 */
@media screen and (max-width: 800px) {
    .search-input-group {
        flex-direction: column;
        gap: 10px;
    }
    #searchInput {
        border-right: 2px solid #58859a;
        border-radius: 6px;
    }
    #searchBtn {
        border-radius: 6px;
        padding: 14px;
    }
}

/*1 テーブル全体のスタイル */
.table_01 {
  width: 90%;
  max-width: 600px;
  margin: 20px auto;     /* PCでの中央配置 */
  border-collapse: collapse;
  font-family: sans-serif;
}

.table_01 th, 
.table_01 td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: left;
}

.table_01 th {
  background-color: #eee;
  width: 30%;
}

.table_add_01 {
  max-width: 800px;
}

/*1 テーブル レスポンシブ対応（スマホ表示） --- */
@media screen and (max-width: 800px) {
  .table_01 {
    width: 95%;          /* スマホでの横幅を少し広げる */
	margin: 0 auto;
  }

  .table_01 tr, 
  .table_01 th, 
  .table_01 td {
    display: block;      /* 全て縦に並べる */
    width: 100%;         /* 親要素(.table_01)の幅いっぱいに広げる */
    box-sizing: border-box; /* 枠線を含めて100%にする設定（重要！） */
  }

  .table_01 th {
    border-bottom: none; 
    text-align: center;  /* スマホで見出しも中央にしたい場合は追加 */
  }
  
  .table_01 td {
    text-align: left;  /* 詳細テキストも中央にしたい場合は追加 */
  }
}


/*1 text*/
.red {
	font-weight: bold;
	color: #ff0000;
}

.right {
	text-align: right;
}

.list_font {
	font-size: 0.8rem !important;
}

/*1 LINE*/
.line_pc {
	display: block;
}

.line_sp {
	display: none;
}

/*1 margin*/
.margin_01 {
	margin-top: 60px;
}

/*1 icon-bg 設定。お知らせマーク*/
	#new dt span.icon-bg2 {
		border: transparent;	/*枠線を透明にする*/
		background: #336600;	/*背景色*/
		color: #fff;			/*文字色*/
	}

	#new dt span.icon-bg3 {
		border: transparent;	/*枠線を透明にする*/
		background: #FF3300;	/*背景色*/
		color: #fff;			/*文字色*/
	}

/*1 800px以下の場合*/
@media screen and (max-width: 800px) {
	.line_pc {
		display: none;
	}

	.line_sp {
		display: block;
	}
}

/*1スタッフ*/
.staff {
	font-size: 140%;
	text-align: center;
}

