@charset "utf-8";


/*-------------------------------------------------------------------------------*/
/*ボディ共通*/
/*-------------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #eee url(../images/backcolor.png);	/*背景色、背景画像の読み込み*/
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
}
ul {list-style-type: none;}
img {border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;}
table {
    border-collapse:collapse;
    font-size: 100%;
    border-spacing: 0;}
a {
    color: #666;	/*リンクテキストの色*/
    transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
    color: #524831;			/*マウスオン時の文字色*/
    text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
    
/*-------------------------------------------------------------------------------*/
/*メインブロック*/
/*-------------------------------------------------------------------------------*/
#mainbloc {
	border-top: 5px solid #524831;	/*上の線の幅、線種、色*/
	margin: 0 auto;
    max-width: 1200px;	
    min-width: 375px;
	background: #fff;	/*背景色*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);	/*ボックスの影。右に、下に、広げる幅。0,0,0は黒の事で0.2は透明度20%の事。*/
}

/*-------------------------------------------------------------------------------*/
/*ヘッダーブロック*/
/*-------------------------------------------------------------------------------*/
header {
	overflow: hidden;
	height: 100px;	/*ブロックの高さ*/
}
/*-------------------------------------------------------------------------------*/
/*ロゴ画像*/
/*-------------------------------------------------------------------------------*/
header #logo img {
    width: 550px;
    height: 75px;	
	float: left;	
	margin-top: 20px;	
	margin-left: 4%;	
}

header #freetel a {
    pointer-events:none;
}

header #freetel img {
    height: 30px;	
	float: right;	
	margin-top: 60px;	
	margin-right: 10px;	
}

/*-------------------------------------------------------------------------------*/
/*コンテンツ*/
/*-------------------------------------------------------------------------------*/
#contents {
	clear: both;overflow: hidden;
	padding: 3%;	/*ボックス内の余白*/
}

/*-------------------------------------------------------------------------------*/
/*メニューブロック*/
/*-------------------------------------------------------------------------------*/
#menubarmax {
	overflow: hidden;
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubarmax li {
	float: left;	/*左に回り込み*/
	line-height: 1.6;	/*行間*/
	width: 20%;	/*幅*/
    background-color: white;
}
#menubarmax li a {
    display:  block;
    text-decoration: none;
	position: relative;
	text-align: center;	/*文字をセンタリング*/
	padding: 12px 0px;	/*上下、左右へのボックス内の余白*/
	border-left: 1px solid #d2d2d2;	/*左側の線の幅、線種、色*/
	font-weight: bold;	/*太字にする設定*/
}
/*１つ目のメニューへの追加設定*/
#menubarmax li:first-child {
	width: 20%;	
}
#menubarmax li:first-child a {
	border-left: none;	/*左側の線を消す設定*/
}
/*英語表記（飾り文字）*/
#menubarmax li a span {
	display: block;
	font-size: 9px;	/*文字サイズ*/
	color: #bababa;	/*文字色*/
	font-weight: normal;	/*太字を標準に戻す設定*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする設定*/
}
/*マウスオン時と、現在表示中メニューの設定*/
#menubarmax li a:hover, #menubarmax li.menu a {
    background: #e5e4e0;	/*背景色*/
    cursor: pointer;
}
/*左側のアクセントライン*/
#menubarmax li a:hover::before, #menubarmax li.menu a::before {
	content: "";
	position: absolute;
	left: 5px;
	width: 3px;
	height: 40px;
	background: linear-gradient(#9d8a5e, #524831);	/*グラデーション*/
}
/*スマホ用メニューを表示させない*/
#menubarmin {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}


/*fixmenuブロック*/
body.menufixed .nav-menu {
	width: 100%;
        z-index: 20;
        position: fixed;
        top: 105px;
        max-width: 1200px;
}
/*headerブロック*/
body.menufixed header {
    /*margin-bottom: 95px;	/*メインメニューのheight(75)とmargin-bottom(20)を足した数字にする*/
    position: fixed;
    z-index: 20;
    width: 100%;
    max-width: 1200px;
    top:0px;
    background-color: white;
    overflow: hidden;
    border-top: 5px solid #524831;	/*上の線の幅、線種、色*/
}
/*最初のメニューへの追加設定*/
body.menufixed #menubarmax li:first-child a {
	border-left: none;
	border-radius: 0px 0px 0px 10px;
}
/*最後のメニューへの追加設定*/
body.menufixed #menubarmax li:last-child a {
	border-radius: 0px 0px 10px 0px;
}
     
