@charset "UTF-8";
/* =======================================================
*  bthemes.css
* ======================================================= */
/* import
-------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700,800,900&display=swap");
/* ========================================================
config - サイト共通設定
======================================================== */
/*  共通カラー変数
/* -------------------------------------------------------- */
/* サイト別 */
/* パーツ別 */
/* モノトーン */
/*  mixin
/* -------------------------------------------------------- */
/* 英字：Arial or Tahoma Android縦長英字対策(Roboto) */
/*
	p{
		@include flex(wrap, space-between, center);
	}
	p.vertical{
		@include flex($wrap: wrap, $justify: space-between, $item: center);
	}
*/
/*
example：
	p{
		@include absolute(0,0,0,0);
	}
	p.vertical{
		@include absolute($top: 0, $bottom: 0);
	}
*/
/*
	.elements {
		&:before {
			@include pseudoIconTxt($content: "テスト");
		}
	}
*/
/*
	.elements {
		&:before {
			@include pseudoIconImg($bgUrl: "../img/icon/",);
		}
		&:after {
			@include pseudoIconImg($display: inline-block, $position: absolute, $top: null, $right: null, $bottom: null, $left: null, $bgColor: null, $bgUrl: "../img/icon/", $bgPosition: 0 0, $bgRepeat: no-repeat, $bgSize: 100%, $content: "", $transform: null, $width: 20px, $height: 20px);
		}
	}
*/
/*
	.elements {
		&:before {
			@include bgImg($url: "./img/bg_top.png", $repeat: no-repeat);
		}

		&:after {
			@include bgImg($color: transparent, $url: "./img/bg_top.png", $position: 0 0, $repeat: repeat-x, $size: 100%, $width: 50%, $height: 50%);
		}
	}
*/
/* 天地左右中央配置
-------------------------------------------------------- */
/*
	天地左右中央
	.elements01 {
		@include centering;
	}

	左右中央
	.elements02 {
		@include centering(true, false);
	}

	天地中央
	.elements03 {
		@include centering(false, true);
	}
*/
/* ブレイクポイント定義
-------------------------------------------------------- */
/*
example：
	.foo {
		color: blue;
		@include mq() {
			// 引数を省略（初期値はmdの768px）
			color: #fff;
		}
		@include mq(sp) {
			// 引数を個別に指定
			color: #000;
		}
	} */
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
/* ========================================================
base.css - サイト全体のベーススタイル
======================================================== */
/* reset
-------------------------------------------------------- */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* root
-------------------------------------------------------- */
body,
html {
  margin: 0;
}

html {
  font-size: 10px;
}

body {
  background: #fff;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1;
  word-break: break-all;
}

img {
  vertical-align: middle;
  pointer-events: none;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

/* sp */
@media screen and (max-width: 767px) {
  html {
    font-size: 7.5pt;
  }

  body {
    font-size: 1.6em;
    -webkit-overflow-scrolling: touch;
  }

  img:not([width]) {
    max-width: 100%;
    height: auto;
  }
}
/* pc */
@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
    font-size: 1.6em;
    letter-spacing: 0.6px;
  }
}
/* link
-------------------------------------------------------- */
a {
  color: #fb7765;
  text-decoration: none;
}

a:active,
a:focus,
a:hover {
  text-decoration: underline;
}

/* ========================================================
general.css - 汎用スタイル(.s-XX)
======================================================== */
/* s-XX - デバイス別表示・非表示設定
-------------------------------------------------------- */
/* sp */
@media screen and (max-width: 767px) {
  .s-sp {
    visibility: visible;
  }

  .s-pc {
    display: none;
    visibility: hidden;
  }
}
/* pc */
@media screen and (min-width: 768px) {
  .s-sp {
    display: none;
    visibility: hidden;
  }

  .s-pc {
    visibility: visible;
  }
}
/* s-img-XX - 画像サイズの設定
-------------------------------------------------------- */
img.s-img-100 {
  width: 100%;
}

img.s-img-80 {
  width: 80%;
}

img.s-img-70 {
  width: 70%;
}

img.s-img-60 {
  width: 60%;
}

img.s-img-50 {
  width: 50%;
}

img.s-img-40 {
  width: 40%;
}

img.s-img-30 {
  width: 30%;
}

img.s-img-20 {
  width: 20%;
}

img.s-img-10 {
  width: 10%;
}

/* s-disp-XX - ディスプレイ設定
-------------------------------------------------------- */
.s-disp-none {
  display: none;
}

.s-disp-inline {
  display: inline;
}

.s-disp-iblock {
  display: inline-block;
}

.s-disp-block {
  display: block;
}

.s-disp-flex {
  display: flex;
  align-items: center;
}

/* s-txt-XX - テキスト配置（text-align, vertical-align）
-------------------------------------------------------- */
.s-txt-center {
  text-align: center;
}

.s-txt-left {
  text-align: left;
}

.s-txt-right {
  text-align: right;
}

.s-txt-top {
  vertical-align: top;
}

.s-txt-middle {
  vertical-align: middle;
}

.s-txt-bottom {
  vertical-align: bottom;
}

.s-txt-base {
  vertical-align: baseline;
}

.s-txt-sub {
  vertical-align: sub;
}

.s-txt-super {
  vertical-align: super;
}

.s-txt-nowrap {
  display: inline-block;
}

li > .s-txt-nowrap {
  display: inline-block;
  padding-left: 1.4rem;
}

.s-txt-justyfy {
  text-align: justify;
  /* for IE */
  text-justify: inter-ideograph;
}

/* for FireFox */
@-moz-document url-prefix() {
  .s-txt-justyfy {
    text-justify: inter-character;
  }
}
/* s-fs-XX - フォントサイズ指定
-------------------------------------------------------- */
.s-fs-6 {
  font-size: 0.6rem;
}

.s-fs-8 {
  font-size: 0.8rem;
}

.s-fs-10 {
  font-size: 1rem;
}

.s-fs-12 {
  font-size: 1.2rem;
}

.s-fs-14 {
  font-size: 1.4rem;
}

.s-fs-16 {
  font-size: 1.6rem;
}

.s-fs-18 {
  font-size: 1.8rem;
}

.s-fs-20 {
  font-size: 2rem;
}

.s-fs-22 {
  font-size: 2.2rem;
}

.s-fs-24 {
  font-size: 2.4rem;
}

.s-fs-26 {
  font-size: 2.6rem;
}

.s-fs-28 {
  font-size: 2.8rem;
}

.s-fs-30 {
  font-size: 3rem;
}

.s-fs-32 {
  font-size: 3.2rem;
}

.s-fs-34 {
  font-size: 3.4rem;
}

.s-fs-36 {
  font-size: 3.6rem;
}

.s-fs-38 {
  font-size: 3.8rem;
}

.s-fs-40 {
  font-size: 4rem;
}

.s-fs-50 {
  font-size: 5rem;
}

.s-fs-60 {
  font-size: 6rem;
}

/* s-fw-n - フォントウェイト指定
-------------------------------------------------------- */
.s-fw-n {
  font-weight: 400;
}

.s-fw-b {
  font-weight: 800;
}

/* s-fc-XX - フォントカラー指定
-------------------------------------------------------- */
.s-fc-white {
  color: #fff;
}

.s-fc-black {
  color: #666;
}

.s-fc-01 {
  color: #96e1e7;
}

.s-fc-02 {
  color: #fb7765;
}

.s-fc-03 {
  color: #fff1e2;
}

.s-fc-04 {
  color: #5b413e;
}

.s-fc-05 {
  color: #6d6362;
}

.s-fc-06 {
  color: #dc523f;
}

/* s-mt-XX - 上マージン指定
-------------------------------------------------------- */
.s-mt-10 {
  margin-top: 1rem;
}

.s-mt-11 {
  margin-top: 1.1rem;
}

.s-mt-12 {
  margin-top: 1.2rem;
}

.s-mt-13 {
  margin-top: 1.3rem;
}

.s-mt-14 {
  margin-top: 1.4rem;
}

.s-mt-15 {
  margin-top: 1.5rem;
}

.s-mt-16 {
  margin-top: 1.6rem;
}

.s-mt-17 {
  margin-top: 1.7rem;
}

.s-mt-18 {
  margin-top: 1.8rem;
}

.s-mt-19 {
  margin-top: 1.9rem;
}

.s-mt-20 {
  margin-top: 2rem;
}

.s-mt-21 {
  margin-top: 2.1rem;
}

.s-mt-22 {
  margin-top: 2.2rem;
}

.s-mt-23 {
  margin-top: 2.3rem;
}

.s-mt-24 {
  margin-top: 2.4rem;
}

.s-mt-25 {
  margin-top: 2.5rem;
}

.s-mt-26 {
  margin-top: 2.6rem;
}

.s-mt-27 {
  margin-top: 2.7rem;
}

.s-mt-28 {
  margin-top: 2.8rem;
}

.s-mt-29 {
  margin-top: 2.9rem;
}

.s-mt-30 {
  margin-top: 3rem;
}

.s-mt-40 {
  margin-top: 4rem;
}

.s-mt-50 {
  margin-top: 5rem;
}

.s-mt-60 {
  margin-top: 6rem;
}

/* s-mr-XX - 右マージン指定
-------------------------------------------------------- */
.s-mr-10 {
  margin-right: 1rem;
}

.s-mr-11 {
  margin-right: 1.1rem;
}

.s-mr-12 {
  margin-right: 1.2rem;
}

.s-mr-13 {
  margin-right: 1.3rem;
}

.s-mr-14 {
  margin-right: 1.4rem;
}

.s-mr-15 {
  margin-right: 1.5rem;
}

.s-mr-16 {
  margin-right: 1.6rem;
}

.s-mr-17 {
  margin-right: 1.7rem;
}

.s-mr-18 {
  margin-right: 1.8rem;
}

.s-mr-19 {
  margin-right: 1.9rem;
}

.s-mr-20 {
  margin-right: 2rem;
}

.s-mr-21 {
  margin-right: 2.1rem;
}

.s-mr-22 {
  margin-right: 2.2rem;
}

.s-mr-23 {
  margin-right: 2.3rem;
}

.s-mr-24 {
  margin-right: 2.4rem;
}

.s-mr-25 {
  margin-right: 2.5rem;
}

.s-mr-26 {
  margin-right: 2.6rem;
}

.s-mr-27 {
  margin-right: 2.7rem;
}

.s-mr-28 {
  margin-right: 2.8rem;
}

.s-mr-29 {
  margin-right: 2.9rem;
}

.s-mr-30 {
  margin-right: 3rem;
}

.s-mr-40 {
  margin-right: 4rem;
}

.s-mr-50 {
  margin-right: 5rem;
}

.s-mr-60 {
  margin-right: 6rem;
}

/* s-mb-XX - 下マージン指定
-------------------------------------------------------- */
.s-mb-10 {
  margin-bottom: 1rem;
}

.s-mb-11 {
  margin-bottom: 1.1rem;
}

.s-mb-12 {
  margin-bottom: 1.2rem;
}

.s-mb-13 {
  margin-bottom: 1.3rem;
}

.s-mb-14 {
  margin-bottom: 1.4rem;
}

.s-mb-15 {
  margin-bottom: 1.5rem;
}

.s-mb-16 {
  margin-bottom: 1.6rem;
}

.s-mb-17 {
  margin-bottom: 1.7rem;
}

.s-mb-18 {
  margin-bottom: 1.8rem;
}

.s-mb-19 {
  margin-bottom: 1.9rem;
}

.s-mb-20 {
  margin-bottom: 2rem;
}

.s-mb-21 {
  margin-bottom: 2.1rem;
}

.s-mb-22 {
  margin-bottom: 2.2rem;
}

.s-mb-23 {
  margin-bottom: 2.3rem;
}

.s-mb-24 {
  margin-bottom: 2.4rem;
}

.s-mb-25 {
  margin-bottom: 2.5rem;
}

.s-mb-26 {
  margin-bottom: 2.6rem;
}

.s-mb-27 {
  margin-bottom: 2.7rem;
}

.s-mb-28 {
  margin-bottom: 2.8rem;
}

.s-mb-29 {
  margin-bottom: 2.9rem;
}

.s-mb-30 {
  margin-bottom: 3rem;
}

.s-mb-40 {
  margin-bottom: 4rem;
}

.s-mb-50 {
  margin-bottom: 5rem;
}

.s-mb-60 {
  margin-bottom: 6rem;
}

/* s-ml-XX - 左マージン指定
-------------------------------------------------------- */
.s-ml-10 {
  margin-left: 1rem;
}

.s-ml-11 {
  margin-left: 1.1rem;
}

.s-ml-12 {
  margin-left: 1.2rem;
}

.s-ml-13 {
  margin-left: 1.3rem;
}

.s-ml-14 {
  margin-left: 1.4rem;
}

.s-ml-15 {
  margin-left: 1.5rem;
}

.s-ml-16 {
  margin-left: 1.6rem;
}

.s-ml-17 {
  margin-left: 1.7rem;
}

.s-ml-18 {
  margin-left: 1.8rem;
}

.s-ml-19 {
  margin-left: 1.9rem;
}

.s-ml-20 {
  margin-left: 2rem;
}

.s-ml-21 {
  margin-left: 2.1rem;
}

.s-ml-22 {
  margin-left: 2.2rem;
}

.s-ml-23 {
  margin-left: 2.3rem;
}

.s-ml-24 {
  margin-left: 2.4rem;
}

.s-ml-25 {
  margin-left: 2.5rem;
}

.s-ml-26 {
  margin-left: 2.6rem;
}

.s-ml-27 {
  margin-left: 2.7rem;
}

.s-ml-28 {
  margin-left: 2.8rem;
}

.s-ml-29 {
  margin-left: 2.9rem;
}

.s-ml-30 {
  margin-left: 3rem;
}

.s-ml-40 {
  margin-left: 4rem;
}

.s-ml-50 {
  margin-left: 5rem;
}

.s-ml-60 {
  margin-left: 6rem;
}

/* s-pt-XX - 上パディング指定
-------------------------------------------------------- */
.s-pt-10 {
  padding-top: 1rem;
}

.s-pt-11 {
  padding-top: 1.1rem;
}

.s-pt-12 {
  padding-top: 1.2rem;
}

.s-pt-13 {
  padding-top: 1.3rem;
}

.s-pt-14 {
  padding-top: 1.4rem;
}

.s-pt-15 {
  padding-top: 1.5rem;
}

.s-pt-16 {
  padding-top: 1.6rem;
}

.s-pt-17 {
  padding-top: 1.7rem;
}

.s-pt-18 {
  padding-top: 1.8rem;
}

.s-pt-19 {
  padding-top: 1.9rem;
}

.s-pt-20 {
  padding-top: 2rem;
}

.s-pt-21 {
  padding-top: 2.1rem;
}

.s-pt-22 {
  padding-top: 2.2rem;
}

.s-pt-23 {
  padding-top: 2.3rem;
}

.s-pt-24 {
  padding-top: 2.4rem;
}

.s-pt-25 {
  padding-top: 2.5rem;
}

.s-pt-26 {
  padding-top: 2.6rem;
}

.s-pt-27 {
  padding-top: 2.7rem;
}

.s-pt-28 {
  padding-top: 2.8rem;
}

.s-pt-29 {
  padding-top: 2.9rem;
}

.s-pt-30 {
  padding-top: 3rem;
}

.s-pt-40 {
  padding-top: 4rem;
}

.s-pt-50 {
  padding-top: 5rem;
}

.s-pt-60 {
  padding-top: 6rem;
}

/* s-pr-XX - 右パディング指定
-------------------------------------------------------- */
.s-pr-10 {
  padding-right: 1rem;
}

.s-pr-11 {
  padding-right: 1.1rem;
}

.s-pr-12 {
  padding-right: 1.2rem;
}

.s-pr-13 {
  padding-right: 1.3rem;
}

.s-pr-14 {
  padding-right: 1.4rem;
}

.s-pr-15 {
  padding-right: 1.5rem;
}

.s-pr-16 {
  padding-right: 1.6rem;
}

.s-pr-17 {
  padding-right: 1.7rem;
}

.s-pr-18 {
  padding-right: 1.8rem;
}

.s-pr-19 {
  padding-right: 1.9rem;
}

.s-pr-20 {
  padding-right: 2rem;
}

.s-pr-21 {
  padding-right: 2.1rem;
}

.s-pr-22 {
  padding-right: 2.2rem;
}

.s-pr-23 {
  padding-right: 2.3rem;
}

