@charset "UTF-8";
/* ブロック */
.editor-styles .block + .block {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block + .block {
    margin-top: 1.875rem;
  }
}

/* 見出し */
.editor-styles h1 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #22A3D4;
}
@media screen and (min-width: 768px) {
  .editor-styles h1 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles h1 {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1200px), print {
  .editor-styles h1 {
    font-size: 2.5625rem;
  }
}

.editor-styles .block h2 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4545454545;
  padding-left: 0.875rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block h2 {
    font-size: 1.375rem;
    padding: 0.25rem 0 0.25rem 1.625rem;
    margin-top: 3.125rem;
  }
}

.editor-styles .block h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #153E68;
}
@media screen and (min-width: 768px) {
  .editor-styles .block h2::before {
    width: 8px;
  }
}

.editor-styles .block.text.h2 + .block {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.text.h2 + .block {
    margin-top: 1.25rem;
  }
}

.editor-styles .block h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .editor-styles .block h3 {
    font-size: 1.25rem;
  }
}

.editor-styles .block h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4705882353;
}
@media screen and (min-width: 768px) {
  .editor-styles .block h4 {
    font-size: 1.0625rem;
  }
}

/* 段落 */
.editor-styles .block p {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .editor-styles .block p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block p {
    font-size: 1rem;
  }
}

/* 太字 */
.editor-styles .block p strong {
  font-weight: 700;
}

/* 赤字 */
.editor-styles .block .text-red {
  color: #E50024;
}

/* テキストリンクの装飾 */
.editor-styles .block a {
  color: #22A3D4;
  text-decoration: underline;
  transition: 0.3s;
  visibility: visible;
  text-underline-offset: 0.2em;
}

.editor-styles .block a:hover {
  opacity: 1;
  color: #22A3D4;
  text-decoration: none;
}

/* リスト項目（数字付き） */
.editor-styles .block ol {
  padding-left: 0;
  list-style-type: none;
  counter-reset: item;
}

.editor-styles .block ol li {
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 1.25rem;
  line-height: 1.6666666667;
  position: relative;
}
@media screen and (min-width: 768px) {
  .editor-styles .block ol li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}

.editor-styles .block ol li:not(:last-child) {
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .editor-styles .block ol li:not(:last-child) {
    padding-bottom: 10px;
  }
}

.editor-styles .block ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 2px;
}

/* リスト項目（箇条書き） */
.editor-styles .block ul {
  list-style: none;
  padding-left: 0;
}

.editor-styles .block:not(.buttons) ul li {
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 1.25rem;
  line-height: 1.6666666667;
  position: relative;
}
@media screen and (min-width: 768px) {
  .editor-styles .block:not(.buttons) ul li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}

.editor-styles .block:not(.buttons) ul li:not(:last-child) {
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .editor-styles .block:not(.buttons) ul li:not(:last-child) {
    padding-bottom: 10px;
  }
}

.editor-styles .block:not(.buttons) ul li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.2em;
  width: 5px;
  height: 5px;
  background: #153E68;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .editor-styles .block:not(.buttons) ul li::before {
    left: 0.1em;
  }
}

.editor-styles .block:not(.buttons) ul li > *:first-child {
  margin-top: 0.375rem;
}

/* 画像 */
.editor-styles .block .image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 818/491;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block .image img {
    border-radius: 1.25rem;
  }
}

.editor-styles .block .caption {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.625;
  margin-top: 0.75em;
}
@media screen and (min-width: 768px) {
  .editor-styles .block .caption {
    font-size: 0.875rem;
  }
}

/* カラム */
.block.text-image.layout-text-image,
.block.text-image.layout-image-text {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .block.text-image.layout-text-image,
  .block.text-image.layout-image-text {
    gap: 4.6468401487%;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .block.text-image.layout-text-image {
    /* カラム（右に画像） */
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .block.text-image.layout-text-image .image,
  .block.text-image.layout-image-text .image {
    width: 49.2565055762%;
  }
}

@media screen and (min-width: 768px) {
  .block.text-image.layout-text-image .texts,
  .block.text-image.layout-image-text .texts {
    width: 46.0966542751%;
  }
}

.block.text-image.layout-text-image .image img,
.block.text-image.layout-image-text .image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block.text-image.layout-text-image .image img,
  .block.text-image.layout-image-text .image img {
    width: auto;
  }
}

.block.text-image.layout-text-image .texts .title,
.block.text-image.layout-image-text .texts .title {
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .block.text-image.layout-text-image .texts .title,
  .block.text-image.layout-image-text .texts .title {
    margin-bottom: 1.25rem;
  }
}

.block.text-image.layout-text-image .texts .title:not(:first-of-type),
.block.text-image.layout-image-text .texts .title:not(:first-of-type) {
  margin-top: 1.5em;
}

/* 画像カラム */
.editor-styles .block.images .items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.images .items {
    gap: 2.5rem;
    flex-direction: row;
  }
}

.editor-styles .block.images li {
  padding: 0;
  margin: 0;
}

.editor-styles .block.images li:not(:last-child) {
  padding-bottom: 0;
}

.editor-styles .block.images li::before {
  display: none;
}

.editor-styles .block.images.wrap-1 li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.wrap-2 li {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.wrap-3 li {
    width: 33.3333333333%;
  }
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.wrap-4 li {
    width: 25%;
  }
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.wrap-5 li {
    width: 20%;
  }
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.wrap-6 li {
    width: 16.6666666667%;
  }
}

.editor-styles .block.images li img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.align-center {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block.images.align-center .items {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .editor-styles .block.images.align-right {
    justify-content: flex-end;
  }
}

/* テーブル */
.editor-styles .block.table table {
  width: 100%;
  font-size: 0.8125rem;
  border: 1px solid #C4C4C4;
}
@media screen and (min-width: 576px) {
  .editor-styles .block.table table {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block.table table {
    font-size: 1rem;
  }
}

.editor-styles .block.table table caption {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625em;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.table table caption {
    font-size: 1rem;
  }
}

.editor-styles .block.table table th,
.editor-styles .block.table table td {
  padding: 1rem 1.25rem;
  border-right: 1px solid #C4C4C4;
  border-left: 1px solid #C4C4C4;
  border-top: 1px solid #C4C4C4;
}

.editor-styles .block.table table thead th {
  background-color: #F2F2F2;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border-width: 0 1px;
  border-style: solid;
  white-space: normal;
}

.editor-styles .block.table table tbody td {
  font-weight: 400;
}

/* youtube */
.editor-styles .block.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 51.125rem;
}

.editor-styles .block.buttons ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 8px;
}

.editor-styles .block.buttons a {
  position: relative;
  color: #fff;
  background-color: #153E68;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  padding: 1em 2.5em;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1111111111;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  text-decoration: unset;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.buttons a {
    font-size: 1.125rem;
  }
}

.editor-styles .block.buttons a:hover {
  color: #153E68;
  background-color: #fff;
  border-color: #153E68;
  opacity: 1;
}

.editor-styles .block.buttons a:after {
  position: absolute;
  top: 50%;
  right: 1.1111111111em;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.3888888889em;
  height: 0.6666666667em;
  mask-image: url(/media/images/icon/icon_arrow-right_wh.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s ease-in;
  background-color: #fff;
}

.editor-styles .block.buttons a:hover:after {
  background-color: #153E68;
}/*# sourceMappingURL=editor-style.css.map */