/*===============================================
●smart.css 画面の横幅が640px以上
===============================================*/
body {
	margin:10px 0 0;
	padding:0;
	background-color:#FFFFE7;
	font-size:100%;
	color:#000;
	text-align:center;
}
p.resizeimage  img { width: 100%; }

h1,h2,h3 {
	margin:0px;
	padding:0px;
}

/* google map */
.ggmap {
position: relative;
padding-bottom: 50%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* google カレンダー */
.cal_wrapper {
max-width: 800px;
min-width: 300px;
margin: 2.0833% auto;
}

.googlecal {
position: relative;
padding-bottom: 100%;
height: 0;
}

.googlecal iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

@media only screen and (min-width: 600px) {
.googlecal { padding-bottom: 100%; }
}

/* ブロック */
.container {
	width:800px;
	margin:0px auto;
	padding:0px;
	text-align:left;
	background-color:#FFFFE7;
}
.head {
	height:100px;
	background-image:url("bg_head_s.jpg");
	background-repeat:no-repeat;
}

/* ハンバーガーメニュー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}
/*.menu-btn:before {
    content: "メニュー";
    font-size: 2px;
    color: #FFFFFF;
    position: absolute;
    bottom: 0px;
}*/
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}


.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 5px 10px 0;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 0 15px 0 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}


.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}