.s-pr-24 {
  padding-right: 2.4rem;
}

.s-pr-25 {
  padding-right: 2.5rem;
}

.s-pr-26 {
  padding-right: 2.6rem;
}

.s-pr-27 {
  padding-right: 2.7rem;
}

.s-pr-28 {
  padding-right: 2.8rem;
}

.s-pr-29 {
  padding-right: 2.9rem;
}

.s-pr-30 {
  padding-right: 3rem;
}

.s-pr-40 {
  padding-right: 4rem;
}

.s-pr-50 {
  padding-right: 5rem;
}

.s-pr-60 {
  padding-right: 6rem;
}

/* s-pb-XX - 下パディング指定
-------------------------------------------------------- */
.s-pb-10 {
  padding-bottom: 1rem;
}

.s-pb-11 {
  padding-bottom: 1.1rem;
}

.s-pb-12 {
  padding-bottom: 1.2rem;
}

.s-pb-13 {
  padding-bottom: 1.3rem;
}

.s-pb-14 {
  padding-bottom: 1.4rem;
}

.s-pb-15 {
  padding-bottom: 1.5rem;
}

.s-pb-16 {
  padding-bottom: 1.6rem;
}

.s-pb-17 {
  padding-bottom: 1.7rem;
}

.s-pb-18 {
  padding-bottom: 1.8rem;
}

.s-pb-19 {
  padding-bottom: 1.9rem;
}

.s-pb-20 {
  padding-bottom: 2rem;
}

.s-pb-21 {
  padding-bottom: 2.1rem;
}

.s-pb-22 {
  padding-bottom: 2.2rem;
}

.s-pb-23 {
  padding-bottom: 2.3rem;
}

.s-pb-24 {
  padding-bottom: 2.4rem;
}

.s-pb-25 {
  padding-bottom: 2.5rem;
}

.s-pb-26 {
  padding-bottom: 2.6rem;
}

.s-pb-27 {
  padding-bottom: 2.7rem;
}

.s-pb-28 {
  padding-bottom: 2.8rem;
}

.s-pb-29 {
  padding-bottom: 2.9rem;
}

.s-pb-30 {
  padding-bottom: 3rem;
}

.s-pb-40 {
  padding-bottom: 4rem;
}

.s-pb-50 {
  padding-bottom: 5rem;
}

.s-pb-60 {
  padding-bottom: 6rem;
}

/* s-pl-XX - 左パディング指定
-------------------------------------------------------- */
.s-pl-10 {
  padding-left: 1rem;
}

.s-pl-11 {
  padding-left: 1.1rem;
}

.s-pl-12 {
  padding-left: 1.2rem;
}

.s-pl-13 {
  padding-left: 1.3rem;
}

.s-pl-14 {
  padding-left: 1.4rem;
}

.s-pl-15 {
  padding-left: 1.5rem;
}

.s-pl-16 {
  padding-left: 1.6rem;
}

.s-pl-17 {
  padding-left: 1.7rem;
}

.s-pl-18 {
  padding-left: 1.8rem;
}

.s-pl-19 {
  padding-left: 1.9rem;
}

.s-pl-20 {
  padding-left: 2rem;
}

.s-pl-21 {
  padding-left: 2.1rem;
}

.s-pl-22 {
  padding-left: 2.2rem;
}

.s-pl-23 {
  padding-left: 2.3rem;
}

.s-pl-24 {
  padding-left: 2.4rem;
}

.s-pl-25 {
  padding-left: 2.5rem;
}

.s-pl-26 {
  padding-left: 2.6rem;
}

.s-pl-27 {
  padding-left: 2.7rem;
}

.s-pl-28 {
  padding-left: 2.8rem;
}

.s-pl-29 {
  padding-left: 2.9rem;
}

.s-pl-30 {
  padding-left: 3rem;
}

.s-pl-40 {
  padding-left: 4rem;
}

.s-pl-50 {
  padding-left: 5rem;
}

.s-pl-60 {
  padding-left: 6rem;
}

/* s-lh-XX - 行間（line-height）設定
-------------------------------------------------------- */
.s-lh-1 {
  line-height: 1;
}

.s-lh-12 {
  line-height: 1.2;
}

.s-lh-14 {
  line-height: 1.4;
}

.s-lh-16 {
  line-height: 1.6;
}

.s-lh-18 {
  line-height: 1.8;
}

.s-lh-20 {
  line-height: 2;
}

.s-lh-30 {
  line-height: 3;
}

.s-lh-40 {
  line-height: 4;
}

/* ========================================================
content-v02.css - コンテンツ スタイルv1
======================================================== */
/* content, section - レイアウト
-------------------------------------------------------- */
.sec {
  margin: 0 auto;
}

/* sp */
@media screen and (max-width: 767px) {
  .logged-in .content {
    padding-top: 0;
  }

  .sec-full {
    width: 97%;
  }

  .sec-med {
    width: 94%;
  }

  .sec-small,
.sec-min {
    width: 94%;
  }

  .single .content {
    margin-top: 1rem;
  }

  .sec-pad-large {
    padding: 3rem 0;
  }

  .sec-pad-thin {
    padding: 1rem 0;
  }
}
/* pc */
@media screen and (min-width: 768px) {
  .logged-in .content {
    padding-top: 0;
  }

  .sec-over {
    width: 1100px;
  }

  .sec-full {
    width: 1100px;
  }

  .sec-min {
    width: 800px;
  }

  .sec-pad-large {
    padding: 6rem 0;
  }

  .sec-pad-thin {
    padding: 3rem 0;
  }
}
/* content, section - テーマ
-------------------------------------------------------- */
.content-theme {
  background: #fff;
  color: #96e1e7;
}

.sec-theme-01 {
  background: #fff;
  color: #000;
  padding: 1rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .sec-theme-01 {
    padding: 4rem 0 6rem;
  }
}

.sec-theme-02 {
  background-color: #000;
  color: #fff;
}

.sec-theme-03 {
  background: #f0f0f0;
  color: #000;
}

.sec-theme-04 {
  background: url("../img/shared/bg_404.jpg") no-repeat 100% 0;
  background-size: cover;
  color: #000;
}
@media screen and (min-width: 768px) {
  .sec-theme-04 {
    background: url("../img/shared/bg_404.jpg") no-repeat 0 100%;
    background-size: cover;
  }
}

.sec-theme-05 {
  background-image: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0.5) 100%), url("../img/shared/bg_post.jpg");
  background-repeat: repeat;
  background-size: 90px;
}

.sec-theme-06 {
  background: url("../img/shared/bg_hr.png") repeat-x 0 0;
  background-size: 100px;
  height: 20px;
}

/* ========================================================
header.css - ヘッダ
======================================================== */
/* 共通レイアウト
-------------------------------------------------------- */
header {
  position: relative;
  background: #fff;
  border-bottom: 2px solid #000;
  color: #666;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  header {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  header .btn {
    padding: 1em;
  }
}

.site-caption {
  color: #000;
  font-size: 0.2em;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .site-caption {
    font-size: 0.7em;
    margin-bottom: 1em;
  }
}

