@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

.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,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
menu,
video,
audio,
mark,
time,
canvas,
details {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #172126;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    opacity: .7;
}

a img {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
}

section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
figcaption {
    display: block;
}

input,
select {
    vertical-align: middle;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
    color: #172126;
    width: 100%;
    min-width: 1100px;
    overflow-x: scroll;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: #fff;
    font-size: 16px;
}
img {
    max-width: 100%;
    margin: auto;
    vertical-align: bottom;
}

ul,
li,
dl,
dt,
dd,
form {
    margin: 0px;
    padding: 0px;
    border: 0px;
    list-style: none;
    letter-spacing: normal;
    /* For IE 6/7 */
    *display: inline;
    *zoom: 1;
}

li::marker {
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

ins {
    /* remember to highlight inserts somehow! */
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    /* markup tables with 'cellspacing="0"' */
    border-collapse: collapse;
    border-spacing: 0;
}

.alc {
    text-align: center !important;
}

.all {
    text-align: left !important;
}

.alr {
    text-align: right !important;
}

.floatL {
    float: left;
}

.floatR {
    float: right;
}

.clr {
    zoom: 1;
}

.clr:after {
    content: ' ';
    display: block;
    clear: both;
    height: 0;
}

.clearboth {
    clear: both !important;
}

.pc {
    display: block;
}

.sp {
    display: none;
}
/* fadeUp */
.fadeUp{
    -webkit-animation-name:fadeUpAnime;
            animation-name:fadeUpAnime;
    -webkit-animation-duration:0.5s;
            animation-duration:0.5s;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
    opacity:0;
    }

    @-webkit-keyframes fadeUpAnime{
        from {
          opacity: 0;
        -webkit-transform: translateY(60px);
                transform: translateY(60px);
        }
      
        to {
          opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        }
      }
      
      @keyframes fadeUpAnime{
        from {
          opacity: 0;
        -webkit-transform: translateY(60px);
                transform: translateY(60px);
        }
      
        to {
          opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        }
      }
      /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
       
      .fadeUpTrigger{
          opacity: 0;
      }
      
@media only screen and (max-width: 768px) {
    body {
        min-width: 100%;
        font-size: 14px;
    }
	.pc {
        display: none!important;
    }
    .sp {
        display: block!important;
    }
}