@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #FFF;	/*背景色*/
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}

ul{
	list-style-type: none;
}

img {
	border: none;
}

input,textarea,select {
	font-size: 1em;
}

form {
	margin: 0px;
}

table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

.under {
  background: linear-gradient(transparent 50%,#ffff00 50%);
  }

section.voice {
background-image: url("../images/voice01.png");
background-size: cover;
}

section.voice02 {
background-image: url("../images/voice02.png");
background-size: cover;
}


/*トップに戻るボタン
---------------------------------------------------------------------------*/
.back-to-top {
  display: none;
  position: fixed;
  opacity: 0.5;
  right: 5%;
  bottom: 0%;
  color: #fff;
  padding: 2rem;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  z-index: 5;
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #666;
  border-radius: 50%;
  z-index: -1;
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #00B593;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 977px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 95px;	/*ブロックの高さ*/
	background: url(../images/zensin.gif) no-repeat right bottom;	/*背景画像の読み込み＆リピートしない＆右側下部に配置*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #00B593;			/*文字色*/
	text-align: right;		/*右寄せ*/
	font-weight: normal;
}
header h1 a, header h1 a:hover {
	color: #00B593;
	text-decoration: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: -5px;	/*ヘッダーブロックに対して左から-5pxの場所に配置*/
	top: -5px;	/*ヘッダーブロックに対して上から-5pxの場所に配置*/
}


/*電話とメール固定表示*/
.tel
    {    
    position: fixed;
    z-index: 2; 
    top: 16px;
    right: 202px;
    }
.tel a
    {
    display: block;
    text-decoration: none;
    width: 100%;
    } 
.tel a img
    {
    border-radius: 5px 5px 5px 5px;
    } 
.tel:hover
{
    opacity: 0.75 ;
}

.mail
    {
    position: fixed;
    z-index: 3; 
    top: 16px;
    right: 20px;
    }
.mail a
    {
    display: block;
    text-decoration: none;
    width: 100%;
    } 
.mail a img
    {
    border-radius: 5px 5px 5px 5px;
    } 
.mail:hover
{
    opacity: 0.75 ;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav {
  width: 100%;
}

/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	border-top: 4px solid rgba(0,0,0,0);	/*上の線の幅、線種、色。rgbaはRGBカラー(0,0,0は黒)に透明度(0は0％の事、1で100%の事になります。)を追加しています。*/
	margin-left: 1px;
}
nav#menubar ul li a {
	color: #000;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	height: 40px;  /*メニュー高さ*/
        width: 162px;	/*メニュー幅*/
	text-align: center;
	padding: 5px 0px;
        position: relative;
}
nav#menubar ul li ::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  bottom: 5px; /*アンダーバーが位置する、各リストの下端からの高さ*/
  left: 0;/*アンダーバーを各リストの左端に指定*/
  content: ''; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーバーなので何も記載しない*/
  width: 100%; /*アンダーバーの幅は各リストの幅*/
  height: 4px; /*アンダーバーの高さ（太さ）*/
  background: #00B593; /*アンダーバーの色*/
  transform: scale(0, 1);/*アンダーバーの縮尺比率。ホバー前はx方向に0*/
  transform-origin: center top;/*変形（アンダーバーの伸長）の原点を、liの真ん中指定*/
  transition: transform 0.75s;/*変形の時間*/
}

/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover:after {
  transform: scale(1, 1);/*ホバー後、x軸方向に1伸長*/
}

/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	border-top: 5px solid #00B593;	/*上の線の幅、線種、色*/
}
nav#menubar ul li#current a {
	color: #00B593;	/*文字色*/
}

/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 977px;
	height: 260px;
	position: relative;
        z-index: 1;
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:3;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image2 {
	z-Index:2;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image3 {
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	padding-top: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*左側に回り込み*/
	width: 710px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	background-color: #2b2c2e;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#454746, #2b2c2e);	/*同上*/
	background-image: linear-gradient(#454746, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom: 5px solid #00B593;	/*下側の線の幅、線種、色*/
        border-radius: 5px 5px 5px 5px;

}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	clear: both;
	font-size: 100%;
	padding: 4px 10px 4px 15px;	/*左から、上、右、下、左側への余白*/
	color: #548b18;	/*文字色*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
	border-bottom: 5px solid #00B593;	/*下側の線の幅、線種、色*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
#main h5 {
  font-size: 16px;
  position: relative;
  padding: 0.5em 4em;
  text-align: center;
  display: inline;
}

#main h5:before,
#main h5:after {
  position: absolute;
  content: '';
}

#main h5:after {
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

#main h5:before {
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

/* マーカー*/
.marker {
  background:linear-gradient(transparent 50%, rgba(255, 220, 123) 50%);
  display: inline;

  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition:background-size 3s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}