.site-logo a {
  color: #fff;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: block;
  background-image: url("../img/shared/logo.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0;
  width: 140px;
  height: 37.71px;
}
@media screen and (min-width: 768px) {
  .site-logo a {
    width: 200px;
    height: 53.4px;
  }
}
.site-logo a:hover, .site-logo a:active, .site-logo a:focus {
  color: #fff;
}

.site-logo-mark a {
  color: #fff;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: block;
  background-image: url("../img/shared/logo_mark.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0;
  width: 40px;
  height: 46px;
}
.site-logo-mark a:hover, .site-logo-mark a:active, .site-logo-mark a:focus {
  color: #fff;
}

.site-logo-white a {
  background-image: url("../img/shared/logo_white.svg");
  margin: 0;
  width: 140px;
  height: 37.71px;
}
@media screen and (min-width: 768px) {
  .site-logo-white a {
    margin: 0;
    width: 200px;
    height: 53.4px;
  }
}

.header-theme {
  padding: 0.4em 0;
}
@media screen and (min-width: 768px) {
  .header-theme {
    position: relative;
    padding: 0.7em 0;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .header-info {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
  }
  .header-info .site-logo {
    margin: 0.2em 0;
  }
}
@media screen and (min-width: 768px) {
  .header-info .logo-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }
}
.header-info .global-nav {
  font-size: 1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header-info .global-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 768px) {
  .header-link {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
  }
  .header-link > li:not(:last-child) a:after {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #000;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    transform: rotate(-330deg);
    width: 1px;
    height: 40px;
  }
  .header-link > li {
    position: relative;
    text-align: center;
  }
  .header-link > li > a {
    display: block;
    box-sizing: border-box;
    color: #000;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.1rem;
    padding: 0.7em 1.6em;
    text-decoration: none;
  }
  .header-link > li > a:hover {
    color: #fb7765;
  }
}

@media screen and (max-width: 767px) {
  /* header-slide */
  .header-slide {
    position: fixed;
    top: 0;
    background: #000;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: 0.35s ease-in-out;
    width: 100%;
    height: 100%;
    z-index: 300;
    right: -100%;
  }
  .header-slide.active {
    right: 0;
  }
  .header-slide:-webkit-scrollbar {
    display: none;
  }
  .header-slide .btn {
    display: block;
    margin: 1em auto;
  }
  .header-slide .site-logo {
    margin: 0.2em 0;
  }

  .menu-trigger {
    position: fixed;
    top: 0.2em;
    right: 0.2em;
    display: block;
    background: #fff;
    border-radius: 100pt;
    box-sizing: border-box;
    color: #96e1e7;
    width: 3em;
    height: 3em;
    z-index: 300;
    /* menu icon */
    /* active */
  }
  .menu-trigger span {
    position: absolute;
    left: 0.7em;
    display: inline-block;
    width: 1.6em;
    height: 2px;
    background-color: #000;
    transition: all 0.6s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 1em;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 1.4em;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 1em;
  }
  .menu-trigger.active {
    background: transparent;
    color: #fff;
  }
  .menu-trigger.active span {
    background-color: #fff;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }

  .menu-contact {
    position: fixed;
    top: 0.2em;
    right: 3.4em;
    width: 3em;
    z-index: 300;
  }
  .menu-contact img {
    width: 100%;
    height: auto;
  }
}
/* ========================================================
footer.css - フッター
======================================================== */
/* contact-box
-------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .contact-box {
    display: flex;
    justify-content: center;
    padding-bottom: 2em;
  }
}

.contact-box-item {
  display: block;
  border: 2px solid #000;
  margin: 1em 0;
  padding: 1em;
  text-align: center;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .contact-box-item {
    margin: 2em;
    padding: 2em;
    width: 40%;
  }
}

.contact-box-phone {
  display: block;
  color: #fb7765;
  font-weight: 700;
  font-size: 2em;
  margin: 0.2em 0;
}

/* pagetop
-------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    bottom: 2em;
    right: 1em;
    z-index: 200;
  }
}

a.pagetop-theme img,
a.fixed-contact-btn img {
  width: 70px;
  height: auto;
}
@media screen and (min-width: 768px) {
  a.pagetop-theme img,
a.fixed-contact-btn img {
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  a.pagetop-theme,
a.fixed-contact-btn {
    display: block;
  }
  a.pagetop-theme:hover,
a.fixed-contact-btn:hover {
    opacity: 0.8;
    text-decoration: none;
    transition: 0.4s;
  }
}

/* fixed-contact-btn
-------------------------------------------------------- */
.fixed-contact-btn {
  position: fixed;
  bottom: 1em;
  right: 3em;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .fixed-contact-btn {
    bottom: 2em;
    right: 7em;
  }
}

/* footer - 共通
-------------------------------------------------------- */
footer {
  background: #000;
  padding: 1em 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 2em 0;
  }
}

/* footer-link */
@media screen and (max-width: 767px) {
  .footer-link {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    border-left: 1px solid #fff;
    margin: 1em 0 1em 2em;
    padding-left: 5em;
  }
}
@media screen and (max-width: 767px) {
  .footer-link > li {
    background: #181818;
  }
}
@media screen and (min-width: 768px) {
  .footer-link > li {
    margin-bottom: 1em;
    width: 33%;
  }
}
.footer-link > li a {
  color: #fff;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .footer-link > li a {
    position: relative;
    display: block;
    border-top: 1px solid #333;
    margin: 0 1em;
    padding: 0.8em;
    text-align: left;
    text-decoration: none;
  }
  .footer-link > li a:after {
    position: absolute;
    top: 0.6em;
    right: 0.8em;
    color: #fff;
    content: ">";
  }
}
@media screen and (min-width: 768px) {
  .footer-link .sub-menu li {
    position: relative;
    padding: 0.4em 0 0 1em;
    margin-bottom: 0.2em;
  }
}
@media screen and (min-width: 768px) {
  .footer-link .sub-menu li a:before {
    position: absolute;
    top: 0.8em;
    left: 0;
    color: #fb7765;
    content: "- ";
  }
}

/* footer-info */
@media screen and (max-width: 767px) {
  .footer-info {
    border-top: 1px solid #333;
    padding-top: 2em;
    text-align: center;
  }
  .footer-info .site-logo a {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .footer-info {
    display: flex;
    justify-content: space-between;
  }
}

/* address */
address {
  color: #c0c0c0;
  font-size: 0.8em;
  font-style: normal;
  line-height: 1.6em;
  margin: 1em 0;
}

/* footer-copyright */
.footer-copyright {
  color: #c0c0c0;
  font-size: 0.8em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

/* ========================================================
404.css - 404ページ
======================================================== */
/* 404ページ設定
-------------------------------------------------------- */
.page-404 {
  margin: 4rem 0;
}
.page-404 .btn {
  margin-bottom: 8rem;
}

.part-404-ttl {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.page-404-txt {
  padding: 0 2rem;
}
.page-404-txt h3 {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.page-404-txt p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding-bottom: 5rem;
}

/* ========================================================
breadcrumb-v01.css - パンくず スタイルv1
======================================================== */
/* breadcrumb-XX - パンくずの設定
-------------------------------------------------------- */
.breadcrumb {
  background: #f5f5f5;
  box-sizing: border-box;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1.4rem;
  position: relative;
  width: 100%;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: top;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb-list {
    padding: 0.4rem 0;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    width: 94%;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumb-list {
    box-sizing: border-box;
    padding: 0.6rem 0;
    width: 1100px;
  }
}
.breadcrumb-list li:after {
  color: #000;
  content: ">";
  margin: 0 0.6rem;
}
.breadcrumb-list li a {
  color: #000;
}
@media screen and (min-width: 768px) {
  .breadcrumb-list li:last-child {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
    padding-right: 1.4rem;
    max-width: 800px;
  }
}
.breadcrumb-list li:last-child::-webkit-scrollbar {
  display: none;
}
.breadcrumb-list li:last-child span {
  display: inline-block;
  color: #000;
  font-weight: 700;
}
.breadcrumb-list li:last-child:after {
  content: "";
}

/* ========================================================
button-v01.css - ボタン スタイルv1
======================================================== */
/* btn-XX-XX - リンクボタンの設定
-------------------------------------------------------- */
/* btn - ボタンデフォルト設定 */
.btn {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 1em 0.6em;
  text-align: center;
  outline: none;
}
.btn img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.6em;
  width: 1.7em;
  height: auto;
}

.btn:active,
.btn:focus,
.btn:hover {
  cursor: pointer;
  text-decoration: none;
}

/* btn-XX - ボタンの横幅サイズ設定 */
.btn-block {
  display: block;
}

.btn-110 {
  width: 110px;
}

.btn-130 {
  width: 130px;
}

.btn-150 {
  width: 150px;
}

.btn-160 {
  width: 160px;
}

.btn-200 {
  width: 200px;
}

.btn-220 {
  width: 220px;
}

.btn-240 {
  width: 240px;
}

.btn-260 {
  width: 260px;
}

.btn-300 {
  width: 300px;
}

.btn-full {
  width: 100%;
}

/* sp */
@media screen and (max-width: 767px) {
  .btn-400 {
    width: 80%;
  }

  .btn-700 {
    width: 95%;
  }
}
/* pc */
@media screen and (min-width: 768px) {
  .btn-400 {
    width: 400px;
  }

  .btn-700 {
    font-size: 2rem;
    width: 700px;
  }
}
/* theme - ボタンデザイン設定 */
.btn-theme-01,
.btn-theme-02 {
  border: 0;
  border-radius: 100px;
  color: #fff;
  transition: 0.4s opacity;
}
.btn-theme-01 .btn-flex,
.btn-theme-02 .btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-theme-01 .btn-flex i, .btn-theme-01 .btn-flex ion-icon,
.btn-theme-02 .btn-flex i,
.btn-theme-02 .btn-flex ion-icon {
  display: inline-block;
  font-size: 3rem;
  margin-right: 0.6em;
}

.btn-theme-01:active,
.btn-theme-01:focus,
.btn-theme-01:hover,
.btn-theme-02:active,
.btn-theme-02:focus,
.btn-theme-02:hover {
  opacity: 0.8;
}

.btn-theme-01 {
  background: #fb7765;
  box-shadow: 0 2px 0 #dc523f;
  color: #fff;
}

.btn-theme-02 {
  border: 4px solid #fb7765;
  border-radius: 2px;
  font-weight: 700;
  color: #fb7765;
  text-align: center;
}

.btn-theme-03 {
  border: 1px solid #000;
  color: #000;
}

/* ========================================================
pagenation.css - ページネーション関連スタイル
======================================================== */
/* pagenation - ページネーションパーツ設定
-------------------------------------------------------- */
.pagination-box {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  color: #999;
  margin-top: 0.8rem;
  padding: 0.9rem 1.4rem;
}
@media screen and (max-width: 767px) {
  .pagination-box {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .pagination-box {
    padding: 0.9rem 2.4rem;
  }
}

.page-number {
  color: #96e1e7;
  font-weight: 800;
}

.page-count {
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .page-count {
    padding-left: 5rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 1rem;
  }
}

.nav-link {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
}
.nav-link span,
.nav-link a {
  background: #f0f0f0;
  color: #999;
  display: block;
  font-size: 1.4rem;
  margin: 0 0.2rem;
  padding: 1rem 1.2rem;
  transition: 0.4s;
}
.nav-link .current,
.nav-link a:hover,
.nav-link .next,
.nav-link .prev {
  background: #96e1e7;
  color: #fff;
  text-decoration: none;
}
.nav-link .dots {
  background: #f0f0f0;
  color: #999;
  padding: 1rem 0.4rem;
}

/* ========================================================
part.css - その他パーツ
======================================================== */
/* スライダー共通設定
-------------------------------------------------------- */
.slider {
  display: none;
}

.slick-dots {
  bottom: -3rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .slick-dots li {
    margin: 0 0.2rem;
  }
  .slick-dots li button:before {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
    content: "◯";
    color: #000;
    opacity: 1;
  }
  .slick-dots li.slick-active button:before {
    content: "●";
    color: #000;
    opacity: 1;
  }
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  border: 0;
  cursor: pointer;
  padding: 0;
  opacity: 1;
  outline: none;
  width: 45px;
  height: 45px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .slick-prev,
.slick-next {
    top: 50%;
  }
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 0.7;
}
.slick-prev::before,
.slick-next::before {
  display: none;
}

.slick-prev {
  background-image: url(../img/icon/icon_prev.svg);
  left: 0px;
}
@media screen and (min-width: 768px) {
  .slick-prev {
    left: -70px;
  }
}

.slick-next {
  background-image: url(../img/icon/icon_next.svg);
  right: 0px;
}
@media screen and (min-width: 768px) {
  .slick-next {
    right: -50px;
  }
}

.slider-img {
  position: relative;
  background: #f0f0f0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 160px;
}
@media screen and (min-width: 768px) {
  .slider-img {
    width: 320px;
    height: 160px;
  }
}
.slider-img img {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.slider-img-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* NEWアイコン
-------------------------------------------------------- */
.icon-new {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.3rem 0.6rem;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .icon-new {
    padding: 0.6rem 0.9rem;
  }
}

/* セクションタイトル
-------------------------------------------------------- */
.part-section-ttl {
  position: relative;
  border-bottom: 2px solid #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.8rem;
  padding: 0 0 1rem 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .part-section-ttl {
    font-size: 2.6rem;
  }
}
.part-section-ttl img {
  width: 2em;
  height: auto;
}

/* セクションタイトル小(h3)
-------------------------------------------------------- */
.part-section-ttl-min {
  position: relative;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.3em;
  padding: 0 0 1rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .part-section-ttl-min {
    font-size: 2.6rem;
  }
}

/* ページタイトル
-------------------------------------------------------- */
.part-page-ttl {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 2rem;
}

/* tile-list
-------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .tile-list {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .tile-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    background: #fff;
    margin-top: 3rem;
  }
  .tile-list:after {
    content: "";
    display: block;
    width: 320px;
  }
}
.tile-list .slider-item {
  position: relative;
  background: #fff;
  border: 1px solid #d8d8d8;
}
@media screen and (max-width: 767px) {
  .tile-list .slider-item {
    width: 100%;
    margin-bottom: 1rem;
  }
  .tile-list .slider-item img {
    width: 100%;
    height: auto;
  }
  .tile-list .slider-item:not(:first-child) a {
    display: flex;
    justify-content: space-around;
  }
  .tile-list .slider-item:not(:first-child) .slider-img {
    width: 200pt;
  }
  .tile-list .slider-item:not(:first-child) .slider-img img {
    width: 160%;
    height: auto;
  }
  .tile-list .slider-item:not(:first-child) .post-date-box {
    padding: 0.4rem;
  }
  .tile-list .slider-item:not(:first-child) .post-date {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .tile-list .slider-item {
    color: #000;
    flex-basis: 320px;
  }
}
.tile-list .slider-item .slider-ttl {
  font-size: 1.6rem;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .tile-list .slider-item .slider-ttl {
    font-size: 1.8rem;
  }
}
.tile-list .slider-item:hover .slider-ttl {
  color: #fb7765;
  text-decoration: none;
}
.tile-list .slider-txt {
  padding: 1rem;
}
.tile-list .slider-ttl {
  color: #000;
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-indent: -2rem;
  padding-left: 1.6rem;
  min-height: 7rem;
}
@media screen and (min-width: 768px) {
  .tile-list .slider-ttl {
    min-height: 4.2rem;
  }
}
.tile-list .slider-ttl:before {
  color: #fb7765;
  content: "▶";
}
.tile-list a {
  display: block;
  color: #fff1e2;
}
.tile-list a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .home .tile-list .slider-item:first-child {
    width: 100%;
  }
  .home .tile-list .slider-item:first-child .slider-img {
    height: 160px;
  }
}

/* part-top-notice
-------------------------------------------------------- */
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

.part-top-notice {
  border-bottom: 2px solid #000;
  padding: 1rem 0;
}

.part-top-notice-item {
  line-height: 2.8rem;
  margin: 1rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .part-top-notice-item {
    text-align: left;
  }
}

.part-top-notice-ttl {
  display: block;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .part-top-notice-ttl {
    display: inline-block;
    float: left;
    width: 10%;
  }
}
@media screen and (max-width: 767px) {
  .part-top-notice-ttl {
    text-align: center;
  }
}

.part-top-notice-date {
  display: block;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .part-top-notice-date {
    display: inline-block;
  }
}

.notice-txt {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .notice-txt {
    display: flex;
    float: right;
    width: 90%;
    padding: 1.5rem 0;
    line-height: 1.6;
  }
  .notice-txt:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .notice-txt .part-top-notice-date {
    width: 12%;
    margin-right: 1%;
  }
}
.notice-txt .notice-dtl {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .notice-txt .notice-dtl {
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .notice-txt {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .notice-txt:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .notice-txt:last-child .notice-dtl {
    padding-bottom: 0;
  }
}

/* part-top-message
-------------------------------------------------------- */
.part-top-message {
  background-image: url("../img/shared/bg_message_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .part-top-message {
    background-image: url("../img/shared/bg_message.png");
    height: 1000px;
  }
}

.part-top-message-ttl {
  font-size: 1.4em;
  line-height: 1.5em;
  margin: 0.8em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .part-top-message-ttl {
    font-size: 2em;
    margin: 1.4em;
  }
}

.part-top-message-txt {
  font-size: 0.9em;
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  .part-top-message-txt {
    font-size: 1.1em;
    text-align: center;
  }
}

/* front-category */
.front-category-list {
  position: relative;
  padding: 0.4rem;
}
@media screen and (max-width: 767px) {
  .front-category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .front-category-list {
    margin-top: 2rem;
    padding: 5rem 0;
    height: 400px;
  }
}

.front-category-logo {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .front-category-logo {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .front-category-logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 300px;
  }
}

.front-category-list-item {
  display: block;
}
@media screen and (max-width: 767px) {
  .front-category-list-item {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .front-category-list-item {
    position: absolute;
    width: 240px;
    height: 140px;
    transition: all 0.4s;
  }
}
.front-category-list-item a {
  display: block;
}
.front-category-list-item:hover {
  transform: rotate(20deg);
}
.front-category-list-item img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .front-category-list-item img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .front-category-list-item img {
    width: 240px;
  }
}

@media screen and (min-width: 768px) {
  .front-category-work {
    bottom: 0;
    left: 150px;
  }

  .front-category-feature {
    top: 200px;
    left: 0;
  }

  .front-category-service {
    top: 0;
    left: 100px;
  }

  .front-category-mission {
    top: 0;
    right: 100px;
  }

  .front-category-blog {
    bottom: 0;
    right: 150px;
  }

  .front-category-company {
    top: 200px;
    right: 0;
  }
}
/* mainvisual
-------------------------------------------------------- */
.mainvisual img {
  width: 100%;
}

/* circle-list
-------------------------------------------------------- */
.circle-list {
  text-align: center;
}
.circle-list a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .circle-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    background: #fff;
    margin: 3em 0;
  }
  .circle-list:after {
    content: "";
    display: block;
    width: 320px;
  }
}

.circle-list-img {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 270px;
  height: 270px;
}
.circle-list-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  width: auto;
  height: 270px;
}
@media screen and (max-width: 767px) {
  .circle-list-img img {
    max-width: none;
  }
}

.circle-list-img-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/shared/frame_thumb2.svg") no-repeat 100% 0;
  background-size: cover;
  transition: background 0.4s ease;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.circle-list-ttl {
  display: inline-block;
  color: #000;
  text-align: center;
	line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .circle-list-ttl {
    border-bottom: 3px solid transparent;
  }
}

/* hover PC */
@media screen and (min-width: 768px) {
  .circle-list-item:hover .circle-list-img-frame {
    background: url("../img/shared/frame_thumb_on.svg") no-repeat 100% 0;
    background-size: cover;
  }
  .circle-list-item:hover .circle-list-img img {
    width: auto;
    height: 350px;
  }
  .circle-list-item:hover .circle-list-ttl {
    border-bottom: 3px solid #fb7765;
  }
}
/* display-list
-------------------------------------------------------- */
.display-list {
  text-align: center;
}
.display-list a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .display-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    background: #fff;
    margin: 2em 0;
  }
  .display-list:after {
    content: "";
    display: block;
    width: 320px;
  }
}

.display-list-img {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 280px;
  height: 230px;
}
.display-list-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  width: auto;
  height: 230px;
}
@media screen and (max-width: 767px) {
  .display-list-img img {
    max-width: none;
  }
}

.display-list-img-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/shared/frame_display.svg") no-repeat 100% 0;
  background-size: cover;
  transition: background 0.4s ease;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.display-list-ttl {
  display: inline-block;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .display-list-ttl {
    border-bottom: 3px solid transparent;
  }
}

/* hover PC */
@media screen and (min-width: 768px) {
  .display-list-item:hover .display-list-img-frame {
    background-size: cover;
  }
  .display-list-item:hover .display-list-img img {
    width: auto;
    height: 350px;
  }
  .display-list-item:hover .display-list-ttl {
    border-bottom: 3px solid #fb7765;
  }
}
/* ========================================================
post.css - 投稿ページ
======================================================== */
/* single 共通設定
-------------------------------------------------------- */
article {
  position: relative;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  article {
    line-height: 3.2rem;
  }
}
article p {
  line-height: 3rem;
  padding-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  article p {
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding-bottom: 1.8rem;
  }
}
article .btn {
  margin-bottom: 1.8rem;
}

.post-mainvisual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.post-eyecatch {
  text-align: center;
}

.post-eyecatch img {
  margin: 2rem auto 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .post-eyecatch img {
    width: 70%;
  }
}

.post-company {
  border-bottom: 2px solid #fb7765;
  font-weight: 700;
}

.post-category-box {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  z-index: 1;
}
.post-category-box .post-category {
  margin-right: 0;
}

.post-category,
.post-category-detail a {
  display: inline-block;
  background: #96e1e7;
  border: 1px solid #96e1e7;
  color: #fff;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.post-tag-box {
  display: flex;
  flex-wrap: wrap;
}
.post-tag-box li {
  margin: 0.4rem;
}

.post-tag {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #96e1e7;
  padding: 0.4rem 0.6rem;
  color: #96e1e7;
  line-height: 1;
  font-size: 1.2rem;
}

a.post-category, a.post-tag {
  margin: 0 0.4rem 0.4rem 0;
}
a.post-category:hover, a.post-tag:hover {
  text-decoration: none;
}

.post-category-detail {
  line-height: 1;
  margin-right: 0.4rem;
}
.post-category-detail a:hover {
  text-decoration: none;
}

.post-date {
  padding: 0;
}

/* single 見出し
-------------------------------------------------------- */
.post .post-content h2,
.post .related-box h2,
.page .post-content h2,
.page .related-box h2 {
  position: relative;
  border-bottom: 2px solid #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.8rem;
  margin-top: 2rem;
  padding: 0 0 1rem 5.6rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .post .post-content h2,
.post .related-box h2,
.page .post-content h2,
.page .related-box h2 {
    font-size: 2.6rem;
  }
}
.post .post-content h2:before,
.post .related-box h2:before,
.page .post-content h2:before,
.page .related-box h2:before {
  display: inline-block;
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  background-image: url("../img/icon/icon_h2.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  width: 52px;
  height: 54px;
}
.post .post-content h3,
.post .related-box h3,
.page .post-content h3,
.page .related-box h3 {
  display: inline-block;
  border-left: 4px solid #fb7765;
  font-size: 1.6rem;
  margin: 0 0 3rem 0;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
}
@media screen and (min-width: 768px) {
  .post .post-content h3,
.post .related-box h3,
.page .post-content h3,
.page .related-box h3 {
    font-size: 1.8rem;
  }
}
.post .post-content h4,
.post .related-box h4,
.page .post-content h4,
.page .related-box h4 {
  font-size: 1.6rem;
  margin: 2rem 0;
  line-height: 2.2rem;
}

/* single post その他パーツ
-------------------------------------------------------- */
.post .post-content {
  position: relative;
  margin-top: 2rem;
}
.post .post-content img {
  margin: auto;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .post .post-content img {
    width: 100%;
  }
}

/* page 固定ページ
-------------------------------------------------------- */
.page .post-content h2 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .page .post-content h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.page .post-content ul:not(.blocks-gallery-grid) {
  counter-reset: number;
}
.page .post-content ul:not(.blocks-gallery-grid) li {
  padding-left: 1.4rem;
  text-indent: -1.4rem;
}
.page .post-content ul:not(.blocks-gallery-grid) li:before {
  color: #fb7765;
  content: "・";
  margin-right: 0.4rem;
}
.page .post-content ol:not(.blocks-gallery-grid) {
  counter-reset: number;
}
.page .post-content ol:not(.blocks-gallery-grid) li {
  padding-left: 1.4rem;
  text-indent: -1.4rem;
}
.page .post-content ol:not(.blocks-gallery-grid) li:before {
  color: #fb7765;
  counter-increment: number;
  content: counter(number) ".";
  font-family: "Arial", sans-serif;
  margin-right: 0.4rem;
}

.page-ttl-section {
  position: relative;
  background-image: url("../img/shared/bg_page_header.png");
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  height: 150px;
}
@media screen and (min-width: 768px) {
  .page-ttl-section {
    background-image: url("../img/shared/bg_page_header.png");
    height: 150px;
  }
}
.page-ttl-section h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* QAタイトル
-------------------------------------------------------- */
.post-content h2.part-qa-question, .post-content h3.part-qa-question {
  position: relative;
  padding-left: 4rem;
}
.post-content h2.part-qa-question::before, .post-content h3.part-qa-question::before {
  position: absolute;
  left: 1rem;
  content: "Q";
  color: #fb7765;
  font-size: 3rem;
  line-height: 1;
}

.part-qa-answer {
  position: relative;
  padding-left: 4rem;
}
.part-qa-answer::before {
  position: absolute;
  left: 0;
  content: "A";
  color: #fb7765;
  font-size: 3rem;
}

/* グーグルマップ
-------------------------------------------------------- */
.parts-googlemap {
  text-align: center;
}
.parts-googlemap iframe {
  margin: 0 auto;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .parts-googlemap iframe {
    height: 250px;
  }
}

/* ========================================================
scroll-v01.css - スクロールした際のJSスタイルv1
======================================================== */
/* scroll基本設定
-------------------------------------------------------- */
.js-scroll {
  transition: 1s;
}

/* js-fade-in - フェードイン */
.js-fade-in {
  transition: opacity 0.6s;
  opacity: 0;
}

.js-fade-in-active {
  opacity: 1;
}

/* ========================================================
form.css - form上書き用CSS
======================================================== */
/* form
--------------------------------------------------------
/*  for contactform 7*/
.form-table {
  box-sizing: border-box;
  margin: 3rem 0;
  width: 100%;
}
.form-table th {
  position: relative;
  border-bottom: 1px dotted #d8d8d8;
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .form-table th {
    display: block;
    font-size: 1.4rem;
    padding-left: 0.4rem;
    width: 95%;
  }
}
@media screen and (min-width: 768px) {
  .form-table th {
    width: 200px;
  }
}
.form-table td {
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .form-table td {
    display: block;
    width: 97%;
  }
}
@media screen and (min-width: 768px) {
  .form-table td {
    border-bottom: 1px dotted #d8d8d8;
  }
}
.form-table input:not([type=radio]), .form-table textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  background: #f0f0f0;
  box-sizing: border-box;
  border: 1px solid #f0f0f0;
  font-size: 1.6rem;
  padding: 1rem;
  width: 100%;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.label-required {
  display: inline-block;
  color: #f4274e;
  font-size: 2rem;
  font-weight: 400;
  vertical-align: text-top;
}
@media screen and (min-width: 768px) {
  .label-required {
    font-size: 3rem;
  }
}

.form-privacy .wpcf7-form-control-wrap {
  width: auto;
}

.form-btn {
  margin: 2rem 0;
  text-align: center;
}
.form-btn input {
  -webkit-appearance: none;
  background: #fb7765;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 5px;
  color: #fff;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  margin: 0 auto;
  padding: 1em 0.6em;
  text-align: center;
  outline: none;
  transition: 0.4s all;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .form-btn input {
    width: 700px;
  }
}
.form-btn input:active,
.form-btn input:focus,
.form-btn input:hover {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.8;
}

.form-notice {
  color: #858585;
  font-size: 1.2rem;
}

.form-policy {
  border: 1px solid #ccc;
  color: #858585;
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 1rem;
  overflow-y: scroll;
  height: 250px;
}
.form-policy h4 {
  font-size: 1.6rem;
  margin: 2rem 0;
}

.block-editor ul.wp-block-archives {
  padding-left: 2.5em;
}

.wp-block-audio {
  margin-left: 0;
  margin-right: 0;
}

.edit-post-visual-editor .block-library-block__reusable-block-container .block-editor-writing-flow__click-redirect {
  height: auto;
}

.block-editor-block-list__block[data-type="core/button"][data-align=center] {
  text-align: center;
}

.block-editor-block-list__block[data-type="core/button"][data-align=center] div[data-block] {
  margin-left: auto;
  margin-right: auto;
}

.block-editor-block-list__block[data-type="core/button"][data-align=right] {
  /*!rtl:ignore*/
  text-align: right;
}

.wp-block-button {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.wp-block-button [contenteditable] {
  cursor: text;
}

.wp-block-button .block-editor-rich-text {
  display: inline-block;
}

.wp-block-button:not(.has-text-color):not(.is-style-outline) [data-rich-text-placeholder]::after {
  color: #fff;
}

.wp-block-button .block-editor-rich-text__editable:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2;
  outline: 2px solid transparent;
  outline-offset: -2px;
}

.wp-block-button [data-rich-text-placeholder]::after {
  opacity: 0.8;
}

.wp-block-button__inline-link {
  max-width: 290px;
}

.wp-block-button__inline-link-input__suggestions {
  max-width: 290px;
}

@media (min-width: 782px) {
  .wp-block-button__inline-link {
    max-width: 260px;
  }

  .wp-block-button__inline-link-input__suggestions {
    max-width: 260px;
  }
}
@media (min-width: 960px) {
  .wp-block-button__inline-link {
    max-width: 290px;
  }

  .wp-block-button__inline-link-input__suggestions {
    max-width: 290px;
  }
}
.is-selected .wp-block-button__inline-link,
.is-typing .wp-block-button__inline-link {
  height: auto;
  overflow: visible;
  margin-top: 16px;
}

div[data-type="core/button"] div[data-block] {
  display: table;
}

.block-editor .wp-block-categories ul {
  padding-left: 2.5em;
}

.block-editor .wp-block-categories ul ul {
  margin-top: 6px;
}

.wp-block-code .block-editor-plain-text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #23282d;
  /* Fonts smaller than 16px causes mobile safari to zoom. */
  font-size: 16px;
}

@media (min-width: 600px) {
  .wp-block-code .block-editor-plain-text {
    font-size: 13px;
  }
}
.wp-block-code .block-editor-plain-text:focus {
  box-shadow: none;
}

.components-tab-button {
  display: inline-flex;
  align-items: flex-end;
  margin: 0;
  padding: 3px;
  background: none;
  outline: none;
  color: #555d66;
  cursor: pointer;
  position: relative;
  height: 36px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 0;
}

.components-tab-button.is-active,
.components-tab-button.is-active:hover {
  color: #fff;
}

.components-tab-button:disabled {
  cursor: default;
}

.components-tab-button > span {
  border: 1px solid transparent;
  padding: 0 6px;
  box-sizing: content-box;
  height: 28px;
  line-height: 28px;
}

.components-tab-button:hover > span,
.components-tab-button:focus > span {
  color: #555d66;
}

.components-tab-button:not(:disabled).is-active > span,
.components-tab-button:not(:disabled):hover > span,
.components-tab-button:not(:disabled):focus > span {
  border: 1px solid #555d66;
}

.components-tab-button.is-active > span,
.components-tab-button.is-active:hover > span {
  background-color: #555d66;
  color: #fff;
}

.wp-block-columns .editor-block-list__layout {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-columns .editor-block-list__layout .editor-block-list__block {
  max-width: none;
}

[data-type="core/columns"][data-align=full] .wp-block-columns > .editor-inner-blocks {
  padding-left: 14px;
  padding-right: 14px;
}

@media (min-width: 600px) {
  [data-type="core/columns"][data-align=full] .wp-block-columns > .editor-inner-blocks {
    padding-left: 46px;
    padding-right: 46px;
  }
}
.wp-block-columns {
  display: block;
}

.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 782px) {
  .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout {
    flex-wrap: nowrap;
  }
}
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"],
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit,
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > div[data-block],
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit .block-core-columns {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"],
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit,
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > div[data-block],
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit .block-core-columns {
    flex: 1;
  }
}
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] {
  padding-left: 0;
  padding-right: 0;
  margin-left: -14px;
  margin-right: -14px;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  flex-basis: 100%;
}

@media (min-width: 600px) {
  .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] {
    flex-basis: calc(50% - (16px + 28px));
    flex-grow: 0;
    margin-left: 14px;
    margin-right: 14px;
  }
}
@media (min-width: 600px) {
  .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"]:nth-child(even) {
    margin-left: calc(32px + 14px);
  }
}
@media (min-width: 782px) {
  .wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"]:not(:first-child) {
    margin-left: calc(32px + 14px);
  }
}
.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit {
  margin-top: 0;
  margin-bottom: 0;
}