/*-------------------------------------------------------------------------------*/
/*スライドショー*/
/*-------------------------------------------------------------------------------*/
/*１枚目*/
@keyframes slide1 {
	0% {opacity: 0;}
	5% {opacity: 0;}
	10% {opacity: 1;}
	15% {opacity: 1;}
	20% {opacity: 1;}
	25% {opacity: 0;}
	100% {opacity: 0;}
}
/*２枚目*/
@keyframes slide2 {
	0% {opacity: 0;}
	15% {opacity: 0;}
	25% {opacity: 1;}
	30% {opacity: 1;}
	35% {opacity: 1;}
	40% {opacity: 0;}
	100% {opacity: 0;}
}
/*３枚目*/
@keyframes slide3 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	35% {opacity: 1;}
	40% {opacity: 1;}
	45% {opacity: 1;}
	50% {opacity: 1;}
	55% {opacity: 0;}
	100% {opacity: 0;}
}
/*４枚目*/
@keyframes slide4 {
	0% {opacity: 0;}
	45% {opacity: 0;}
	50% {opacity: 1;}
	55% {opacity: 1;}
	60% {opacity: 1;}
	65% {opacity: 1;}
	70% {opacity: 0;}
	100% {opacity: 0;}
}
/*５枚目*/
@keyframes slide5 {
	0% {opacity: 0;}
	60% {opacity: 0;}
	65% {opacity: 1;}
	70% {opacity: 1;}
	75% {opacity: 1;}
	80% {opacity: 1;}
	85% {opacity: 0;}
	100% {opacity: 0;}
}
/*６枚目*/
@keyframes slide6 {
	0% {opacity: 0;}
	75% {opacity: 0;}
	80% {opacity: 1;}
	85% {opacity: 1;}
	90% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}

/*-------------------------------------------------------------------------------*/
/*メインイメージ設定*/
/*-------------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
	clear: left;
	width: 100%;
	margin: 0 auto;
    position: relative;
    /*position: static;*/
}
/*３枚画像の共通設定*/
.slide1,.slide2,.slide3,.slide4,.slide5,.slide6 {
	animation-duration: 40s;
	animation-iteration-count:infinite;
    position: absolute;
    left:0px;
    top:0px;
    width: 100%;
    height: auto;
	animation-fill-mode: both;
    animation-delay: 2s;
    padding-top: 164px;
}
/*土台画像*/
.slide0 {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 164px;
}
/*１枚目*/
.slide1 {
	animation-name: slide1;
}
/*２枚目*/
.slide2 {
	animation-name: slide2;
}
/*３枚目*/
.slide3 {
	animation-name: slide3;
}
/*４枚目*/
.slide4 {
	animation-name: slide4;
}
/*５枚目*/
.slide5 {
	animation-name: slide5;
}
/*６枚目*/
.slide6 {
	animation-name: slide6;
}


/*-------------------------------------------------------------------------------*/
/*mainコンテンツ*/
/*-------------------------------------------------------------------------------*/
#main {
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
}
/*１カラム利用時の設定*/
.c1 #main {
	float: none;
	width: auto;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	padding: 5px 20px;		/*上下、左右への余白*/
	background: #524831;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#7a6b49, #524831);			/*グラデーション*/
	box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	color: #FFF;		/*文字色*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*h2タグの１文字目の設定*/
