@charset "UTF-8";
/**
 * Variable
 * ==========================================================================
 */
:root {
  --color-blue: #27294E;
  --color-white: #ffffff;
  --color-white2: #DCDCDC;
  --color-black: #242424;
  --color-yellow: #A89A00;
  --color-grayLight: #EEEEF3;
  --color-grayLight2: #B3B5CC;
  --color-graymiddle: #686983;
  --color-gray555: #555;
  --color-grayAAA: #aaa;
  --fontJpSanSerif: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  --fontEnSerif: "gelato-fresco-variable", sans-serif;
}

/**
 * Editor-area
 * ==========================================================================
 */
.editor-area {
  max-width: 100rem;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .editor-area {
    font-size: 1.5rem;
  }
}
.editor-area > *:first-child {
  margin-top: 0 !important;
}
.editor-area > p {
  min-height: 1px;
  margin-bottom: 1.8em;
}
.editor-area .wp-block-heading {
  margin-top: 2em;
  margin-bottom: 2em;
  line-height: 1.6;
  font-weight: bold;
}
@media (max-width: 768px) {
  .editor-area .wp-block-heading {
    margin-top: 1.6em;
    margin-bottom: 1.6em;
  }
}
.editor-area h1 {
  font-size: 4.2rem;
}
.editor-area h2 {
  font-size: 3.2rem;
}
.editor-area h3 {
  font-size: 2.8rem;
}
.editor-area h4 {
  font-size: 2.4rem;
}
.editor-area h5 {
  font-size: 2rem;
}
.editor-area h6 {
  font-size: 1.8rem;
}
.editor-area .title {
  margin-bottom: 1em;
  padding-top: 0.75em;
  position: relative;
  text-align: center;
  font-size: 4.2rem;
  color: var(--color-blue);
}
@media (max-width: 1440px) {
  .editor-area .title {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .editor-area .title {
    padding-top: 0.95em;
    text-align: left;
    font-size: 3rem;
  }
}
@media (max-width: 425px) {
  .editor-area .title {
    font-size: 2.4rem;
  }
  .editor-area .title br {
    display: none;
  }
}
.editor-area .title:not(:first-child) {
  margin-top: 2.5em;
}
.editor-area .title::before {
  content: "";
  width: 6rem;
  height: 0.6rem;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-yellow);
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .editor-area .title::before {
    width: 5rem;
    right: auto;
  }
}
.editor-area .overflow {
  margin-left: -10rem;
  margin-right: -10rem;
}
@media (max-width: 1440px) {
  .editor-area .overflow {
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
@media (max-width: 1024px) {
  .editor-area .overflow {
    margin-left: 0;
    margin-right: 0;
  }
}
.editor-area .blue,
.editor-area .yellow {
  padding-left: 2.6rem;
  position: relative;
}
.editor-area .blue::before,
.editor-area .yellow::before {
  content: "";
  width: 0.5rem;
  position: absolute;
  top: 0.1em;
  bottom: 0.1em;
  left: 0;
  border-radius: 1rem;
}
.editor-area .blue::before {
  background-color: var(--color-blue);
}
.editor-area .yellow::before {
  background-color: var(--color-yellow);
}
.editor-area .left_line {
  margin-bottom: 1em;
  padding-left: 9rem;
  position: relative;
}
@media (max-width: 768px) {
  .editor-area .left_line {
    padding-left: 4rem;
  }
}
.editor-area .left_line::before {
  content: "";
  width: 7.5rem;
  height: 0.2rem;
  position: absolute;
  top: calc(0.8em - 0.1rem);
  left: 0;
  background-color: var(--color-black);
}
@media (max-width: 768px) {
  .editor-area .left_line::before {
    width: 3rem;
  }
}
.editor-area .wp-block-buttons {
  margin: 1.8em auto;
}
.editor-area .wp-block-button__link {
  padding: 1.1rem 8.5rem 1.1rem 6rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: left;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--color-yellow);
  border: 0.1rem solid var(--color-blue);
  border-radius: 3.5em;
  transition: color ease 0.3s, border-color ease 0.3s;
}
@media (max-width: 1440px) {
  .editor-area .wp-block-button__link {
    padding: 1rem 6.5rem 1rem 5rem;
  }
}
.editor-area .wp-block-button__link:hover {
  color: var(--color-white);
  background-color: var(--color-yellow);
  border-color: var(--color-yellow);
}
.editor-area .wp-block-button__link:hover::before {
  transform: scale(0, 1);
  transform-origin: right center;
}
.editor-area .wp-block-button__link:hover::after {
  color: var(--color-yellow);
  background-color: var(--color-white);
  background-image: url(../images/icon-arrow-yellow.svg);
}
.editor-area .wp-block-button__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-blue);
  border-radius: 3.5em;
  transform-origin: left center;
  transition: transform cubic-bezier(0.4, 0.2, 0.05, 1) 0.6s;
}
.editor-area .wp-block-button__link::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% - 1.2rem);
  right: 1rem;
  font-size: 1.2rem;
  font-family: "Font Awesome 6 Free";
  color: var(--color-white);
  background: var(--color-yellow) url(../images/icon-arrow-white.svg) no-repeat center/65%;
  border-radius: 100%;
  transition: color ease 0.3s 0.3s, background-color ease 0.3s 0.3s, background-image ease 0.3s 0.3s;
}
@media (max-width: 768px) {
  .editor-area .wp-block-button__link::after {
    width: 2.8rem;
    height: 2.8rem;
    top: calc(50% - 1.4rem);
  }
}
.editor-area .is-style-outline .wp-block-button__link {
  color: var(--color-blue);
  background-color: var(--color-yellow);
}
.editor-area .is-style-outline .wp-block-button__link::before {
  background-color: var(--color-white);
}
.editor-area .is-style-outline .wp-block-button__link:hover {
  color: var(--color-white);
}
.editor-area ul,
.editor-area ol {
  line-height: 1.6;
}
.editor-area ul li:not(:first-child),
.editor-area ol li:not(:first-child) {
  margin-top: 0.4em;
}
.editor-area ul {
  margin-bottom: 1.7em;
  padding-left: 1.6em;
  list-style: disc;
}
.editor-area ol {
  margin-bottom: 1.7em;
  padding-left: 1.6em;
  list-style: decimal;
}
.editor-area ol li::marker {
  margin-right: 1em;
}
.editor-area .wp-block-table {
  width: 100%;
  margin: 2rem auto 3rem;
  display: block;
  overflow-x: auto;
  line-height: 1.6;
}
.editor-area .wp-block-table tr {
  border-top: 1px solid var(--color-grayLight);
}
.editor-area .wp-block-table tr:last-child {
  border-bottom: 1px solid var(--color-grayLight);
}
.editor-area .wp-block-table th,
.editor-area .wp-block-table td {
  border: none;
}
.editor-area .wp-block-table th:first-child,
.editor-area .wp-block-table td:first-child {
  width: 30%;
}
.editor-area .wp-block-table thead {
  border: none;
}
.editor-area .wp-block-table thead th {
  padding: 3rem 2rem;
  text-align: center;
  font-weight: 400;
  background-color: var(--color-grayLight);
  border-bottom: 1px solid var(--color-white);
}
@media (max-width: 768px) {
  .editor-area .wp-block-table thead th {
    padding: 2rem 1rem;
  }
}
.editor-area .wp-block-table thead th:not(:first-child) {
  border-left: 2rem solid var(--color-white);
}
.editor-area .wp-block-table tbody th,
.editor-area .wp-block-table tbody td {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .editor-area .wp-block-table tbody th,
  .editor-area .wp-block-table tbody td {
    padding: 2rem 0;
  }
}
.editor-area .wp-block-table table:has(thead) {
  min-width: 50rem;
}
@media (max-width: 768px) {
  .editor-area .wp-block-table table:has(thead) thead th:first-child {
    width: 26%;
  }
}
.editor-area .wp-block-table table:has(thead) tbody td:first-child {
  padding-right: 1rem;
}
.editor-area .wp-block-table table:has(thead) tbody td:not(:first-child) {
  padding-left: 2rem;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .editor-area .wp-block-table table:not(:has(thead)) tr {
    display: grid;
  }
}
@media (max-width: 768px) {
  .editor-area .wp-block-table table:not(:has(thead)) th:first-child,
  .editor-area .wp-block-table table:not(:has(thead)) td:first-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .editor-area .wp-block-table table:not(:has(thead)) th:not(:first-child),
  .editor-area .wp-block-table table:not(:has(thead)) td:not(:first-child) {
    padding-top: 0;
  }
}
.editor-area .wp-block-table.frame {
  padding: 0.5rem 4rem;
  border: solid 3px var(--color-grayLight);
}
@media (max-width: 768px) {
  .editor-area .wp-block-table.frame {
    padding: 0.5rem 2rem;
  }
}
.editor-area .wp-block-table.frame table:has(thead) {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .editor-area .wp-block-table.frame table:has(thead) {
    margin-top: 2rem;
  }
}
.editor-area .wp-block-table.frame tr:first-child {
  border-top: none;
}
.editor-area .wp-block-table.frame tr:last-child {
  border-bottom: none;
}
.editor-area .wp-block-table.is-style-stripes {
  border-bottom: none;
}
.editor-area .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--color-grayLight);
}
.editor-area .wp-block-table.is-style-stripes tr:first-child {
  border-top: none;
}
.editor-area .wp-block-table.is-style-stripes tr > :first-child {
  padding-left: 4rem;
}
@media (max-width: 768px) {
  .editor-area .wp-block-table.is-style-stripes tr > :first-child {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.editor-area .wp-block-table.is-style-stripes tr > :not(:first-child) {
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .editor-area .wp-block-table.is-style-stripes tr > :not(:first-child) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.editor-area .wp-block-image {
  max-width: 60rem;
  margin: 5rem auto;
  overflow: hidden;
  border-radius: 1rem;
}/*# sourceMappingURL=editor-area.css.map */