.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit::before {
  left: 0;
  right: 0;
}

.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > .editor-block-contextual-toolbar {
  margin-left: -1px;
}

.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > [data-block] {
  margin-top: 0;
  margin-bottom: 0;
}

.wp-block-columns > .editor-inner-blocks > .editor-block-list__layout > [data-type="core/column"] > .editor-block-list__block-edit > div > .block-core-columns > .editor-inner-blocks {
  margin-top: -28px;
  margin-bottom: -28px;
}

/**
 * Columns act as as a "passthrough container"
 * and therefore has its vertical margins/padding removed via negative margins
 * therefore we need to compensate for this here by doubling the spacing on the
 * vertical to ensure there is equal visual spacing around the inserter. Note there
 * is no formal API for a "passthrough" Block so this is an edge case overide
 */
[data-type="core/columns"] .block-list-appender {
  margin-top: 28px;
  margin-bottom: 28px;
}

[data-type="core/columns"] [data-type="core/column"].is-selected .block-list-appender {
  margin: 14px 0;
}

/**
 * Vertical Alignment Preview
 * note: specificity is important here to ensure individual
 * * columns alignment is prioritised over parent column alignment
 *
 */
.are-vertically-aligned-top .block-core-columns,
div.block-core-columns.is-vertically-aligned-top {
  justify-content: flex-start;
}

.are-vertically-aligned-center .block-core-columns,
div.block-core-columns.is-vertically-aligned-center {
  justify-content: center;
}

.are-vertically-aligned-bottom .block-core-columns,
div.block-core-columns.is-vertically-aligned-bottom {
  justify-content: flex-end;
}

/**
 * Fixes single Column breadcrumb position.
 */
[data-type="core/column"] > .editor-block-list__block-edit > .editor-block-list__breadcrumb {
  left: -3px;
}

/**
 * Make single Column overlay not extend past boundaries of parent
 */
.block-core-columns > .block-editor-inner-blocks.has-overlay::after {
  left: 0;
  right: 0;
}

/**
 * Add extra padding when the parent block is selected, for easier interaction.
 */
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/columns"].is-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/columns"].has-child-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/column"].is-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/column"].has-child-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks {
  padding: 14px;
}

.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/columns"].is-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks > .components-placeholder,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/columns"].has-child-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks > .components-placeholder,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/column"].is-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks > .components-placeholder,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/column"].has-child-selected > .block-editor-block-list__block-edit > [data-block] > div > .block-editor-inner-blocks > .components-placeholder {
  margin: -14px;
  width: calc(100% + 28px);
}

.wp-block-cover-image.components-placeholder h2,
.wp-block-cover.components-placeholder h2 {
  color: inherit;
}

.wp-block-cover-image.has-right-content .block-editor-rich-text__inline-toolbar,
.wp-block-cover-image.has-left-content .block-editor-rich-text__inline-toolbar,
.wp-block-cover.has-right-content .block-editor-rich-text__inline-toolbar,
.wp-block-cover.has-left-content .block-editor-rich-text__inline-toolbar {
  display: inline-block;
}

.wp-block-cover-image .block-editor-block-list__layout,
.wp-block-cover .block-editor-block-list__layout {
  width: 100%;
}

.wp-block-cover-image .block-editor-block-list__block,
.wp-block-cover .block-editor-block-list__block {
  color: #f8f9f9;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
  text-align: left;
}

.wp-block-cover-image .wp-block-cover__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout,
.wp-block-cover .wp-block-cover__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-cover-image.components-placeholder,
.wp-block-cover.components-placeholder {
  background: rgba(139, 139, 150, 0.1);
  min-height: 200px;
}

.is-dark-theme .wp-block-cover-image.components-placeholder,
.is-dark-theme .wp-block-cover.components-placeholder {
  background: rgba(255, 255, 255, 0.15);
}

.wp-block-cover-image .wp-block-cover__placeholder-color-palette,
.wp-block-cover .wp-block-cover__placeholder-color-palette {
  max-width: 290px;
  margin-top: 1em;
}

[data-align=left] .wp-block-cover-image,
[data-align=right] .wp-block-cover-image,
[data-align=left] .wp-block-cover,
[data-align=right] .wp-block-cover {
  max-width: 305px;
  width: 100%;
}

.block-library-cover__reset-button {
  margin-left: auto;
}

.block-library-cover__resize-container:not(.is-resizing) {
  height: auto !important;
}

.wp-block-embed {
  margin-left: 0;
  margin-right: 0;
  clear: both;
}

@media (min-width: 600px) {
  .wp-block-embed {
    min-width: 360px;
  }

  .wp-block-embed.components-placeholder {
    min-width: 0;
  }
}
.wp-block-embed.is-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  min-height: 200px;
  text-align: center;
  background: #f8f9f9;
}

.wp-block-embed.is-loading p {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
}

.wp-block-embed .components-placeholder__error {
  word-break: break-word;
}

.wp-block-embed .components-placeholder__learn-more {
  margin-top: 1em;
}

.block-library-embed__interactive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.wp-block-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.wp-block-file .wp-block-file__content-wrapper {
  flex-grow: 1;
}

.wp-block-file .wp-block-file__textlink {
  display: inline-block;
  min-width: 1em;
}

.wp-block-file .wp-block-file__textlink:focus {
  box-shadow: none;
}

.wp-block-file .wp-block-file__button-richtext-wrapper {
  display: inline-block;
  margin-left: 0.75em;
}

.wp-block-file .wp-block-file__copy-url-button {
  margin-left: 1em;
}

.wp-block-freeform.block-library-rich-text__tinymce p,
.wp-block-freeform.block-library-rich-text__tinymce li {
  line-height: 1.8;
}

.wp-block-freeform.block-library-rich-text__tinymce ul,
.wp-block-freeform.block-library-rich-text__tinymce ol {
  padding-left: 2.5em;
  margin-left: 0;
}

.wp-block-freeform.block-library-rich-text__tinymce blockquote {
  margin: 0;
  box-shadow: inset 0 0 0 0 #e2e4e7;
  border-left: 4px solid #000;
  padding-left: 1em;
}

.wp-block-freeform.block-library-rich-text__tinymce pre {
  white-space: pre-wrap;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  color: #23282d;
}

.wp-block-freeform.block-library-rich-text__tinymce > *:first-child {
  margin-top: 0;
}

.wp-block-freeform.block-library-rich-text__tinymce > *:last-child {
  margin-bottom: 0;
}

.wp-block-freeform.block-library-rich-text__tinymce.mce-edit-focus {
  outline: none;
}

.wp-block-freeform.block-library-rich-text__tinymce a {
  color: #007fac;
}

.wp-block-freeform.block-library-rich-text__tinymce:focus a[data-mce-selected] {
  padding: 0 2px;
  margin: 0 -2px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px #e5f5fa;
  background: #e5f5fa;
}

.wp-block-freeform.block-library-rich-text__tinymce code {
  padding: 2px;
  border-radius: 2px;
  color: #23282d;
  background: #f3f4f5;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
}

.wp-block-freeform.block-library-rich-text__tinymce:focus code[data-mce-selected] {
  background: #e8eaeb;
}

.wp-block-freeform.block-library-rich-text__tinymce .alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin: 0.5em 0 0.5em 1em;
}

.wp-block-freeform.block-library-rich-text__tinymce .alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin: 0.5em 1em 0.5em 0;
}