#main h2::first-letter {
	border-left: 3px solid rgba(255,255,255,0.5);	/*左側の線の幅、線種、色。255,255,255は白の事で0.5は透明度50%の事。*/
	padding-left: 20px;	/*線とテキストとの余白*/
}
/*h3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	padding: 6px 20px;		/*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
}

#main .ceoname {
	text-align: end;
}
/*-------------------------------------------------------------------------------*/
/*テーブル（table1）*/
/*-------------------------------------------------------------------------------*/
.table1 {
	width: 100%;
	margin: 0 auto 20px;
}
.table1, .table1 td, .table1 th {
	border-bottom: 1px dashed #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
.table1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*-------------------------------------------------------------------------------*/
/*ボックス（list）設定*/
/*-------------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .llist {
	position: relative;overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白。変更する際は、下の「#main .list a」のmarginとpaddingの数字も変更する。*/
	background: linear-gradient(#FFF, #eee);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc;	/*影の設定。右・下・ぼかし幅・色の設定*/
}
#main .llist div {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白。変更する際は、上の「#main .list」のpaddingの数字も変更する。※必ずマイナス記号をつけておく。*/
	padding: 20px;	/*ボックス内の余白。変更する際は、上の「#main .list」のpaddingの数字も変更する。*/
	/*background: linear-gradient(#FFF, #eee);*/	/*グラデーション*/
}
/*ボックス内の画像ボックス設定*/
#main .llist .ldivimg {
	width: 30%;	/*画像の幅*/
	float: left;
	margin-right: 10px;
}
/*ボックス内の画像設定*/
#main .llist .img {
	/*width: 30%;*/	/*画像の幅*/
	/*float: left;*/
	margin-bottom : 15px;
}
/*ボックス内のh4（見出し）タグ設定*/
#main .llist h4 {
	font-size: 18px;	/*文字サイズ*/
	color: #524831;		/*文字色*/
}
/*ボックス内のp（段落）タグ設定*/
#main .llist p {
	padding: 0;
}

#main .rlist {
	position: relative;overflow: hidden;
	margin-bottom: 20px;	/*ボックス同士の上下間の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白。変更する際は、下の「#main .list a」のmarginとpaddingの数字も変更する。*/
	background: linear-gradient(#FFF, #eee);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc;	/*影の設定。右・下・ぼかし幅・色の設定*/
}
#main .rlist div {
	overflow: hidden;display: block;text-decoration: none;
	margin: -20px;	/*ボックス内の余白。変更する際は、上の「#main .list」のpaddingの数字も変更する。※必ずマイナス記号をつけておく。*/
	padding: 20px;	/*ボックス内の余白。変更する際は、上の「#main .list」のpaddingの数字も変更する。*/
	/*background: linear-gradient(#FFF, #eee);*/	/*グラデーション*/
}
/*ボックス内の画像ボックス設定*/
#main .rlist .rdivimg {
	width: 30%;	/*画像の幅*/
    margin-left: 10px;
    float: right;
}
/*ボックス内の画像設定*/
#main .rlist .img {
	/*width: 30%;*/	/*画像の幅*/
    margin-bottom: 15px;
    /*float: right;*/
}
/*ボックス内のh4（見出し）タグ設定*/
#main .rlist h4 {
	width: 100%;
	font-size: 18px;	/*文字サイズ*/
	float: left;
	color: #524831;		/*文字色*/
}
/*ボックス内のp（段落）タグ設定*/
#main .rlist p {
    padding: 0;
}

/*-------------------------------------------------------------------------------*/
/*問い合わせ*/
/*-------------------------------------------------------------------------------*/
#contact {
    padding-top: 120px;
}
/*テーブル（conttbl）*/
.conttbl {
	width: 95%;
	margin: 0 auto 20px;
}
.conttbl, .conttbl td, .conttbl th {
	border-bottom: 1px dashed #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
    word-break: break-all;
    text-align: left;
}
.conttbl th {
	width: 200px;	/*幅*/
    padding-left: 20px;
	font-weight: normal;
}

.contname, .contkana, .contmail, .conttel, .contnaiyo {
    width: 500px;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}

.contnaiyo {
    font-size: 16px;
    height: 250px;
}

#mailchack{
    text-align: center;
}
.btnmailchack{
    text-align: center;
    font-size: 15px;
    padding: 10px;
}
#mail_submit{
    text-align: center;
    font-size: 15px;
    padding: 10px;
    margin-right: 50px;
}
#mail_back{
    text-align: center;
    font-size: 15px;
    padding: 10px;
    margin-left: 50px;
}

/*-------------------------------------------------------------------------------*/
/*マップ設定*/
/*-------------------------------------------------------------------------------*/
.accessmap {
    width: 100%;
    height: 400px;
}
.accessinfo{
    text-align: center;
}
.accessinfo p, .accessinfo h4 .accessinfo a{
    padding-top: 0px;
    padding-bottom: 0px;
}
.accessinfo h4{
    font-size: 20px;
}

.accessinfo a{
    pointer-events:none;
}

