@charset "UTF-8";


/* ====================================

	common.css
	---------------------------

	INDEX:
	---------------------------
		ALL SIZES:
			0. General
			1. Module
			2. Layout
			3. Header
			4. Navigation
			5. MainArea
			6. Footer

		Media Queries:
			Print styles

==================================== */


/* ===================================================

   ALL SIZES:

   =================================================== */

/*	0. General
----------------------------- */
#pageWrapper {
    display:none;
}

/*	1. Module
-------------------------------- */

ul.disc {
	list-style-type: disc;
	padding-left: 2em;
}
ol.decimal {
	list-style-type: decimal;
	padding-left: 2em;
}

.attentionMark {
	padding-left: 1em;
	text-indent: -1em;
	color: #9d0000;
}
ul.attentionMark {
	padding-left: 2em;
}
span.attentionMark {
	display: inline-block;
}

table {
	width: 100%;
}
	table th,
	table td {
	}
	table th {
	}


/*	2. Layout
----------------------------- */

.l-inner {
	padding: 0 2%;
}


/*	3. Header
----------------------------- */


/*	4. Navigation
----------------------------- */


/*	5. MainArea
----------------------------- */
#mainArea {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    margin: 0 auto 60px;
}
img.main_bg {
    width: 100%;
    height: auto;
}
    .h_logo {
        position: absolute;
        top: 40px;
        left: 40px;
    }
    .h_logo img {
        width: 230px;
        height: auto;
    }

    .h_logo a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
    -webkit-transition: .4s;
       -moz-transition: .4s;
        -ms-transition: .4s;
         -o-transition: .4s;
            transition: .4s;
    }
    .top_info {
        position: absolute;
        bottom: 3%;
        left: 0;
    }


/*	6. Footer
----------------------------- */
.f_row01 {
    text-align: center;
    background: #f4f4f4;
    padding: 40px 0;
}
.f_row01 h2 {
    margin-bottom: 20px;
}
#footer {
	padding: 30px 0 40px;
    background: #15181c;
    text-align: center;
}

		.f_logo {
            margin-bottom: 20px;
        }
        .copyright {
            color: #909090;
            font-size: 10px;
			text-align: center;
            letter-spacing: .05em;
            font-family: Arial, Helvetica, sans-serif;
		}


#nav-dock {
    width: 54px;
    height: 32px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
}
#nav-dock a {
    width: 54px;
    height: 32px;
    display: block;
    text-indent: -9999px;
    background-image: url(../img/btn_pagetop.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
}
#nav-dock a:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
}
@media screen and (min-width: 1366px) and (max-width: 1600px) {
    .h_logo img {
        width: 200px;
        height: auto;
    }
	.concept .h_logo img {
      width: 130px;
      height: auto;
    }
	#mainArea {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 10;
        margin: 0 auto 60px;
        max-width: 1040px;
    }
}
@media screen and (min-width: 1600px) {
	.h_logo img {
        width: 250px;
        height: auto;
    }
    .concept .h_logo img {
      width: 200px;
      height: auto;
    }
    #mainArea {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 10;
        margin: 0 auto 60px;
        max-width: 1500px;
    }
}
/* ===================================================

   Print styles

   =================================================== */

@media print {
}