.press{
  overflow-y: scroll;
  /*縦方向はスクロール可*/
  overflow-x: hidden;
  /*横方向はスクロール不可*/ 
  height:100px; 
}


#main h6 {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 3px 10px;
  margin-top: 0em;
  margin-bottom: 1em;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #000;
  }

p {
  font-size: 0.875rem;
  border-radius: 10px 10px 10px 10px;
}

.marker-text {
  position: relative;
}
.marker-text span {
  position: relative;
  z-index: 2;
}
.marker-text:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0%;
  height: 10px;
  background: rgba(255, 220, 123, .8);
  z-index: 1;
  transition: all 2s;
}
.marker-text.isActive:after {
  width: 100%;
}

#main h7 {
  position: relative;
  padding: 1rem 1rem 1rem 1rem;
  background: #00B593;
  color: #fff
}
h7:before {
  position: absolute;
  top: -7px;
  left: 3px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #333;
}


/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

#main aside img{
        border-radius: 5px 5px 5px 5px;
}

#main div img{
        border-radius: 5px 5px 5px 5px;
}

#message {
height: 200px;
display: flex;
justify-content: space-evenly;
margin:10px ;
}
#message p img {
display: none;
}
#message a.btn {
display: block;
position: absolute;
top:0;
left:0;
right:0;
bottom: 0
}
#message .mu {
width: 45%;
position: relative
}
#message .mu img {
width: 100%;
height: auto
}
#message .mu h4 {
margin-bottom: 1em;
font-size: 14px;
text-align: left;
font-weight: normal
}
#message .mu small {
display: block
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
        float: left;	/*左側に回り込み*/
	width: 250px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	color: #FFF;	/*文字色*/
	font-size: 100%;
	padding: 5px 40px 5px 10px;	/*左から、上、右、下、左への余白*/
	background-color: #00B593;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg_mark.png), -webkit-gradient(linear, left top, left bottom, from(#00B593), to(#00E5BB));	/*グラデーション*/
	background-image: url(../images/bg_mark.png), -webkit-linear-gradient(#00B593, #00E5BB);	/*同上*/
	background-image: url(../images/bg_mark.png), linear-gradient(#00B593, #00E5BB);
	background-repeat: no-repeat;
	background-position: 95% center;
	border-top: 1px solid #6cb31f;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #457414;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #457414;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #6cb31f;		/*左側の線の幅、線種、色*/
        border-radius: 5px 5px 5px 5px;
}

.moji{
text-decoration: underline;
text-decoration-color: #00B593;
font-size:125%;
text-align:center;
font-weight:bold;
}

#sub a img
{
    border-radius: 5px 5px 5px 5px;
}
#sub a img:hover
{
    opacity: 0.75 ;
}

.box {
  opacity: 0.5;
  visibility: hidden;
  transition: all 2s;
  transform: translateY(150px);
}
.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*ツールチップ*/
.tooltip { /* 補足説明するテキストのスタイル */
  position: relative;
  cursor: pointer;
  padding: 0 5px;
  font-size: 1em;
  color: #4682b4;
}
 
.balloon_right { /* ツールチップのスタイル */
  width: 60px; /* 横幅 */
  position: absolute;
  top: 50%;
  left: 40%; /* X軸の位置 */
  transform: translateY(-50%);
  margin-left: 5px; /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px; /* 角の丸み */
  background-color: #666;
  font-size: 0.7em;
  color: #fff;
  text-align: center;
  visibility: hidden; /* ツールチップを非表示に */
  opacity: 0; /*不透明度を0％に */
  z-index: 1;
  transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
}
 
.balloon_right::before { /* 吹き出しの「しっぽ」のスタイル */
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 12px solid #666; /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  top: 50%;
  right: 99%;
  transform: translateY(-50%);
}
 
.tooltip:hover .balloon_right { /* マウスオーバー時のスタイル */
  left: 100%; /* X軸の位置 */
  visibility: visible; /* ツールチップを表示 */
  opacity: 1; /* 不透明度を100％に */
}

.btn2{
  max-width: 100%;
  border: 1px solid #666;
  border-radius: 5px 5px 5px 5px;
  padding: 10px;
  margin-bottom: 1em;
  aspect-ratio: 5 / 1;
}

.btn_link {
  display: block;
  max-width: 100%;
  height: 10;
  background: #9595f9;
  border: 1px solid #9595f9;
  border-radius: 25px;
  padding: 10px;
  text-align: center;
  color: #fff;
  margin-bottom: 1em;
}
.btn_link a {
    color: #fff;
    text-decoration: none;
}
.btn_link:hover {
    opacity: 0.75 ;
}



#insta{
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 2px auto;
    border: 1px solid #666;
    border-radius: 5px 5px 5px 5px;
    padding: 10px;
    margin-bottom: 1em;

    & a{
        text-decoration: none;
    }

    & ul{
        box-sizing: border-box;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-evenly;
        gap: 5%;
    }

        & li{
            position: relative;
            width: calc((100% - 40px)/2);

            & img{
                object-fit: contain;
                width: 100%;
                border-radius: 0px;
                 }
            }
    }
}
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	padding-left:10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-bottom: 1px dashed #666;	/*下の線の幅、線種、色*/
	color: #FFF;		/*文字色*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 ul li a {
	background: transparent;
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background: #FFF;	/*背景色*/
	color: #00B593;		/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	color: #000;		/*文字色*/
	padding: 15px;		/*ボックス内の余白*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	background: #FFF
}
#sub .box1 a {
	color: #666;	/*文字色*/
}

