/* エディタ・フロントエンド共通css
	@media(min-width:@pc)
	@media(max-width:@sp)
-------------------------------------------*/
@import "../icomoon/style.css";
@import "https://use.typekit.net/fkj5mrs.css";
@keyframes bgmover150 {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 150px bottom;
  }
}
@keyframes bgmover1300 {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 1300px bottom;
  }
}
@keyframes fadeindown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  30% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  30% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes smallbig {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
@media (min-width: 769px) {
  .wp-editor {
    margin: 2em !important;
  }
  .article-content,
  #wpwrap .wp-block,
  .wp-editor {
    max-width: 1000px;
    margin: auto;
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 17px;
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .article-content .editor-post-title__input,
  #wpwrap .wp-block .editor-post-title__input,
  .wp-editor .editor-post-title__input {
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 50px;
  }
  .article-content h2,
  #wpwrap .wp-block h2,
  .wp-editor h2 {
    font-size: 150%;
    padding: 0.5em 0 0;
    line-height: 1.5;
    border-bottom: 3px solid #737373;
    margin: 6em 0 1em;
  }
  .article-content h3,
  #wpwrap .wp-block h3,
  .wp-editor h3 {
    font-size: 130%;
    padding: 0 0 0 1em;
    line-height: 1.5;
    border-left: 5px solid #737373;
    margin: 4em 0 1em;
  }
  .article-content h4,
  #wpwrap .wp-block h4,
  .wp-editor h4 {
    display: inline-block;
    background: #e4e4e4;
    line-height: 1.5em;
    padding: 0 0.5em;
    font-size: 120%;
    margin: 3em 0 0.5em;
  }
  .article-content p,
  #wpwrap .wp-block p,
  .wp-editor p {
    margin: 2em 0;
  }
  .article-content a,
  #wpwrap .wp-block a,
  .wp-editor a {
    color: #58B2DC;
    text-decoration: underline;
  }
  .article-content a:hover,
  #wpwrap .wp-block a:hover,
  .wp-editor a:hover {
    text-decoration: none;
  }
  .article-content img,
  #wpwrap .wp-block img,
  .wp-editor img {
    max-width: 100%;
    height: auto;
  }
  .article-content figure,
  #wpwrap .wp-block figure,
  .wp-editor figure {
    margin: 0;
  }
  .article-content ul,
  #wpwrap .wp-block ul,
  .wp-editor ul,
  .article-content ol,
  #wpwrap .wp-block ol,
  .wp-editor ol {
    padding: 1em 3em;
    margin: 2em 0;
    overflow: hidden;
    background: #FBFCF8;
  }
  .article-content li,
  #wpwrap .wp-block li,
  .wp-editor li {
    margin: 1em 0;
  }
  .article-content table,
  #wpwrap .wp-block table,
  .wp-editor table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #bbbbbb;
    margin: 2em 0;
  }
  .article-content td,
  #wpwrap .wp-block td,
  .wp-editor td {
    border: 1px solid #bbbbbb;
    padding: 1em;
  }
  .article-content blockquote,
  #wpwrap .wp-block blockquote,
  .wp-editor blockquote {
    overflow: hidden;
    border-left: 0;
    background: #e4e4e4;
    padding: 1em 2em;
    margin: 2em 0;
    position: relative;
    z-index: 0;
  }
  .article-content blockquote::before,
  #wpwrap .wp-block blockquote::before,
  .wp-editor blockquote::before,
  .article-content blockquote::after,
  #wpwrap .wp-block blockquote::after,
  .wp-editor blockquote::after {
    content: "\f122";
    font-family: dashicons;
    position: absolute;
    font-size: 200%;
    z-index: -1;
    color: #737373;
  }
  .article-content blockquote::before,
  #wpwrap .wp-block blockquote::before,
  .wp-editor blockquote::before {
    top: 0;
    left: 0.5em;
  }
  .article-content blockquote::after,
  #wpwrap .wp-block blockquote::after,
  .wp-editor blockquote::after {
    bottom: 0;
    right: 0.5em;
    transform: rotate(180deg);
  }
  .article-content figcaption,
  #wpwrap .wp-block figcaption,
  .wp-editor figcaption {
    font-size: 0.9em;
    color: #737373;
  }
  .article-content .wp-block-button__link,
  #wpwrap .wp-block .wp-block-button__link,
  .wp-editor .wp-block-button__link {
    font-size: 1em;
    line-height: 1em;
    text-decoration: none;
    border: 1px solid #000;
    background: none;
    color: #000;
    border-radius: 5px;
    padding: 10px 30px 10px 15px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 1em auto;
    position: relative;
  }
  .article-content .wp-block-button__link:hover,
  #wpwrap .wp-block .wp-block-button__link:hover,
  .wp-editor .wp-block-button__link:hover {
    background: #58B2DC;
    border-color: #58B2DC;
    color: #fff;
  }
  .article-content .wp-block-button__link::after,
  #wpwrap .wp-block .wp-block-button__link::after,
  .wp-editor .wp-block-button__link::after {
    content: "\f139";
    font-family: dashicons;
    position: absolute;
    font-size: 130%;
    line-height: 1em;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .article-content .wp-block-group__inner-container,
  #wpwrap .wp-block .wp-block-group__inner-container,
  .wp-editor .wp-block-group__inner-container {
    display: flex;
    justify-content: center;
  }
  .article-content .wp-block-group__inner-container > .wp-block-button,
  #wpwrap .wp-block .wp-block-group__inner-container > .wp-block-button,
  .wp-editor .wp-block-group__inner-container > .wp-block-button {
    margin: 0.5em;
  }
  .article-content .wp-block-group__inner-container .editor-inner-blocks,
  #wpwrap .wp-block .wp-block-group__inner-container .editor-inner-blocks,
  .wp-editor .wp-block-group__inner-container .editor-inner-blocks,
  .article-content .wp-block-group__inner-container block-editor-inner-blocks,
  #wpwrap .wp-block .wp-block-group__inner-container block-editor-inner-blocks,
  .wp-editor .wp-block-group__inner-container block-editor-inner-blocks {
    width: 100%;
  }
  .article-content .wp-block-group__inner-container .editor-inner-blocks .editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container .editor-inner-blocks .editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container .editor-inner-blocks .editor-block-list__layout,
  .article-content .wp-block-group__inner-container block-editor-inner-blocks .editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container block-editor-inner-blocks .editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container block-editor-inner-blocks .editor-block-list__layout,
  .article-content .wp-block-group__inner-container .editor-inner-blocks .block-editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container .editor-inner-blocks .block-editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container .editor-inner-blocks .block-editor-block-list__layout,
  .article-content .wp-block-group__inner-container block-editor-inner-blocks .block-editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container block-editor-inner-blocks .block-editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container block-editor-inner-blocks .block-editor-block-list__layout {
    display: flex;
    justify-content: center;
  }
  .article-content .wpcf7,
  #wpwrap .wp-block .wpcf7,
  .wp-editor .wpcf7 {
    width: 800px;
    margin: 0 auto;
  }
  .article-content .wpcf7 p,
  #wpwrap .wp-block .wpcf7 p,
  .wp-editor .wpcf7 p {
    width: 800px;
    text-align: center;
  }
  .article-content .wpcf7 p a,
  #wpwrap .wp-block .wpcf7 p a,
  .wp-editor .wpcf7 p a {
    color: #58B2DC;
  }
  .article-content .wpcf7 dl,
  #wpwrap .wp-block .wpcf7 dl,
  .wp-editor .wpcf7 dl {
    width: 800px;
    margin: 0 auto;
    padding: 25px 0;
  }
  .article-content .wpcf7 dl + dl,
  #wpwrap .wp-block .wpcf7 dl + dl,
  .wp-editor .wpcf7 dl + dl {
    margin-top: -1px;
  }
  .article-content .wpcf7 dl dt,
  #wpwrap .wp-block .wpcf7 dl dt,
  .wp-editor .wpcf7 dl dt {
    line-height: 1.5;
    padding: 0.5em;
  }
  .article-content .wpcf7 dl dd,
  #wpwrap .wp-block .wpcf7 dl dd,
  .wp-editor .wpcf7 dl dd {
    width: 70%;
  }
  .article-content .wpcf7 dl dd p,
  #wpwrap .wp-block .wpcf7 dl dd p,
  .wp-editor .wpcf7 dl dd p {
    margin: 0;
  }
  .article-content .wpcf7 dl dd ul,
  #wpwrap .wp-block .wpcf7 dl dd ul,
  .wp-editor .wpcf7 dl dd ul {
    padding-left: 2em;
  }
  .article-content .wpcf7-form-control-wrap,
  #wpwrap .wp-block .wpcf7-form-control-wrap,
  .wp-editor .wpcf7-form-control-wrap {
    display: block;
  }
  .article-content .wpcf7-text,
  #wpwrap .wp-block .wpcf7-text,
  .wp-editor .wpcf7-text,
  .article-content .wpcf7-textarea,
  #wpwrap .wp-block .wpcf7-textarea,
  .wp-editor .wpcf7-textarea,
  .article-content .wpcf7-select,
  #wpwrap .wp-block .wpcf7-select,
  .wp-editor .wpcf7-select {
    padding: 0.5em;
    font-size: 100%;
    width: 800px;
    border: 1px solid #000;
    line-height: 1.5;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    position: relative;
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  }
  .article-content .wpcf7-acceptance,
  #wpwrap .wp-block .wpcf7-acceptance,
  .wp-editor .wpcf7-acceptance {
    display: table;
    margin: auto;
  }
  .article-content .wpcf7-list-item.first,
  #wpwrap .wp-block .wpcf7-list-item.first,
  .wp-editor .wpcf7-list-item.first {
    margin: 0;
  }
  .article-content .wpcf7 [type="submit"],
  #wpwrap .wp-block .wpcf7 [type="submit"],
  .wp-editor .wpcf7 [type="submit"] {
    -webkit-appearance: none;
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 100%;
    text-decoration: none;
    border: 1px solid #000;
    background: none;
    color: #000;
    border-radius: 5px;
    padding: 10px 30px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 1em auto;
  }
  .article-content .wpcf7 [type="submit"]:hover,
  #wpwrap .wp-block .wpcf7 [type="submit"]:hover,
  .wp-editor .wpcf7 [type="submit"]:hover {
    background: #58B2DC;
    border-color: #58B2DC;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .wp-editor {
    margin: 2em !important;
  }
  .article-content,
  #wpwrap .wp-block,
  .wp-editor {
    max-width: 100%;
    margin: auto;
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 4vw;
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .article-content .editor-post-title__input,
  #wpwrap .wp-block .editor-post-title__input,
  .wp-editor .editor-post-title__input {
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 200%;
  }
  .article-content h2,
  #wpwrap .wp-block h2,
  .wp-editor h2 {
    font-size: 130%;
    padding: 0.5em 0 0;
    line-height: 1.5;
    border-bottom: 3px solid #737373;
    margin: 3em 0 1em;
  }
  .article-content h3,
  #wpwrap .wp-block h3,
  .wp-editor h3 {
    font-size: 120%;
    padding: 0 0 0 1em;
    line-height: 1.5;
    border-left: 5px solid #737373;
    margin: 2em 0 1em;
  }
  .article-content h4,
  #wpwrap .wp-block h4,
  .wp-editor h4 {
    display: inline-block;
    background: #e4e4e4;
    line-height: 1.5em;
    padding: 0 0.5em;
    font-size: 110%;
    margin: 1.5em 0 0.5em;
  }
  .article-content p,
  #wpwrap .wp-block p,
  .wp-editor p {
    margin: 1em 0;
    line-height: 1.5;
  }
  .article-content a,
  #wpwrap .wp-block a,
  .wp-editor a {
    color: #58B2DC;
    text-decoration: underline;
  }
  .article-content img,
  #wpwrap .wp-block img,
  .wp-editor img {
    max-width: 100%;
    height: auto;
  }
  .article-content figure,
  #wpwrap .wp-block figure,
  .wp-editor figure {
    margin: 0;
  }
  .article-content ul,
  #wpwrap .wp-block ul,
  .wp-editor ul,
  .article-content ol,
  #wpwrap .wp-block ol,
  .wp-editor ol {
    padding: 1em 3em;
    margin: 2em 0;
    overflow: hidden;
    background: #FBFCF8;
  }
  .article-content li,
  #wpwrap .wp-block li,
  .wp-editor li {
    margin: 1em 0;
  }
  .article-content table,
  #wpwrap .wp-block table,
  .wp-editor table {
    border-collapse: collapse;
    width: 100%;
    border: 2px solid #bbbbbb;
    margin: 2em 0;
  }
  .article-content td,
  #wpwrap .wp-block td,
  .wp-editor td {
    border: 1px solid #bbbbbb;
    padding: 1em;
  }
  .article-content blockquote,
  #wpwrap .wp-block blockquote,
  .wp-editor blockquote {
    overflow: hidden;
    border-left: 0;
    background: #e4e4e4;
    padding: 2.5em 2em;
    margin: 2em 0;
    position: relative;
    z-index: 0;
  }
  .article-content blockquote::before,
  #wpwrap .wp-block blockquote::before,
  .wp-editor blockquote::before,
  .article-content blockquote::after,
  #wpwrap .wp-block blockquote::after,
  .wp-editor blockquote::after {
    content: "\f122";
    font-family: dashicons;
    position: absolute;
    font-size: 200%;
    z-index: -1;
    color: #737373;
  }
  .article-content blockquote::before,
  #wpwrap .wp-block blockquote::before,
  .wp-editor blockquote::before {
    top: 0;
    left: 0.5em;
  }
  .article-content blockquote::after,
  #wpwrap .wp-block blockquote::after,
  .wp-editor blockquote::after {
    bottom: 0;
    right: 0.5em;
    transform: rotate(180deg);
  }
  .article-content figcaption,
  #wpwrap .wp-block figcaption,
  .wp-editor figcaption {
    font-size: 0.9em;
    color: #737373;
  }
  .article-content .wp-block-button__link,
  #wpwrap .wp-block .wp-block-button__link,
  .wp-editor .wp-block-button__link {
    font-size: 1em;
    line-height: 1em;
    text-decoration: none;
    border: 1px solid #000;
    background: none;
    color: #000;
    border-radius: 5px;
    padding: 3vw 8vw 3vw 5vw;
    transition: all 0.3s;
    cursor: pointer;
    margin: 10vw auto;
    position: relative;
  }
  .article-content .wp-block-button__link::after,
  #wpwrap .wp-block .wp-block-button__link::after,
  .wp-editor .wp-block-button__link::after {
    content: "\f139";
    font-family: dashicons;
    position: absolute;
    font-size: 130%;
    right: 0.5em;
    top: 50%;
    line-height: 1;
    transform: translate(0, -50%);
  }
  .article-content .wp-block-group__inner-container,
  #wpwrap .wp-block .wp-block-group__inner-container,
  .wp-editor .wp-block-group__inner-container {
    display: block;
    text-align: right;
    margin: 10vw 0;
  }
  .article-content .wp-block-group__inner-container .wp-block-button__link,
  #wpwrap .wp-block .wp-block-group__inner-container .wp-block-button__link,
  .wp-editor .wp-block-group__inner-container .wp-block-button__link {
    margin: 0.5em;
  }
  .article-content .wp-block-group__inner-container .editor-inner-blocks,
  #wpwrap .wp-block .wp-block-group__inner-container .editor-inner-blocks,
  .wp-editor .wp-block-group__inner-container .editor-inner-blocks,
  .article-content .wp-block-group__inner-container block-editor-inner-blocks,
  #wpwrap .wp-block .wp-block-group__inner-container block-editor-inner-blocks,
  .wp-editor .wp-block-group__inner-container block-editor-inner-blocks {
    width: 100%;
  }
  .article-content .wp-block-group__inner-container .editor-inner-blocks .editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container .editor-inner-blocks .editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container .editor-inner-blocks .editor-block-list__layout,
  .article-content .wp-block-group__inner-container block-editor-inner-blocks .editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container block-editor-inner-blocks .editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container block-editor-inner-blocks .editor-block-list__layout,
  .article-content .wp-block-group__inner-container .editor-inner-blocks .block-editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container .editor-inner-blocks .block-editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container .editor-inner-blocks .block-editor-block-list__layout,
  .article-content .wp-block-group__inner-container block-editor-inner-blocks .block-editor-block-list__layout,
  #wpwrap .wp-block .wp-block-group__inner-container block-editor-inner-blocks .block-editor-block-list__layout,
  .wp-editor .wp-block-group__inner-container block-editor-inner-blocks .block-editor-block-list__layout {
    display: block;
    text-align: right;
  }
  .article-content .wpcf7,
  #wpwrap .wp-block .wpcf7,
  .wp-editor .wpcf7 {
    width: 100%;
    margin: 0 auto;
  }
  .article-content .wpcf7 p,
  #wpwrap .wp-block .wpcf7 p,
  .wp-editor .wpcf7 p {
    width: 100%;
    text-align: left;
  }
  .article-content .wpcf7 p:last-of-type,
  #wpwrap .wp-block .wpcf7 p:last-of-type,
  .wp-editor .wpcf7 p:last-of-type {
    text-align: center;
  }
  .article-content .wpcf7 p a,
  #wpwrap .wp-block .wpcf7 p a,
  .wp-editor .wpcf7 p a {
    color: #58B2DC;
  }
  .article-content .wpcf7 dl,
  #wpwrap .wp-block .wpcf7 dl,
  .wp-editor .wpcf7 dl {
    width: 100%;
    margin: 0 auto;
    padding: 10vw 0;
  }
  .article-content .wpcf7 dl + dl,
  #wpwrap .wp-block .wpcf7 dl + dl,
  .wp-editor .wpcf7 dl + dl {
    margin-top: -1px;
  }
  .article-content .wpcf7 dl dt,
  #wpwrap .wp-block .wpcf7 dl dt,
  .wp-editor .wpcf7 dl dt {
    line-height: 1.5;
    padding: 0.5em;
  }
  .article-content .wpcf7 dl dd,
  #wpwrap .wp-block .wpcf7 dl dd,
  .wp-editor .wpcf7 dl dd {
    width: 100%;
  }
  .article-content .wpcf7 dl dd p,
  #wpwrap .wp-block .wpcf7 dl dd p,
  .wp-editor .wpcf7 dl dd p {
    margin: 0;
  }
  .article-content .wpcf7-form-control-wrap,
  #wpwrap .wp-block .wpcf7-form-control-wrap,
  .wp-editor .wpcf7-form-control-wrap {
    display: block;
  }
  .article-content .wpcf7-text,
  #wpwrap .wp-block .wpcf7-text,
  .wp-editor .wpcf7-text,
  .article-content .wpcf7-textarea,
  #wpwrap .wp-block .wpcf7-textarea,
  .wp-editor .wpcf7-textarea,
  .article-content .wpcf7-select,
  #wpwrap .wp-block .wpcf7-select,
  .wp-editor .wpcf7-select {
    padding: 0.5em;
    font-size: 100%;
    width: 100%;
    border: 1px solid #000;
    line-height: 1.5;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    position: relative;
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  }
  .article-content .wpcf7-acceptance,
  #wpwrap .wp-block .wpcf7-acceptance,
  .wp-editor .wpcf7-acceptance {
    display: table;
    margin: auto;
  }
  .article-content .wpcf7-list-item.first,
  #wpwrap .wp-block .wpcf7-list-item.first,
  .wp-editor .wpcf7-list-item.first {
    margin: 0;
  }
  .article-content .wpcf7 [type="submit"],
  #wpwrap .wp-block .wpcf7 [type="submit"],
  .wp-editor .wpcf7 [type="submit"] {
    -webkit-appearance: none;
    font-family: filson-pro, heisei-kaku-gothic-std, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 100%;
    text-decoration: none;
    border: 1px solid #000;
    background: none;
    color: #000;
    border-radius: 5px;
    padding: 10px 30px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 1em auto;
  }
  .article-content .wpcf7 [type="submit"]:hover,
  #wpwrap .wp-block .wpcf7 [type="submit"]:hover,
  .wp-editor .wpcf7 [type="submit"]:hover {
    background: #58B2DC;
    border-color: #58B2DC;
    color: #fff;
  }
}