.wp-block-freeform.block-library-rich-text__tinymce .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-freeform.block-library-rich-text__tinymce .wp-more-tag {
  width: 96%;
  height: 20px;
  display: block;
  margin: 15px auto;
  outline: 0;
  cursor: default;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAADtgAAAAoBAMAAAA86gLBAAAAJFBMVEVMaXG7u7vBwcHDw8POzs68vLzGxsbMzMy+vr7AwMDQ0NDGxsYKLGzpAAAADHRSTlMA///zWf+/f///TMxNVGuqAAABwklEQVR4Ae3dMXLaQBTH4bfj8UCpx8hq0vgKvgFNemhT6Qo6gg6R+0ZahM2QLmyBJ99XWP9V5+o3jIUcLQEAAAAAAAAAAAAAAAAAAAAAAABQ8j0WL9lfTtlt18uNXAUA8O/KVtfa1tdcrOdSh9gCQAMlh1hMNbZZ1bsrsQWABsrhLRbz7z5in/32UbfUMUbkMQCAh5RfGYv82UdMdZ6HS2wjT2ILAI8r3XmM2B3WvM59vfO2xXYW2yYAENuPU8S+X/N67mKxzy225yaxBQCxLV392UdcvwV0jPVUj98ntkBWT7C7+9u2/V/vGtvXIWJ6/4rtbottWa6Ri0NUT/u72LYttrb97LHdvUXMxxrb8TO2W2TF1rYbbLG1bbGNjMi4+2Sbi1FsbbvNFlvbFtt5fDnE3d9sP1/XeIyV2Nr2U2/guZUuptNrH/dPI9eLB6SaAEBs6wPJf3/PNk9tYgsAYrv/8TFuzx/fvkFqGtrEFgDEdpcZUb7ejXy6ntrEFgDENvL6gsas4vbdyKt4DACI7TxElJv/Z7udpqFNbAFAbKduy2uU2trttM/x28UWAAAAAAAAAAAAAAAAAAAAAAAAAADgDyPwGmGTCZp7AAAAAElFTkSuQmCC);
  background-size: 1900px 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.wp-block-freeform.block-library-rich-text__tinymce img::selection {
  background-color: transparent;
}

.wp-block-freeform.block-library-rich-text__tinymce div.mceTemp {
  -ms-user-select: element;
}

.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption {
  margin: 0;
  /* dl browser reset */
  max-width: 100%;
}

.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption a,
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption img {
  display: block;
}

.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption,
.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption * {
  -webkit-user-drag: none;
}

.wp-block-freeform.block-library-rich-text__tinymce dl.wp-caption .wp-caption-dd {
  padding-top: 0.5em;
  margin: 0;
  /* browser dd reset */
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview {
  width: 99.99%;
  /* All IE need hasLayout, incl. 11 (ugh, not again!!) */
  position: relative;
  clear: both;
  margin-bottom: 16px;
  border: 1px solid transparent;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview iframe {
  display: block;
  max-width: 100%;
  background: transparent;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview .mce-shim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected="2"] .mce-shim {
  display: none;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview .loading-placeholder {
  border: 1px dashed #e8eaeb;
  padding: 10px;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error {
  border: 1px solid #e8eaeb;
  padding: 1em 0;
  margin: 0;
  word-wrap: break-word;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview .wpview-error p {
  margin: 0;
  text-align: center;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .loading-placeholder,
.wp-block-freeform.block-library-rich-text__tinymce .wpview[data-mce-selected] .wpview-error {
  border-color: transparent;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview .dashicons {
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 32px;
  font-size: 32px;
}

.wp-block-freeform.block-library-rich-text__tinymce .wpview.wpview-type-gallery::after {
  content: "";
  display: table;
  clear: both;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery img[data-mce-selected]:focus {
  outline: none;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery a {
  cursor: default;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery {
  margin: auto -6px;
  padding: 6px 0;
  line-height: 1;
  overflow-x: hidden;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-item {
  float: left;
  margin: 0;
  text-align: center;
  padding: 6px;
  box-sizing: border-box;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption,
.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-icon {
  margin: 0;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery .gallery-caption {
  font-size: 13px;
  margin: 4px 0;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-1 .gallery-item {
  width: 100%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-2 .gallery-item {
  width: 50%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-3 .gallery-item {
  width: 33.33333%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-4 .gallery-item {
  width: 25%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-5 .gallery-item {
  width: 20%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-6 .gallery-item {
  width: 16.66667%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-7 .gallery-item {
  width: 14.28571%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery-columns-9 .gallery-item {
  width: 11.11111%;
}

.wp-block-freeform.block-library-rich-text__tinymce .gallery img {
  max-width: 100%;
  height: auto;
  border: none;
  padding: 0;
}

div[data-type="core/freeform"] .block-editor-block-list__block-edit::before {
  transition: border-color 0.1s linear, box-shadow 0.1s linear;
  border: 1px solid #e2e4e7;
  outline: 1px solid transparent;
}

@media (prefers-reduced-motion: reduce) {
  div[data-type="core/freeform"] .block-editor-block-list__block-edit::before {
    transition-duration: 0s;
  }
}
div[data-type="core/freeform"].is-selected .block-editor-block-list__block-edit::before {
  border-color: #b5bcc2;
  border-left-color: transparent;
}

div[data-type="core/freeform"].is-hovered .block-editor-block-list__breadcrumb {
  display: none;
}

div[data-type="core/freeform"] .editor-block-contextual-toolbar + div {
  margin-top: 0;
  padding-top: 0;
}

div[data-type="core/freeform"].is-selected .block-library-rich-text__tinymce::after {
  content: "";
  display: table;
  clear: both;
}

.mce-toolbar-grp .mce-btn.mce-active button,
.mce-toolbar-grp .mce-btn.mce-active:hover button,
.mce-toolbar-grp .mce-btn.mce-active i,
.mce-toolbar-grp .mce-btn.mce-active:hover i {
  color: #23282d;
}

.mce-toolbar-grp .mce-rtl .mce-flow-layout-item.mce-last {
  margin-right: 0;
  margin-left: 8px;
}

.mce-toolbar-grp .mce-btn i {
  font-style: normal;
}

.block-library-classic__toolbar {
  display: none;
  width: auto;
  margin: 0 -14px;
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  top: 14px;
  transform: translateY(-14px);
  border: 1px solid #e2e4e7;
  border-bottom: none;
  padding: 0;
}

div[data-type="core/freeform"].is-selected .block-library-classic__toolbar,
div[data-type="core/freeform"].is-typing .block-library-classic__toolbar {
  display: block;
  border-color: #b5bcc2;
}

.block-library-classic__toolbar .mce-tinymce {
  box-shadow: none;
}

@media (min-width: 600px) {
  .block-library-classic__toolbar {
    padding: 0;
  }
}
.block-library-classic__toolbar:empty {
  display: block;
  background: #f5f5f5;
  border-bottom: 1px solid #e2e4e7;
}

.block-library-classic__toolbar:empty::before {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  content: attr(data-placeholder);
  color: #555d66;
  line-height: 37px;
  padding: 14px;
}

.block-library-classic__toolbar .mce-tinymce-inline,
.block-library-classic__toolbar .mce-tinymce-inline > div,
.block-library-classic__toolbar div.mce-toolbar-grp,
.block-library-classic__toolbar div.mce-toolbar-grp > div,
.block-library-classic__toolbar .mce-menubar,
.block-library-classic__toolbar .mce-menubar > div {
  height: auto !important;
  width: 100% !important;
}

.block-library-classic__toolbar .mce-container-body.mce-abs-layout {
  overflow: visible;
}

.block-library-classic__toolbar .mce-menubar,
.block-library-classic__toolbar div.mce-toolbar-grp {
  position: static;
}

.block-library-classic__toolbar .mce-toolbar-grp > div {
  padding: 1px 3px;
}

.block-library-classic__toolbar .mce-toolbar-grp .mce-toolbar:not(:first-child) {
  display: none;
}

.block-library-classic__toolbar.has-advanced-toolbar .mce-toolbar-grp .mce-toolbar {
  display: block;
}

.wp-block-gallery li {
  list-style-type: none;
}

.is-selected .wp-block-gallery {
  margin-bottom: 0;
}

figure.wp-block-gallery {
  display: block;
  margin: 0;
}

.blocks-gallery-grid.blocks-gallery-grid {
  margin-bottom: 0;
}

.blocks-gallery-item figure:not(.is-selected):focus {
  outline: none;
}

.blocks-gallery-item figure.is-selected {
  outline: 4px solid #0085ba;
}

body.admin-color-sunrise .blocks-gallery-item figure.is-selected {
  outline: 4px solid #d1864a;
}

body.admin-color-ocean .blocks-gallery-item figure.is-selected {
  outline: 4px solid #a3b9a2;
}

body.admin-color-midnight .blocks-gallery-item figure.is-selected {
  outline: 4px solid #e14d43;
}

body.admin-color-ectoplasm .blocks-gallery-item figure.is-selected {
  outline: 4px solid #a7b656;
}

body.admin-color-coffee .blocks-gallery-item figure.is-selected {
  outline: 4px solid #c2a68c;
}

body.admin-color-blue .blocks-gallery-item figure.is-selected {
  outline: 4px solid #82b4cb;
}

body.admin-color-light .blocks-gallery-item figure.is-selected {
  outline: 4px solid #0085ba;
}

.blocks-gallery-item figure.is-transient img {
  opacity: 0.3;
}

.blocks-gallery-item .block-editor-rich-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .blocks-gallery-item .is-selected .block-editor-rich-text {
    right: 0;
    left: 0;
    margin-top: -4px;
  }
}
.blocks-gallery-item .is-selected .block-editor-rich-text .block-editor-rich-text__inline-toolbar {
  top: 0;
}

.blocks-gallery-item .is-selected .block-editor-rich-text figcaption {
  padding-top: 48px;
}

.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {
  background: #fff;
  border: 1px solid rgba(66, 88, 99, 0.4);
  border-radius: 4px;
  transition: box-shadow 0.2s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu,
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu {
    transition-duration: 0s;
  }
}
.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu:hover,
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu:hover {
  box-shadow: 0 2px 10px rgba(25, 30, 35, 0.1), 0 0 2px rgba(25, 30, 35, 0.1);
}

.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button {
  color: rgba(14, 28, 46, 0.62);
  padding: 2px;
  height: 24px;
}

.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover,
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button:not(:disabled):not([aria-disabled=true]):not(.is-default):hover {
  box-shadow: none;
}

@media (min-width: 600px) {
  .columns-7 .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,
.columns-8 .blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button,
.columns-7 .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button,
.columns-8 .blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button {
    padding: 0;
    width: inherit;
    height: inherit;
  }
}
.blocks-gallery-item .is-selected .block-library-gallery-item__move-menu .components-button:focus,
.blocks-gallery-item .is-selected .block-library-gallery-item__inline-menu .components-button:focus {
  color: inherit;
}

.blocks-gallery-item .block-editor-rich-text figcaption {
  position: relative;
  overflow: hidden;
}

.blocks-gallery-item .block-editor-rich-text figcaption a {
  color: #fff;
}

.block-library-gallery-item__move-menu,
.block-library-gallery-item__inline-menu {
  margin: 8px;
  display: inline-flex;
  z-index: 20;
}

.block-library-gallery-item__move-menu .components-button,
.block-library-gallery-item__inline-menu .components-button {
  color: transparent;
}

@media (min-width: 600px) {
  .columns-7 .block-library-gallery-item__move-menu,
.columns-8 .block-library-gallery-item__move-menu,
.columns-7 .block-library-gallery-item__inline-menu,
.columns-8 .block-library-gallery-item__inline-menu {
    padding: 2px;
  }
}
.block-library-gallery-item__inline-menu {
  position: absolute;
  top: -2px;
  right: -2px;
}

.block-library-gallery-item__move-menu {
  position: absolute;
  top: -2px;
  left: -2px;
}

.blocks-gallery-item__move-backward,
.blocks-gallery-item__move-forward,
.blocks-gallery-item__remove {
  padding: 0;
}

.blocks-gallery-item .components-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
}

/**
 * Group: All Alignment Settings
 */
.wp-block[data-type="core/group"] .editor-block-list__insertion-point {
  left: 0;
  right: 0;
}

.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks {
  margin-top: -32px;
  margin-bottom: -32px;
}

.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

@media (min-width: 600px) {
  .wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
    padding-left: 58px;
    padding-right: 58px;
  }
}
.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
  margin-left: -30px;
  width: calc(100% + 60px);
}

/**
 * Group: Full Width Alignment
 */
.wp-block[data-type="core/group"][data-align=full] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.wp-block[data-type="core/group"][data-align=full] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout {
  margin-left: 0;
  margin-right: 0;
}

.wp-block[data-type="core/group"][data-align=full] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
  padding-right: 0;
  padding-left: 0;
  left: 0;
  width: 100%;
  max-width: none;
}

.wp-block[data-type="core/group"][data-align=full] > .editor-block-list__block-edit > div > .wp-block-group > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] > .editor-block-list__block-edit {
  margin-left: 0;
  margin-right: 0;
}

.wp-block[data-type="core/group"][data-align=full] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
  width: calc(100% + 60px);
}

.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/group"].has-child-selected > .block-editor-block-list__block-edit > [data-block] > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/group"].is-selected > .block-editor-block-list__block-edit > [data-block] > .wp-block-group > .wp-block-group__inner-container > .block-editor-inner-blocks {
  padding: 14px;
}

.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/group"].has-child-selected > .block-editor-block-list__block-edit > [data-block] > .wp-block-group:not(.has-background) > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout,
.block-editor-block-list__layout .block-editor-block-list__block[data-type="core/group"].is-selected > .block-editor-block-list__block-edit > [data-block] > .wp-block-group:not(.has-background) > .wp-block-group__inner-container > .block-editor-inner-blocks > .block-editor-block-list__layout {
  margin-top: -28px;
  margin-bottom: -28px;
}

[data-type="core/group"].is-selected .block-list-appender {
  margin-left: 0;
  margin-right: 0;
}

[data-type="core/group"].is-selected .has-background .block-list-appender {
  margin-top: 18px;
  margin-bottom: 18px;
}

.wp-block-html {
  margin-bottom: 28px;
}

.wp-block-html .block-editor-plain-text {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #23282d;
  padding: 0.8em 1em;
  border: 1px solid #e2e4e7;
  border-radius: 4px;
  max-height: 250px;
  /* Fonts smaller than 16px causes mobile safari to zoom. */
  font-size: 16px;
}

@media (min-width: 600px) {
  .wp-block-html .block-editor-plain-text {
    font-size: 13px;
  }
}
.wp-block-html .block-editor-plain-text:focus {
  box-shadow: none;
}

.wp-block-image {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}

.wp-block-image.is-transient img {
  opacity: 0.3;
}

.wp-block-image figcaption img {
  display: inline;
}

.wp-block-image .components-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
}

.wp-block-image .components-resizable-box__container {
  display: inline-block;
}

.wp-block-image .components-resizable-box__container img {
  display: block;
  width: 100%;
}

.wp-block-image.is-focused .components-resizable-box__handle {
  display: block;
  z-index: 1;
}

.block-editor-block-list__block[data-type="core/image"][data-align=center] .wp-block-image {
  margin-left: auto;
  margin-right: auto;
}

.block-editor-block-list__block[data-type="core/image"][data-align=center][data-resized=false] .wp-block-image > div {
  margin-left: auto;
  margin-right: auto;
}

.edit-post-sidebar .block-library-image__dimensions {
  margin-bottom: 1em;
}

.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row {
  display: flex;
  justify-content: space-between;
}

.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width,
.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height {
  margin-bottom: 0.5em;
}

.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width input,
.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height input {
  line-height: 1.25;
}

.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__width {
  margin-right: 5px;
}

.edit-post-sidebar .block-library-image__dimensions .block-library-image__dimensions__row .block-library-image__dimensions__height {
  margin-left: 5px;
}

.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
  position: absolute;
  left: 0;
  right: 0;
  margin: -1px 0;
}

@media (min-width: 600px) {
  .block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {
    margin: -1px;
  }
}
[data-type="core/image"][data-align=center] .block-editor-block-list__block-edit figure,
[data-type="core/image"][data-align=left] .block-editor-block-list__block-edit figure,
[data-type="core/image"][data-align=right] .block-editor-block-list__block-edit figure {
  margin: 0;
  display: table;
}

[data-type="core/image"][data-align=center] .block-editor-block-list__block-edit .block-editor-rich-text,
[data-type="core/image"][data-align=left] .block-editor-block-list__block-edit .block-editor-rich-text,
[data-type="core/image"][data-align=right] .block-editor-block-list__block-edit .block-editor-rich-text {
  display: table-caption;
  caption-side: bottom;
}

[data-type="core/image"][data-align=wide] figure img,
[data-type="core/image"][data-align=full] figure img {
  width: 100%;
}

[data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
  margin: 0;
  display: table;
}

[data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized .block-editor-rich-text {
  display: table-caption;
  caption-side: bottom;
}

.wp-block-latest-comments.has-avatars .avatar {
  margin-right: 10px;
}

.wp-block-latest-comments__comment-excerpt p {
  font-size: 14px;
  line-height: 1.8;
  margin: 5px 0 20px;
  padding-top: 0;
}

.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {
  min-height: 36px;
}

.block-editor .wp-block-latest-posts {
  padding-left: 2.5em;
}

.block-editor .wp-block-latest-posts.is-grid {
  padding-left: 0;
}

.wp-block-latest-posts li a > div {
  display: inline;
}

.wp-block-legacy-widget__edit-container,
.wp-block-legacy-widget__preview {
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.wp-block-legacy-widget__edit-container .widget-inside {
  border: none;
  display: block;
  box-shadow: none;
}

.wp-block-legacy-widget__update-button {
  margin-left: auto;
  display: block;
}

.wp-block-legacy-widget__preview {
  overflow: auto;
}

.wp-block-media-text .__resizable_base__ {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
  grid-row: 2;
}

.wp-block-media-text.is-vertically-aligned-top .block-editor-inner-blocks,
.wp-block-media-text.is-vertically-aligned-top .editor-media-container__resizer {
  align-self: start;
}

.wp-block-media-text .block-editor-inner-blocks,
.wp-block-media-text .editor-media-container__resizer,
.wp-block-media-text.is-vertically-aligned-center .block-editor-inner-blocks,
.wp-block-media-text.is-vertically-aligned-center .editor-media-container__resizer {
  align-self: center;
}

.wp-block-media-text.is-vertically-aligned-bottom .block-editor-inner-blocks,
.wp-block-media-text.is-vertically-aligned-bottom .editor-media-container__resizer {
  align-self: end;
}

.wp-block-media-text .editor-media-container__resizer {
  grid-column: 1;
  grid-row: 1;
  width: 100% !important;
}

.wp-block-media-text.is-image-fill .editor-media-container__resizer {
  height: 100% !important;
}

.wp-block-media-text.has-media-on-the-right .editor-media-container__resizer {
  grid-column: 2;
  grid-row: 1;
}

.wp-block-media-text .editor-inner-blocks {
  word-break: break-word;
  grid-column: 2;
  grid-row: 1;
  text-align: initial;
  padding: 0 8% 0 8%;
}

.wp-block-media-text.has-media-on-the-right .block-editor-inner-blocks {
  grid-column: 1;
  grid-row: 1;
}

.wp-block-media-text > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block {
  max-width: unset;
}

figure.block-library-media-text__media-container {
  margin: 0;
  height: 100%;
  width: 100%;
}

.wp-block-media-text .block-library-media-text__media-container img,
.wp-block-media-text .block-library-media-text__media-container video {
  vertical-align: middle;
  width: 100%;
}

.editor-media-container__resizer .components-resizable-box__handle {
  display: none;
}

.wp-block-media-text.is-selected:not(.is-stacked-on-mobile) .editor-media-container__resizer .components-resizable-box__handle {
  display: block;
}

@media (min-width: 600px) {
  .wp-block-media-text.is-selected.is-stacked-on-mobile .editor-media-container__resizer .components-resizable-box__handle {
    display: block;
  }
}
@media (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile .block-editor-inner-blocks {
    grid-column: 1;
    grid-row: 2;
  }

  .wp-block-media-text.is-stacked-on-mobile .editor-media-container__resizer {
    grid-column: 1;
    grid-row: 1;
  }

  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .block-editor-inner-blocks {
    grid-column: 1;
    grid-row: 1;
  }

  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .editor-media-container__resizer {
    grid-column: 1;
    grid-row: 2;
  }
}
.editor-styles-wrapper .block-library-list ul,
.editor-styles-wrapper .block-library-list ol {
  padding-left: 1.3em;
  margin-left: 1.3em;
}

.block-editor-block-list__block[data-type="core/more"] {
  max-width: 100%;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 28px;
}

.block-editor .wp-block-more {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.block-editor .wp-block-more input[type=text] {
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #6c7781;
  border: none;
  box-shadow: none;
  white-space: nowrap;
  text-align: center;
  margin: 0;
  border-radius: 4px;
  background: #fff;
  padding: 6px 8px;
  height: 24px;
}

.block-editor .wp-block-more input[type=text]:focus {
  box-shadow: none;
}

.block-editor .wp-block-more::before {
  content: "";
  position: absolute;
  top: calc(50%);
  left: 0;
  right: 0;
  border-top: 3px dashed #ccd0d4;
}

.wp-block-navigation-menu .block-editor-block-list__layout,
.wp-block-navigation-menu {
  display: grid;
  grid-auto-columns: -webkit-min-content;
  grid-auto-columns: min-content;
  grid-auto-flow: column;
  align-items: center;
  white-space: nowrap;
}

.wp-block-navigation-menu__inserter-content {
  width: 350px;
  padding: 16px;
}

.wp-block-navigation-menu-item__edit-container {
  display: grid;
  grid-auto-columns: -webkit-min-content;
  grid-auto-columns: min-content;
  grid-auto-flow: column;
  align-items: center;
  white-space: nowrap;
}

.wp-block-navigation-menu-item__edit-container {
  border: 1px solid #e2e4e7;
  width: 178px;
  padding-left: 1px;
}

.wp-block-navigation-menu-item__edit-container .wp-block-navigation-menu-item__field {
  border-right: 1px solid #e2e4e7 !important;
  width: 140px;
  border: none;
  border-radius: 0;
  padding-left: 16px;
  min-height: 35px;
  line-height: 35px;
}

.wp-block-navigation-menu-item__edit-container .wp-block-navigation-menu-item__field,
.wp-block-navigation-menu-item__edit-container .wp-block-navigation-menu-item__field:focus {
  color: #555d66;
}

.wp-block-navigation-menu-item {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #0073af;
  font-weight: bold;
  font-size: 14px;
}

.wp-block-navigation-menu-item__nofollow-external-link {
  display: block;
}

.wp-block-navigation-menu-item__separator {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid #e2e4e7;
}

.components-popover:not(.is-mobile).wp-block-navigation-menu-item__dropdown-content {
  margin-top: -1px;
  margin-left: -4px;
}

.wp-block-navigation-menu-item__dropdown-content .components-popover__content {
  padding: 8px 0;
}

.wp-block-navigation-menu .block-editor-block-list__block[data-type="core/navigation-menu-item"] > .block-editor-block-list__block-edit > div[role=toolbar] {
  display: none;
}

.wp-block-navigation-menu .block-editor-block-list__block[data-type="core/navigation-menu-item"] > .block-editor-block-list__insertion-point {
  display: none;
}

.block-editor-block-list__block[data-type="core/nextpage"] {
  max-width: 100%;
  margin-top: 28px;
  margin-bottom: 28px;
}

.wp-block-nextpage {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.wp-block-nextpage > span {
  font-size: 13px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #6c7781;
  border-radius: 4px;
  background: #fff;
  padding: 6px 8px;
  height: 24px;
}

.wp-block-nextpage::before {
  content: "";
  position: absolute;
  top: calc(50%);
  left: 0;
  right: 0;
  border-top: 3px dashed #ccd0d4;
}

.block-editor-rich-text__editable.wp-block-paragraph:not(.is-selected) [data-rich-text-placeholder]::after {
  display: inline-block;
  padding-right: 108px;
}

.wp-block .wp-block .block-editor-rich-text__editable.wp-block-paragraph:not(.is-selected) [data-rich-text-placeholder]::after {
  padding-right: 36px;
}

.block-editor-block-list__block[data-type="core/paragraph"] p {
  min-height: 28px;
  line-height: 1.8;
}

.wp-block-preformatted pre {
  white-space: pre-wrap;
}

.block-editor-block-list__block[data-type="core/pullquote"][data-align=left] .block-editor-rich-text p,
.block-editor-block-list__block[data-type="core/pullquote"][data-align=right] .block-editor-rich-text p {
  font-size: 20px;
}

.wp-block-pullquote blockquote > .block-editor-rich-text p {
  font-size: 28px;
  line-height: 1.6;
}

.wp-block-pullquote.is-style-solid-color {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-pullquote.is-style-solid-color blockquote > .block-editor-rich-text p {
  font-size: 32px;
}

.wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation {
  text-transform: none;
  font-style: normal;
}

.wp-block-pullquote .wp-block-pullquote__citation {
  color: inherit;
}

.wp-block-quote__citation {
  font-size: 13px;
}

.block-editor .wp-block-rss {
  padding-left: 2.5em;
}

.block-editor .wp-block-rss.is-grid {
  padding-left: 0;
}

.wp-block-rss li a > div {
  display: inline;
}

.wp-block-search .wp-block-search__input {
  border-radius: 4px;
  border: 1px solid #7e8993;
  color: rgba(14, 28, 46, 0.62);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
}

.wp-block-search .wp-block-search__input:focus {
  outline: none;
}

.wp-block-search .wp-block-search__button {
  background: #f7f7f7;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: inset 0 -1px 0 #ccc;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
}

.wp-block-search .wp-block-search__button .wp-block-search__button-rich-text {
  padding: 6px 10px;
}

.wp-block-shortcode {
  display: flex;
  flex-direction: column;
  padding: 14px;
  background-color: rgba(139, 139, 150, 0.1);
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin-bottom: 28px;
}

.wp-block-shortcode label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}

.wp-block-shortcode .block-editor-plain-text {
  width: 80%;
  max-height: 250px;
}

.wp-block-shortcode .dashicon {
  margin-right: 8px;
}

.wp-social-link {
  padding: 6px;
}

.wp-block-social-links.is-style-pill-shape .wp-social-link {
  padding-left: 16px;
  padding-right: 16px;
}

.wp-block-social-links div.editor-url-input {
  display: inline-block;
  margin-left: 8px;
}

.wp-block-social-links .editor-block-list__layout {
  display: flex;
  justify-content: flex-start;
}

[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout {
  margin-left: 0;
  margin-right: 0;
}

[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .block-editor-block-list__block-edit {
  margin-left: 0;
  margin-right: 0;
}

[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .block-editor-block-list__block-edit::before {
  border-right: none;
  border-top: none;
  border-bottom: none;
}

[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block.is-hovered:not(.is-navigate-mode) > .block-editor-block-list__block-edit::before {
  box-shadow: none;
}

[data-type="core/social-links"].is-hovered .wp-block-social-links .block-editor-block-list__block-edit::before,
[data-type="core/social-links"].is-selected .wp-block-social-links .block-editor-block-list__block-edit::before,
[data-type="core/social-links"].has-child-selected .wp-block-social-links .block-editor-block-list__block-edit::before {
  border-color: transparent !important;
}

[data-type="core/social-links"] .wp-block-social-links > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block > .block-editor-block-list__block-edit > [data-block] {
  margin-top: 0;
  margin-bottom: 0;
}

[data-type="core/social-links"] .wp-block-social-links .block-editor-block-list__insertion-point,
[data-type="core/social-links"] .wp-block-social-links .block-editor-block-list__breadcrumb,
[data-type="core/social-links"] .wp-block-social-links .block-editor-block-mover.block-editor-block-mover {
  display: none;
}

.wp-block-social-links .block-list-appender {
  margin: 0;
}

.wp-block-social-links .block-list-appender .block-editor-button-block-appender {
  padding: 8px;
  outline: none;
  background: none;
}

[data-type="core/social-links"][data-align=center] .wp-block-social-links {
  justify-content: center;
}

.block-editor-block-preview__content .wp-social-link:disabled {
  opacity: 1;
}

.block-editor-block-preview__content [data-type="core/social-links"] {
  width: auto !important;
  display: inline-block;
}

[data-type="core/social-links"]:not(.is-selected):not(.has-child-selected) .wp-block-social-links {
  min-height: 36px;
}

[data-type="core/social-links"] .wp-social-link__is-incomplete {
  transition: transform 0.1s ease;
  transform-origin: center center;
}

[data-type="core/social-links"]:not(.is-selected):not(.has-child-selected) .wp-social-link__is-incomplete {
  opacity: 0;
  transform: scale(0);
  width: 0;
  padding: 0;
  margin-right: 0;
}

.wp-social-link.wp-social-link__is-incomplete {
  opacity: 0.5;
}

.wp-block-social-links .is-selected .wp-social-link__is-incomplete,
.wp-social-link.wp-social-link__is-incomplete:hover,
.wp-social-link.wp-social-link__is-incomplete:focus {
  opacity: 1;
}

[data-type="core/social-links"] .wp-social-link:focus {
  opacity: 1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007cba;
  outline: 2px solid transparent;
}

.block-library-spacer__resize-container.is-selected {
  background: #f3f4f5;
}

.block-library-spacer__resize-container {
  clear: both;
  margin-bottom: 28px;
}

.edit-post-visual-editor p.wp-block-subhead {
  color: #6c7781;
  font-size: 1.1em;
  font-style: italic;
}

.block-editor-block-list__block[data-type="core/table"][data-align=left],
.block-editor-block-list__block[data-type="core/table"][data-align=right],
.block-editor-block-list__block[data-type="core/table"][data-align=center] {
  height: auto;
}

.block-editor-block-list__block[data-type="core/table"][data-align=left] table,
.block-editor-block-list__block[data-type="core/table"][data-align=right] table,
.block-editor-block-list__block[data-type="core/table"][data-align=center] table {
  width: auto;
}

.block-editor-block-list__block[data-type="core/table"][data-align=left] td,
.block-editor-block-list__block[data-type="core/table"][data-align=left] th,
.block-editor-block-list__block[data-type="core/table"][data-align=right] td,
.block-editor-block-list__block[data-type="core/table"][data-align=right] th,
.block-editor-block-list__block[data-type="core/table"][data-align=center] td,
.block-editor-block-list__block[data-type="core/table"][data-align=center] th {
  word-break: break-word;
}

.block-editor-block-list__block[data-type="core/table"][data-align=center] {
  text-align: initial;
}

.block-editor-block-list__block[data-type="core/table"][data-align=center] table {
  margin: 0 auto;
}

.wp-block-table {
  margin: 0;
}

.wp-block-table table {
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0;
  border: 1px solid;
}

.wp-block-table td.is-selected,
.wp-block-table th.is-selected {
  border-color: #00a0d2;
  box-shadow: inset 0 0 0 1px #00a0d2;
  border-style: double;
}

.wp-block-table__cell-content {
  padding: 0.5em;
}

.wp-block-table__placeholder-form.wp-block-table__placeholder-form {
  text-align: left;
  align-items: center;
}

.wp-block-table__placeholder-input {
  width: 100px;
}

.wp-block-table__placeholder-button {
  min-width: 100px;
  justify-content: center;
}

.block-editor .wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 5px;
}

.block-editor .wp-block-tag-cloud span {
  display: inline-block;
  margin-left: 5px;
  color: #8f98a1;
  text-decoration: none;
}

.wp-block-text-columns .block-editor-rich-text__editable:focus {
  outline: 1px solid #e2e4e7;
}

pre.wp-block-verse,
.wp-block-verse pre {
  color: #191e23;
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  padding: 1em;
  overflow: auto;
}

.block-editor-block-list__block[data-align=center] {
  text-align: center;
}

.editor-video-poster-control .components-button {
  display: block;
  margin-right: 8px;
}

.editor-video-poster-control .components-button + .components-button {
  margin-top: 1em;
}

/**
 * Import styles from internal editor components used by the blocks.
 */
.block-editor-block-list__layout .reusable-block-edit-panel {
  align-items: center;
  background: #f8f9f9;
  color: #555d66;
  display: flex;
  flex-wrap: wrap;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 13px;
  position: relative;
  top: -14px;
  margin: 0 -14px;
  padding: 8px 14px;
  z-index: 61;
  border: 1px dashed rgba(145, 151, 162, 0.25);
  border-bottom: none;
}

.block-editor-block-list__layout .block-editor-block-list__layout .reusable-block-edit-panel {
  margin: 0 -14px;
  padding: 8px 14px;
}

.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner {
  margin: 0 5px;
}

.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {
  margin-right: auto;
}

.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {
  margin-right: 8px;
  white-space: nowrap;
  font-weight: 600;
}

.block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
  flex: 1 1 100%;
  font-size: 14px;
  height: 30px;
  margin: 4px 0 8px;
}

.block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
  flex-shrink: 0;
}

@media (min-width: 960px) {
  .block-editor-block-list__layout .reusable-block-edit-panel {
    flex-wrap: nowrap;
  }

  .block-editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
    margin: 0;
  }

  .block-editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
    margin: 0 0 0 5px;
  }
}
.editor-block-list__layout .is-selected .reusable-block-edit-panel {
  border-color: rgba(66, 88, 99, 0.4);
  border-left-color: transparent;
}

.is-dark-theme .editor-block-list__layout .is-selected .reusable-block-edit-panel {
  border-color: rgba(255, 255, 255, 0.45);
  border-left-color: transparent;
}

.block-editor-block-list__layout .reusable-block-indicator {
  background: #fff;
  border: 1px dashed #e2e4e7;
  color: #555d66;
  top: -14px;
  height: 30px;
  padding: 4px;
  position: absolute;
  z-index: 1;
  width: 30px;
  right: -14px;
}

/**
 * Editor Normalization Styles
 *
 * These are only output in the editor, but styles here are NOT prefixed .editor-styles-wrapper.
 * This allows us to create normalization styles that are easily overridden by editor styles.
 */
.editor-styles-wrapper [data-block] {
  margin-top: 28px;
  margin-bottom: 28px;
}

/* bties追加 */
.wp-block-heading h2 {
  position: relative;
  border-bottom: 2px solid #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.8rem;
  margin-top: 2rem;
  padding: 0 0 1rem 5.6rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .wp-block-heading h2 {
    font-size: 2.6rem;
  }
  .wp-block-heading h2:before {
    display: inline-block;
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    background-image: url("../img/icon/icon_h2.svg");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    width: 52px;
    height: 54px;
  }
}

.wp-block-heading h3 {
  display: inline-block;
  border-left: 6px solid #fb7765;
  font-size: 1.6rem;
  margin: 3rem 0;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
}
@media screen and (min-width: 768px) {
  .wp-block-heading h3 {
    font-size: 1.8rem;
  }
}

.wp-block-heading h4 {
  font-size: 1.6rem;
  margin: 2rem 0;
  line-height: 2.2rem;
}

.wp-block-heading h5 {
  font-size: 1em;
}

.wp-block-heading h6 {
  font-size: 0.8em;
}

.wp-block-audio figcaption {
  color: #555d66;
  font-size: 13px;
  text-align: center;
}

.wp-block-code {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  color: #23282d;
  padding: 0.8em 1em;
  border: 1px solid #e2e4e7;
  border-radius: 4px;
}

.wp-block-embed figcaption {
  color: #555d66;
  font-size: 13px;
  text-align: center;
}

.blocks-gallery-caption {
  color: #555d66;
  font-size: 13px;
  text-align: center;
}

.wp-block-image figcaption {
  color: #555d66;
  font-size: 13px;
  text-align: center;
}

.wp-block-preformatted pre {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #23282d;
  font-size: 16px;
}

@media (min-width: 600px) {
  .wp-block-preformatted pre {
    font-size: 14px;
  }
}
.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  margin-bottom: 28px;
  color: #40464d;
}

.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote__citation {
  color: #40464d;
  text-transform: uppercase;
  font-size: 13px;
  font-style: normal;
}

.wp-block-quote {
  border-left: 4px solid #000;
  margin: 0 0 28px 0;
  padding-left: 1em;
}

.wp-block-quote cite,
.wp-block-quote footer,
.wp-block-quote__citation {
  color: #6c7781;
  font-size: 13px;
  margin-top: 1em;
  position: relative;
  font-style: normal;
}

.wp-block-quote.has-text-align-right,
.wp-block-quote.has-text-align-right {
  border-left: none;
  border-right: 4px solid #000;
  padding-left: 0;
  padding-right: 1em;
}

.wp-block-quote.has-text-align-center,
.wp-block-quote.has-text-align-center {
  border: none;
  padding-left: 0;
}

.wp-block-quote.is-style-large,
.wp-block-quote.is-large {
  border: none;
}

.wp-block-search .wp-block-search__label {
  font-weight: bold;
}

.wp-block-group.has-background {
  padding: 20px 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.wp-block-separator {
  border: none;
  border-bottom: 2px solid #8f98a1;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.wp-block-separator.has-background:not(.is-style-dots) {
  border-bottom: none;
  height: 1px;
}

.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
  height: 2px;
}

.wp-block-table {
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
  border: 1px solid;
  word-break: normal;
}

.wp-block-video figcaption {
  color: #555d66;
  font-size: 13px;
  text-align: center;
}

.wp-block-audio figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-block-audio audio {
  width: 100%;
  min-width: 300px;
}

.wp-block-button {
  color: #fff;
}

.wp-block-button.aligncenter {
  text-align: center;
}

.wp-block-button.alignright {
  /*rtl:ignore*/
  text-align: right;
}

.wp-block-button__link {
  background-color: #32373c;
  border: none;
  border-radius: 28px;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  margin: 0;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-block-button__link:active,
.wp-block-button__link:visited {
  color: inherit;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.no-border-radius.wp-block-button__link {
  border-radius: 0 !important;
}

.is-style-outline {
  color: #32373c;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid;
}

.wp-block-calendar {
  text-align: center;
}

.wp-block-calendar th,
.wp-block-calendar tbody td {
  padding: 4px;
  border: 1px solid #e2e4e7;
}

.wp-block-calendar tfoot td {
  border: none;
}

.wp-block-calendar table {
  width: 100%;
  border-collapse: collapse;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
}

.wp-block-calendar table th {
  font-weight: 400;
  background: #edeff0;
}

.wp-block-calendar a {
  text-decoration: underline;
}

.wp-block-calendar tfoot a {
  color: #00739c;
}

.wp-block-calendar table tbody,
.wp-block-calendar table caption {
  color: #40464d;
}

.wp-block-categories.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}

.wp-block-categories.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}

.wp-block-columns {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

@media (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 599px) {
  .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 600px) {
  .wp-block-column {
    flex-basis: calc(50% - 16px);
    flex-grow: 0;
  }

  .wp-block-column:nth-child(even) {
    margin-left: 32px;
  }
}
@media (min-width: 782px) {
  .wp-block-column:not(:first-child) {
    margin-left: 32px;
  }
}
/**
 * All Columns Alignment
 */
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

/**
 * Individual Column Alignment
 */
.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}

.wp-block-cover-image,
.wp-block-cover {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: center center;
  min-height: 430px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
  background-attachment: fixed;
}

@supports (-webkit-overflow-scrolling: touch) {
  .wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
    background-attachment: scroll;
  }
}
.wp-block-cover-image.has-background-dim::before,
.wp-block-cover.has-background-dim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: inherit;
  opacity: 0.5;
  z-index: 1;
}

.wp-block-cover-image.has-background-dim.has-background-dim-10::before,
.wp-block-cover.has-background-dim.has-background-dim-10::before {
  opacity: 0.1;
}

.wp-block-cover-image.has-background-dim.has-background-dim-20::before,
.wp-block-cover.has-background-dim.has-background-dim-20::before {
  opacity: 0.2;
}

.wp-block-cover-image.has-background-dim.has-background-dim-30::before,
.wp-block-cover.has-background-dim.has-background-dim-30::before {
  opacity: 0.3;
}

.wp-block-cover-image.has-background-dim.has-background-dim-40::before,
.wp-block-cover.has-background-dim.has-background-dim-40::before {
  opacity: 0.4;
}

.wp-block-cover-image.has-background-dim.has-background-dim-50::before,
.wp-block-cover.has-background-dim.has-background-dim-50::before {
  opacity: 0.5;
}

.wp-block-cover-image.has-background-dim.has-background-dim-60::before,
.wp-block-cover.has-background-dim.has-background-dim-60::before {
  opacity: 0.6;
}

.wp-block-cover-image.has-background-dim.has-background-dim-70::before,
.wp-block-cover.has-background-dim.has-background-dim-70::before {
  opacity: 0.7;
}

.wp-block-cover-image.has-background-dim.has-background-dim-80::before,
.wp-block-cover.has-background-dim.has-background-dim-80::before {
  opacity: 0.8;
}

.wp-block-cover-image.has-background-dim.has-background-dim-90::before,
.wp-block-cover.has-background-dim.has-background-dim-90::before {
  opacity: 0.9;
}

.wp-block-cover-image.has-background-dim.has-background-dim-100::before,
.wp-block-cover.has-background-dim.has-background-dim-100::before {
  opacity: 1;
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  max-width: 305px;
  width: 100%;
}

.wp-block-cover-image::after,
.wp-block-cover::after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-cover-image::after,
.wp-block-cover::after {
    content: none;
  }
}
.wp-block-cover-image.aligncenter,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
  display: flex;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
  width: calc(100% - 70px);
  z-index: 1;
  color: #f8f9f9;
}

.wp-block-cover-image p:not(.has-text-color),
.wp-block-cover-image h1:not(.has-text-color),
.wp-block-cover-image h2:not(.has-text-color),
.wp-block-cover-image h3:not(.has-text-color),
.wp-block-cover-image h4:not(.has-text-color),
.wp-block-cover-image h5:not(.has-text-color),
.wp-block-cover-image h6:not(.has-text-color),
.wp-block-cover-image .wp-block-subhead:not(.has-text-color),
.wp-block-cover p:not(.has-text-color),
.wp-block-cover h1:not(.has-text-color),
.wp-block-cover h2:not(.has-text-color),
.wp-block-cover h3:not(.has-text-color),
.wp-block-cover h4:not(.has-text-color),
.wp-block-cover h5:not(.has-text-color),
.wp-block-cover h6:not(.has-text-color),
.wp-block-cover .wp-block-subhead:not(.has-text-color) {
  color: inherit;
}

.wp-block-cover__video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

section.wp-block-cover-image h2,
.wp-block-cover-image-text,
.wp-block-cover-text {
  color: #fff;
}

section.wp-block-cover-image h2 a,
section.wp-block-cover-image h2 a:hover,
section.wp-block-cover-image h2 a:focus,
section.wp-block-cover-image h2 a:active,
.wp-block-cover-image-text a,
.wp-block-cover-image-text a:hover,
.wp-block-cover-image-text a:focus,
.wp-block-cover-image-text a:active,
.wp-block-cover-text a,
.wp-block-cover-text a:hover,
.wp-block-cover-text a:focus,
.wp-block-cover-text a:active {
  color: #fff;
}

.wp-block-cover-image .wp-block-cover.has-left-content {
  justify-content: flex-start;
}

.wp-block-cover-image .wp-block-cover.has-right-content {
  justify-content: flex-end;
}

section.wp-block-cover-image.has-left-content > h2,
.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text {
  margin-left: 0;
  text-align: left;
}

section.wp-block-cover-image.has-right-content > h2,
.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text {
  margin-right: 0;
  text-align: right;
}

section.wp-block-cover-image > h2,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text {
  font-size: 2em;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  max-width: 610px;
  padding: 14px;
  text-align: center;
}

.block-editor-block-list__block[data-type="core/embed"][data-align=left] .block-editor-block-list__block-edit,
.block-editor-block-list__block[data-type="core/embed"][data-align=right] .block-editor-block-list__block-edit,
.wp-block-embed.alignleft,
.wp-block-embed.alignright {
  max-width: 360px;
  width: 100%;
}

.wp-block-embed {
  margin-bottom: 1em;
}

.wp-block-embed figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper {
  position: relative;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
  padding-top: 42.85%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
  padding-top: 50%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  padding-top: 56.25%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
  padding-top: 75%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
  padding-top: 100%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
  padding-top: 177.78%;
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
  padding-top: 200%;
}

.wp-block-file {
  margin-bottom: 1.5em;
}

.wp-block-file.aligncenter {
  text-align: center;
}

.wp-block-file.alignright {
  /*rtl:ignore*/
  text-align: right;
}

.wp-block-file .wp-block-file__button {
  background: #32373c;
  border-radius: 2em;
  color: #fff;
  font-size: 13px;
  padding: 0.5em 1em;
}

.wp-block-file a.wp-block-file__button {
  text-decoration: none;
}

.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:visited,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:active {
  box-shadow: none;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.wp-block-file * + .wp-block-file__button {
  margin-left: 0.75em;
}

.wp-block-gallery,
.blocks-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item,
.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item {
  margin: 0 16px 16px 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure,
.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure,
.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img,
.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img,
.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img {
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img,
.blocks-gallery-grid .blocks-gallery-image img,
.blocks-gallery-grid .blocks-gallery-item img {
    width: auto;
  }
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption,
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 40px 10px 9px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0, rgba(0, 0, 0, 0.3) 70%, transparent);
}

.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img,
.blocks-gallery-grid .blocks-gallery-image figcaption img,
.blocks-gallery-grid .blocks-gallery-item figcaption img {
  display: inline;
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img,
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img {
  width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img,
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img {
    height: 100%;
    flex: 1;
    object-fit: cover;
  }
}
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item,
.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item {
  width: calc((100% - 16px) / 2);
}

.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.wp-block-gallery .blocks-gallery-item:nth-of-type(even),
.blocks-gallery-grid .blocks-gallery-image:nth-of-type(even),
.blocks-gallery-grid .blocks-gallery-item:nth-of-type(even) {
  margin-right: 0;
}

.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item,
.blocks-gallery-grid.columns-1 .blocks-gallery-image,
.blocks-gallery-grid.columns-1 .blocks-gallery-item {
  width: 100%;
  margin-right: 0;
}

@media (min-width: 600px) {
  .wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item,
.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item {
    width: calc((100% - 16px * 2) / 3);
    margin-right: 16px;
  }

  @supports (-ms-ime-align: auto) {
    .wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item,
.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item {
      width: calc((100% - 16px * 2) / 3 - 1px);
    }
  }
  .wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item,
.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item {
    width: calc((100% - 16px * 3) / 4);
    margin-right: 16px;
  }

  @supports (-ms-ime-align: auto) {
    .wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .blocks-gallery-item,
.blocks-gallery-grid.columns-4 .blocks-gallery-image,
.blocks-gallery-grid.columns-4 .blocks-gallery-item {
      width: calc((100% - 16px * 3) / 4 - 1px);
    }
  }
  .wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item,
.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item {
    width: calc((100% - 16px * 4) / 5);
    margin-right: 16px;
  }

  @supports (-ms-ime-align: auto) {
    .wp-block-gallery.columns-5 .blocks-gallery-image,
.wp-block-gallery.columns-5 .blocks-gallery-item,
.blocks-gallery-grid.columns-5 .blocks-gallery-image,
.blocks-gallery-grid.columns-5 .blocks-gallery-item {
      width: calc((100% - 16px * 4) / 5 - 1px);
    }
  }
  .wp-block-gallery.columns-6 .blocks-gallery-image,
.wp-block-gallery.columns-6 .blocks-gallery-item,
.blocks-gallery-grid.columns-6 .blocks-gallery-image,
.blocks-gallery-grid.columns-6 .blocks-gallery-item {
    width: calc((100% - 16px * 5) / 6);
    margin-right: 16px;
  }

  @supports (-ms-ime-align: auto) {
    .wp-block-gallery.columns-6 .blocks-gallery-image,
.wp-block-gallery.columns-6 .blocks-gallery-item,
.blocks-gallery-grid.columns-6 .blocks-gallery-image,
.blocks-gallery-grid.columns-6 .blocks-gallery-item {
      width: calc((100% - 16px * 5) / 6 - 1px);
    }
  }
  .wp-block-gallery.columns-7 .blocks-gallery-image,
.wp-block-gallery.columns-7 .blocks-gallery-item,
.blocks-gallery-grid.columns-7 .blocks-gallery-image,
.blocks-gallery-grid.columns-7 .blocks-gallery-item {
    width: calc((100% - 16px * 6) / 7);
    margin-right: 16px;
  }

  @supports (-ms-ime-align: auto) {
    .wp-block-gallery.columns-7 .blocks-gallery-image,
.wp-block-gallery.columns-7 .blocks-gallery-item,
.blocks-gallery-grid.columns-7 .blocks-gallery-image,
.blocks-gallery-grid.columns-7 .blocks-gallery-item {
      width: calc((100% - 16px * 6) / 7 - 1px);
    }
  }
  .wp-block-gallery.columns-8 .blocks-gallery-image,
.wp-block-gallery.columns-8 .blocks-gallery-item,
.blocks-gallery-grid.columns-8 .blocks-gallery-image,
.blocks-gallery-grid.columns-8 .blocks-gallery-item {
    width: calc((100% - 16px * 7) / 8);
    margin-right: 16px;
  }

  @supports (-ms-ime-align: auto) {
    .wp-block-gallery.columns-8 .blocks-gallery-image,
.wp-block-gallery.columns-8 .blocks-gallery-item,
.blocks-gallery-grid.columns-8 .blocks-gallery-image,
.blocks-gallery-grid.columns-8 .blocks-gallery-item {
      width: calc((100% - 16px * 7) / 8 - 1px);
    }
  }
  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),
.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),
.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),
.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),
.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),
.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n) {
    margin-right: 0;
  }

  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n),
.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),
.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0;
  }
}
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child,
.blocks-gallery-grid .blocks-gallery-image:last-child,
.blocks-gallery-grid .blocks-gallery-item:last-child {
  margin-right: 0;
}

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright,
.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright {
  max-width: 305px;
  width: 100%;
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure,
.blocks-gallery-grid.aligncenter .blocks-gallery-item figure {
  justify-content: center;
}

.wp-block-image {
  max-width: 100%;
  margin-bottom: 1em;
}

.wp-block-image img {
  max-width: 100%;
}

.wp-block-image.aligncenter {
  text-align: center;
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  width: 100%;
}

.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image .aligncenter,
.wp-block-image.is-resized {
  display: table;
  margin-left: 0;
  margin-right: 0;
}

.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image .aligncenter > figcaption,
.wp-block-image.is-resized > figcaption {
  display: table-caption;
  caption-side: bottom;
}

.wp-block-image .alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1em;
}

.wp-block-image .alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1em;
}

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

.wp-block-image figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.is-style-circle-mask img {
  border-radius: 9999px;
}

@supports ((-webkit-mask-image: none) or (mask-image: none)) or (-webkit-mask-image: none) {
  .is-style-circle-mask img {
    /* stylelint-disable */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="50"/></svg>');
    /* stylelint-enable */
    mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    border-radius: none;
  }
}
.wp-block-latest-comments__comment {
  font-size: 15px;
  line-height: 1.1;
  list-style: none;
  margin-bottom: 1em;
}

.has-avatars .wp-block-latest-comments__comment {
  min-height: 36px;
  list-style: none;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
  margin-left: 52px;
}

.has-dates .wp-block-latest-comments__comment,
.has-excerpts .wp-block-latest-comments__comment {
  line-height: 1.5;
}

.wp-block-latest-comments__comment-excerpt p {
  font-size: 14px;
  line-height: 1.8;
  margin: 5px 0 20px;
}

.wp-block-latest-comments__comment-date {
  color: #8f98a1;
  display: block;
  font-size: 12px;
}

.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
  border-radius: 24px;
  display: block;
  float: left;
  height: 40px;
  margin-right: 12px;
  width: 40px;
}

.wp-block-latest-posts.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}

