@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, small {
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;
}
hr {
margin:0;
border:0.5px solid #dcdcdc;
}


/* common
----------------------------------------------- */
body {
font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
font-size: 16px;
line-height: 1.6;
color: #61534a;
background:#fff;
position:relative;
height:100%;
-webkit-text-size-adjust: none;
}
img {
border: none;
vertical-align: middle;
}
input,select,textarea {
outline: none;
}
input[type="file"] {}
input[type="text"],input[type="password"],input[type="email"],input[type="tel"],textarea,select {
margin: 0;
padding: 0;
line-height: 1;
border: 1px solid #ccc;
}
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) {
body {
font-size: 90%;
}
/* 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;
}
}


/* clearfix
----------------------------------------------- */
.clearfix::after {content:"";display:table;clear:both;}


/* pagetop
-------------------------------------------------------*/
#page-top {
position: fixed;
bottom: 100px;
right: 10px;
width: 40px;
height:40px;
cursor: pointer;
background:#EE605E;
border-radius: 50px;
z-index: 9;
border:1px solid #fff;
}
#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;
}