/*-------------------------------------------------------------------------------*/
/*画面幅800px以下の設定*/
/*-------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

    header #logo img {
        width: 300px;	/*画像幅*/
        height: 50px;
        margin-top: 40px;	/*上下のバランスをとって下さい*/
    }

    header #freetel img {
        height: 25px;
        margin-top: 60px;	/*上下のバランスをとって下さい*/
        padding-right: 100px;
    }

    /*コンテンツ（mainとsubを囲むブロック）
    ---------------------------------------------------------------------------*/
    #contents {
        padding: 0 3%;	/*ボックス内の余白。上下、左右。*/
    }
    
    /*メインメニュー
    ---------------------------------------------------------------------------*/
    /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
    @keyframes menu1 {
    0% {opacity: 0;}
    100% {opacity: 1;}
    }
    /*スマホ用メニューブロック*/
    #menubarmin {
        display: block;overflow: hidden;
        position:fixed;
        top: 105px;	/*上から105pxの場所に配置*/
        border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
        width: 100%;
        z-index: 10;
        animation-name: menu1;		/*上のkeyframesの名前*/
        animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
        animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
    }
    /*メニュー１個あたりの設定*/
    #menubarmin li a {
        display: block;text-decoration: none;
        padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
        border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
        background: #000;	/*背景色*/
        background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は透明度80%の事。*/
        color: #fff;	/*文字色*/
        font-size: 20px;	/*文字サイズ*/
    }
    /*英語表記（飾り文字）*/
    #menubarmin li a span {
        display: block;
        font-size: 12px;	/*文字サイズ*/
    }
    /*PC用メニューを非表示にする*/
    #menubarmax {
        display: none;
    }
    
    /*３本バーアイコン設定
    ---------------------------------------------------------------------------*/
    /*３本バーブロック*/
    #menubar_hdr {
        display: block;
        /*position: absolute;*/
        position: fixed;
        z-index: 30;
        top: 28px;	/*上から28pxの場所に配置*/
        right: 3%;	/*右から3%の場所に配置*/
        border: 1px solid #000;	/*枠線の幅、線種、色*/
    }
    /*アイコン共通設定*/
    #menubar_hdr.close,
    #menubar_hdr.open {
        width: 50px;	/*幅*/
        height: 50px;	/*高さ*/
    }
    /*三本バーアイコン*/
    #menubar_hdr.close {
        background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
    }
    /*閉じるアイコン*/
    #menubar_hdr.open {
        background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
    }
        
    /*-------------------------------------------------------------------------------*/
    /*スライドショー*/
    /*-------------------------------------------------------------------------------*/
    .slide0,.slide1,.slide2,.slide3,.slide4,.slide5,.slide6 {
        padding-top: 105px;
    }
    
    /*-------------------------------------------------------------------------------*/
    /*問い合わせ*/
    /*-------------------------------------------------------------------------------*/
    #contact {
        padding-top: 105px;
    }

    /*-------------------------------------------------------------------------------*/
    /*mainimg*/
    /*-------------------------------------------------------------------------------*/
    #mainimg {
    	margin-bottom: 3%;
    }   

    .table1, .table1 td, .table1 th {
        border-bottom: none;
        padding: 10px 15px;	/*ボックス内の余白*/
        word-break: break-all;
        display: list-item;
        list-style: none;
        width: 95%;
    }

    .table1 tr, .table1 tbody{
        display: list-item;
        width: 100%;
    }

    .table1 th {
        text-align:left;	
        font-weight: normal;
        background-color: #e6decc;
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 5px;
    }
    .table1 td {
        text-align:left;	
        font-weight: normal;
        padding-left: 30px;
    }
  
    /*-------------------------------------------------------------------------------*/
    /*main,subコンテンツ*/
    /*-------------------------------------------------------------------------------*/
    #main, #sub {
        float: none;
        width: auto;
    }
    
    /*-------------------------------------------------------------------------------*/
    /*その他*/
    /*-------------------------------------------------------------------------------*/
    body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}

}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

    /*ヘッダー（ロゴが入った最上段のブロック）
    ---------------------------------------------------------------------------*/
    /*ロゴ画像*/
    header #logo img {
        width: 180px;	/*画像幅*/
        height: 30px;
        margin-top: 20px;	/*上下のバランスをとって下さい*/
        margin-left: 10px;
    }

    header #freetel a {
        pointer-events:auto;
    }
    
    header #freetel img {
        height: 20px;
        margin-top: 10px;	/*上下のバランスをとって下さい*/
        margin-left: 10px;
        padding-left: 10px;
        float: left;
    }

    /*全体の設定
    ---------------------------------------------------------------------------*/
    body {
        font-size: 12px;	/*文字サイズ*/
        line-height: 1.5;	/*行間*/
    }
    
    /*mainコンテンツ
    ---------------------------------------------------------------------------*/
    #main h2, #main h3 {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }
    /*h2タグの１文字目の設定*/
    #main h2::first-letter {
        padding-left: 8px;	/*線とテキストとの余白*/
    }
    /*段落タグ設定*/
    #main p {
        padding: 0px 10px 15px;	/*上、左右、下への余白*/
    }
    
    /*ボックス（list）設定
    ---------------------------------------------------------------------------*/
    /*ボックス内のh4（見出し）タグ設定*/
    #main .list h4 {
        font-size: 14px;	/*文字サイズ*/
    }
    
    /*トップページ内「更新情報・お知らせ」ブロック
    ---------------------------------------------------------------------------*/
    /*ブロック全体の設定*/
    #new dl {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /*テーブル（ta1）
    ---------------------------------------------------------------------------*/
    /*ta1設定*/
    .ta1, .ta1 td, .ta1 th {
        padding: 5px;	/*ボックス内の余白*/
    }
    /*ta1の左側ボックス*/
    .ta1 th {
        width: 100px;
    }
    
    /*-------------------------------------------------------------------------------*/
    /*マップ設定*/
    /*-------------------------------------------------------------------------------*/
    .accessmap {
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }
    
    .accessinfo a{
        pointer-events:auto;
    }
    
    /*-------------------------------------------------------------------------------*/
    /*問い合わせ*/
    /*-------------------------------------------------------------------------------*/
    /*テーブル（conttbl）*/
    .conttbl {
	    width: 95%;
        display: list-item;
        list-style: none;        
    }
    .conttbl tbody, .conttbl tr, .conttbl th, .conttbl td{
        display: list-item;
        list-style: none;        
        padding-left: 0px;
        padding-top: 2px;
        padding-bottom: 5px;
    }
    .conttbl td, .conttbl th {
	    border-bottom: none;
        word-break: break-all;
        text-align: left;
        display: list-item;
        list-style: none;        
        width: 100%;
    }
    .conttbl th {
        background-color: #e6decc;
        padding: 0px;
        font-weight: normal;
        width: 100%;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .contname, .contkana, .contmail, .conttel, .contnaiyo { 
        width: 100%;   
        font-size: 15px;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 5px;
    }

    .contnaiyo {
        font-size: 15px;
        height: 250px;
    }


    #mailchack{
        text-align: center;
    }
    #mail_submit{
        text-align: center;
        font-size: 15px;
        padding: 10px;
        margin-right: 10px;
    }
    #mail_back{
        text-align: center;
        font-size: 15px;
        padding: 10px;
        margin-left: 10px;
    }
    
    /*その他
    ---------------------------------------------------------------------------*/
    .ws,.wl {width: 94%;}
    .big1 {font-size: 16px;}
    img.fr,img.fl {float: none;margin: 0;width: 100%;}
    .sh {display:block;}
    .pc {display:none;}
    
}
    
