@charset "UTF-8";
/* CSS Document */
/*======================リセット============================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, figure, figcaption,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, label, legend
{
	 margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html,body,main {
	background-color: #ffffff;
}
html{
	font-size:62.5%;
 box-sizing: border-box;
 font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans", "Meiryo", "sans-serif";
	font-weight: 400;
	font-style: normal;
 color:#000000;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;/*Macでfont太りを防止*/
	text-decoration-skip-ink: none;/*アンダーライン途切れを防止*/
}
body {
	overflow-x: hidden;
}

ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
p {
text-justify:inter-ideograph; 
line-break: strict;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*iphoneでのユーザビリティ動作に対応*/
table tbody {
	-webkit-text-size-adjust: 100%;
}
/* padding、borderサイズに依存しない */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/*iphoneでのsubmit装飾をリセット*/
input[type="submit"] {
-webkit-appearance: none;
}
/*iphoneでのbutton装飾をリセット*/
input[type="button"] {
-webkit-appearance: none;
}

/*======================リセット終わり============================*/

/* FOUT防止（WebFont読み込み時の再レンダリングによるチラツキ防止） */
html {
	opacity: 0;
}
html.wf-active, html.loading-delay {
	transition: 0.3s;
	opacity: 1;
}

a {
  text-decoration: none;
  color:#000000;
		-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	cursor: pointer!important;
}

/*クリアフィックス*/
.cf:after   {  
     content: ".";   
     display: block;   
     visibility: hidden;   
     height: 0.1px;   
     font-size: 0.1em;   
     line-height: 0;   
     clear: both;   
}  

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.displayNone {
	display:none;
}
