@charset "utf-8";

/* html,bodyタグの設定 */
html, body{
    margin: 0;         /* 余白の削除 */
    padding: 0;        /* 余白の削除 */
    width:100%;
    height:100%;
    font-size:110%;
    text-align: center;
}

body {background-repeat: repeat;
  background-image: url(../images/bg-image.png);
  position:static;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px solid gray;
}

/* ヘッダーの固定 */
div#header-fixed
{
    position: fixed;            /* ヘッダーの固定 */
    top: 20px;                   /* 位置(上0px) */
    left: 0px;                  /* 位置(右0px) */
    width: 100%;                /* 横幅100%　*/
    height: 80px;              /* 縦幅100px */
    z-index       : 3;
background-color:rgba(255,255,255,0.5);
}

p { line-height: 130% ;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

/* ボタンの定義 */

.button {
  display       : inline-block;
  border-radius : 15%;          /* 角丸       */
  font-size     : 15pt;        /* 文字サイズ */
  text-decoration: none;       /* アンダーラインを消す */
  font-weight   : 900;         /* 太文字 */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 2px 2px;     /* 余白       */
  background    : #000066;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 3px 3px 2px #666666;  /* 影の設定 */
  border        : 2px solid #000066;    /* 枠の指定 */
  z-index       : 2;
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000066;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
  z-index       : 2;
}

.buttonr {
  display: inline-block;
  border-radius: 15%;
  font-size: 15pt;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  padding: 5px 5px;
  background: #f02bdf;
  color: #ffffff;
  line-height: 1em;
  transition: .3s;
  box-shadow: 6px 6px 3px #666666; /* 影の設定を修正 */
  border: 2px solid #000066;
  z-index: 2;
  vertical-align: middle;
}

.buttonr:hover {
  box-shadow: 0px 0px 0px #666666; /* カーソル時の影を修正 */
  color: #000066;
  background: #ffffff;
  z-index: 2;
}

.buttonrs {
  display: inline-block;
  border-radius: 15%;
  font-size: 10pt;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  padding: 5px 5px;
  background: #f02bdf;
  color: #ffffff;
  line-height: 9px;
  transition: .3s;
  box-shadow: 0px 0px 0px #666666; /* 影の設定を修正 */
  border: 2px solid #000066;
  z-index: 2;
  vertical-align: middle;
}

.buttonrs:hover {
  box-shadow: 0px 0px 0px #666666; /* カーソル時の影を修正 */
  color: #000066;
  background: #ffffff;
  z-index: 2;
}

.buttonb {
  display: inline-block;
  border-radius: 15%;
  font-size: 10pt;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  padding: 5px 5px;
  background: #005999;
  color: #ffffff;
  line-height: 9px;
  transition: .3s;
  box-shadow: 0px 0px 0px #666666; /* 影の設定を修正 */
  border: 2px solid #000066;
  z-index: 2;
  vertical-align: middle;
}

.buttonb:hover {
  box-shadow: 0px 0px 0px #666666; /* カーソル時の影を修正 */
  color: #000066;
  background: #ffffff;
  z-index: 2;
}

.buttong {
  display       : inline-block;
  border-radius : 15%;          /* 角丸       */
  font-size     : 15pt;        /* 文字サイズ */
  text-decoration: none;       /* アンダーラインを消す */
  font-weight   : 900;         /* 太文字 */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 5px 5px;     /* 余白       */
  background    : #aeffbd;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 2px solid #000066;    /* 枠の指定 */
  z-index       : 2;
}
.buttong:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000066;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
  z-index       : 2;
}

h1 {
  position: relative;
  color: #158b2b;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  margin: 1.5em 0;
  border: 0px solid gray;
  z-index       : 1;
  }

h1:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index       : 1;
}

.image-round1{
  width:150px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.image-round2{
  width:200px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.flame09 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  background-color: #ffefd5;
  box-shadow: 0 0 5px 1.5px #a9a9a9;
  line-height: 1.0;  /* 行間を設定 */
}

.flame09b {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  background-color: #d5ffe2;
  box-shadow: 0 0 5px 1.5px #a9a9a9;
  line-height: 1.0;  /* 行間を設定 */
}

.flame09r {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  background-color: #ffd5d5;
  box-shadow: 0 0 5px 1.5px #a9a9a9;
  line-height: 1.0;  /* 行間を設定 */
}

.menu-tbl {width: 90%;
  background-color: #e6e6fa;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid gray; }

.menu-tbl-td {
  background-color: #e6e6fa;
  text-align    : center;      /* 文字位置   */
  margin-left: auto;
  margin-right: auto;
  border: 1px solid gray; }

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

#scrollTopButton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: opacity 0.3s ease; /* フェードイン・フェードアウトのアニメーションを追加 */
}

.table-container {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border: 0; /* 枠のスタイルと色を指定 */
    border-collapse: collapse; /* セルの境界線を重ねる */
  }
.table-container table {
    width: 100%;
    font-size: 100%;
    border-collapse: collapse;
  }
.table-container tr {
    border: 0;
    padding: 1px 30px 1px; /* 上下のスペースを狭くする */
  }

.cell-aka {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 90%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #FFBEDA;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
  }

.cell-ao {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 90%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #C2EEFF;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
  }

.cell-ki {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 90%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #EDFFBE;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
  }

.cell-siro {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 90%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #DDDDDD;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
    line-height: 1; /* 行間を狭くするための設定 */
  }

.cell-aka-list {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 60%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #FFBEDA;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
    line-height: 1; /* 行間を狭くするための設定 */
  }

.cell-ao-list {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 60%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #C2EEFF;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
    line-height: 1; /* 行間を狭くするための設定 */
  }

.cell-ki-list {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 60%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #EDFFBE;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
    line-height: 1; /* 行間を狭くするための設定 */
  }

.cell-siro-list {
    text-align: left; /* ボタンを左するためのスタイル */
    font-size: 60%;
    padding-left: 10px;
    border: 0; /* 最初のセルの右側の境界線を消す */
    background-color: #DDDDDD;
    box-shadow: 0 0 5px 1.5px #a9a9a9;
    line-height: 1; /* 行間を狭くするための設定 */
  }

.fixed-width-container {
    width: 500px; /* 固定幅を指定 */
    overflow: hidden; /* 文字のはみ出しを隠す */
    white-space: nowrap; /* テキストを折り返しせずに表示 */
    border: 1px solid #ccc; /* ボーダーを付ける */
    padding: 5px; /* 内側の余白を指定 */
    }

.action-button {
    padding: 3px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
.action-button:hover {
    background-color: #45a049;
  }

.image-map{
border: double 5px #000000;
}



/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.color-theme, .color-theme a {color: #33b50b !important;}
