@charset "utf-8";

/*------------------------------------------------------------------
/
/	date	:	2018.04.12
/
/-----------------------------------------------------------------*/

/* reset
-------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* common
----------------------------------------------- */
body {
font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
font-size: 16px;
line-height: 1.6;
color: #333;
background:#fff;
position:relative;
height:100%;
-webkit-text-size-adjust: none;
}
img {
width:100%;
border: none;
vertical-align: middle;
}
input[type="file"] {}
input[type="text"],input[type="password"],textarea {
margin: 0;
padding: 0;
line-height: 1;
border: 1px solid #ccc;
    font-size: 100%;
    font-weight: normal;
}
input[type="checkbox"],
input[type="radio"] {
margin-top: -2px;
}
input[type="submit"] {
cursor: pointer;
}
input[type="image"],input[type="button"],input[type="checkbox"],label {
cursor: pointer;
}
input[type="submit"],input[type="button"] {
transition: .2s;
}
input[type="submit"]:hover,input[type="button"]:hover {
opacity: 0.7;
}
input[type="text"]:focus,
select:focus {
outline: 0;
}
a {
color: #333;
text-decoration: none;
transition: .2s;
}
a:hover {opacity: 0.7;}
a:visited {}
b {font-weight: bold;}
@media screen and (max-width:768px){
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
border-radius: 0;
-webkit-box-sizing: content-box;
-webkit-appearance: button;
appearance: button;
border: none;
box-sizing: border-box;
cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
outline-offset: -2px;
}
input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type="text"]::-webkit-input-placeholder {
padding-top: 0.2em;
}
input,select,textarea {
/*font-size: 16px;*/
    font-size: 100%;
/*transform: scale(0.8);*/
}
/*//iOSでのデフォルトスタイルをリセット */
}


/* clearfix
----------------------------------------------- */
.clearfix::after {content:"";display:table;clear:both;}

/* pagetop
-------------------------------------------------------*/
#page_top {
position: fixed;
bottom: 150px;
right: 20px;
width: 40px;
height:40px;
cursor: pointer;
background:#DF8BAC;
z-index: 99;
}
#page_top::after {
content:"";
width:0;
height:0;
position: absolute;
top: 35%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform : translate(-50%,-50%);
transform : translate(-50%,-50%);
border: 10px solid transparent;
border-bottom: 10px solid #fff;
}


@media screen and (max-width:768px){
    #page_top {

bottom: 100px;

}
}