@charset "UTF-8";

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;
}
html,body {
	height: 100%;
}
* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	font-size: 62.5%;
	font-feature-settings: "palt";
	overflow-y: scroll;
	overflow-x:hidden;
}
body {
	line-height: 1;
	position: relative;
	background: rgba(255,255,255,1);
	width: 100%;
	color: rgba(35,24,21,1);
	font-family:"Helvetica Neue" , "Helvetica", sans-serif;
	font-size: 22px;
	font-size: 1.125rem;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased; /* ← アンチエイリアス設定 */
	-moz-osx-font-smoothing: grayscale;
}
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;
}
a:link, a:visited {
	color: rgba(35,24,21,1);
	text-decoration: none;
	outline: none;
	opacity: 1;
	transition: all 360ms;
	-webkit-transition: all 360ms;
	-ms-transition: all 360ms;
	-moz-transition: all 360ms;
	display: block;
}
a:hover, .active {
    color: rgba(193,198,197,1);/*cmyk16.59,14.4,14.73,9.39*/
	text-decoration: none;
	opacity: 1;
	cursor: pointer;
}
a:active {
	color: rgba(35,24,21,1);
}
@media screen and (max-width: 1024px) {
	a:hover {
		animation-name: anime1;
		animation-duration: 5s;
		animation-timing-function: ease;
		animation-iteration-count: 1;
	}
	@keyframes anime1 {
		0% {color: rgba(193,198,197,1);}
		100% {color: rgba(35,24,21,1);}
	}
}
@media screen and (max-width: 767px) {
	html {
		font-size: 50.5%;
	}
}

/* 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="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{
	-webkit-appearance: none;
	border-radius: 0;
}


