@charset "utf-8";

/*
Site Name: amc1nai.net
Description: global style(pc,sp)
*/

/* universal reset
----------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset, img {
    border: 0 none;
    margin:0;
    padding:0;
}
address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal;
}
ol, ul {
    list-style: outside none none;
}
caption, th {
    text-align: left;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}
q::before, q::after {
}
abbr, acronym {
    border: 0 none;
}

/* body and base setting
----------------------------------------- */
body {
    color: #333;
	background-color: #fff;
    font-family: "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    text-align: left;
}

#home {
	background-image:url("../img/bg.gif");
	background-repeat: repeat-x;
}

@media all and (max-width: 900px) {
#home {	
	background-image:none;
}
}

@media all and (max-width: 599px) {
#home {
	background-image:url("../img/bg_sp_header.jpg");
	background-repeat: repeat-x;
}
}

/* general style
----------------------------------------- */
html {
    font-size: 100%;
    text-rendering: optimizelegibility;
}
p {
}
strong {
    font-weight: bold;
}
span.required {
    color: #ff0000;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}

/* link style
----------------------------------------- */
a:link {
    color: #333;
    text-decoration: none;
	font-weight: 550;
}
a:visited {
    color: #333;
}
a:hover {
    color: #333;
    text-decoration: underline;
}
a:active {
    color: #333;
}

a:hover img {
	-webkit-transition: all .3s;
	transition: all .3s;
	opacity: 0.6;
}

/* layout parts
----------------------------------------- */
.clear {
    clear: both;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.left {
    text-align: left;
}
img.left {
    clear: both;
    float: left;
    margin-right: 15px;
}
img.center {
    clear: both;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}
img.right {
    clear: both;
    float: right;
    margin-left: 15px;
}

/* media display set
----------------------------------------- */
@media all and (min-width: 600px) {
.pc {
    display: inherit !important;
}
.tb {
    display: none !important;
}
.sp {
    display: none !important;
}
}

@media all and (min-width: 600px) and (max-width: 900px) {
.pc {
    display: none !important;
}
.tb {
    display: inherit !important;
}
.sp {
    display: none !important;
}
}

@media all and (max-width: 599px) {
.pc {
    display: none !important;
}
.tb {
    display: none !important;
}
.sp {
    display: inherit !important;
}
}


