@charset "utf-8";
/* CSS Document */


/* ===========================================================
　リセット
=========================================================== */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - https://richclarkdesign.com 
Twitter: @rich_clark
*/
 
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,
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;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
 
body {
    line-height:1;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
    display:block;
    position: relative;
}
 
ol,ul,li {
    list-style: none;
    list-style-type: none /* IE用 */;
}
 
blockquote, q {
    quotes:none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
 
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
 
del {
    text-decoration: line-through;
}
 
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	-ms-interpolation-mode: bicubic;
	-webkit-backface-visibility: hidden;
	}	
	
iframe {
	vertical-align: bottom;
	display: block;
	}


i, cite, em, var, address, dfn {
	font-style: normal;
	}

/* common上書き */
body #wrap {
  min-width: auto !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}



/*======================================================================
　ベーシック
===================================================================== */

* {
	box-sizing: border-box;
	}

html, body {
  font-family: Arial, "游ゴシック体", YuGothic, "Yu Gothic Medium", "メイリオ", Meiryo, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  color: #666;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
 }

article, section {
	background: #fff;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
  font-weight: inherit;
	}

a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	display: block;
	}

a[href*="tel:"],
a[href*="mailto:"] {
	display: inline;
	}

span {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	}

img {
	width: 100%;
	}
	
*:before,
*:after {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	}
		
		
input, select {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	border: none;
	background: transparent;
	letter-spacing: 2px;
	}

input, select, label {
	vertical-align:middle;
	}

input:not([type="text"]), select, label {
	cursor: pointer;
	}

input[type="button"],
input[type="submit"] {
	-webkit-appearance: none; 
	}

input:focus {
	outline: none;
	}


/* マウスホバー */

.hov {
	transition: all .2s ease;
	opacity: 1;
}

.hov:hover {
	transition: all .2s ease;
	opacity: 0.8;
}

/* ------------------------------------------
　クリアフィックス
------------------------------------------ */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}


/*----------------------------------------------
　PC・SP切り替え
--------------------------------------------- */	
		
@media screen and (min-width:769px) {

.only--sp {
	display: none !important;
	}
	
} 

@media screen and (max-width:768px) {

.only--pc {
	display: none !important;
	}
	
} 

