@charset "utf-8";
html {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .025em;
  color: #333;

  word-break: break-word;
  word-wrap: break-word; /* for IE, Firefox */
  overflow-wrap: break-word;

  /* for orientationchange */
      -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;

  /* antialiase */
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;

  /* kerning */
  text-rendering: optimizeLegibility;
}

html.ua-windows:not(.ua-ie) { /* for Win but IE */
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  /*font-weight:500; → 環境によっては Chrome で太字になってしまうので不要 */
}

html,
body {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}

html {
  overflow-y: scroll;
  height: 100%;
}

body {
  font-size: 14px;
  overflow-y: hidden; /* ロード時に一瞬だけ二重にスクロールバーが出るのを防ぐ */
  height: auto;
}

/* HTML5 display definitions --------------------------------------*/

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

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

[hidden],
template {
  display: none;
}

/* reset --------------------------------------*/

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
fieldset,
legend,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
main,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
::before,
::after {
 font-family: inherit;
 font-size: inherit;
 font-weight: inherit;
 font-style: inherit;
 font-variant: inherit;
 box-sizing: inherit;
 margin: 0;
 padding: 0;
 text-indent: initial;
 letter-spacing: inherit;
 color: inherit;
 border-style: none;
 outline-style: none;
 background-color: transparent;
}

/* link --------------------------------------*/

a {
  text-decoration: none;
  -webkit-text-decoration-skip: objects; /* for Safari 8+ */
}

a:link,
a:hover,
a:active,
a:focus {
  /* overflow:hidden; → 指定すると img が 1px 切られるので不要 */
  /* outline: none; → 不要 */
}

a[href^="tel:"] {
  /* a:not([href]) → cursor: default; にするとモーダルが開かないケースがあるので指定しない */
  cursor: default;
}

/* img & svg & iframe --------------------------------------*/

img {
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

svg,
iframe {
  vertical-align: bottom;
}

svg:not(:root) {
  overflow: hidden;
}

/* text --------------------------------------*/

hr {
  display: block;
  box-sizing: border-box;
  height: 1px;
  margin: 1em auto;
  border-style: none;
  background-color: #ccc;
}

ul {
  list-style: none;
}
ol {
  list-style-position: inside;
}

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

caption,
th {
  text-align: left;
}

th,
td {
  vertical-align: top;
}

i {
  display: inline-block;
}

b,
strong {
  font-weight: bold;
}

mark {
  background-color: #ff0;
}

del {
  text-decoration: line-through;
}

ins {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

abbr[title] {
  text-decoration: none;
  border-bottom: none;
  /* text-decoration: underline dotted; → 不要 */
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

summary {
  cursor: pointer;
}

code,
kbd,
pre,
samp {
  overflow-x: auto;
  font-family: monospace, monospace;
}

::selection {
  color: #333;
  background-color: #b3d4fc;
  text-shadow: none;
}

::-moz-selection { /* ↑とは分けて記述する必要がある */
  color: #333;
  background-color: #b3d4fc;
  text-shadow: none;
}

/* form --------------------------------------*/

fieldset {
  padding: .35em .625em .75em;
  border: 1px solid #ccc;
}

legend {
  padding: 0 5px;
}

label {
  cursor: pointer;
}

button,
input,
textarea,
select {
  max-width: 100%;
  letter-spacing: inherit;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
  box-sizing: border-box;
  color: inherit;
  border: 1px solid #ccc;
  outline: none;
}

button,
[type=range],
[type=color],
[type=file],
[type=image],
[type=submit],
[type=reset],
[type=button],
[type=checkbox],
[type=radio] {
  cursor: pointer;
}

[type=text],
[type=search],
[type=tel],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=datetime],
[type=date],
[type=month],
[type=week],
[type=time],
[type=datetime-local],
[type=number],
textarea {
  padding: 1px 5px;
  cursor: text;
}

[type=file],
[type=image],
[type=range] {
  border-style: none;
  /* [type=color] → 非対応ブラウザでは [type=text] になってしまうので不要 */
}

[type=file],
[type=image],
[type=range],
[type=color],
[type=checkbox],
[type=radio] {
  vertical-align: middle;
}

[type=range]:not(:target) {
  /* for IE 9,10 */
  padding: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  [type=range]:not(:target) {
    /* for IE 11 */
    padding: 0;
  }
}

button {
  text-transform: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input:-ms-input-placeholder {
  opacity: .54;
}

[type=radio],
[type=checkbox] {
  position: relative;
  bottom: 1px;
  margin-right: 5px;
}

[type=radio]:not(:target),
[type=checkbox]:not(:target) {
  /* for IE 9,10 */
  vertical-align: middle\9;
  border: none\9;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  [type=radio]:not(:target),
  [type=checkbox]:not(:target) {
    /* for IE 11 */
    vertical-align: middle;
    border: none;
  }
}

[type=search] {
  outline-offset: -2px; /* for Safari */

  -webkit-appearance: textfield;
}

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

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

::-webkit-file-upload-button {
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: transparent;
}

button,
html [type=button], /* for Android 4 */
[type=reset],
[type=submit] {
  background-color: transparent;
  -webkit-appearance: none; /* for iOS */
}

[disabled] {
  cursor: default;
}

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

select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
  box-sizing: border-box;
  height: 1.75em;
  cursor: pointer;
  text-transform: none;
  color: inherit;
  outline: none;
}

select {
  border: 1px solid #ccc;
}

select::-ms-expand {
  /* for IE */
  border: 1px solid #ccc;
}