.insta_btn {
    background-color: #333;
    width: 100%;
}
.insta_btn a {
    color: #fff;
    text-decoration: none;
}
.insta_btn:hover {
    background-color: #666;
}


.btnmove {
    animation: move 2.5s infinite ease-in-out;
}

@keyframes move {
    0%, 100% {
        transform: translateY(5);
    }
    50% {
        transform: translateY(-5px);
    }
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
        width: 100%;
        padding: 0 10%;
        margin: 0 -10%;
        text-align: center;
        background-color: #EBEAE4;
	padding-top: 15px;
	padding-bottom: 15px;
        bottom: 0; /*下に固定*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}
.flex{
    display: flex;
    flex-wrap: wrap;
    border: none;
}
.flex div{
    box-sizing: border-box;
    padding: 2px 10px;
    border: none
}
.flex1 {
    width: 300px;
}
.flex2 {
    width: calc((100% - 300px) / 3) ;
}

.foot_p {
      text-align: left;
      font-size: 14px;
      margin-bottom: -0.6em;
    }

@media screen and (max-width: 800px){
.flex1 {
    width: 100%;
    }
.flex2 {
    width: 100%;
    }
.foot_p {
      text-align: center;
    }
}


/*menu内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	height: 400px;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 23px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 10px 1em;
	border: 1px solid #CCC;
	position: relative;
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #548b18;	/*文字色*/
	border-left: none;
	border-bottom: 2px dotted #548b18;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}
/*menu内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*トップページ内「info:更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
        margin: 5px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 70%;
	padding: 10px;
}
.ta1 td img.wa{
	height: auto;
	width: 100%;
}
/*テーブル内の左側・見出し部分*/
.ta1 th{
	width: 30%;
	padding: 10px;
	text-align: center;
	background-color: #e5e5e5;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;
	border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb1em,
.mb15 {
	margin-bottom: 1em;
}
.pt15 {
	padding-top: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}
img.fl {
	margin: 0px 10px 10px 0px;
	float: left;
}
img.fr {
	margin: 0px 0px 10px 10px;
	float: left;
}
img.wa {
	max-width: 100%;
	height: auto;
}



/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
        width: 100%;	/*ブロックの幅*/
	}
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo img {
	width: 80%;	/*画面に対して60％の幅に*/
	height: auto;
}

/*ボディー
---------------------------------------------------------------------------*/
body {
            width: 80%;	/*ブロックの幅*/
	    margin-left: auto;
            margin-right: auto;
            }

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 49%;
	margin: 0 0 5px 1%;
	border: 1px solid #666;
	box-sizing: border-box;
}
nav#menubar ul li a {
	width: auto;
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	box-sizing: border-box;
	border: 1px solid #00B593;
}
/*奇数番目のメニューの設定*/
nav#menubar li:nth-child(odd) {
	width: 50%;
	margin: 0;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

#main section.blocktext {
        text-align: center;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	width: 46%;
	box-sizing: border-box;
}
#main section.list figure img {
	height: auto;
	width: 100%;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;
	margin-right: 6px;
	margin-left: 6px;
}
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo img {
	width: 65%;	/*画面に対して60％の幅に*/
	height: auto;
}

/*ボディー
---------------------------------------------------------------------------*/
body {
            width: 80%;	/*ブロックの幅*/
	    margin-left: auto;
            margin-right: auto;
            }

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 49%;
	margin: 0 0 5px 1%;
	border: 1px solid #000;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
nav#menubar ul li a {
	width: auto;
}
/*現在表示中メニュー。current*/
nav#menubar ul li#current {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #00B593;
}
/*奇数番目のメニューの設定*/
nav#menubar li:nth-child(odd) {
	width: 50%;
	margin: 0;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	overflow: hidden;
}

#main section.blocktext {
        text-align: center;
}

#main p {
	padding: 5;
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	height: auto;
	width: 100%;
	margin: 0px 0px 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#main section.list figure img {
	height: auto;
	width: 100%;
}
/*menu内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 0px;
	padding-bottom: 10px;
	text-align: left;
}
ul.navmenu li {
	display: block;
}

/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: fixed;
	top: 50px;
	right: 20px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 5px 5px 5px 5px;
        opacity: 0.5
}