/*-------------------------------------------------------------------------------*/
/*フッター設定*/
/*-------------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px 0;
	background: #524831;	/*背景色*/
    color: #fff;	/*文字色*/
    margin-top: 25px;
}

/*デフォルトでは非表示に*/
body .nav-menutop a {display: none;}
/*ボタンの設定*/
body.nemufixedtop .nav-menutop a {
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 20;
    position: fixed;
	width: 50px;		
	line-height: 50px;	
	bottom: 100px;		
	right: 3%;			
	background:rgba(0,0,0,0.6);
	color: #fff;		
	border: 1px solid #fff;	
	/*border-radius: 50%;		*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.menufixedtop .nav-menutop a:hover {
	background: #999;	/*背景色*/
}

@keyframes scroll {

    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    
    }
    
    body .nav-menutop a {
        display: none;
    }
    
    body.menufixedtop .nav-menutop a {
        display: block;
        text-decoration: none;
        text-align: center;
        width: 50px;
        line-height: 50px;
        z-index: 20;
        position: fixed;
        bottom: 100px;
        right: 3%;
        background: #000;
        background: rgba(0,0,0,0.6);
        color: #fff;
        border: 1px solid #fff;
        animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
        animation-duration: 1S;	/*アニメーションの実行時間*/
        animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
    }
    body.menufixedtop .nav-menutop a:hover {
        background: #999;
    }

    