@charset "utf-8";
/* CSS Document */

/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    word-wrap: break-word;
	 -webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
}

a {
    outline:none;
    text-decoration:none;
}
li {
    list-style:none;
}
textarea {
    resize:vertical;
}
img {
	vertical-align:top;
	max-width: 100%;
	height:auto;
}
@media screen and (-webkit-min-device-pixel-ratio:0){
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
@-moz-document url-prefix() {
    img {
        image-rendering: auto;
    }
}
button {
    cursor: pointer;
}


/*------------------------------------------------
   common style
--------------------------------------------------*/

* { box-sizing:border-box; }

.clear { clear:both; }
.fl { float:left; }
.fr { float:right; }


.mb0   { margin-bottom: 0 !important; }
.mb5   { margin-bottom: 5px !important; }
.mb10  { margin-bottom: 10px !important; }
.mb20  { margin-bottom: 20px !important; }
.mb30  { margin-bottom: 30px !important; }
.mb40  { margin-bottom: 40px !important; }
.mb50  { margin-bottom: 50px !important; }
.mb60  { margin-bottom: 60px !important; }
.mb70  { margin-bottom: 70px !important; }
.mb80  { margin-bottom: 80px !important; }
.mb90  { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }


.alignL { text-align:left !important; }
.alignR { text-align:right !important; }
.alignC { text-align:center !important; }


.hover-opa a {
   -webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.hover-opa a:hover {
	 opacity:0.7;
}

.underline {
	text-decoration: underline !important;
}

/* youtube resuponsive */
.youtube-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.2%;
}
.youtube-wrap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
	left:0;
}
