/*----------------------------------------------------------
* information  :: element.css
* tsujino created :: 2017.07 improved
----------------------------------------------------------*/

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

body {
    margin: 0; 
    padding: 0;
    color: #333;
	font-size: 100%;
    line-height: 1.8;
    background: #fff;
/*	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;*/
	-webkit-text-size-adjust: 100%;
	-webkit-animation: opacity 0.7s both;
	animation: opacity 0.7s both;
}

/*
.win body {
    font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, Verdana, sans-serif;
	height: auto !important;
}
*/

@-webkit-keyframes opacity { 
	0%{opacity: 0}
	100%{opacity: 1}
}

@keyframes opacity { 
	0%{opacity: 0}
	100%{opacity: 1}
}


h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.7em;
	line-height: 1.3;
	font-weight: 600;
}

p {
    margin: 0;
    padding: 0 0 1em;
    font-size: 100%;
}

th,
td {
    margin: 0;
    padding: 0.5em 1em;
    font-size: 95%;
}

td {
	word-break: break-all;
}

dl,
dt,
dd {
	margin: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

i, cite, em, var, address, dfn {
	font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
	vertical-align: bottom;
}

.ie8 img {
	width: auto;
}

table {
	margin: 0;
    width: 100%;
	border-collapse: collapse;
}

a {
	text-decoration: none;
	-webkit-tap-highlight-color:transparent;
	-webkit-transition: opacity 0.3s ease-out 0s,
		color 0.3s ease-out 0s,
		border 0.3s ease-out 0s,
		background 0.3s ease-out 0s;
	-o-transition: opacity 0.3s ease-out 0s,
		color 0.3s ease-out 0s,
		border 0.3s ease-out 0s,
		background 0.3s ease-out 0s;
	transition: opacity 0.3s ease-out 0s,
		color 0.3s ease-out 0s,
		border 0.3s ease-out 0s,
		background 0.3s ease-out 0s;
}

a img {
	border: none;
	-webkit-transition: opacity 0.3s ease-out 0s;
	-o-transition: opacity 0.3s ease-out 0s;
	transition: opacity 0.3s ease-out 0s;
}


a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.touch a:hover,
.touch a:hover img,
.touch input:hover {
	opacity: 1;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	-ms-transform: none;
	    transform: none;
	-webkit-transform: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

input[type="submit"]::-moz-focus-inner{
	border :0px;
}

input[type="submit"]:hover {
    cursor: pointer;
}

input[type="button"],
input[type="text"],
input[type="submit"] {
   -webkit-appearance: none;
   border-radius: 0;
}
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: auto;
	padding:0;
	margin:0;
	background:none;
	border:0;
	outline: none;
	max-width: none;
	font-family: inherit;
}

button {
	cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="text"],
input[type="button"],
button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	border: none;
	-webkit-box-sizing: border-box;
	        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;
}

select {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
}
select::-ms-expand {
	display: none;
}

optgroup {
    font-style: normal;
}

.small {
    font-size: 85%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}


