@charset "UTF-8";
/* ブロック */
.editor-styles .block + .block {
  margin-top: 2.5rem;
}

/* 見出し */
.editor-styles h1 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #3D569D;
}
@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 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3D569D;
  border-bottom: 1px solid #707070;
  padding-bottom: 0.4375em;
  margin-top: 2.5em;
}
@media screen and (min-width: 768px) {
  .editor-styles .block h2 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles .block h2 {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1200px), print {
  .editor-styles .block h2 {
    font-size: 2rem;
  }
}

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

.editor-styles .block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .editor-styles .block h3 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

.editor-styles .block ol li:not(:last-child) {
  padding-bottom: 15px;
}

.editor-styles .block ol li:before {
  counter-increment: item 1;
  content: counter(item) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #3D569D;
  display: flex;
  justify-content: end;
  width: 1.5em;
}

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

.editor-styles .block ul li {
  font-size: 0.875rem;
  padding-left: 1.125em;
  line-height: 1.6666666667;
  position: relative;
}
@media screen and (min-width: 768px) {
  .editor-styles .block ul li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles .block ul li {
    font-size: 1.125rem;
  }
}

.editor-styles .block ul li:not(:last-child) {
  padding-bottom: 15px;
}

.editor-styles .block ul li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #3D569D;
  border-radius: 50%;
}

/* 画像 */
.editor-styles .block .image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1076/699;
}

.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;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles .block .caption {
    font-size: 1rem;
  }
}

/* カラム */
.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%;
}

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

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

.editor-styles .block.images.align-center {
  justify-content: center;
}

.editor-styles .block.images.align-right {
  justify-content: flex-end;
}

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

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

.editor-styles .block.table table th,
.editor-styles .block.table table td {
  padding: 0.9375rem;
  border-right: 1px solid #D0D0D0;
  border-left: 1px solid #D0D0D0;
  border-bottom: 1px solid #D0D0D0;
}

.editor-styles .block.table table:not(:has(thead)) tr {
  border-top: 1px solid #D0D0D0;
}

.editor-styles .block.table table thead th {
  background-color: #3D569D;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.5rem 0.9375rem;
  border-color: #FFFFFF;
  border-width: 0 1px;
  border-style: solid;
  white-space: nowrap;
}

.editor-styles .block.table table thead th:first-of-type {
  border-left-color: #3D569D;
}

.editor-styles .block.table table thead th:last-of-type {
  border-right-color: #3D569D;
}

.editor-styles .block.table table tbody th {
  background-color: #F2F5FA;
  color: #3D569D;
  font-weight: 700;
}

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

