/* ======================================

    Frame.css
    　枠組みのスタイル

======================================== */

/*---------------------------------

  Header

---------------------------------*/
#header {
	position: fixed;
    top: 0;
    left: 0;
	height:50px;
	width:100%;
	background-color: #ffffff;
	background-image: url('./images/header.png');
	background-size: 100% 100%;
}

/* 
    ロゴ
------------------------- */
#header-logo {
    /*position: absolute;
    top: 5px;
    left: 35px;
    height: 38px;
    width: 38px;
    background-size: 36px 36px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0px;*/

    position: absolute;
    top: 4px;
    left: 5px;
    height: 40px;
    width: 250px;
    background-image: url('./images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0px;
}

/* 
    ロゴ背景
------------------------- */
#logo-back {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 47px;
    width: 340px;
    background-image: url('./images/logo_back.png');
    background-size: 100% 100%;
    margin: 0px;
}

/* 
    タイトル
------------------------- */
#header-title {
	position: absolute;
	top: 4px;
	left: 80px;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
#header-title p {
	font-size: 30px;
	margin: 0px;
	overflow: hidden;
    color:white;
}
#header-title p {
    position: relative;
    display: inline-block;
    transition: .3s;
}
.title-link.link-active #header-title p:hover {
    color: rgba(140, 223, 227, 1);
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.8);
}
.title-link.link-active #header-title p::after {
    position: absolute;
    bottom: 7px;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: rgba(140, 223, 227, 1);
    transition: .3s;
    box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.8);
}
.title-link.link-active #header-title p:hover::after {
    width: 100%;
}

/*---------------------------------

  Footer

---------------------------------*/
#footer {
    position: fixed;
	bottom: 0;
    left: 0;
	height: 12px;
	width: 100%;
	background-color: #ffffff;
	background-image: url('./images/footer.png');
	background-size: 100% 100%;
}

/* 
    コピーライト
------------------------- */
#copyright {
	position: relative;
	height: 10px;
	width: 100%;/*500px;*/
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
}
#copyright p {
	margin: 0px 10px 0px 0px;
	font-size: 8px;
	text-align: right;
}

/*---------------------------------

  Contents

---------------------------------*/
#content-wrap {
    width: 100%;
    /*min-width: 1380px;*/
    /* ※ヘッター/フッター考慮 */
    height: calc(100% - 62px);
    margin-top: 50px;
	overflow: auto;
    position: relative;
}

#content {
    position: absolute;
    top: 0;
    left: 10px;
    width: calc(100% - 20px);
    height: 100%;
}