@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,
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 { scroll-behavior: smooth;}

html{
	font-size:62.5%;
    
}
body {
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","Yu Gothic medium", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif"	;
	color: #000000;
    *font-size:small;
    *font:x-small;
	text-align: center;
}

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{


}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 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;
}

/*ロールオーバーでリンクを透過**→画像だけに効くようにするにはimgをいれる【a img:hover】*/
a:hover{
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
a{
	color: #444;
	text-decoration: none;
}
/*iphoneでのsubmit装飾をリセット*/
input[type="submit"] {
-webkit-appearance: none;
}
/*iphoneでのbutton装飾をリセット*/
input[type="button"] {
-webkit-appearance: none;
}

section:after   {  
     content: ".";   
     display: block;   
     visibility: hidden;   
     height: 0.1px;   
     font-size: 0.1em;   
     line-height: 0;   
     clear: both;   
}  
  
section {   
     *display: inline-block;
} 
img{
	max-width: 100%;
	height: auto;

}

.fade_off {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    transform: translateY(30px);
}
.fade_on {
    opacity: 1;
    transform: translateY(0);
}

.fade_off_up {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    transform: translateY(100px);
}
.fade_on_up {
    opacity: 1;
    transform: translateY(0);
}
.fade_off_up3 {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    transform: translateY(100px);
}
.fade_on_up3 {
    opacity: 1;
    transform: translateY(0);
}