﻿@charset "utf-8";

/*/////////////////////////////////////////////////////

PC：横幅769以上

/////////////////////////////////////////////////////*/

@media print,screen and (min-width: 769px) {

    /*ページ幅  */
    div#wrapper {
        max-width:960px;/* 上書き */
    }

    /*コンテンツ領域幅  */
    div#container {
		width:100%;/* 上書き */
    }

    /*----------------------------------------
        メインメニュー
    -----------------------------------------*/ 

    /* メニューの装飾  */
    div#menu {
        background-color:#fff;  /* 上書き */
        border-top:none;  /* 上書き */
        margin-bottom:20px;
    }
    /* リストの装飾 */
    div#menu ul.pc li {
        border-right: 0px;  /* 上書き */
        border-left: 0px;  /* 上書き */
        width:200px;
        text-align:center;
    }
    /* リンクの装飾   */
    div#menu ul.pc li a {
        color: rgb(92,132,208); /* 上書き */
        border-bottom:2px solid #fff;
        -moz-transition: border-bottom-color 0.5s;
        -o-transition: border-bottom-color 0.5s;
        -webkit-transition: border-bottom-color 0.5s;
        transition: border-bottom-color 0.5s;
    }
    div#menu ul.pc li a:hover,div#menu ul.pc li a.on {
        border-bottom:2px solid rgb(92,132,208);
    }


    /*----------------------------------------
        サブメニュー（上側）
    -----------------------------------------*/ 
    div#submenu_upper {
        display:none; /*（上書き）*/
    }
    

    /*----------------------------------------
        前後ページ移動  （上書き）
    -----------------------------------------*/ 
	div#movepage ul li a {
		background-color:rgb(38,166,154);/*（上書き）*/
		color:#ffffff;/*（上書き）*/
        padding:0.5rem 1rem;
        transition:background-color 0.2s;
	}
		div#movepage ul li a:hover {
			background-color:rgb(43,187,173);/*（上書き）*/
		}

}
