/*
Theme Name: I'LL
Description: Used to style the TinyMCE editor.

/**
 * Table of Contents:
 *
 * 1.0 - Reset stylesheet
 * 2.0 - Grid system
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Main content
 * 7.0 - Navigations
 *   7.1 - Anchor
 *   7.2 - Pagination
 *   7.3 - Button
 * 8.0 - Alignments
 *   8.1 - Position
 *   8.2 - Wordpress css
 *   8.3 - Text align
 * 9.0 - Clearfix
 * 10.0 - MceContentBody
 */

/*------------------------------------------------------------------------------------
/* 1.0 - Reset Stylesheet
/*----------------------------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
}




code,
kbd,
var,
pre {
  font-family: monospace, serif;
}



mark {
  font-style: italic;
  font-weight: bold;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: dotted 1px;
  cursor: help;
}

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

hr {
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #e2e5e8;
}

embed,
iframe,
img,
object {
  max-width: 100%;
}

.wp-embedded-content {
  width: 100%;
}

img {
  border: none;
  vertical-align: middle;
}

:focus {
  outline: 0px;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}



/*------------------------------------------------------------------------------------
/* 3.0 - Typography
/*----------------------------------------------------------------------------------*/
body {
  font-family: 'Noto Sans JP', sans-serif;  line-height: 1.6;
  font-size: 16px;
  font-size: 1.6rem;
  word-wrap: break-word;
  color: #000000;
  background-color: #fcfcfc;
}

h1 {
  font-size: 26px;
  font-size: 2.6rem;
  color: #000000;
}

h2 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #000000;
}

h3 {
  font-size: 20px;
  font-size: 2.0rem;
  color: #000000;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #000000;
}

h5 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #000000;
}

h6 {
  font-size: 14px;
  font-size: 1.4rem;
  color: #000000;
}

small,
.small {
  font-size: 12px;
  font-size: 1.2rem;
}


/*------------------------------------------------------------------------------------
/* 5.0 - Forms
/*----------------------------------------------------------------------------------*/
input {
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


textarea {
  font-size: 16px;
  font-size: 1.6rem;
  overflow: auto;
  vertical-align: top;
}

select {
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


ul {
  list-style: none;
}

a {
  cursor: pointer;
}