#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 15px; /* メニューバー内側の余白(左に15px) */
   background-image:url("bg_side.jpg");/* メニュー項目の背景 */
   text-align: center;        /* メニューバー内の文字列の配置(中央寄せ) */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
   display: inline-block; /* ★横並びに配置する */
   list-style-type: none; /* ★リストの先頭記号を消す */
   position: relative;    /* ★サブメニュー表示の基準位置にする */
}
ul.ddmenu a {
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 15px;         /* メニュー項目のリンクの高さ(40px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight: normal;         /* 太字にする */
   display: block;            /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: #ffdddd; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
   color: #dd0000;            /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
   display: block;      /* ★マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
   margin: 0px;         /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;        /* ★サブメニュー内側の余白(ゼロ) */
   display: none;       /* ★標準では非表示にする */
   position: absolute;  /* ★絶対配置にする */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.ddmenu ul li {
   border-top: 1px solid pink; /* 項目上側の枠線(ピンク色で1pxの実線) */
}
ul.ddmenu ul li a {
   background-image:url("bg_side.jpg");/* メニュー項目の背景 */
   line-height: 20px;     /* サブメニュー1項目の高さ(35px) */
   text-align: left;      /* 文字列の配置(左寄せ) */
   padding-left: 0x;     /* 文字列前方の余白(5px) */
   font-weight: normal;   /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #ffff80; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
   color: #005500;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}

.side {
	float:left;
	width:130px;
	margin-top:0px;
	background-color: #FFFFE7;
}
.main {
	float:left;
	width:540px;
	color:#333333;
	background-image:url("bg_main.jpg");
	background-repeat:repeat-y;
}
.rside {
	float:right;
	width:130px;
	margin-top:0px;
	background-color: #FFFFE7;
}
.foot {
	clear:both;
	font-size:80%;
	text-align:center;
	padding:10px;
	background-color:#FFFFE7;
	border-top: 1px #75BC38 dotted;

}

.menu-btn {display: none;}

/* ホームページタイトル */
.pagetitle {
	font-size:150%;
	color:#FFFFFF;
	padding:10px 30px 0px;
}
.description {
	font-size:100%;
	color:#FFFFFF;
	padding:0px 30px;
}
.raiineria {
	font-size:70%;
	color:#FFFFFF;
	padding:0px 15px;
	text-align:right;
}

/* 見出し */
h2 {
	margin:10px 20px 10px 0;
	padding:12px 0 0 40px;
	height:35px;
	font-size:100%;
	color:#339933;
	background-image:url("bg_h.gif");
	background-repeat:no-repeat;
}

h3 {
	margin:10px 20px 5px 0;
	padding:10px 5px 0px 5px;
	height:40px;
	font-size:85%;
	color:#339933;
	background-image:url("bg2.gif");
	background-repeat:repeat;
}

h4 {
	margin:0px 20px 5px 0;
	padding:10px 5px 0px 5px;
	height:25px;
	width:110px;
	font-size:120%;
	color:#DC143C;
	background-image:url("bg3.gif");
}

h5 {
	margin:10px 20px 10px 0;
	padding:12px 0 0 40px;
	height:35px;
	font-size:120%;
	color:#DC143C;
	background-image:url("bg4.gif");
	background-repeat:no-repeat;
}

h6 {
	margin:10px 20px 5px 0;
	padding:10px 5px 0px 5px;
	height:35px;
	font-size:120%;
	color:#FF6437;
	background-image:url("bg5.gif");
}

h7 {
	margin:10px 20px 5px 0px;
	padding:5px 5px 5px 5px;
	height:35px;
	font-size:130%;
	color:#DC143C;
	background-image:url("bg3.gif");
}

h8 {
	margin:10px 20px 5px 0px;
	padding:5px 5px 5px 5px;
	height:35px;
	width:180px;
	font-size:85%;
	color:#DC143C;
	background-image:url("bg3.gif");
}

h9 {
	margin:10px 20px 5px 0;
	padding:0px 0px 0px 0px;
	height:45px;
	width:450px;
	font-size:130%;
	color:#339933;
	background-image:url("bg2.gif");
	background-repeat:repeat;
}

/* コンテンツエリア */
.body {
	margin:0 20px 10px 40px;
}
.main p {
	margin:0 20px 10px;
}
.main table {
	margin:0 0px 0px;
	padding:0px 0px 0px 0px;
}

/* サイドエリア */
.side-body {
	font-size:12px;
	color:#727272;
	padding:5px;
	text-align:left;
}
.side-bar {
	height:18px;
	background-image:url("bg_side.jpg");
	background-position:left center;
	background-repeat:no-repeat;
}
.side p {
	margin:0 0 5px;
	padding:0 5px;
}
.side img {
	margin:3px;
}
p.submenu {
	text-align:center;
	background-image:url("menubar.gif");
	font-size:13px;
	color:#727272;
	font-weight: bold;
	line-height:24px;
}
.side ul {
	list-style-type: none;
	margin: 2px 10px 2px 5px;
	padding: 0px;
	font-weight: bold;
	text-align: center;
}
.side li a {
	margin: 0;
	font-size: 12px;
	line-height: 15px;
}

/* 右サイドエリア */
.rside-body {
	font-size:12px;
	color:#727272;
	padding:5px;
	text-align:left;
}
.rside-bar {
	height:18px;
	background-image:url("bg_side.jpg");
	background-position:left center;
	background-repeat:no-repeat;
}
.rside p {
	margin:0 0 5px;
	padding:0 5px;
}
.rside img {
	margin:3px;
}
p.rsubmenu {
	text-align:center;
	background-image:url("menubar.gif");
	font-size:15px;
	color:#727272;
	font-weight: bold;
	line-height:24px;
}
.rside ul {
	list-style-type: none;
	margin: 2px 10px 2px 22px;
	padding: 0px;
	font-weight: bold;
	text-align: center;
}
.rside li a {
	margin: 0;
	font-size: 12px;
	line-height: 15px;
}

/* メニュー */
.menu ul {
	list-style-type: none;
	margin: 2px 10px 2px 22px;
	padding: 0px;
	font-weight: bold;
	text-align: center;
}
.menu li {
	float:left;
	list-style-type: none;
	padding: 0 10px;
	height: auto;
	border-right: 1px #FFFFE7 solid;
}
.menu li a {
	margin: 0;
	font-size: 12px;
	line-height: 28px;
}


/* メインエリアリンク */
.main a:link {
	color:#75BC38;
	text-decoration:none;
}
.main a:visited {
	color:#75BC38;
	text-decoration:none;
}
.main a:hover {
	color:#75BC38;
	text-decoration:underline;
}
.main a:active {
	color:#75BC38;
	text-decoration:none;
}

/* サイドエリアリンク */
.side a:link {
	color:#75BC38;
	text-decoration:none;
}
.side a:visited {
	color:#75BC38;
	text-decoration:none;
}
.side a:hover {
	color:#75BC38;
	text-decoration:underline;
}
.side a:active {
	color:#75BC38;
	text-decoration:none;
}


/* サイドエリアリンク */
.rside a:link {
	color:#75BC38;
	text-decoration:none;
}
.rside a:visited {
	color:#75BC38;
	text-decoration:none;
}
.rside a:hover {
	color:#75BC38;
	text-decoration:underline;
}
.rside a:active {
	color:#75BC38;
	text-decoration:none;
}

/* メニュー項目リンク */
.menu a:link {
	color:#FFFFE7;
	text-decoration:none;
}
.menu a:visited {
	color:#808000;
	text-decoration:none;
}
.menu a:hover {
	color:#FFA500;
	text-decoration:underline;
}
.menu a:active {
	color:#FFFFE7;
	text-decoration:none;
}

/* フッターリンク */
.foot a:link {
	color:#75BC38;
	text-decoration:none;
}
.foot a:visited {
	color:#75BC38;
	text-decoration:none;
}
.foot a:hover {
	color:#FFA500;
	text-decoration:underline;
}
.foot a:active {
	color:#75BC38;
	text-decoration:none;
}