@charset "utf-8";

/* html,bodyタグの設定 */
html, body{
    margin: 0;         /* 余白の削除 */
    padding: 0;        /* 余白の削除 */
    width:100%;
    height:100%;
    font-size:100%;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

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 {
}

/* ボタンの定義 */

.button {
  display       : inline-block;
  border-radius : 15%;          /* 角丸       */
  font-size     : 15pt;        /* 文字サイズ */
  text-decoration: none;       /* アンダーラインを消す */
  font-weight   : 900;         /* 太文字 */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 5px 5px;     /* 余白       */
  background    : #000066;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #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    : #C69CC5;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 2px solid #000066;    /* 枠の指定 */
  z-index       : 2;
}
.buttonr:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  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;
}

.flame09 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  background-color: #ffefd5;
  box-shadow: 0 0 5px 1.5px #a9a9a9;
}

.flame09b {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  background-color: #d5ffe2;
  box-shadow: 0 0 5px 1.5px #a9a9a9;
}

.flame09r {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  background-color: #ffd5d5;
  box-shadow: 0 0 5px 1.5px #a9a9a9;
}

.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; /* フェードイン・フェードアウトのアニメーションを追加 */
}