.wp-block-latest-posts.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  list-style: none;
}

.wp-block-latest-posts.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.wp-block-latest-posts.is-grid li {
  margin: 0 16px 16px 0;
  width: 100%;
}

@media (min-width: 600px) {
  .wp-block-latest-posts.columns-2 li {
    width: calc((100% / 2) - 16px);
  }

  .wp-block-latest-posts.columns-3 li {
    width: calc((100% / 3) - 16px);
  }

  .wp-block-latest-posts.columns-4 li {
    width: calc((100% / 4) - 16px);
  }

  .wp-block-latest-posts.columns-5 li {
    width: calc((100% / 5) - 16px);
  }

  .wp-block-latest-posts.columns-6 li {
    width: calc((100% / 6) - 16px);
  }
}
.wp-block-latest-posts__post-date {
  display: block;
  color: #6c7781;
  font-size: 13px;
}

.wp-block-latest-posts__post-excerpt {
  margin-top: 8px;
  margin-bottom: 16px;
}

.wp-block-media-text {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 50% 1fr;
}

.wp-block-media-text .has-media-on-the-right {
  grid-template-columns: 1fr 50%;
}

.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
  align-self: start;
}

.wp-block-media-text .wp-block-media-text__content,
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
  align-self: center;
}

.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
  align-self: end;
}

