*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body, div, dl, dt, dd, ol, ol li, ul, ul li, li > ul, li > ol, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, hr, th, td, section, nav, article, aside, header, address, legend, fieldset , figure, figcaption, button {
	padding: 0;
	margin: 0;
}

body {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh; /* コンテンツが空の場合でもビューポートを満たす */
	-webkit-text-size-adjust: 100%; /* モバイルを横向き (Landscape) にした際の文字サイズ自動調整を解除 */
	text-size-adjust: 100%; /* モバイルを横向き (Landscape) にした際の文字サイズ自動調整を解除 */
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
}

ul, ol, hr {
	padding-block-start: 0;
	padding-block-end: 0;
	padding-inline-start: 0;
	padding-inline-end: 0;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}

p, li, dt, dd {
	overflow-wrap: break-word;
  word-wrap: break-word; /* 古いブラウザ向け */
}

img {
  vertical-align: bottom;  /* ディセンダーにより生じる画像の隙間を解消 */
  display: block; /* ブロックに切替 (通常画像に必要な操作) */
  max-width: 100%; /* フレキシブルな画像に修正 */
  height: auto; /* max-widthが有効になった場合でもアスペクト比を維持 */
}

ol, ul {
	list-style: none;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
	border: none;
  height: 0;
  overflow: visible;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  font-style: normal;
  line-height: inherit;
}

dfn {
  font-style: italic;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
	word-break: break-all; /* 長いURLが親要素からはみ出る挙動を防止 */
  -webkit-text-decoration-skip: objects;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/* iOSのリンクスタイルをリセット */
a[href^="tel"]{
	color: inherit;
	text-decoration: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

th {
  font-weight: normal;
  text-align: inherit;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

svg {
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
}

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

caption {
  text-align: left;
}

label {
  display: inline-block;
}

button {
  background: none;
	border: none;
	outline: none;
  border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button:focus {
  outline: 0;
}

input, button, select, optgroup, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
	background-color: #fff;
}

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}

input[type="number"], input[type="submit"], input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea {
	border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-appearance: none !important;
}

fieldset {
  min-width: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

em, var, address {
	font-style: normal;
}

[hidden] {
  display: none !important;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}