@charset "UTF-8";
/**
 * @ page.css
 *
 * 
 */
/* ==============================
  editor
============================== */
.under .editor {
  padding-bottom: 120px;
}
.under .editor .inner * {
  color: #393939;
}
.under .editor .inner > *:not(h2, h3, h4) {
  margin-bottom: 40px;
}
.under .editor .inner p + p {
  margin-top: -24px;
}
.under .editor p:not(:last-child),
.under .editor :is(ul, ol):not(:last-child),
.under .editor table:not(:last-child),
.under .editor figure:not(:last-child) {
  margin-bottom: 40px;
}
.under .editor h2 {
  margin: 70px 0 20px;
}
.under .editor :is(h3, h4) {
  margin: 40px 0 20px;
}
.under .editor div > *:first-child {
  margin-top: 0;
}
.under .editor div > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .under .editor .inner p {
    line-height: 1.8;
  }
}

/* ==============================
  各ブロック
============================== */
/* 見出し*/
.under .editor h2 {
  font-size: 4rem;
  font-weight: 700;
}
.under .editor h3 {
  font-size: 3.2rem;
  font-weight: 700;
}
.under .editor h4 {
  font-size: 2.6rem;
  font-weight: 700;
}
/* リスト*/
.under .editor ul li {
  padding-left: 1.6em;
  position: relative;
}
.under .editor ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73adea;
  position: absolute;
  left: 0.5em;
  top: 0.4em;
  display: inline-block;
}
.under .editor ol {
  counter-reset: number;
}
.under .editor ol li {
  padding-left: 1.6em;
  list-style-type: none;
  position: relative;
}
.under .editor ol li:not(.snow-monkey-form ol li)::before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 5px;
}
.under .editor :is(ul, ol) li:not(:last-child) {
  margin-bottom: 1em;
}
/* テーブル */
.under .editor table tr > * {
  border: 1px solid #cdcdce;
  padding: 15px;
  vertical-align: middle;
}
.under .editor table th {
  background: #dbedff;
  font-weight: 400;
}
.under .editor figcaption {
  margin-top: 5px;
  font-size: 1.5rem;
}
/* ボタン */
.under .editor .wp-block-buttons {
  gap: 30px;
}
.under .editor .wp-block-button {
  width: fit-content;
}
.under .editor .wp-block-button a {
  display: block;
  width: fit-content;
  min-width: 359px;
  max-width: 100%;
  background: url(../img/arrow_white.svg) #a4cdf6 no-repeat center right 19px / 11px 18px;
  border-radius: 40px;
  font-size: 1.9rem;
  font-weight: 500;
  padding: 15px 40px 11px;
  text-align: center;
  box-shadow: 0 2px 2px 0px rgb(0 0 0 / 35%);
}
.under .editor .wp-block-button:hover a {
  box-shadow: none;
  transform: translate3d(0, 2px, 0);
}
/* テキストリンク */
.under .editor a:not(.wp-block-button a) {
  color: #2d75c1 !important;
}
.under .editor a:not(.wp-block-button a):hover {
  color: #85b1df !important;
}
/* 画像が中央寄せにならない */
/* .under .editor .wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
} */

@media screen and (max-width: 768px) {
  .under .editor .wp-block-button a {
    min-width: 260px;
  }
  .under .editor h2 {
    font-size: 3.2rem;
  }
  .under .editor h3 {
    font-size: 2.9rem;
  }
  .under .editor h4 {
    font-size: 2.6rem;
  }
}
/* ==============================
  追加cssクラス
============================== */
.under .editor .border-blue {
  border: 4px solid #a4cdf6;
  border-radius: 15px;
  padding: 40px;
}
.under .editor .border-red {
  border: 4px solid #f97575;
  border-radius: 15px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .under .editor .border-blue,
  .under .editor .border-red {
    padding: 40px 20px;
  }
}
