/*
 * iframe用のCSS
 *
 * publicフォルダではSCSSは使えないため、CSSを使用しています。
 * src/_styles/_reset.scssと_base.scssの内容を含みます。
 * _styles側のSCSSが変更された場合、こちらのCSSを手動で変更する必要があります。
 */

/* reset */

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
    text-decoration: none;
  }
}

em {
  font-style: normal;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

input,
button,
textarea,
select {
  appearance: none;
  border-radius: 0;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* for Firefox */
}

input[type="submit"],
button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

iframe {
  border: none;
  height: auto;
  width: 100%;
}

/* base */
body {
  color: #1d1303;
  font-family:
    Helvetica Neue,
    arial,
    Hiragino Kaku Gothic ProN,
    Hiragino Sans,
    meiryo,
    sans-serif;
  font-feature-settings: "palt";
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-size-adjust: 100%;
  width: 100%;
  word-break: break-word;
}