.wp-block-media-text .wp-block-media-text__media {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.wp-block-media-text .wp-block-media-text__content {
  grid-column: 2;
  grid-row: 1;
  word-break: break-word;
  padding: 0 8% 0 8%;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  grid-column: 2;
  grid-row: 1;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  grid-column: 1;
  grid-row: 1;
}

.wp-block-media-text > figure > img,
.wp-block-media-text > figure > video {
  max-width: unset;
  width: 100%;
  vertical-align: middle;
}

.wp-block-media-text.is-image-fill figure {
  height: 100%;
  min-height: 250px;
  background-size: cover;
}

.wp-block-media-text.is-image-fill figure > img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*
* Here we here not able to use a mobile first CSS approach.
* Custom widths are set using inline styles, and on mobile,
* we need 100% width, so we use important to overwrite the inline style.
* If the style were set on mobile first, on desktop styles,
* we would have no way of setting the style again to the inline style.
*/
@media (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }

  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }

  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 2;
  }

  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 1;
  }
}
.is-small-text {
  font-size: 14px;
}

.is-regular-text {
  font-size: 16px;
}

.is-large-text {
  font-size: 36px;
}

.is-larger-text {
  font-size: 48px;
}

.has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-size: 8.4em;
  line-height: 0.68;
  font-weight: 100;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}

