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

/**
 * Table of Contents:
 *
 * 1.0 - Reset stylesheet
 * 2.0 - Typography
 * 3.0 - Elements
 * 4.0 - Forms
 * 5.0 - Navigations
 *   5.1 - Anchor
 *   5.2 - Pagination
 *   5.3 - Button
 * 6.0 - Clearfix
 * 7.0 - mopiko
 */

/*----------------------------------------------------------*/
/* 1.0 - Reset Stylesheet
/*----------------------------------------------------------*/
* {
padding:0;
margin:0;
box-sizing:border-box;
}

body {
	margin:0;
}

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;
}


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



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%;
}



img {
  border: none;
}

: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;
}

/*----------------------------------------------------------*/
/* 2.0 - Typography
/*----------------------------------------------------------*/
body {
	font-family: "リュウミン R-KM","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.8;
  word-wrap: break-word;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.0rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.4rem;
}

p {
  font-size: 1.4rem;
}

blockquote {
  display: block;
  margin-bottom: 40px;
  padding: 16px;
  border: solid 2px #e2e5e8;
  quotes: "\201C""\2018";
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #f4f6fa;
}

blockquote:before {
  line-height: 0.1;
  content: open-quote;
  vertical-align: -32px;
  font-size: 60px;
  font-size: 6.0rem;
  color: #e2e5e8;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

small {
  font-size: 12px;
  font-size: 1.2rem;
}
a:hover{
	cursor : pointer;
}
btn:hover{
	cursor : pointer;
}

/* http://fontawesome.ioe */
.fa {
  margin: 0 4px;
  color: #9b8d77;
}
.bold{
	font-family: "リュウミン B-KL","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
}
.no-bold{
	font-family: "リュウミン R-KM","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
}
/*----------------------------------------------------------*/
/* 3.0 - Elements
/*----------------------------------------------------------*/
table {
  width: 100%;
  font-size: 13px;
  font-size: 1.3rem;
}

table caption {
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-size: 12px;
  font-size: 1.2rem;
}

table th {
  padding: 8px;
  border: solid 1px #e2e5e8;
  vertical-align: middle;
}

table td {
  padding: 8px 16px;
  border: solid 1px #e2e5e8;
}
/* checkbox radio共通 ボタン消去・生成、色付け  */
    input[type=checkbox],input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    vertical-align: -0.8rem;
    transition:all .15s ease-out 0s;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: .4rem;
    outline: none;
    border-radius: 10%;
}
input[type=radio] {
    border-radius: 50%;
}
input[type=radio]:checked:before {
    transform: scale(1);
}
input[type=radio]:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 3px;
    transform: scale(0);
    transition: all ease-out 250ms;
}
input[type=checkbox],input[type=radio] {
    border: 2px solid #A40B5D;
}
input[type=checkbox]:checked,input[type=checkbox]:indeterminate,input[type=radio]:checked:before {
    background: #A40B5D;
}
/*----------------------------------------------------------*/
/* 6.0 - Clearfix
/*----------------------------------------------------------*/
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}



/*----------------------------------------------------------*/
/* 7.0 - origin
/*----------------------------------------------------------*/
figure img {
  vertical-align: bottom;
  width: 100%;
}

a,
a:before,
a:after {
  transition: .4s;
}

@media screen and (min-width:1400px) {
  .pc {
    display: inherit !important;
  }
}
@media screen and (max-width:759px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width:1400px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width:1399px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width:959px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width:759px) {
  .sp {
    display: inherit !important;
  }
}

@media screen and (min-width:1400px) {
  .tb {
    display: none !important;
  }
}
@media screen and (max-width:759px) {
  .tb {
    display: none !important;
  }
}
@media screen and (max-width:959px) {
  .tb {
    display: inherit !important;
  }
}

@media screen and (min-width:1400px) {
  .sm {
    display: none !important;
  }
}
@media screen and (max-width:759px) {
  .sm {
    display: none !important;
  }
}
@media screen and (max-width:559px) {
  .sm {
    display: inherit !important;
  }
}

@media screen and (min-width:1400px) {
  .ss {
    display: none !important;
  }
}
@media screen and (max-width:759px) {
  .ss {
    display: none !important;
  }
}
@media screen and (max-width:559px) {
  .ss {
    display: none !important;
  }
}
@media screen and (max-width:459px) {
  .ss {
    display: inherit !important;
  }
}
