@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: layout.css
 * Summary:   レイアウト・共通モジュール用スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    structures
 *       =1-1    header
 *       =1-2    contents
 *                 - main contents
 *       =1-3    pagetop
 *       =1-4    footer
 *
 * ===============================================================
*/



/** =1
 * ========================================
 * structures
 * ========================================
 */

#container {
	position: relative;
	margin: 0 auto;
	height: auto;
	min-height: 100%;
}
.ie6 #container {
	height: 100%;
}

	/* -- >>> styles for narrow layout ----- */
	@media screen and (max-width: 599px) {
		#container {
			right: 0;
			z-index: 2;
			margin: 0;
			width: 100%;
			-moz-transition: all 300ms ease-in-out;
			-webkit-transition: all 300ms ease-in-out;
			transition: all 300ms ease-in-out;
		}
	}

	/* -- >>> styles for medium layout ----- */
	@media screen and (min-width: 600px) and (max-width: 959px) {
		#container {
			width: 90%;
		}
	}

	/* -- >>> styles for wide layout ----- */
	@media screen and (min-width: 980px) {
		#container {
			width: 1000px;
		}
	}


	/** =1-1
	 * header
	 * ----------------------------------
	 */

	#header {

	}

	#header .navHandler {
		display: none;
	}

		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 599px) {
			#header {
			}
			#header h1 .logo{
				display:none;
			}
		}

		/* -- >>> styles for medium layout ----- */
		@media screen and (min-width: 600px) and (max-width: 959px) {
			#header {
			}
			#header h1 .logo{
				display:none;
			}
		}

		/* -- >>> styles for wide layout ----- */
		@media screen and (min-width: 980px) {
			#header {
				width: 1000px;
				height: 455px;
				margin-top:10px;
				background:url(/src/otodama/14/pc/younglion/common/header/header_back.png) 0 0 no-repeat;
			}
			#header h1{
				position:relative;
			}
			#header h1 .mainimg{
				display:none;
			}
			#header h1 .logo_m{
				position:absolute;
				right:40px;
				top:220px;
			}
			#header h1 .logo{
				position:absolute;
				right:20px;
				top:25px;
			}
		}


	/** =1-2
	 * contents
	 * ----------------------------------
	 */

	#contents {
		width: 100%;
	}

		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 599px) {
			#contents {
			}
		}

		/* -- >>> styles for medium layout ----- */
		@media screen and (min-width: 600px) and (max-width: 959px) {
			#contents {
			}
		}

		/* -- >>> styles for wide layout ----- */
		@media screen and (min-width: 980px) {
			#contents {
				margin-bottom:170px;
			}
		}


		/* [ main contents ]
		------------------------------ */
		#contents #main {
			background: #f7ecd0;
		}

			/* -- >>> styles for narrow layout ----- */
			@media screen and (max-width: 599px) {
				#contents #main {
					padding:10px 0;
					margin-bottom:50px;
				}
			}

			/* -- >>> styles for medium layout ----- */
			@media screen and (min-width: 600px) and (max-width: 959px) {
				#contents #main {
					padding:10px 0;
					margin-bottom:50px;
				}
			}

			/* -- >>> styles for wide layout ----- */
			@media screen and (min-width: 980px) {
				#contents #main {
					width: 980px;
					margin:0 auto;
					background:url(/src/otodama/14/pc/younglion/common/main_back.png) 0 0 repeat-y;
				}
				
				#contents #main_bottom{
					width: 980px;
					margin:0 auto;
					background:url(/src/otodama/14/pc/younglion/common/main_back_bottom.png) 0 bottom no-repeat;
					padding-bottom:80px;
				}
				
			}



	/** =1-3
	 * pagetop
	 * ----------------------------------
	 */

	#pagetop {
		bottom:-10px;
		right:10px;
		z-index:100;
	}

	#pagetop a {
		display: block;
	}

		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 599px) {
			#pagetop {
				position:fixed;
				width:65px;
			}
		}

		/* -- >>> styles for medium layout ----- */
		@media screen and (min-width: 600px) and (max-width: 959px) {
			#pagetop {
				position:fixed;
				width:85px;
			}
		}

		/* -- >>> styles for wide layout ----- */
		@media screen and (min-width: 980px) {
			#pagetop{
				position:absolute;
				width:85px;
			}
		}


	/** =1-4
	 * footer
	 * ----------------------------------
	 */

	#footer {
		width: 100%;
		color:#FFF;
		font-size:85%;
	}
	#footer section{
		background:#000;
		margin:0;
		padding:15px 20px;
	}
	#footer section p.copyright{
		font-size:90%;
	}
	#footer section .twitter{
		float:right;
	}
		/* -- >>> styles for narrow layout ----- */
		@media screen and (max-width: 599px) {
			#footer section{
				background:#000;
				margin:0;
				padding:15px 10px;
			}
			#footer .bottom p.osakajyo{
				display:none;
			}
			#footer .bottom p.yaon{
				display:none;
			}
			#footer .bottom p.tv{
				display:none;
			}
			#footer section dl{
				float:left;
				width:75px;
				margin:0 5px;
			}
			#footer section dl.banner_cat{
				width:60px;
			}
			#footer section dl.banner_tower{
				width:60px;
			}
			#footer section p.copyright{
				clear:both;
				padding-top:10px;
			}
			#footer section .twitter{
				float:right;
				width:75px;
			}
		}

		/* -- >>> styles for medium layout ----- */
		@media screen and (min-width: 600px) and (max-width: 959px) {
			#footer .bottom p.osakajyo{
				display:none;
			}
			#footer .bottom p.yaon{
				display:none;
			}
			#footer .bottom p.tv{
				display:none;
			}
			#footer section dl.banner_fm802{
				margin-bottom:10px;
				padding-bottom:20px;
			}
			#footer section dl{
				float:left;
				margin-right:20px;
			}
			#footer section p.copyright{
				clear:both;
				text-align:center;
				padding-top:10px;
			}
		}

		/* -- >>> styles for wide layout ----- */
		@media screen and (min-width: 980px) {
			#footer {
				position:fixed;
				bottom: 0;
			}
			#footer .bottom{
				position:relative;
			}
			#footer .bottom p.osakajyo{
				position:absolute;
				bottom:-15px;
				right:0;
				z-index:0;
			}
			#footer .bottom p.yaon{
				position:absolute;
				bottom:-30px;
				left:0;
			}
			#footer .bottom p.tv{
				position:absolute;
				bottom:-70px;
				right:180px;
			}
			#footer section{
				padding:35px 20px 5px 20px;
			}
			#footer section dl{
				float:left;
				margin-right:10px;
			}
			#footer section p.copyright{
				float:right;
				clear:both;
			}
		}