.has-drop-cap:not(:focus)::after {
  content: "";
  display: table;
  clear: both;
  padding-top: 14px;
}

p.has-background {
  padding: 20px 30px;
}

p.has-text-color a {
  color: inherit;
}

.wp-block-pullquote {
  padding: 3em 0;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
  max-width: 305px;
}

.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
  font-size: 20px;
}

.wp-block-pullquote p {
  font-size: 28px;
  line-height: 1.6;
}

.wp-block-pullquote cite,
.wp-block-pullquote footer {
  position: relative;
}

.wp-block-pullquote .has-text-color a {
  color: inherit;
}

.wp-block-pullquote:not(.is-style-solid-color) {
  background: none;
}

.wp-block-pullquote.is-style-solid-color {
  border: none;
}

.wp-block-pullquote.is-style-solid-color blockquote {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 60%;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
  text-transform: none;
  font-style: normal;
}

.wp-block-pullquote cite {
  color: inherit;
}

.wp-block-quote.is-style-large,
.wp-block-quote.is-large {
  margin: 0 0 16px;
  padding: 0 1em;
}

.wp-block-quote.is-style-large p,
.wp-block-quote.is-large p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.6;
}

.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer,
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer {
  font-size: 18px;
  text-align: right;
}

.wp-block-rss.alignleft {
  /*rtl:ignore*/
  margin-right: 2em;
}

.wp-block-rss.alignright {
  /*rtl:ignore*/
  margin-left: 2em;
}

.wp-block-rss.is-grid {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.wp-block-rss.is-grid li {
  margin: 0 16px 16px 0;
  width: 100%;
}

@media (min-width: 600px) {
  .wp-block-rss.columns-2 li {
    width: calc((100% / 2) - 16px);
  }

  .wp-block-rss.columns-3 li {
    width: calc((100% / 3) - 16px);
  }

  .wp-block-rss.columns-4 li {
    width: calc((100% / 4) - 16px);
  }

  .wp-block-rss.columns-5 li {
    width: calc((100% / 5) - 16px);
  }

  .wp-block-rss.columns-6 li {
    width: calc((100% / 6) - 16px);
  }
}
.wp-block-rss__item-publish-date,
.wp-block-rss__item-author {
  display: block;
  color: #6c7781;
  font-size: 13px;
}

.wp-block-search {
  display: flex;
  flex-wrap: wrap;
}

.wp-block-search .wp-block-search__label {
  width: 100%;
}

.wp-block-search .wp-block-search__input {
  flex-grow: 1;
}

.wp-block-search .wp-block-search__button {
  margin-left: 10px;
}

.wp-block-separator.is-style-wide {
  border-bottom-width: 1px;
}

.wp-block-separator.is-style-dots {
  background: none !important;
  border: none;
  text-align: center;
  max-width: none;
  line-height: 1;
  height: auto;
}

.wp-block-separator.is-style-dots::before {
  content: "···";
  color: currentColor;
  font-size: 20px;
  letter-spacing: 2em;
  padding-left: 2em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Tahoma", "Noto Sans JP", YuGothic, "メイリオ", Meiryo, sans-serif;
}

.wp-block-social-links {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

.wp-social-link {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  margin-right: 8px;
  transition: transform 0.1s ease;
}

.wp-social-link a {
  padding: 6px;
  display: block;
  line-height: 0;
  transition: transform 0.1s ease;
}

.wp-social-link a,
.wp-social-link a:hover,
.wp-social-link a:active,
.wp-social-link a:visited,
.wp-social-link svg {
  color: currentColor;
  fill: currentColor;
}

.wp-social-link:hover {
  transform: scale(1.1);
}

.wp-block-social-links.aligncenter {
  justify-content: center;
  display: flex;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
  background-color: #f0f0f0;
  color: #444;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
  background-color: #f90;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
  background-color: #1ea0c3;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
  background-color: #0757fe;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
  background-color: #1e1f26;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
  background-color: #02e49b;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
  background-color: #e94c89;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
  background-color: #4280ff;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
  background-color: #f45800;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
  background-color: #1977f2;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
  background-color: #000;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
  background-color: #0461dd;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
  background-color: #e65678;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
  background-color: #24292d;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
  background-color: #eceadd;
  color: #382110;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
  background-color: #ea4434;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
  background-color: #f00075;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
  background-color: #e21b24;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
  background-color: #0577b5;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
  background-color: #3288d4;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
  background-color: #02ab6c;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
  background-color: #f6405f;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
  background-color: #e60122;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
  background-color: #ef4155;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
  background-color: #fe4500;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
  background-color: #0478d7;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
  background-color: #fefc00;
  color: #fff;
  stroke: #000;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
  background-color: #ff5600;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
  background-color: #1bd760;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
  background-color: #011835;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
  background-color: #6440a4;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
  background-color: #21a1f3;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
  background-color: #1eb7ea;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
  background-color: #4680c2;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
  background-color: #3499cd;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff;
}

.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
  background-color: #ff0100;
  color: #fff;
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
  background: none;
  padding: 4px;
}

.wp-block-social-links.is-style-logos-only .wp-social-link svg {
  width: 28px;
  height: 28px;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
  color: #f90;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
  color: #1ea0c3;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
  color: #0757fe;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
  color: #1e1f26;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
  color: #02e49b;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
  color: #e94c89;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
  color: #4280ff;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
  color: #f45800;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
  color: #1977f2;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
  color: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
  color: #0461dd;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
  color: #e65678;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-github {
  color: #24292d;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
  color: #382110;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-google {
  color: #ea4434;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
  color: #f00075;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
  color: #e21b24;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
  color: #0577b5;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
  color: #3288d4;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
  color: #02ab6c;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
  color: #f6405f;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
  color: #e60122;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
  color: #ef4155;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
  color: #fe4500;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
  color: #0478d7;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
  color: #fff;
  stroke: #000;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
  color: #ff5600;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
  color: #1bd760;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
  color: #011835;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
  color: #6440a4;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
  color: #21a1f3;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
  color: #1eb7ea;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
  color: #4680c2;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
  color: #3499cd;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
  background-color: #d32422;
  color: #fff;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
  color: #ff0100;
}

.wp-block-social-links.is-style-pill-shape .wp-social-link {
  width: auto;
}

.wp-block-social-links.is-style-pill-shape .wp-social-link a {
  padding-left: 16px;
  padding-right: 16px;
}

.wp-block-spacer {
  clear: both;
}

p.wp-block-subhead {
  font-size: 1.1em;
  font-style: italic;
  opacity: 0.75;
}

.wp-block-table {
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
}

.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}

.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word;
}

.wp-block-table.alignleft,
.wp-block-table.aligncenter,
.wp-block-table.alignright {
  display: table;
  width: auto;
}

.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word;
}

.wp-block-table .has-subtle-light-gray-background-color {
  background-color: #f3f4f5;
}

.wp-block-table .has-subtle-pale-green-background-color {
  background-color: #e9fbe5;
}

.wp-block-table .has-subtle-pale-blue-background-color {
  background-color: #e7f5fe;
}

.wp-block-table .has-subtle-pale-pink-background-color {
  background-color: #fcf0ef;
}

.wp-block-table.is-style-stripes {
  border-spacing: 0;
  border-collapse: inherit;
  background-color: transparent;
  border-bottom: 1px solid #f3f4f5;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f3f4f5;
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
  background-color: #f3f4f5;
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
  background-color: #e9fbe5;
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
  background-color: #e7f5fe;
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
  background-color: #fcf0ef;
}

.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes td {
  border-color: transparent;
}

.wp-block-text-columns {
  display: flex;
}

.wp-block-text-columns.aligncenter {
  display: flex;
}

.wp-block-text-columns .wp-block-column {
  margin: 0 16px;
  padding: 0;
}

.wp-block-text-columns .wp-block-column:first-child {
  margin-left: 0;
}

.wp-block-text-columns .wp-block-column:last-child {
  margin-right: 0;
}

.wp-block-text-columns.columns-2 .wp-block-column {
  width: calc(100% / 2);
}

.wp-block-text-columns.columns-3 .wp-block-column {
  width: calc(100% / 3);
}

.wp-block-text-columns.columns-4 .wp-block-column {
  width: calc(100% / 4);
}

pre.wp-block-verse {
  white-space: nowrap;
  overflow: auto;
}

.wp-block-video {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-video video {
  max-width: 100%;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .wp-block-video [poster] {
    object-fit: cover;
  }
}
.wp-block-video.aligncenter {
  text-align: center;
}

.wp-block-video figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

:root .has-pale-pink-background-color {
  background-color: #f78da7;
}

:root .has-vivid-red-background-color {
  background-color: #cf2e2e;
}

:root .has-luminous-vivid-orange-background-color {
  background-color: #ff6900;
}

:root .has-luminous-vivid-amber-background-color {
  background-color: #fcb900;
}

:root .has-light-green-cyan-background-color {
  background-color: #7bdcb5;
}

:root .has-vivid-green-cyan-background-color {
  background-color: #00d084;
}

:root .has-pale-cyan-blue-background-color {
  background-color: #8ed1fc;
}

:root .has-vivid-cyan-blue-background-color {
  background-color: #0693e3;
}

:root .has-vivid-purple-background-color {
  background-color: #9b51e0;
}

:root .has-very-light-gray-background-color {
  background-color: #eee;
}

:root .has-cyan-bluish-gray-background-color {
  background-color: #abb8c3;
}

:root .has-very-dark-gray-background-color {
  background-color: #313131;
}

:root .has-pale-pink-color {
  color: #f78da7;
}

:root .has-vivid-red-color {
  color: #cf2e2e;
}

:root .has-luminous-vivid-orange-color {
  color: #ff6900;
}

:root .has-luminous-vivid-amber-color {
  color: #fcb900;
}

:root .has-light-green-cyan-color {
  color: #7bdcb5;
}

:root .has-vivid-green-cyan-color {
  color: #00d084;
}

:root .has-pale-cyan-blue-color {
  color: #8ed1fc;
}

:root .has-vivid-cyan-blue-color {
  color: #0693e3;
}

:root .has-vivid-purple-color {
  color: #9b51e0;
}

:root .has-very-light-gray-color {
  color: #eee;
}

:root .has-cyan-bluish-gray-color {
  color: #abb8c3;
}

:root .has-very-dark-gray-color {
  color: #313131;
}

.has-small-font-size {
  font-size: 13px;
}

.has-regular-font-size,
.has-normal-font-size {
  font-size: 16px;
}

.has-medium-font-size {
  font-size: 20px;
}

.has-large-font-size {
  font-size: 36px;
}

.has-larger-font-size,
.has-huge-font-size {
  font-size: 42px;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-left {
  /*rtl:ignore*/
  text-align: left;
}

.has-text-align-right {
  /*rtl:ignore*/
  text-align: right;
}

/* bties追加 */
.wp-block-button {
  display: block;
  color: #fff;
  margin-bottom: 1.5em;
  width: 100%;
}

.wp-block-button.aligncenter {
  text-align: center;
}

.wp-block-button.alignright {
  /*rtl:ignore*/
  text-align: right;
}

.wp-block-button__link {
  display: inline-block;
  position: relative;
  background: #fb7765;
  border: 4px solid #fb7765;
  border-radius: 100px;
  box-shadow: 0 2px 0 #dc523f;
  box-sizing: border-box;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 0.83em 0.6em;
  outline: none;
  text-align: center;
  transition: 0.4s opacity;
  min-width: 98%;
}
@media screen and (min-width: 768px) {
  .wp-block-button__link {
    min-width: 700px;
  }
}
.wp-block-button__link:before {
  display: inline-block;
  content: "";
  font-family: LineIcons !important;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 0.6em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-block-button__link:active,
.wp-block-button__link:visited {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .wp-block-column .wp-block-button__link {
    min-width: 0;
    width: 100%;
  }
}

.is-style-squared .wp-block-button__link {
  cursor: pointer;
  text-decoration: none;
  opacity: 0.8;
}

.is-style-outline {
  color: #32373c;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 4px solid #fb7765;
  box-shadow: none;
  color: #fb7765;
}