@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap');


* {
	margin: 0;
	padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	background: #fff;
	color: #000;
	-webkit-text-size-adjust: 100%;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-feature-settings: "pkna";
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: auto;
	overflow: visible;
}

a {
	color: #f53e00;
	text-decoration: underline;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	-ms-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

a:focus{
	outline:none;
}
a img {
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	-ms-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}
img {
	border: 0px;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	user-select:none;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: normal;
}

p, li, dt, dd, table {
	text-align: justify;
	text-justify: inter-ideograph;
	line-break: strict;
	word-break: break-strict;
	word-wrap: break-word;
}

ul, ol {
	list-style-type: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}

tr {
	word-break: break-all;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

::selection {
	background: #f09270;
	color: #fff;
}
 
::-moz-selection {
	background: #f09270;
	color: #fff;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

select option {
	padding: 0px 5px;
}

form label {
	cursor: pointer;
}

input:placeholder {
	color: #a8aeb9;
}
 
input:-ms-input-placeholder {
	color: #a8aeb9;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="reset"] {
  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,
input[type="reset"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
input[type="reset"]::focus {
  outline-offset: -2px;
}
