@charset "UTF-8";
:root {
  --font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-serif: "ヒラギノ明朝 ProN","Hiragino Mincho ProN","Yu Mincho Light","YuMincho","Yu Mincho","游明朝体",serif;
  
  --space-small: max(1rem, 5vw);
  --space-medium: clamp(2rem, 8vw, 4rem);
  --space-large: clamp(4rem, 10vw, 8rem);
  --gutter-width: 1rem;

  --color-main:#0c3455;
  --color-main:#6DB162;
  --color-sub:#902727;
  --color-accent:#C4375B;
  --color-text:#333333;
  --color-link:#0068bd;
  --color-base:#f5f5fc;
  --color-gray:#cccccc;

}

/* ---------------------------------------------------
	WordPress エディタ タイトル
*/
html {
  /* font-size: var(--font-size-normal); */
}

/* エディタのタイトル表示 */
.editor-styles-wrapper .editor-post-title__input {
  position: relative;
  border-left: 0.25em solid var(--wp--preset--color--main);
  border-top: 1px solid var(--wp--preset--color--normal);
  border-bottom: 1px solid var(--wp--preset--color--normal);
  border-right: 1px solid var(--wp--preset--color--normal);
  border: 1px solid #333;
  font-size: 24px;
  font-family: var(--font-family-serif);
  padding: 0.7em 0.5em 0.75em 0.5em;
}

.editor-styles-wrapper .editor-post-title__input::before {
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  content: "タイトル";
  font-size: 14px;
  font-weight: normal;
}

.editor-styles-wrapper {
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}


/* ---------------------------------------------------
	WordPress エディタ コンテンツ幅
*/
/* 幅広 */
.wp-block[data-align=wide],
.wp-block.alignwide {
  max-width: var(--wp--style--global--wide-size);
}

/* 全幅 */
.wp-block[data-align=full],
.wp-block.alignfull {
  max-width: none;
}

.is-root-container .wp-block[data-align=full] > .wp-block-group,
.is-root-container .wp-block[data-align=full] > .wp-block-cover {
  padding-left: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
}

/* ブロック間のアキ ＋ box-sizing指定 */
.wp-block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: var(--wp--style--block-gap);
  margin-bottom: var(--wp--style--block-gap);
}

/* ---------------------------------------------------
	WordPress エディタ タイポグラフィ
*/
/*  見出しの上下間スペース */
.editor-styles-wrapper .is-layout-flow > :not(h1) + h2,
.editor-styles-wrapper .is-layout-flow > :not(h1):not(h2) + h3,
.editor-styles-wrapper .is-layout-flow > :not(h1):not(h2):not(h3) + h4,
.editor-styles-wrapper .is-layout-flow > :not(h1):not(h2):not(h3):not(h4) + h5,
.editor-styles-wrapper .is-layout-flow > :not(h1):not(h2):not(h3):not(h4):not(h5) + h6 {
  margin-top: var(--wp--custom--spacing--medium);
}

/* ---------------------------------------------------
	WordPress ブロック 調整
*/

.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image.alignright {
  float: right;
}
.wp-block-image.alignleft {
  float: left;
}

/* グループブロック 背景色アリの場合、Padding追加 */
:where(.wp-block-group.has-background) {
  padding-top: var(--wp--style--block-gap);
  padding-bottom: var(--wp--style--block-gap);
  padding-left: var(--wp--custom--spacing--outer);
  padding-right: var(--wp--custom--spacing--outer);
}

/* メディアブロック */
/* メディアとテキスト間の余白を、theme.json で指定した blockGap の値にする */
.wp-block-media-text {
  gap: var(--wp--style--block-gap);
}

/* テキストコンテンツ部分のデフォルトの左右 padding を打ち消す */
.wp-block-media-text .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 0;
}

/* スペーサーブロック エディタ時のみ表示設定 */
.block-library-spacer__resize-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #999;
  background-color: rgba(255, 0, 162, 0.1);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.block-library-spacer__resize-container::before {
  font-size: 12px;
  content: "スペーサー";
}

/* スペーサーブロック 配置時のアキ調整 */
.wp-block-spacer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.wp-block-spacer + * {
  margin-top: 0 !important;
}

/* ---------------------------------------------------
  WordPress ブロック カスタムスタイル
*/
.is-style-title_underline {
  border-bottom: 2px solid currentColor;
  padding: 0.2em 0.5em;
}

.is-style-title_bar {
  border-left: 2px solid currentColor;
  padding: 0.2em 0.5em;
}

.is-style-title_box {
  border: 1px solid currentColor;
  padding: 0.5em 0.5em;
}

.is-style-p_serif {
  font-family: var(--font-family-serif);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}

.is-style-list_arrow {
  padding-left: 0;
  list-style-type: none;
}
.is-style-list_arrow > li {
  padding-left: 1.5em;
  position: relative;
}
.is-style-list_arrow > li::before {
  position: absolute;
  content: "";
  top: 0.6em;
  left: 0.5em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.4em;
  border-color: transparent transparent transparent currentColor;
}

.wp-block-button .wp-block-button__link {
  position: relative;
  padding: 1.25em 2em 1.25em 2em;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  padding: 1.25em 2em 1.25em 2em;
  border-width: 1px;
  border-color: currentColor;
  border-style: solid;
}
.wp-block-button.is-style-button_arrow .wp-block-button__link {
  padding: 1.25em 3em 1.25em 2em;
}
.wp-block-button.is-style-button_arrow .wp-block-button__link::after {
  position: absolute;
  right: 1em;
  top: 50%;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}
.wp-block-button.is-style-button_outlinearrow .wp-block-button__link {
  color: currentColor;
  background-color: transparent;
  border-width: 1px;
  border-color: currentColor;
  border-style: solid;
  padding: 1.25em 3em 1.25em 2em;
}
.wp-block-button.is-style-button_outlinearrow .wp-block-button__link::after {
  position: absolute;
  right: 1em;
  top: 50%;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.wp-block-separator {
  border-bottom: 2px solid var(--color-gray);
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.wp-block-separator.is-style-wide {
  border-bottom-width: 2px;
}
.wp-block-separator.is-style-dots {
  position: relative;
  overflow: visible;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: currentColor !important;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-separator.is-style-dots:before {
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: currentColor;
  content: "";
  padding-left: 0;
}
.wp-block-separator.is-style-dots:after {
  display: block;
  position: absolute;
  top: 0;
  left: 40px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: currentColor;
  content: "";
  padding-left: 0;
}

.wp-block-search .wp-block-search__button {
  padding: 1em 1.2em;
}/*# sourceMappingURL=style-editor.css.map */