@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");
:root {
  --black: #262626;
  --color_key: #0096E0;
  --color_key_light:#E6F3FA;
  --color_key_hover: rgb(0 150 224 / 70%);
  --blue_gray:#A5CBDD;
  --gray_text: #707070;
  --line_gray: #D6D6D6;
  --line_blue: #9CCEE5;
  --gray_light:#F7F7F7;
  --yellow:#F0DD07;
  --light_yellow:#FEFBD9;
  --font_base: "Zen Kaku Gothic New", sans-serif;
  --font_key: "Zen Maru Gothic", serif;
}

@-webkit-keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html .mce-content-body {
  width: 90%;
  max-width: 760px;
  margin: 0 auto 0;
  font-family: sans-serif;
}

body.mceContentBody {
  line-height: 2;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  padding: 10px 0 0 !important;
  text-align: left;
}

.mceContentBody {
  line-height: 2;
  color: #000;
}
.mceContentBody a {
  color: #0769e4;
  text-decoration: underline;
}
.mceContentBody a:hover {
  color: #2d60a0;
  text-decoration: none;
}
.mceContentBody h2 {
  font-size: 1.5em;
}
.mceContentBody h2::before {
  content: "ーーー";
}
.mceContentBody h3 {
  font-size: 1.3em;
  position: relative;
  padding-left: 1.75em;
}
.mceContentBody h3::before {
  content: "";
  display: block;
  width: 0.45em;
  height: 0.45em;
  position: absolute;
  top: 0.55em;
  left: 0.5em;
  background-color: var(--color_key);
  border-radius: 100%;
}
.mceContentBody h4 {
  font-size: 1.3em;
  color: var(--color_key);
}
.mceContentBody h5 {
  font-size: 1.2em;
  color: var(--color_key);
}
.mceContentBody h6 {
  font-size: 1.1em;
  color: var(--color_key);
}
.mceContentBody h2, .mceContentBody h3, .mceContentBody h4, .mceContentBody h5, .mceContentBody h6 {
  line-height: 1.4;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.mceContentBody p {
  font-size: inherit;
  line-height: inherit;
  margin-top: 2em;
  margin-bottom: 2em;
}
.mceContentBody ul ul,
.mceContentBody ul ol,
.mceContentBody ol ul,
.mceContentBody ol ol {
  margin-bottom: 0;
}
.mceContentBody ul li,
.mceContentBody ol li {
  margin-bottom: initial;
  list-style: none;
}
.mceContentBody ul, .mceContentBody ol {
  margin-bottom: 2.5em;
  padding: inherit;
  background: #E6F3FA;
  padding: 2em 5%;
  border-radius: 1.2em;
}
@media (max-width: 600px) {
  .mceContentBody ul, .mceContentBody ol {
    padding: 1.5em 4vw;
  }
}
.mceContentBody ul li, .mceContentBody ol li {
  padding-left: 1.2em;
  position: relative;
}
.mceContentBody ul li:not(:last-child), .mceContentBody ol li:not(:last-child) {
  margin-bottom: 1em;
}
.mceContentBody ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.2em;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--color_key);
  border-radius: 50%;
}
.mceContentBody ol {
  counter-reset: number 0; /* カウンターを0からリセット */
}
.mceContentBody ol li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  font-weight: bold;
}
.mceContentBody ul ul,
.mceContentBody ol ul {
  list-style-type: circle;
}
.mceContentBody strong {
  font-weight: bold;
  position: relative;
  background: #E6F3FA;
  display: inline-block;
}
.mceContentBody figure {
  margin-bottom: 2em;
}
.mceContentBody figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
.mceContentBody img {
  display: block;
  height: auto;
  max-width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
}
.mceContentBody .wp-caption {
  width: 100% !important;
}
.mceContentBody .wp-caption img {
  margin-bottom: 1em;
}
.mceContentBody .wp-caption-text {
  color: #707070;
}
.mceContentBody .wp-block-quote {
  border-left: 4px solid #000;
  margin: 0 0 28px;
  padding-left: 1em;
}
.mceContentBody pre {
  background: #fff;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.mceContentBody blockquote {
  font-size: 16px;
  font-weight: 300;
  margin: auto;
  width: 92%;
  background: #fff;
  padding: 20px 20px;
  margin: 0 auto 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #e6e6e6;
  position: relative;
}
.mceContentBody blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: block;
  position: absolute;
  left: -20px;
  top: 10px;
  width: 30px;
  font-size: 16px;
  height: 30px;
  line-height: 30px;
  background: #cccccc;
  color: #fff;
  border: 1px solid #aaa;
  text-align: center;
  border-radius: 50%;
}
.mceContentBody blockquote p {
  margin: 0 auto 30px;
  width: auto !important;
  font-size: 0.9em;
}
.mceContentBody blockquote p:last-child {
  margin-bottom: 0 !important;
}
.mceContentBody blockquote blockquote {
  margin-right: 0;
}
.mceContentBody blockquote cite,
.mceContentBody blockquote small {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}
.mceContentBody cite {
  border-bottom: 0;
}
.mceContentBody abbr[title] {
  border-bottom: 1px dotted;
}
.mceContentBody address {
  font-style: italic;
  margin: 0 0 24px;
}
.mceContentBody del {
  color: #333;
}
.mceContentBody ins {
  background: #fff9c0;
  border: none;
  color: #333;
  text-decoration: none;
}
.mceContentBody table {
  border-top: 1px solid #333;
  width: 100%;
  margin-bottom: 2em;
}
.mceContentBody table tr {
  border-bottom: 1px solid #333;
}
.mceContentBody table tr td {
  padding: 1em 0.5em;
}
.mceContentBody div.shopTable_bttomLink {
  margin-top: -30px;
}
.mceContentBody div.shopTable_bttomLink a {
  display: block;
  text-align: right;
  color: #f4901e;
  font-weight: bold;
  font-size: 0.9em;
}
.mceContentBody div.shopTable_bttomLink a i {
  margin-left: 5px;
}
.mceContentBody div.shopTable_bttomLink a:hover {
  color: #ff5e00;
}
.mceContentBody div.column {
  width: 95%;
  margin: auto;
}
.mceContentBody div.column div.wp-caption {
  max-width: 100% !important;
}
.mceContentBody div.column img {
  max-width: 100%;
  height: auto;
}
.mceContentBody iframe {
  width: 100%;
  max-height: 490px;
  height: 35vw;
}

@media (max-width: 600px) {
  .mceContentBody table tr {
    display: block;
    height: auto !important;
  }
  .mceContentBody table tr td {
    display: block;
    width: 100% !important;
    height: auto !important;
    padding: 0.5em;
  }
  .mceContentBody table tr td:first-child {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=editor-style.css.map */