/* 仮追加 */
.editor-styles .block-section .block .red {
  color: #A72A57;
}
.editor-styles .block-section .align-center {
  text-align: center;
}
.editor-styles .block-section .align-right {
  text-align: right;
}
.editor-styles .block-section .block.images.align-center .items {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.images.align-center .items {
    justify-content: center;
    align-items: stretch;
  }
}
.editor-styles .block-section .block.images.align-right .items {
  align-items: end;
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.images.align-right .items {
    justify-content: end;
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.images .items {
    flex-wrap: wrap;
    gap: 2.5rem;
  }
}
.editor-styles .block-section .block.images.wrap-1 .items li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.images.wrap-1.medium {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.images.wrap-1.small {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.images.wrap-2 .items li, .editor-styles .block-section .block.images.wrap-3 .items li, .editor-styles .block-section .block.images.wrap-4 .items li, .editor-styles .block-section .block.images.wrap-5 .items li, .editor-styles .block-section .block.images.wrap-6 .items li {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media screen and (min-width: 1200px), print {
  .editor-styles .block-section .block.images.wrap-3 .items li {
    width: calc((100% - 5rem) / 3);
  }
  .editor-styles .block-section .block.images.wrap-4 .items li {
    width: calc((100% - 7.5rem) / 4);
  }
  .editor-styles .block-section .block.images.wrap-5 .items li {
    width: calc((100% - 10rem) / 5);
  }
  .editor-styles .block-section .block.images.wrap-6 .items li {
    width: calc((100% - 12.5rem) / 6);
  }
}
.editor-styles .block-section .block.images .items > li.trimming img, .editor-styles .block-section .block.images.trimming .items > li img {
  object-fit: cover;
  aspect-ratio: 1/1;
}
.editor-styles .block-section .block.images .items > li.scale-down img {
  object-fit: scale-down;
}
.editor-styles .block-section .block.images .items > li.inset-s img,
.editor-styles .block-section .block.images .items > li.inset-m img,
.editor-styles .block-section .block.images .items > li.inset-l img {
  object-fit: contain;
}
.editor-styles .block-section .block.images .items > li.inset-s img {
  object-view-box: inset(-50%);
}
.editor-styles .block-section .block.images .items > li.inset-m img {
  object-view-box: inset(-16%);
}
.editor-styles .block-section .block.images .items > li.inset-l img {
  object-view-box: inset(0);
}
.editor-styles .block-section .block.text-image .image img {
  width: 100%;
  aspect-ratio: auto;
}
.editor-styles .block-section .block.text-image.layout-text-image .image img, .editor-styles .block-section .block.text-image.layout-image-text .image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.text-image.column_1-2, .editor-styles .block-section .block.text-image.col_1-2 {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.text-image.column_1-2 .image, .editor-styles .block-section .block.text-image.col_1-2 .image {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.text-image.column_1-2 .texts, .editor-styles .block-section .block.text-image.col_1-2 .texts {
    width: 66%;
  }
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.text-image.column_fixed-free {
    gap: 0;
    justify-content: space-between;
  }
  .editor-styles .block-section .block.text-image.column_fixed-free .image {
    width: 306px;
  }
  .editor-styles .block-section .block.text-image.column_fixed-free .texts {
    width: calc(100% - 356px);
  }
}
.editor-styles .block-section .block.text-image.column_icon-free {
  display: block;
}
.editor-styles .block-section .block.text-image.column_icon-free::after {
  content: "";
  display: block;
  clear: both;
}
.editor-styles .block-section .block.text-image.column_icon-free .image {
  width: fit-content;
  float: left;
  margin: 0 0.625rem 0.3125rem 0;
}
.editor-styles .block-section .block.text-image.column_icon-free .image img {
  width: auto;
  max-width: 80px;
}
@media screen and (min-width: 768px) {
  .editor-styles .block-section .block.text-image.column_icon-free .image img {
    max-width: 160px;
  }
}
.editor-styles .block-section .block.text-image.column_icon-free .texts {
  display: contents;
  width: auto;
}
.editor-styles .block-section .block.text-image.column_icon-free.layout-text-image .image {
  float: right;
  margin: 0 0 0.3125rem 0.625rem;
}
.editor-styles .block-section .block.youtube iframe {
  margin: 0 auto;
  display: block;
}

/* ボタンパーツ追加 */
.editor-styles .block.buttons ul {
  list-style: none;
  padding-left: 0;
}
.editor-styles .block.buttons ul li {
  font-size: 0.875rem;
  padding-left: 1.125em;
  line-height: 1.6666666667;
  position: relative;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.buttons ul li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles .block.buttons ul li {
    font-size: 1.125rem;
  }
}
.editor-styles .block.buttons ul li:not(:last-child) {
  padding-bottom: 15px;
}
.editor-styles .block.buttons ul li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #3D569D;
  border-radius: 50%;
}
.editor-styles .block.buttons ul li:has(a[href$=".pdf"]),
.editor-styles .block.buttons ul li:has(a[href$=".docx"]),
.editor-styles .block.buttons ul li:has(a[href$=".pdf"]),
.editor-styles .block.buttons ul li:has(a[href$=".docx"]),
.editor-styles .block.buttons ul li:has(a[href$=".doc"]),
.editor-styles .block.buttons ul li:has(a[href$=".xlsx"]),
.editor-styles .block.buttons ul li:has(a[href$=".xlsm"]),
.editor-styles .block.buttons ul li:has(a[href$=".xls"]),
.editor-styles .block.buttons ul li:has(a[href$=".pptx"]),
.editor-styles .block.buttons ul li:has(a[href$=".ppt"]),
.editor-styles .block.buttons ul li:has(a[href$=".ppsx"]) {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.buttons ul li:has(a[href$=".pdf"]),
  .editor-styles .block.buttons ul li:has(a[href$=".docx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".pdf"]),
  .editor-styles .block.buttons ul li:has(a[href$=".docx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".doc"]),
  .editor-styles .block.buttons ul li:has(a[href$=".xlsx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".xlsm"]),
  .editor-styles .block.buttons ul li:has(a[href$=".xls"]),
  .editor-styles .block.buttons ul li:has(a[href$=".pptx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".ppt"]),
  .editor-styles .block.buttons ul li:has(a[href$=".ppsx"]) {
    margin-top: 0.4375rem;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles .block.buttons ul li:has(a[href$=".pdf"]),
  .editor-styles .block.buttons ul li:has(a[href$=".docx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".pdf"]),
  .editor-styles .block.buttons ul li:has(a[href$=".docx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".doc"]),
  .editor-styles .block.buttons ul li:has(a[href$=".xlsx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".xlsm"]),
  .editor-styles .block.buttons ul li:has(a[href$=".xls"]),
  .editor-styles .block.buttons ul li:has(a[href$=".pptx"]),
  .editor-styles .block.buttons ul li:has(a[href$=".ppt"]),
  .editor-styles .block.buttons ul li:has(a[href$=".ppsx"]) {
    margin-top: 0.3125rem;
  }
}
.editor-styles .block.buttons ul li a[href$=".pdf"],
.editor-styles .block.buttons ul li a[href$=".docx"],
.editor-styles .block.buttons ul li a[href$=".doc"],
.editor-styles .block.buttons ul li a[href$=".xlsx"],
.editor-styles .block.buttons ul li a[href$=".xlsm"],
.editor-styles .block.buttons ul li a[href$=".xls"],
.editor-styles .block.buttons ul li a[href$=".pptx"],
.editor-styles .block.buttons ul li a[href$=".ppt"],
.editor-styles .block.buttons ul li a[href$=".ppsx"] {
  position: relative;
  padding-left: 48px;
  display: inline-block;
  min-height: 30px;
}
.editor-styles .block.buttons ul li a[href$=".pdf"]:before,
.editor-styles .block.buttons ul li a[href$=".docx"]:before,
.editor-styles .block.buttons ul li a[href$=".doc"]:before,
.editor-styles .block.buttons ul li a[href$=".xlsx"]:before,
.editor-styles .block.buttons ul li a[href$=".xlsm"]:before,
.editor-styles .block.buttons ul li a[href$=".xls"]:before,
.editor-styles .block.buttons ul li a[href$=".pptx"]:before,
.editor-styles .block.buttons ul li a[href$=".ppt"]:before,
.editor-styles .block.buttons ul li a[href$=".ppsx"]:before {
  position: absolute;
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  left: 0;
  top: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .editor-styles .block.buttons ul li a[href$=".pdf"]:before,
  .editor-styles .block.buttons ul li a[href$=".docx"]:before,
  .editor-styles .block.buttons ul li a[href$=".doc"]:before,
  .editor-styles .block.buttons ul li a[href$=".xlsx"]:before,
  .editor-styles .block.buttons ul li a[href$=".xlsm"]:before,
  .editor-styles .block.buttons ul li a[href$=".xls"]:before,
  .editor-styles .block.buttons ul li a[href$=".pptx"]:before,
  .editor-styles .block.buttons ul li a[href$=".ppt"]:before,
  .editor-styles .block.buttons ul li a[href$=".ppsx"]:before {
    top: -0.4375rem;
  }
}
@media screen and (min-width: 992px) {
  .editor-styles .block.buttons ul li a[href$=".pdf"]:before,
  .editor-styles .block.buttons ul li a[href$=".docx"]:before,
  .editor-styles .block.buttons ul li a[href$=".doc"]:before,
  .editor-styles .block.buttons ul li a[href$=".xlsx"]:before,
  .editor-styles .block.buttons ul li a[href$=".xlsm"]:before,
  .editor-styles .block.buttons ul li a[href$=".xls"]:before,
  .editor-styles .block.buttons ul li a[href$=".pptx"]:before,
  .editor-styles .block.buttons ul li a[href$=".ppt"]:before,
  .editor-styles .block.buttons ul li a[href$=".ppsx"]:before {
    top: -0.3125rem;
  }
}
.editor-styles .block.buttons ul li a[href$=".pdf"]:before {
  background-image: url(/media/images/icon/icon_buttons-pdf.webp);
}
.editor-styles .block.buttons ul li a[href$=".docx"]:before,
.editor-styles .block.buttons ul li a[href$=".doc"]:before {
  background-image: url(/media/images/icon/icon_buttons-word.webp);
}
.editor-styles .block.buttons ul li a[href$=".xlsx"]:before,
.editor-styles .block.buttons ul li a[href$=".xlsm"]:before,
.editor-styles .block.buttons ul li a[href$=".xls"]:before {
  background-image: url(/media/images/icon/icon_buttons-excel.webp);
}
.editor-styles .block.buttons ul li a[href$=".pptx"]:before,
.editor-styles .block.buttons ul li a[href$=".ppt"]:before,
.editor-styles .block.buttons ul li a[href$=".ppsx"]:before {
  background-image: url(/media/images/icon/icon_buttons-ppt.webp);
}/*# sourceMappingURL=editor-styles.css.map */