/* template.css は normalize.css をベースとしてカスタマイズしたものです */
/* 2019-08-19 */

/* box-sizing は BOXサイズの計算方法を指定するプロパティ */
/* 値をborder−box とした場合、paddingとmaeginの値をBOXサイズ内に含めて計算される */
*, *:before, *:after, *:hover {
/* 【2021.12.8】すべての要素でレイアウト崩れのトリガーになっているので削除する
	margin: 0;
	padding: 0;
	border: 0;
*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

/* 旧ブラウザ向けにHTML5のdisplayルールを設定する  */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display: block;
	}

/* _blankの付くリンクのアイコンを付ける */
a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 6px;
	background: url(/wp/wp-content/themes/premium/img/thema_icon-outlink.png) center center / 13px auto no-repeat;
}

/* リンクのクリック時やマウスフォーカス時の枠を消す */
*:focus {outline: none;}

body {
/*	font-family:"Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "ヒラギノ角ゴ ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana;
	font-size: calc(0.5rem + 1vmin);*/
	line-height: 1.6;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1rem;
	color: #212121;
	background-color:#fff;
	margin: 135px 0 0 0;
	padding:0;
	height: 100%;
	width: 100%;
	}
	@media all and (-ms-high-contrast: none) {
		body {
			font-family: "游ゴシック Medium", Verdana, Meiryo, sans-serif;
		}
	}

p {
	display: block;
	-webkit-margin-before: .5em;
	-webkit-margin-after: .5em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	}

h1 {
	font-size: calc(0.5rem + 3vmin);/* 32px or 31~34 */
	font-weight: bold;
	}

h2 {
	/*font-size: 2.6vw;*/
	font-size: calc(0.5rem + 2.5vmin);/* 28px or 27~30 */
	font-weight: bold;
	}

h3 {
	font-size: calc(0.5rem + 1.8vmin);/* 24px or 23~26 */
	font-weight: bold;
	}

h4 {
	font-size: calc(0.5rem + 1.4vmin);/* 20px or 19~23 */
	font-weight: bold;
	}

h5 {
	font-size: calc(0.5rem + 1vmin);/* 16px or 16~18 */
	font-weight: bold;
	}

@media screen and (max-width: 640px) {
	h1 {font-size: calc(0.7rem + 3vmin);}
	h2 {font-size: calc(0.7rem + 2.5vmin);}
	h3 {font-size: calc(0.7rem + 1.8vmin);}
	h4 {font-size: calc(0.7rem + 1.4vmin);}
	}

/**
 * Add the correct display in IE 9-.
 */

ul, ol {
	list-style: none;
	}

/* ------ list style ------*/
ul.list-num {/* 数字 */
	padding-left: 1.6em;
	list-style-type: decimal;
	}

ul.list-disk {/* ●印 */
	padding-left: 1.6em;
	list-style-type: disc;
	}

ul.list-caution-num li {/* ※印 */
	padding-left: 2.4em;
	position: relative;
	}
	ul.list-caution-num li:before {
		position: absolute;
		left: 0;
		}
	ul.list-caution-num li:nth-of-type(1):before {
		content: "※1";
		}
	ul.list-caution-num li:nth-of-type(2):before {
		content: "※2";
		}
	ul.list-caution-num li:nth-of-type(3):before {
		content: "※3";
		}
	ul.list-caution-num li:nth-of-type(4):before {
		content: "※4";
		}
	ul.list-caution-num li:nth-of-type(5):before {
		content: "※5";
		}
	ul.list-caution-num li:nth-of-type(6):before {
		content: "※6";
		}
	ul.list-caution-num li:nth-of-type(7):before {
		content: "※7";
		}
	ul.list-caution-num li:nth-of-type(8):before {
		content: "※8";
		}
	ul.list-caution-num li:nth-of-type(9):before {
		content: "※9";
		}
	ul.list-caution-num li:nth-of-type(10):before {
		content: "※10";
		}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
	}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
	}

/* Text-level semantics
	========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
	text-decoration: none;
	}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

a:active {
	outline-width: 0;
	}

a:hover {
	outline-width: 0;
	}

	/* 透過したい画像の方が少ないので利用しない。
a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	}
*/

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
	}

/**
 * addressタグで斜めにならないようにする
 */
address{
	font-style:normal;
	}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
	font-weight: inherit;
	}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
	}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
	}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
	font-style: italic;
	}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
	background-color: #ff0;
	color: #000;
	}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
	}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
	}

sub {
	bottom: -0.25em;
	}

sup {
	top: -0.5em;
	}

/* Embedded content
	 ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
	display: inline-block;
	}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
	display: none;
	height: 0;
	}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
	border-style: none;
	border: 0; }

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
	overflow: hidden;
	}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif; /* 1 */
	font-size: 1em; /* 1 */
	line-height: 1.6; /* 1 */
	margin: 0; /* 2 */
	}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
	}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
	}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *	controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
	-webkit-appearance: button; /* 2 */
	}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
	}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
	}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *	`fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
	}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
	}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
	overflow: auto;
	}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
	}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
	}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
	}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
	}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
	}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
	display: block;
	}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
	}

/* Scripting
	 ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
	display: inline-block;
	}

/**
 * Add the correct display in IE.
 */

template {
	display: none;
	}

/* Hidden
	 ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
	display: none;
	}


/* スマホ用のバーガーボタンをタップした際に変更される半透明背景色を
   予め透明黒にしておくことでフラッシュしたような効果を無くす
 */
body {
  background-color: rgba(0, 0, 0, 0);
}

.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.left-0 {
  left: 0px;
}
.left-\[14px\] {
  left: 14px;
}
.left-\[4px\] {
  left: 4px;
}
.left-\[8px\] {
  left: 8px;
}
.right-0 {
  right: 0px;
}
.right-\[16px\] {
  right: 16px;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-\[4px\] {
  top: 4px;
}
.top-\[8px\] {
  top: 8px;
}
.top-\[13px\] {
  top: 13px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.-m-\[12px\] {
  margin: -12px;
}
.mx-\[145px\] {
  margin-left: 145px;
  margin-right: 145px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-\[10px\] {
  margin-top: 10px;
  margin-bottom: 10px;
}
.-ml-\[4px\] {
  margin-left: -4px;
}
.-mt-\[6px\] {
  margin-top: -6px;
}
.-mt-\[85px\] {
  margin-top: -85px;
}
.-mt\[85px\] {
  margin-top: -85px;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[120px\] {
  margin-bottom: 120px;
}
.mb-\[12px\] {
  margin-bottom: 12px;
}
.mb-\[15px\] {
  margin-bottom: 15px;
}
.mb-\[16px\] {
  margin-bottom: 16px;
}
.mb-\[17px\] {
  margin-bottom: 17px;
}
.mb-\[20px\] {
  margin-bottom: 20px;
}
.mb-\[21px\] {
  margin-bottom: 21px;
}
.mb-\[22px\] {
  margin-bottom: 22px;
}
.mb-\[24px\] {
  margin-bottom: 24px;
}
.mb-\[25px\] {
  margin-bottom: 25px;
}
.mb-\[26px\] {
  margin-bottom: 26px;
}
.mb-\[27px\] {
  margin-bottom: 27px;
}
.mb-\[2px\] {
  margin-bottom: 2px;
}
.mb-\[30px\] {
  margin-bottom: 30px;
}
.mb-\[36px\] {
  margin-bottom: 36px;
}
.mb-\[40px\] {
  margin-bottom: 40px;
}
.mb-\[42px\] {
  margin-bottom: 42px;
}
.mb-\[45px\] {
  margin-bottom: 45px;
}
.mb-\[4px\] {
  margin-bottom: 4px;
}
.mb-\[50px\] {
  margin-bottom: 50px;
}
.mb-\[6px\] {
  margin-bottom: 6px;
}
.mb-\[8px\] {
  margin-bottom: 8px;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.ml-auto {
  margin-left: auto;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-\[10px\] {
  margin-right: 10px;
}
.mr-\[8px\] {
  margin-right: 8px;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[15px\] {
  margin-top: 15px;
}
.mt-\[20px\] {
  margin-top: 20px;
}
.mt-\[21px\] {
  margin-top: 21px;
}
.mt-\[24px\] {
  margin-top: 24px;
}
.mt-\[40px\] {
  margin-top: 40px;
}
.mt-\[4px\] {
  margin-top: 4px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.aspect-video img {
  object-fit: cover;
  height: 100%;
}
.h-10 {
  height: 2.5rem;
}
.h-\[120px\] {
  height: 120px;
}
.h-\[14px\] {
  height: 14px;
}
.h-\[150px\] {
  height: 150px;
}
.h-\[165px\] {
  height: 165px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[170px\] {
  height: 170px;
}
.h-\[188px\] {
  height: 188px;
}
.h-\[18px\] {
  height: 18px;
}
.h-\[195px\] {
  height: 195px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[210px\] {
  height: 210px;
}
.h-\[25px\] {
  height: 25px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[32px\] {
  height: 32px;
}
.h-\[34vh\] {
  height: 34vh;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[75px\] {
  height: 75px;
}
.h-\[80px\] {
  height: 80px;
}
.h-\[85px\] {
  min-height: 85px;
}
.h-\[8px\] {
  height: 8px;
}
.h-\[90px\] {
  height: 90px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
#menu-opened {
  height: calc(100dvh - 60px);
  padding-bottom: 2.5rem;
  overflow-y: auto;
}
.w-1\/2 {
  width: 50%;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-\[120px\] {
  width: 120px;
}
.w-\[12px\] {
  width: 12px;
}
.w-\[134px\] {
  width: 134px;
}
.w-\[13px\] {
  width: 13px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[145px\] {
  width: 145px;
}
.w-\[14px\] {
  width: 14px;
}
.w-\[15px\] {
  width: 15px;
}
.w-\[16px\] {
  width: 16px;
}
.w-\[170px\] {
  width: 170px;
}
.w-\[17px\] {
  width: 17px;
}
.w-\[180px\] {
  width: 180px;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[215px\] {
  width: 215px;
}
.w-\[22px\] {
  width: 22px;
}
.w-\[245px\] {
  width: 245px;
}
.w-\[25px\] {
  width: 25px;
}
.w-\[28px\] {
  width: 28px;
}
.w-\[30px\] {
  width: 30px;
}
.w-\[31px\] {
  width: 31px;
}
.w-\[320px\] {
  width: 320px;
}
.w-\[335px\] {
  width: 335px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[45px\] {
  width: 45px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[75px\] {
  width: 75px;
}
.w-auto {
  width: auto;
}
.w-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-px {
  width: 1px;
}
.w-screen {
  width: 100vw;
}
.max-w-\[335px\] {
  max-width: 335px;
}
.max-w-archive {
  width: 100%;
  max-width: 820px;
}
@media (max-width: 1199px) {
  .max-w-archive {
    max-width: 1280px;
  }
}
.max-w-none {
  max-width: none;
}
.max-w-pc {
  width: 100%;
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .max-w-pc {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.narrow-w-pc {
  width: 100%;
  max-width: 880px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .narrow-w-pc {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.max-w-post {
  max-width: 880px;
}
.max-w-sp {
  max-width: 440px;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.origin-left {
  transform-origin: left;
}
.-translate-x-\[4px\] {
  transform: translate(-4px, 0);
}
.-translate-x-\[8px\] {
  transform: translate(-8px, 0);
}
.-translate-y-1\/2 {
  transform: translate(0, -50%);
}
.-translate-y-\[4px\] {
  transform: 0, -4px;
}
.-translate-y-\[8px\] {
  transform: translate(0, -8px);
}
.translate-x-full {
  transform: translate(100%, 0);
}
.rotate-180 {
  transform: rotate(180deg);
}
.scale-50 {
  transform: scaleX(0.5) scaleY(0.5);
}
.scale-\[0\.8\] {
  transform: scaleX(0.8) scaleY(0.8);
}
.scale-\[0\.95\] {
  transform: scaleX(0.95) scaleY(0.95);
}
.cursor-pointer {
  cursor: pointer;
}
.list-\[\'\30fb \'\] {
  list-style-type: "・";
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-\[8px\] {
  gap: 8px;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[12px\] {
  gap: 12px;
}
.gap-\[14px\] {
  gap: 14px;
}
.gap-\[20px\] {
  gap: 20px;
}
.gap-x-1 {
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
}
.gap-x-1\.5 {
  -moz-column-gap: 0.375rem;
  column-gap: 0.375rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.gap-x-2\.5 {
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
.gap-x-\[10px\] {
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.gap-x-\[12px\] {
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.gap-x-\[13px\] {
  -moz-column-gap: 13px;
  column-gap: 13px;
}
.gap-x-\[14px\] {
  -moz-column-gap: 14px;
  column-gap: 14px;
}
.gap-x-\[16px\] {
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.gap-x-\[17px\] {
  -moz-column-gap: 17px;
  column-gap: 17px;
}
.gap-x-\[19px\] {
  -moz-column-gap: 19px;
  column-gap: 19px;
}
.gap-x-\[20px\] {
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.gap-x-\[24px\] {
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.gap-x-\[25px\] {
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.gap-x-\[4px\] {
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.gap-x-\[50px\] {
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.gap-x-\[52px\] {
  -moz-column-gap: 52px;
  column-gap: 52px;
}
.gap-x-\[8px\] {
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.gap-x-\[9px\] {
  -moz-column-gap: 9px;
  column-gap: 9px;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.gap-y-\[20px\] {
  row-gap: 20px;
}
.gap-y-\[25px\] {
  row-gap: 25px;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-x-\[1px\] {
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l-\[1px\] {
  border-left-width: 1px;
}
.border-r-\[1px\] {
  border-right-width: 1px;
}
.border-\[\#cccccc\] {
  border-color: #ccc;
}
.border-primary-gray {
  border-color: #4c4c4c;
}
.border-primary-orange {
  border-color: #fd6c26;
}
.border-white {
  border-color: white;
}
.bg-\[\#00BF10\] {
  background-color: #00bf10;
}
.bg-\[\#FF3333\] {
  background-color: #f33;
}
.bg-\[\#f2f2f2\] {
  background-color: #f2f2f2;
}
.bg-black {
  background-color: black;
}
.bg-gray-500 {
  background-color: #6b7280;
}
.bg-primary-blue {
  background-color: #00afbf;
}
.bg-primary-gray {
  background-color: #4c4c4c;
}
.bg-primary-light {
  background-color: #ebedf0;
}
.bg-primary-orange {
  background-color: #fd6c26;
}
.bg-secondary-orange {
  background-color: #ff9326;
}
.bg-tertiary-orange {
  background-color: #fc6d26;
}
.bg-white {
  background-color: white;
}
.bg-opacity-90 {
  opacity: 0.9;
}
.fill-current {
  fill: currentColor;
}
.stroke-primary-blue {
  stroke: #00afbf;
}
.stroke-white {
  stroke: #fff;
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.object-center {
  -o-object-position: center;
  object-position: center;
}
.p-\[10px\] {
  padding: 10px;
}
.p-\[15px\] {
  padding: 15px;
}
.p-\[12px\]  {
  padding: 12px;
}
.p-\[20px\] {
  padding: 20px;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[16px\] {
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[18px\] {
  padding-left: 18px;
  padding-right: 18px;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[40px\] {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .px-\[40px\] {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.px-\[6px\] {
  padding-left: 6px;
  padding-right: 6px;
}
.px-\[8px\] {
  padding-left: 8px;
  padding-right: 8px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-\[15px\] {
  padding-top: 15px;
  padding-bottom: 15px;
}
.py-\[16px\] {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}
.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[30px\] {
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-\[40px\] {
  padding-top: 40px;
  padding-bottom: 40px;
}
.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-\[10px\] {
  padding-bottom: 10px;
}
.pb-\[13px\] {
  padding-bottom: 13px;
}
.pb-\[15px\] {
  padding-bottom: 15px;
}
.pb-\[20px\] {
  padding-bottom: 20px;
}
.pb-\[2px\] {
  padding-bottom: 2px;
}
.pb-\[40px\] {
  padding-bottom: 40px;
}
.pl-\[10px\] {
  padding-left: 10px;
}
.pr-\[10px\] {
  padding-right: 10px;
}
.pt-0 {
  padding-top: 0px;
}
.pt-\[5px\] {
  padding-top: 5px;
}
.pt-\[10px\] {
  padding-top: 10px;
}
.pt-\[12px\] {
  padding-top: 12px;
}
.pt-\[15px\] {
  padding-top: 15px;
}
.pt-\[16px\] {
  padding-top: 16px;
}
.pt-\[20px\] {
  padding-top: 20px;
}
.pt-\[26px\] {
  padding-top: 26px;
}
.pt-\[30px\] {
  padding-top: 30px;
}
.pt-\[32px\] {
  padding-top: 32px;
}
.pt-\[40px\] {
  padding-top: 40px;
}
.pt-\[48px\] {
  padding-top: 48px;
}
.pt-\[4px\] {
  padding-top: 4px;
}
.pt-\[60px\] {
  padding-top: 60px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[19px\] {
  font-size: 19px;
}
.text-\[21px\] {
  font-size: 21px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[28px\] {
  font-size: 28px;
}
.font-bold {
  font-weight: 700;
}
.leading-4 {
  line-height: 1rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-9 {
  line-height: 2.25rem;
}
.font-palt {
  font-feature-settings: "palt" 1;
}
.tracking-normal {
  letter-spacing: 0em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.text-primary-blue {
  color: #00afbf;
}
.text-primary-orange {
  color: #fd6c26;
}
.text-tertiary-orange {
  color: #fc6d26;
}
.text-white {
  color: white;
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.opacity-20 {
  opacity: 0.2;
}
.drop-shadow-md {
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.05)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}
.drop-shadow-xl {
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}
.duration-300 {
  transition-duration: 300ms;
}
.overflow-hidden {
  overflow: hidden;
}
.hover\:border-white:hover {
  border-color: white;
}
.hover\:bg-hover-blue:hover {
  background-color: #30d2f2;
}
.hover\:bg-hover-orange:hover {
  background-color: #ff9326;
}
.hover\:bg-primary-blue:hover {
  background-color: #00afbf;
}
.hover\:bg-primary-orange:hover {
  background-color: #fd6c26;
}
.hover\:text-white:hover {
  color: white;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.group:hover .group-hover\:stroke-white {
  stroke: #fff;
}
.group:hover .group-hover\:text-white {
  color: white;
}
@media (min-width: 1200px) {
  .lg\:absolute {
    position: absolute;
  }
  .lg\:relative {
    position: relative;
  }
  .lg\:sticky {
    position: sticky;
  }
  .lg\:-bottom-\[14px\] {
    bottom: -14px;
  }
  .lg\:top-\[13px\] {
    top: 13px;
  }
  .lg\:left-\[8px\] {
    left: 8px;
  }
  .lg\:right-0 {
    right: 0px;
  }
  .lg\:right-\[40px\] {
    right: 40px;
  }
  .lg\:top-\[50px\] {
    top: 50px;
  }
  .lg\:top-\[50px\] {
    top: 50px;
  }
  .lg\:top-\[100px\] {
    top: 100px;
  }
  .lg\:top-\[8px\] {
    top: 8px;
  }
  .lg\:z-0 {
    z-index: 0;
  }
  .lg\:m-0 {
    margin: 0px;
  }
  .lg\:-ml-\[6px\] {
    margin-left: -6px;
  }
  .lg\:mt-\[60px\] {
    margin-top: 60px;
  }
  .lg\:-mt-\[130px\] {
    margin-top: -130px;
  }
  .lg\:-mt-\[260px\] {
    margin-top: -260px;
  }
  .lg\:-mt-\[40px\] {
    margin-top: -40px;
  }
  .lg\:mb-0 {
    margin-bottom: 0px;
  }
  .lg\:mb-\[0\] {
    margin-bottom: 0;
  }
  .lg\:mb-\[80px\] {
    margin-bottom: 80px;
  }
  .lg\:mb-\[120px\] {
    margin-bottom: 120px;
  }
  .lg\:mb-\[12px\] {
    margin-bottom: 12px;
  }
  .lg\:mb-\[16px\] {
    margin-bottom: 16px;
  }
  .lg\:mb-\[18px\] {
    margin-bottom: 18px;
  }
  .lg\:mb-\[20px\] {
    margin-bottom: 20px;
  }
  .lg\:mb-\[240px\] {
    margin-bottom: 240px;
  }
  .lg\:mb-\[24px\] {
    margin-bottom: 24px;
  }
  .lg\:mb-\[30px\] {
    margin-bottom: 30px;
  }
  .lg\:mb-\[32px\] {
    margin-bottom: 32px;
  }
  .lg\:mb-\[40px\] {
    margin-bottom: 40px;
  }
  .lg\:mb-\[48px\] {
    margin-bottom: 48px;
  }
  .lg\:mb-\[50px\] {
    margin-bottom: 50px;
  }
  .lg\:mb-\[51px\] {
    margin-bottom: 51px;
  }
  .lg\:mb-\[52px\] {
    margin-bottom: 52px;
  }
  .lg\:mb-\[8px\] {
    margin-bottom: 8px;
  }
  .lg\:ml-\[20px\] {
    margin-left: 20px;
  }
  .lg\:mr-0 {
    margin-right: 0px;
  }
  .lg\:mr-\[20px\] {
    margin-right: 20px;
  }
  .lg\:mr-\[40px\] {
    margin-right: 40px;
  }
  .lg\:mt-0 {
    margin-top: 0px;
  }
  .lg\:mt-\[17px\] {
    margin-top: 17px;
  }
  .lg\:mt-\[20px\] {
    margin-top: 20px;
  }
  .lg\:mt-\[28px\] {
    margin-top: 28px;
  }
  .lg\:mt-\[40px\] {
    margin-top: 40px;
  }
  .lg\:mt-\[48px\] {
    margin-top: 48px;
  }
  .lg\:mt-\[6px\] {
    margin-top: 6px;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:grid {
    display: grid;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:aspect-video {
    aspect-ratio: 16 / 9;
  }
  .lg\:aspect-video img {
    object-fit: cover;
    height: 100%;
  }
  .lg\:h-\[100px\] {
    height: 100px;
  }
  .lg\:h-\[170px\] {
    height: 170px;
  }
  .lg\:h-\[150px\] {
    height: 150px;
  }
  .lg\:h-\[160px\] {
    height: 160px;
  }
  .lg\:h-\[19px\] {
    height: 19px;
  }
  .lg\:h-\[240px\] {
    height: 240px;
  }
  .lg\:h-\[24px\] {
    height: 24px;
  }
  .lg\:h-\[2px\] {
    height: 2px;
  }
  .lg\:h-\[300px\] {
    height: 300px;
  }
  .lg\:h-\[38px\] {
    height: 38px;
  }
  .lg\:h-\[40px\] {
    height: 40px;
  }
  .lg\:h-\[460px\] {
    height: 460px;
  }
  .lg\:h-\[500px\] {
    height: 500px;
  }
  .lg\:h-\[50px\] {
    height: 50px;
  }
  .lg\:h-\[60px\] {
    height: 60px;
  }
  .gap-y-\[18px\] {
    row-gap: 18px;
  }
  .lg\:w-\[128px\] {
    width: 128px;
  }
  .lg\:h-\[72px\] {
    height: 72px;
  }
  .lg\:h-\[80px\] {
    height: 80px;
  }
  .lg\:h-\[9\.6vh\] {
    height: 9.6vh;
  }
  .lg\:h-auto {
    height: auto;
  }
  .lg\:h-fit-content {
    height: -moz-fit-content;
    height: fit-content;
  }
  .lg\:h-full {
    height: 100%;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-\[100px\] {
    width: 100px;
  }
  .lg\:w-\[150px\] {
    width: 150px;
  }
  .lg\:w-\[170px\] {
    width: 170px;
  }
  .lg\:w-\[200px\] {
    width: 200px;
  }
  .lg\:w-\[22px\] {
    width: 22px;
  }
  .lg\:w-\[24px\] {
    width: 24px;
  }
  .lg\:w-\[25px\] {
    width: 25px;
  }
  .lg\:w-\[28px\] {
    width: 28px;
  }
  .lg\:w-\[290px\] {
    width: 290px;
  }
  .lg\:w-\[30px\] {
    width: 30px;
  }
  .lg\:w-\[330px\] {
    width: 330px;
  }
  .lg\:w-\[366px\] {
    width: 366px;
  }
  .lg\:w-\[36px\] {
    width: 36px;
  }
  .lg\:w-\[44px\] {
    width: 44px;
  }
  .lg\:w-\[47px\] {
    width: 47px;
  }
  .lg\:w-\[500px\] {
    width: 500px;
  }
  .lg\:w-\[50px\] {
    width: 50px;
  }
  .lg\:w-\[560px\] {
    width: 560px;
  }
  .lg\:w-\[60px\] {
    width: 60px;
  }
  .lg\:w-\[62px\] {
    width: 62px;
  }
  .lg\:w-\[80px\] {
    width: 80px;
  }
  .lg\:w-\[820px\] {
    width: 820px;
  }
  .lg\:w-\[90px\] {
    width: 90px;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:w-fit-content {
    width: -moz-fit-content;
    width: fit-content;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:max-w-full {
    max-width: 100%;
  }
  .lg\:max-w-pc {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .lg\:-translate-y-1\/2 {
    transform: translate(0, -50%);
  }
  .lg\:translate-x-0 {
    transform: translate(0px, 0);
  }
  .lg\:scale-100 {
    transform: scaleX(1) scaleY(1);
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .lg\:flex-col {
    flex-direction: column;
  }
  .lg\:flex-wrap {
    flex-wrap: wrap;
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:gap-\[16px\] {
    gap: 16px;
  }
  .lg\:gap-\[20px\] {
    gap: 20px;
  }
  .lg\:gap-\[50px\] {
    gap: 50px;
  }
  .lg\:gap-x-2 {
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
  .lg\:gap-x-2\.5 {
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
  }
  .lg\:gap-x-\[158px\] {
    -moz-column-gap: 158px;
    column-gap: 158px;
  }
  .lg\:gap-x-\[16px\] {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .lg\:gap-x-\[20px\] {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .lg\:gap-x-\[24px\] {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  .lg\:gap-x-\[30px\] {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .lg\:gap-x-\[40px\] {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .lg\:gap-x-\[50px\] {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .lg\:gap-x-\[8px\] {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .lg\:gap-y-\[30px\] {
    row-gap: 30px;
  }
  .lg\:gap-y-\[60px\] {
    row-gap: 60px;
  }
  .lg\:gap-y-\[80px\] {
    row-gap: 80px;
  }
  .lg\:overflow-auto {
    overflow: auto;
  }
  .lg\:border-2 {
    border-width: 2px;
  }
  .lg\:border-b {
    border-bottom-width: 1px;
  }
  .lg\:bg-transparent {
    background-color: transparent;
  }
  .lg\:p-0 {
    padding: 0px;
  }
  .lg\:p-\[20px\] {
    padding: 20px;
  }
  .lg\:p-\[30px\] {
    padding: 30px;
  }
  .lg\:p-\[40px\] {
    padding: 40px;
  }
  .lg\:p-\[80px\] {
    padding: 80px;
  }
  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:px-\[14px\] {
    padding-left: 14px;
    padding-right: 14px;
  }
  .lg\:px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lg\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .lg\:px-\[50px\] {
    padding-left: 50px;
    padding-right: 50px;
  }
  .lg\:px-\[8px\] {
    padding-left: 8px;
    padding-right: 8px;
  }
  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .lg\:py-\[40px\] {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .lg\:py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .lg\:py-\[14px\] {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .lg\:py-\[150px\] {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .lg\:py-\[18px\] {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .lg\:py-\[20px\] {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .lg\:py-\[2px\] {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .lg\:py-\[30px\] {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .lg\:py-\[45px\] {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .lg\:py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .lg\:pb-0 {
    padding-bottom: 0px;
  }
  .lg\:pb-\[100px\] {
    padding-bottom: 100px;
  }
  .lg\:pb-\[120px\] {
    padding-bottom: 120px;
  }
  .lg\:pb-\[5px\] {
    padding-bottom: 5px;
  }
  .lg\:pb-\[18px\] {
    padding-bottom: 18px;
  }
  .lg\:pb-\[30px\] {
    padding-bottom: 30px;
  }
  .lg\:pb-\[40px\] {
    padding-bottom: 40px;
  }
  .lg\:pb-\[52px\] {
    padding-bottom: 52px;
  }
  .lg\:pb-\[70px\] {
    padding-bottom: 70px;
  }
  .lg\:pl-\[16px\] {
    padding-left: 16px;
  }
  .lg\:pr-\[20px\] {
    padding-right: 20px;
  }
  .lg\:pt-0 {
    padding-top: 0px;
  }
  .lg\:pt-\[80px\] {
    padding-top: 80px;
  }
  .lg\:pt-\[115px\] {
    padding-top: 115px;
  }
  .lg\:pt-\[120px\] {
    padding-top: 120px;
  }
  .lg\:pt-\[20px\] {
    padding-top: 20px;
  }
  .lg\:pt-\[24px\] {
    padding-top: 24px;
  }
  .lg\:pt-\[30px\] {
    padding-top: 30px;
  }
  .lg\:pt-\[40px\] {
    padding-top: 40px;
  }
  .lg\:pt-\[96px\] {
    padding-top: 96px;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-center {
    text-align: center;
  }
  .lg\:text-\[12px\] {
    font-size: 12px;
  }
  .lg\:text-\[14px\] {
    font-size: 14px;
  }
  .lg\:text-\[16px\] {
    font-size: 16px;
  }
  .lg\:text-\[18px\] {
    font-size: 18px;
  }
  .lg\:text-\[21px\] {
    font-size: 21px;
  }
  .lg\:text-\[24px\] {
    font-size: 24px;
  }
  .lg\:text-\[28px\] {
    font-size: 28px;
  }
  .lg\:text-\[36px\] {
    font-size: 36px;
  }
  .lg\:text-\[38px\] {
    font-size: 38px;
  }
  .lg\:text-\[48px\] {
    font-size: 48px;
  }
  .lg\:leading-7 {
    line-height: 1.75rem;
  }
  .lg\:leading-9 {
    line-height: 2.25rem;
  }
  .lg\:leading-\[58px\] {
    line-height: 58px;
  }
  .lg\:opacity-100 {
    opacity: 1;
  }
  .lg\:drop-shadow-md {
    filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.05)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
  }
}

/* ハンバーガーメニュー（通常時は隠す） */
.navToggle {
  display: none;
}

a, #header-set, .header-wrapper /*, li, img*/ {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
a {
  color: #0bc151;
}

/* フルードイメージ 2021.11.11 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* ヘッダー */
#header-set {
  /*	width: 100%;
	margin: 0 auto;*/
  height: 95px;
  background-color: #fff;
  /*	position: sticky;*/
  /*	position: -webkit-sticky;*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  position: fixed;
}
#header-set.active {
  /*	height: 95px;*/
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
}
.header-wrapper {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  /*	-ms-flex-align: center;
	align-items: center;*/
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.active .header-wrapper {
  padding: 1.25rem 2rem 1rem;
  /*	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);*/
}
.active .nav-menu ul li.inquiry-button a {
  padding: 0.8rem 1.5rem;
}
/*
.header-wrapper {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
	padding: 4.5rem 2rem 5rem;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
}
*/
/* SmartCompany ロゴ */
.header-logo {
  width: 17vw;
  min-width: 168px;
}
/*.header-logo img {
	width: 100%;
	max-width: 250px;
	height: auto;
}*/
/* 2021.11.11 **********/
.header-logo img {
  width: 131px;
  height: 61px;
}
/********** 2021.11.11 */

/* ページトップボタン */
#page-top-button {
  position: fixed;
  right: 3rem;
  bottom: 4rem;
  z-index: 99;
}
#page-top-button a {
  color: #000;
}
/* アラートランプ */
#page-top-button .box-alert {
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
#page-top-button .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
#page-top-button .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: -1;
}
#page-top-button:hover .ring {
  animation: pulsate-1001 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-1001 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-1001 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-1001 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-1001 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-1001 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
#page-top-button .scroll-show img {
  width: 100%;
  height: 100%;
}
#page-top-button .scroll-show {
  width: 12px;
  /*	color: #6dda97;*/
  /*	font-size: .6rem;*/
  position: fixed;
  bottom: 5rem;
  margin: 0;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

/* メニュー */
.nav-menu {
  color: #000;
}
.nav-menu a {
  color: #000;
  font-size: 0.9rem;
  /*	font-weight: bold;*/
  text-decoration: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}
.nav-menu ul {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  padding-left: 0;
}
.nav-menu ul li {
  text-align: center;
  vertical-align: middle;
  margin: 0 calc(1.6vw * 0.8);
  padding-bottom: 1.5rem;
  /*	display: table-cell;*/
}
.nav-menu a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current-page-ancestor a {
  color: #0bc151;
}
.nav-menu ul li:hover,
.nav-menu li.current-menu-item,
.nav-menu li.current-page-ancestor {
  border-bottom: 2px solid #0bc151;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nav-menu ul li:first-child {
  padding-left: 0;
}
.nav-menu ul li:last-child {
  padding-right: 0;
  border: none; /* hoverしてもborderを表示させない */
}
/* お問い合わせボタン */
.nav-menu ul li.inquiry-button a {
  color: #fff;
  margin-right: 0;
  padding: 1rem 2rem;
  background-color: #0bc151;
  background-image: none;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
}
.nav-menu ul li.inquiry-button a:hover {
  color: #fff;
  background-color: #0a7734;
}
.nav-menu ul li.inquiry-button a[target=_blank]:after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png)
}

/* パンくず */
.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.6vw;
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: #0bc151;
}
.breadcrumb ol {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 11vw;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
.breadcrumb ol li:before {
  content: "-";
  margin: 0 0.5rem;
}
.breadcrumb ol li:first-child:before {
  content: "←";
  color: #0bc151;
  margin-right: 0.5rem;
}

/* メインイメージ */
#main-image {
  margin: 135px 0 0;
  position: relative;
}
.main-img-wrapper {
  width: 100%;
  max-width: 1300px;
  height: 65vw;
  max-height: 700px;
  margin: 0 auto;
  position: relative;
}
/* キャッチコピー */
.main-img-wrapper .catchcopy {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.7vw;
  left: 5vw;
  top: calc(105% / 1.55);
  position: absolute;
  z-index: 3;
}
/* 通常状態では改行を無効にする */
.main-img-wrapper .catchcopy br {
  display: none;
}
/* No.1獲得 */
.main-img-wrapper .no1_txt-top {
  width: 53vw;
  max-width: 487px;
  min-width: 312px;
  left: 7vw;
  top: 0;
  position: absolute;
  z-index: 2;
}
.main-img-wrapper .no1_txt-top img {
  width: 100%;
  height: auto;
}
/* メイン画像 */
.main-img-wrapper .main-img {
  width: 60vw;
  max-width: 600px;
  right: 0;
  position: absolute;
  z-index: 1;
}
.main-img-wrapper .main-img img {
  width: 100%;
  height: auto;
}
/*
.main-img-wrapper .main-img img {
	width: 60vw;
	max-width: 600px;
	right: 0;
	position: absolute;
	z-index: 1;
}
*/
/* 背景の文字 */
.main-subcopy {
  width: 100%;
  /*	color: transparent;*/
  color: rgba(0, 0, 0, 0.01);
  font-size: 12rem;
  letter-spacing: 1vw;
  text-align: center;
  top: 10rem;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  text-shadow: 1px 1px 18px rgba(210, 210, 210, 0.3), -1px 1px 18px rgba(210, 210, 210, 0.3), 1px -1px 18px rgba(210, 210, 210, 0.3), -1px -1px 18px rgba(210, 210, 210, 0.3);
  z-index: -1;
}

/* トップ - ABOUT -------------------------------------- */
#top-about {
  width: 100%;
  /*	height: 85vw;
	max-height: 1150px;*/
  min-height: 1050px;
  text-align: center;
  position: relative;
  /*	overflow: hidden;*/
}
.top-about-wrapper {
  /*	width: calc(60vw * 1.5 );*/
  width: calc(50vw * 1.5);
  max-width: 1050px;
  min-width: 640px;
  margin: auto;
  padding: 1.5rem 1.8rem 4rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
  position: relative;
  right: 0;
  left: 0;
  z-index: 1;
}
/* スクロールアイコン */
.top-about-wrapper .scroll-alert {
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
.top-about-wrapper .scroll-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.top-about-wrapper .scroll-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  animation: pulsate 1s ease-out; /* スピードなど */
  animation-iteration-count: infinite;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate 1s ease-out;
  -moz-animation-iteration-count: infinite;
  z-index: -1;
}
/*
	.indicater:hover .ring {
		animation: pulsate 1s ease-out; 
		animation-iteration-count: infinite;
		-webkit-animation: pulsate 1s ease-out;
		-webkit-animation-iteration-count: infinite;
		-moz-animation: pulsate 1s ease-out;
		-moz-animation-iteration-count: infinite;
	}
	*/
@keyframes pulsate {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
.rwd {
  position: relative;
}
.rwd .scroll-show img {
  width: 100%;
  height: 100%;
}
.top-about-wrapper .scroll-show {
  width: 10px;
  /*	color: #6dda97;*/
  /*	font-size: .6rem;*/
  position: absolute;
  margin: -8px 0 0 1px;
  /*	transform: rotate(90deg);*/
  /*	-webkit-transform: rotate(90deg);*/
  /*	-moz-transform: rotate(90deg);*/
}
/* One人事ロゴ */
/*.top-about-wrapper .smartcompany-logo {
	width: 28vw;
	max-width: 400px;
	margin: 5rem auto 0;
}*/
/* 2021.11.11 **********/
.top-about-wrapper .smartcompany-logo {
  max-width: 400px;
  margin: 5rem auto 0;
}
/********** 2021.11.11 */

/* キャッチコピー */
.top-about-wrapper .about-copy {
  position: relative;
  z-index: 3;
  color: #14923f;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.4vw;
  text-align: center;
  margin: 3rem auto;
}
/* サブコピー */
.top-about-wrapper .about-subcopy {
  text-align: center;
}
/* スクリーンショットイメージ */
.top-about-wrapper .about-img {
  width: 40vw;
  margin: 0 auto;
  text-align: center;
}
.top-about-wrapper .about-img img {
  width: 100%;
  max-width: 640px;
  position: relative;
  z-index: 10;
}
/* 紹介文 */
.top-about-wrapper .about-txt {
  text-align: left;
  width: 54vw;
  max-width: 640px;
  font-size: 0.9rem;
  margin: 0 auto;
}
/* 詳しくはこちら */
.top-about-wrapper .about-more {
  margin: 4rem auto 5rem;
  text-align: center;
}
.top-about-wrapper .about-more a {
  color: #fff;
  font-size: 0.8rem;
  padding: 1rem 5rem;
  border: 1px solid #0bc151;
  background-color: #0bc151;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
  margin-right: 0;
  background-image: none;
}
.top-about-wrapper .about-more a:hover {
  color: #0bc151;
  background-color: #fff;
}
.top-about-wrapper .about-more a[target="_blank"]::after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png);
}
.top-about-wrapper .about-more a[target="_blank"]:hover::after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink.png);
}

/* 背景文字画像(ABOUT) */
.about-back-img {
  width: 17.285vw;
  overflow: hidden;
  position: absolute;
  top: 8rem;
  left: calc(85vw / 1.05);
  /*	right: calc(4vw / 2.5 );*/
  /*	left: calc(110vw * 0.75 );*/
  z-index: -1;
}
.about-back-img img {
  width: 20vw;
  max-width: 202px;
}

/* 人のアイコン */
#top-about .about-human01 img {
  width: 4vw;
  max-width: 100px;
  min-width: 65px;
  top: 20vh;
  left: 14vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human02 img {
  width: 7vw;
  max-width: 150px;
  min-width: 112px;
  top: 24vh;
  right: 9vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human03 img {
  width: 8vw;
  max-width: 154px;
  min-width: 130px;
  top: 34vh;
  left: 4vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human04 img {
  width: 4vw;
  max-width: 80px;
  min-width: 65px;
  top: 38vh;
  right: 3vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human05 img {
  width: 5vw;
  max-width: 100px;
  min-width: 80px;
  top: 48vh;
  right: 18vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human06 img {
  width: 6vw;
  max-width: 120px;
  min-width: 96px;
  top: 53vh;
  left: 13vh;
  position: absolute;
  z-index: -1;
}

/* 蛍光ペンでのマーカー */
.marker-green {
  background: linear-gradient(transparent 70%, rgba(102, 255, 204, 0.6) 70%);
}

/* トップ - 選ばれる理由 ------------------------ */
#top-reason {
  width: 100%;
  height: 900px;
  position: relative;
}
.top-reason-wrapper {
  /* 2021.12.9 **********/
  /*	width: 80%;*/
  padding: 1rem;
  /********** 2021.12.9 */
  height: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
}
/* 見出し */
.reason-copy {
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
.reason-copy span.what-smartcompany {
  color: #0bc151;
  font-size: 1rem;
  font-weight: normal;
}
/* 理由の文章 */
.reason-txt {
  font-size: 0.9rem;
  margin: 2rem 0 4rem;
}
/* アラートランプ */
.box .box-alert {
  bottom: 4rem;
  left: -7px;
  position: absolute;
}
.box .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.box .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: -1;
}
.box:hover .ring {
  animation: pulsate-1 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-1 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-1 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-1 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-1 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-1 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
/* 1人画像01 */
#top-reason .single-human01 {
  right: 0;
  position: absolute;
  z-index: 10;
}
#top-reason .single-human01 img {
  height: 10rem;
}

/* 理由 - 共通 */
#top-reason .box {
  width: 30vw;
  max-width: 360px;
  height: 100%;
  border: 2px solid rgba(221, 221, 221, 0.6);
  padding: 16% 1rem 2rem 2rem;
  right: 0;
  position: absolute;
  z-index: 0;
}
#top-reason .box .box-heading {
  color: #0bc151;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 3% 0 10% 3rem;
}
#top-reason .box .box-txt {
  font-size: 1rem;
  line-height: 1.9em;
}
#top-reason .box-number {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #ddd;
  font-size: 680%;
  font-weight: bold;
  line-height: 1;
  left: 0;
  top: 20px;
  position: absolute;
  z-index: -1;
}
#top-reason [class^="reason-0"] {
  width: 36vw;
  max-width: 435px;
  height: 240px;
  position: relative;
}

/* 理由 1 */
#top-reason .reason-01 {
  float: left;
}
/* 理由 2 */
#top-reason .reason-02 {
  top: 10%;
  right: 5%;
  float: right;
}
/* 理由 3 */
#top-reason .reason-03 {
  top: 7%;
  left: 5%;
  float: left;
}
/* 理由 4 */
#top-reason .reason-04 {
  top: 17%;
  float: right;
}

/* 導入実績エリア */
#top-example {
  width: 100%;
  margin-bottom: 10rem;
  position: relative;
}
.top-example-wrapper {
  /* 2021.12.9 **********/
  /*	width: 80%;*/
  padding: 1rem;
  /********** 2021.12.9 */
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
}
/* 見出し */
.example-copy {
  width: 49%;
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  text-align: right;
  letter-spacing: 0.2rem;
  display: inline-block;
  /*	position: absolute;
	right: 0;
	bottom: 70px;*/
}
.example-copy span.from-to {
  color: #0bc151;
  font-size: 1rem;
  font-weight: normal;
}
/* 理由の文章 */
.example-txt {
  font-size: 0.9rem;
  text-align: right;
  margin: 2rem 0 4rem;
}
/* 3人画像01 */
.three-human01 {
  width: 50%;
  top: 50px;
  position: relative;
  display: inline-block;
}
.three-human01 img {
  height: 12rem;
}

/* お知らせ */
#top-info {
  width: 100%;
  position: relative;
}
.top-info-wrapper {
  width: 70%;
  max-width: 1000px;
  margin: 4rem auto 3rem;
  position: relative;
  display: flex;
}
/* 見出し */
.info-copy {
  width: 70%;
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
/* ナビゲーションボタン */
.swiper-nav-button {
  width: 30%;
  position: relative;
}

/* お知らせエリア */
#top-info .info-back-text {
  width: 100%;
  height: 680px;
  margin-bottom: 2rem;
}
/* お知らせの箱 */
.info-box {
  width: calc(19vw * 1.5);
  max-width: 270px;
  height: calc(33vw / 0.65);
  max-height: 400px;
  margin: 2rem auto;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
/* お知らせのボタン */
#top-example .swiper-slide {
  text-align: center;
  vertical-align: middle;
  margin: 0 1em 1em;
}
#top-example .swiper-wrapper,
#top-info .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
}
#top-example .swiper-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#top-info .swiper-button-prev,
#top-info .swiper-button-next {
  width: 48px;
  height: 40px;
}
#top-info .swiper-button-prev {
  background-image: url(/wp/wp-content/themes/premium/img/swiper-button-prev.png);
  background-size: contain;
  /*	left: calc(70vw * 0.9);
	top: 1rem;*/
}
#top-info .swiper-button-next {
  background-image: url(/wp/wp-content/themes/premium/img/swiper-button-next.png);
  background-size: contain;
  /*	right: calc(28vw * 0.9);
	top: 1rem;*/
}
.info-box img {
  max-width: 100%;
}
.info-box .info-news {
  font-size: 0.8rem;
  padding: 1.5rem;
}
.info-box .news-date {
  font-size: 0.75rem;
  color: #0bc151;
  margin-bottom: 0.5vw;
}
/* 背景文字画像(NEWS) */
.news-back-img {
  top: 26rem;
  right: 0;
  position: absolute;
  display: inline-block;
  z-index: -1;
}
.news-back-img img {
  width: 55vw;
  max-width: 810px;
}

/* トップページ以外のヘッダー ----------------------------------- */
#content-header {
  width: 100%;
  text-align: center;
}
.content-header-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
h1.content-title {
  padding-left: 9.6px;
  letter-spacing: 9.6px;
}
.content-sub-title {
  color: #0bc151;
  padding-left: 4px;
  letter-spacing: 4px;
  margin-bottom: 45px;
}
.content-border {
  height: 88px;
  margin-bottom: -3rem;
  position: relative;
  z-index: 400;
}
.content-message {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 4px;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto 6rem;
  padding: 5rem 1rem 4rem;
  background-color: #f5fdf8;
  position: relative;
}
.content-message-txt {
  position: relative;
  z-index: 100;
}
.content-message-catch {
  font-size: 1.25em;
  letter-spacing: 6px;
  color: #0bc151;
  margin-bottom: 1rem;
}
/* 1人画像01 */
#content-header .single-human01 {
  top: 40px;
  right: 6vw;
  position: absolute;
  z-index: 10;
}
#content-header .single-human01 img {
  height: 13rem;
}
/* 1人画像02 */
#content-header .single-human02 {
  top: 40px;
  right: 6vw;
  position: absolute;
  z-index: 10;
}
#content-header .single-human02 img {
  height: 13rem;
}

@media (max-width: 767px) {
  h1.content-title {
    margin-top: 0;
    margin-bottom: 0;
  }
  .content-sub-title {
    margin-bottom: 30px;
  }
}
/* // END トップページ以外のヘッダー --------------------------- */

/* 特長・強み ------------------------------------------------- */
#feature-01,
#feature-02,
#feature-03,
#feature-04,
#feature-05 {
  width: 100%;
  height: 860px;
  overflow: hidden;
}
.feature-wrapper {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.feature-title-container {
  width: 80%;
  height: 320px;
  padding-left: calc(5vw / 1.2);
  color: #fff;
  background-color: #14923f;
  display: table;
}
#feature-02 .feature-title-container,
#feature-04 .feature-title-container {
  position: absolute;
  right: 0;
}

.feature-number {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #0bc151;
  font-size: 6rem;
  font-weight: bold;
  vertical-align: top;
  width: 7vw;
  padding-top: 1rem;
  display: table-cell;
}
.feature-title {
  font-size: 1.8rem;
  font-weight: normal;
  /*	vertical-align: middle;*/
  padding-left: 2rem;
  display: table-cell;
  position: relative;
  z-index: 1;
}
#feature-01 .feature-title,
#feature-05 .feature-title {
  padding-top: 2.5rem;
}
#feature-02 .feature-title,
#feature-03 .feature-title,
#feature-04 .feature-title {
  padding-top: 4rem;
}

.line-box {
  position: absolute;
  z-index: 0;
}
#feature-01 .line-box,
#feature-03 .line-box,
#feature-05 .line-box {
  width: 37vw;
  height: auto;
  top: 100px;
  right: 0;
}
#feature-02 .line-box,
#feature-04 .line-box {
  width: 37vw;
  height: auto;
  top: 114px;
  left: 0;
}

.line-box img {
  width: 100%;
  max-width: 640px;
}
.feature-content-wrapper {
  width: 84%;
  height: auto;
  text-align: center;
  padding: 0 2rem 3rem;
  background-color: #fff;
  top: 180px;
  left: 100px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
  position: absolute;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
  z-index: 1;
}
#feature-01 .feature-content-box {
  width: calc(98% / 3);
}
#feature-02 .feature-content-box {
  width: 100%;
}
#feature-03 .feature-content-box {
  width: calc(98% / 2);
}

.feature-content-txt {
  text-align: left;
  line-height: 2em;
  letter-spacing: 4px;
  padding: 0 1vw;
}
.feature-content-title {
  color: #14923f;
  font-weight: bold;
}
.feature-content-title br {
  display: none;
}
.feature-content-img {
  width: 62%;
  margin: 1rem auto 0;
}
#feature-01 .feature-content-img {
  width: 70%;
  margin: 1rem auto 0;
}
#feature-05 .feature-content-img {
  width: 20%;
  margin: 9vw auto 4vw;
}

/* 2021.11.11 **********/
/*.feature-content-img img {
	width: 100%;
	max-width: 420px;
}*/
/********** 2021.11.11 */

.feature-content-img-txt {
  width: 100%;
  font-weight: bold;
  text-align: center;
}
.feature-content-img-txt span {
  color: #0bc151;
}
/* アラートランプ */
.feature-content-box .box-alert {
  position: relative;
}
.feature-content-box .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin: 4rem auto 0;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.feature-content-box .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.feature-content-box:hover .ring {
  animation: pulsate-3 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-3 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-3 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-3 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-3 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-3 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.box-alert-txt {
  font-size: 0.5rem;
  font-weight: bold;
  color: #0bc151;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}
.feature-content-icons {
  width: 100%;
}
/* 人のアイコン */
#feature-05 .about-human01 img {
  width: 3vw;
  max-width: 75px;
  min-width: 65px;
  bottom: 11vw;
  left: 17vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human02 img {
  width: 5vw;
  max-width: 105px;
  min-width: 95px;
  bottom: 10vw;
  right: 10vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human03 img {
  width: 4vw;
  max-width: 80px;
  min-width: 70px;
  bottom: 2vw;
  left: 13vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human04 img {
  width: 3vw;
  max-width: 70px;
  min-width: 60px;
  bottom: 4vw;
  right: 15vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human05 img {
  width: 4vw;
  max-width: 80px;
  min-width: 70px;
  bottom: 5vw;
  right: 7vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human06 img {
  width: 4vw;
  max-width: 75px;
  min-width: 65px;
  bottom: 9vw;
  left: 8vw;
  position: absolute;
  z-index: -1;
}
/* // END 特長・強み ------------------------------------------ */

/* 活用シーン ------------------------------------------------- */
#scene-01,
#scene-02,
#scene-03,
#scene-04,
#scene-05,
#scene-06 {
  width: 100%;
  height: calc(50vw * 1.2);
  max-height: 900px;
  position: relative;
  overflow: hidden;
}
.scene-wrapper {
  width: 80%;
  max-width: 1400px;
  height: calc(35vw * 0.99);
  max-height: 620px;
  margin: 0 auto;
  position: relative;
}
.scene-wrapper h2 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 7.2px;
  color: #fff;
}
#scene-02 .scene-wrapper h2,
#scene-04 .scene-wrapper h2,
#scene-06 .scene-wrapper h2 {
  text-align: right;
}

h2 span.scene-title {
  padding: 0 0.2em;
  background-color: #14923f;
}
.scene-photo {
  top: 1.2rem;
  position: absolute;
  z-index: -1;
}
#scene-01 .scene-photo,
#scene-03 .scene-photo,
#scene-05 .scene-photo {
  width: 38vw;
  left: 2.4vw;
  height: 100%;
  overflow: hidden;
}
#scene-02 .scene-photo,
#scene-04 .scene-photo,
#scene-06 .scene-photo {
  width: 38vw;
  left: calc(27vw * 1.3);
  overflow: hidden;
}

.scene-photo img {
  /*	width: 36vw;*/
  width: 38vw;
  height: auto;
}
.scene-content-wrapper {
  width: 40vw;
  padding: 0 0 2rem calc(5vw * 0.7);
  background-color: #fff;
  position: absolute;
  z-index: 2;
}
#scene-01 .scene-content-wrapper,
#scene-03 .scene-content-wrapper,
#scene-05 .scene-content-wrapper {
  right: 5vw;
  bottom: 5.5vw;
}
#scene-02 .scene-content-wrapper,
#scene-04 .scene-content-wrapper,
#scene-06 .scene-content-wrapper {
  left: 0;
  bottom: 5.5vw;
}

.scene-line-box {
  width: 75vw;
  height: calc(30vw * 1.2);
  position: absolute;
  z-index: -2;
}
#scene-01 .scene-line-box,
#scene-03 .scene-line-box,
#scene-05 .scene-line-box {
  top: calc(5vw * 1.4);
  right: 0;
}
#scene-02 .scene-line-box,
#scene-04 .scene-line-box,
#scene-06 .scene-line-box {
  top: 80px;
  left: 0;
}

.scene-line-box img {
  width: 100%;
  height: 100%;
}

.scene-content-enter a {
  font-size: 0.9rem;
  letter-spacing: 0.3vw;
  color: #0bc151;
  margin: auto 1rem;
  padding: 0.8rem 2vw;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
}
.scene-content-enter {
  width: 100%;
  text-align: center;
  position: absolute;
  /*	bottom: 0;*/
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.scene-content-enter br {
  display: none;
}
.scene-content-enter a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* アラートランプ */
.scene-content-list .box-alert {
  position: relative;
}
.scene-content-list .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin: 2rem 1.5rem 0 0;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.scene-content-list .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.scene-content-list:hover .ring {
  animation: pulsate-4 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-4 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-4 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-4 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-4 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-4 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}

/* 活用シーン（サブページ） */
#scene-sub-01,
#scene-sub-02,
#scene-sub-03,
#scene-sub-04,
#scene-sub-05,
#scene-sub-06 {
  width: 100%;
  height: calc(42vw * 1.2);
  max-height: 740px;
  position: relative;
  overflow: hidden;
}
.scene-sub .scene-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.scene-sub .scene-wrapper span {
  display: inline-block;
}
.scene-sub .scene-sub-title {
  font-size: 1rem;
  line-height: 1.8;
  padding: 1rem;
  background-color: #fff;
  /*	position: absolute;*/
}
#scene-sub-01 .scene-sub-title,
#scene-sub-03 .scene-sub-title,
#scene-sub-05 .scene-sub-title {
  width: calc(40vw * 1.2);
  float: left;
}
#scene-sub-02 .scene-sub-title,
#scene-sub-04 .scene-sub-title,
#scene-sub-06 .scene-sub-title {
  width: calc(40vw * 1.2);
  float: right;
}
.scene-sub h2 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 6.4px;
  color: #14923f;
  margin-bottom: 1rem;
}
#scene-sub-02 .scene-sub-title li:before {
  content: "・";
  color: #0bc151;
}
.scene-sub .scene-photo {
  width: 46vw;
  max-width: 640px;
  position: absolute;
  z-index: -1;
  overflow: hidden;
}
#scene-sub-01 .scene-photo,
#scene-sub-03 .scene-photo,
#scene-sub-05 .scene-photo {
  top: 2rem;
  right: 2rem;
}
#scene-sub-02 .scene-photo,
#scene-sub-04 .scene-photo,
#scene-sub-06 .scene-photo {
  top: 3rem;
  left: 2rem;
}
.scene-sub .scene-photo img {
  width: 100%;
  height: auto;
}
.scene-sub .scene-line-box {
  width: 45vw;
  position: absolute;
  top: 4rem;
  z-index: -2;
}
.scene-sub .scene-line-box img {
  width: 100%;
  max-width: 640px;
  height: 100%;
  min-height: 340px;
  opacity: 0.5;
}
#scene-sub-01 .scene-line-box,
#scene-sub-03 .scene-line-box,
#scene-sub-05 .scene-line-box {
  top: 3rem;
  right: 0;
}
/* パネルメニュー */
#scene-sub-panel {
  width: 100%;
  margin: 0 auto;
  padding: 7rem 0;
  position: relative;
}
#scene-sub-panel .single-human01 {
  width: 6vw;
  position: absolute;
  top: -3vw;
  right: 5vw;
}
#scene-sub-panel .single-human01 img {
  width: 100%;
}
.scene-panel-wrapper {
  width: 75%;
  margin: 0 auto;
  position: relative;
}
#scene-sub-panel h2 {
  text-align: center;
  letter-spacing: 8px;
  color: #14923f;
  margin: 2rem auto;
}
.sub-panel-menu {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
.sub-panel {
  width: calc(90% / 3);
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.44px;
  background-color: #fff;
  margin: 1.5rem 0 2rem;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
.sub-panel:hover {
  overflow: hidden;
  background-color: #0bc151;
}
.sub-panel img {
  width: 100%;
}
.sub-panel:hover img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.sub-panel a {
  color: #0bc151;
}
.sub-panel a:hover {
  color: #fff;
}
.sub-panel .sub-panel-title {
  padding: 1rem 0 1.5rem;
}
#scene-sub-panel .scene-line-box {
  width: 100%;
  position: absolute;
  overflow: hidden;
  bottom: 15rem;
  z-index: -2;
}
#scene-sub-panel .scene-line-box img {
  width: 3840px;
  opacity: 0.5;
}

/* 中間メッセージ1 */
#scene-sub-message-01 {
  width: 80%;
  margin: 6rem auto;
  text-align: center;
}
#scene-sub-message-01 h2 {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 8px;
  color: #14923f;
  margin-bottom: 1.5rem;
}
#scene-sub-message-01 .sub-message-txt {
  line-height: 1.8;
  letter-spacing: 4px;
}

/* 中間メッセージ2 */
#scene-sub-message-02 {
  width: 80%;
  margin: 6rem auto;
  text-align: left;
}
#scene-sub-message-02 .scene-sub-message-wrapper {
  position: relative;
}
#scene-sub-message-02 .scene-sub-message-box {
  letter-spacing: 1.44px;
  width: 70%;
  border: 2px solid #f2f2f2;
  margin: 3rem 0;
  padding: 1rem 3rem 3rem;
}
#scene-sub-message-02 .scene-sub-message-box h2 {
  font-size: 1.5rem;
  letter-spacing: 2.08px;
  color: #0bc151;
  margin-bottom: 1rem;
}
#scene-sub-message-02 .scene-sub-message-wrapper .box-right {
  margin-left: auto;
}
#scene-sub-message-02 .scene-sub-message-wrapper .box-left {
  margin-right: auto;
}
/* ビジュアルパーツ */
#visual-parts {
  width: 68vw;
  margin: 14rem auto 0;
  position: relative;
}
#visual-parts h2 {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 8px;
  text-align: center;
  color: #14923f;
  margin-bottom: 3rem;
}
#visual-parts .graph-image {
  position: relative;
}
#visual-parts .graph-image img {
  width: 100%;
}
#visual-parts .scene-line-box {
  width: 80%;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
}
#visual-parts .scene-line-box img {
  width: 100%;
  opacity: 0.5;
}
/* ポータル・ショット */
#sub-portal-shots {
  width: 100%;
  margin: 7rem 0px;
}
#sub-portal-shots .portal-screen-shots {
  width: 75%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
  position: relative;
}
#sub-portal-shots .portal-screen-shots img {
  width: calc(90% / 3);
  margin: 1.5rem 0px;
}
/* アラートランプ */
.scene-sub-message-box .box-alert {
  position: relative;
  top: 2rem;
  left: -3.4rem;
}
.scene-sub-message-box .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.scene-sub-message-box .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.scene-sub-message-box:hover .ring {
  animation: pulsate-5 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-5 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-5 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-5 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-5 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-5 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
/* // END 活用シーン ---------------------------------------- */

/* 機能一覧 ------------------------------------------------- */
/* ページ内メニュー */
#system-menu {
  width: 100%;
}
#system-menu .system-menu-wrapper {
  width: 80%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 2rem 0 0;
  border-bottom: 2px solid #f2f2f2;
  position: relative;
}
#system-menu .system-menu-box {
  width: 92%;
  margin: 0 auto;
}
#system-menu ul {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
#system-menu ul li {
  width: 18vw;
  max-width: 255px;
  min-width: 220px;
  margin-bottom: 2rem;
}
#system-menu ul li::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 0 4px 10px;
  border-right: 1px solid #0bc151;
  border-bottom: 1px solid #0bc151;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#system-menu a {
  color: #000;
}
#system-menu a:hover {
  color: #0bc151;
}
/* 機能紹介 */
#system-01,
#system-02,
#system-03,
#system-04,
#system-05,
#system-06,
#system-07,
#system-08,
#system-09,
#system-10 {
  width: 100%;
  margin: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
#system-01,
#system-03,
#system-04,
#system-08,
#system-09 {
  height: 460px;
}
#system-10 {
  height: 460px;
  margin-bottom: 10rem;
}
#system-06,
#system-07 {
  height: 500px;
}
#system-05 {
  height: 580px;
}
#system-02 {
  height: 690px;
}

.system-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.system-content-wrapper {
  width: 40vw;
  background-color: #fff;
  padding: 1.5rem 1rem 1rem 2rem;
  position: absolute;
  top: 7.2rem;
}
.box-left .system-content-wrapper {
  left: 0;
}
.box-right .system-content-wrapper {
  right: 0;
}
.system-content-wrapper h2 {
  color: #14923f;
  letter-spacing: 6.4px;
  margin-bottom: 1.5rem;
}
.system-content-wrapper .scene-content-enter {
  text-align: left;
  margin: 2rem 0 0;
  padding-bottom: 2rem;
  position: relative;
  bottom: 0;
  display: block;
}
.system-content-list ul {
  padding-left: 0;
}
.system-content-list li {
  margin: 0.3rem 0;
}
.system-content-list li:before {
  content: "・";
  color: #0bc151;
  margin: 1rem 0 3rem;
}
.system-content-list .option-label {
  color: #fff;
  letter-spacing: 3.2px;
  background-color: #14923f;
  margin: 1.4rem 0 1rem;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}
.system-image {
  /*	width: 36vw;
	height: 27vw;*/
  width: 47vw;
  height: 33vw;
  max-width: 560px;
  max-height: 420px;
  background-color: #1bc224;
  position: absolute;
  z-index: -1;
}
.box-right .system-image {
  left: 0;
}
.box-left .system-image {
  right: 0;
}

.system-image img {
  width: 38%;
  margin: auto;
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 0;
  right: 0;
}
#system-03 .system-image img {
  width: 68%;
}
#system-04 .system-image img {
  width: 53%;
  right: 3vw;
}
#system-07 .system-image img {
  width: 58%;
}

.system-line-box {
  width: 78vw;
  height: 400px;
  position: absolute;
  top: 4rem;
  z-index: -2;
}
.box-right .system-line-box {
  right: 0;
}
.box-left .system-line-box {
  left: 0;
}

.system-line-box img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
/* NET*ASK */
.net-ask-txt {
  font-size: 0.8em;
  color: #777;
  letter-spacing: 4.2px;
  margin: 1.4rem 0 1rem;
}
/* // END 機能一覧 --------------------------------------------- */

/* 導入事例 ---------------------------------------------------- */
.case-container .swiper-container {
  overflow: visible;
}
.case-container .swiper-slide {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.case-container {
  width: 95%;
  margin: 0 auto 2rem;
  /*	display: flex;*/
}
.case-container section {
  width: calc(100% / 3);
  max-width: 520px;
  height: calc(78vw * 0.55);
  max-height: 720px;
  min-height: 440px;
  margin: 0 1.3rem;
  /*	padding: 0 0 2rem;*/
  background-color: #fff;
  position: relative;
}

/*new css style begin*/
.row_flex {
  display: flex;
  justify-content: space-evenly;
}

.case-wrapper .case-no {
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #0bc151;
  font-size: 4rem;
  font-weight: bold;
  top: -3rem;
  left: 1rem;
  position: absolute;
  z-index: 1;
}
.case-content-wrapper {
  padding: 1rem 1.5rem 0 0.5rem;
  display: flex;
}
.case-logo {
  width: 120px;
  text-align: center;
}
.case-photo img {
  width: 100%;
  height: auto;
}
.case-logo img {
  width: auto;
  max-width: 95px;
  height: auto;
  max-height: 84px;
}
.case-content {
  height: 5rem;
  margin-left: 1rem;
}
.case-content h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.case-content-txt {
  font-size: 1rem;
  padding: 0 1rem;
}
.case-content-enter {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 2.4rem;
}
.case-content-enter a {
  font-size: 1vw;
  letter-spacing: 3.2px;
  color: #0bc151;
  padding: 0.6rem 4vw;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
}
.case-content-enter a:hover {
  color: #fff;
  background-color: #0bc151;
}
.case-line-box {
  width: 100%;
  position: absolute;
  bottom: -2rem;
  left: 1.3rem;
  z-index: -1;
}
.case-line-box img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
/* 導入企業様ロゴ */
#example-logo {
  width: 100%;
  margin: 0 auto 3rem;
  position: relative;
}
#example-logo .three-human {
  width: 15%;
  position: relative;
  left: 10vw;
  top: 3rem;
}
#example-logo .three-human img {
  width: 100%;
  height: auto;
}
.example-logo-wrapper {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  position: relative;
}
#example-logo .example-copy {
  text-align: center;
  letter-spacing: 0.2rem;
  position: relative;
  bottom: auto;
  right: auto;
}
#example-logo .example-txt {
  text-align: center;
  margin: 2rem 0 4rem;
}
.example-logo-img-wrapper {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  justify-content: space-between;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.example-logo-img {
  width: calc(100% / 4);
  text-align: center;
  margin: 0 auto 4rem;
}
.example-logo-img img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 84px;
}
/* 事例詳細 */
.content-case {
  width: 60%;
  margin: 0 auto 6rem;
  padding: 5rem 0 4rem;
  display: table;
}
.case-logo-img {
  width: 20%;
  text-align: right;
  vertical-align: middle;
  display: table-cell;
}
.case-logo-img img {
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 120px;
}
.case-name {
  width: 80%;
  font-size: 1.5rem;
  letter-spacing: 4.8px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  padding-left: 2rem;
  display: table-cell;
}
#case-info {
  width: 100%;
  height: 52rem;
  overflow: hidden;
}
.case-info-wrapper {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.case-info-title {
  width: 41vw;
  display: inline-block;
  position: absolute;
  top: 1rem;
  z-index: 1;
}
.case-title {
  color: #14923f;
  letter-spacing: 6.4px;
  line-height: 1.9;
  /*	white-space: nowrap;*/
  padding: 0.5rem 1rem 0.5rem 0;
  background-color: rgba(255,255,255,.8);
}
.case-title span {
  display: inline-block;
}
.case-list {
  width: 100%;
  font-size: 0.8rem;
  margin-top: 2rem;
}
.case-info-wrapper .case-list dt {
  width: 16%;
  margin-bottom: 1rem;
}
.case-info-wrapper .case-list dd {
  width: 82%;
  margin-bottom: 1rem;
}
.case-info-photo {
  width: 50%;
  position: absolute;
  right: 0;
}
.case-info-photo img {
  width: auto;
  max-width: 540px;
  height: auto;
  max-height: 390px;
}
.case-info-wrapper dt {
  width: 27%;
  color: #0bc151;
  float: left;
  clear: left;
}
.case-basic-info dt,
.case-basic-info dd {
  padding: 1rem 0;
}
.case-basic-info dd {
  border-bottom: 1px solid #ddd;
}
.case-basic-info {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 4rem 3rem;
  border: 1px solid #0bc151;
  font-size: 0.8rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(11, 193, 81, 0.078);
  position: absolute;
  top: 22rem;
  left: 0;
  right: 0;
  z-index: 2;
}
.case-basic-info a {
  color: #0bc151;
}
.company-back-img {
  width: 27vw;
  position: absolute;
  top: 18.5rem;
  left: 2.5rem;
  z-index: -1;
}
.company-back-img img {
  width: 100%;
}
/* 事例本文 */
#case-details {
  width: 100%;
  overflow: hidden;
}
.case-txt-wrapper {
  width: 80%;
  max-width: 1200px;
  /*	height: 35rem;*/
  margin: 0 auto 6vw;
  position: relative;
}
.case-txt-wrapper p {
  margin: 2rem 0;
}
.case-txt-container {
  padding: 0 2rem 0 0;
  background-color: #fff;
}
.case-txt-container-60 {
  width: 57%;
  background-color: #fff;
}
.box-right .case-txt-container-60 {
  padding: 0 2rem 2rem 0;
}
.box-right .case-txt-container-60b {
  width: 57%;
  padding: 0 2rem 0 0;
  background-color: #fff;
}
.box-left .case-txt-container-60 {
  padding: 0 0 2rem 2rem;
  position: absolute;
  right: 0;
}
.case-txt-container-95 {
  width: 95%;
  padding: 0 2rem 2rem 0;
  background-color: #fff;
}
.box-left .case-txt-container-95 {
  width: 95%;
  padding: 0 0 2rem 2rem;
  position: absolute;
  right: 0;
  top: 29.5rem;
  background-color: #fff;
}
#case-details h3 {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 5.6px;
  color: #fff;
}
#case-details .box-right h3 {
  text-align: right;
}
h3 span.case-txt-title {
  padding: 0 0.2em;
  background-color: #14923f;
}
.case-txt-subtitle {
  color: #0bc151;
  letter-spacing: 4.8px;
  margin: 2rem 0 1.5rem;
}
.case-txt-subtitle:before {
  content: "─ ";
  color: #0bc151;
}
.case-txt {
  line-height: 2;
}
.case-txt-photo {
  width: 50%;
  z-index: -1;
}
.box-left .case-txt-photo {
  position: absolute;
  top: 6.5rem;
  right: 0;
}
.box-right .case-txt-photo {
  position: absolute;
  top: 6.5rem;
  left: 0;
}
.case-01 .wrapper-04.box-right .case-txt-photo {
  position: relative;
  top: 0;
}
.case-txt-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/*.case-02 .wrapper-02 .case-txt-container {
	padding-top: calc(2vw / 120 * 11);
}*/
.case-01 .case-txt-wrapper .case-txt-container-left,
.case-03 .case-txt-wrapper .case-txt-container-left {
  width: 54%;
  padding: 0 1rem 0 0;
  background-color: #fff;
}
.case-01 .case-txt-wrapper .case-txt-container-right,
.case-03 .case-txt-wrapper .case-txt-container-right {
  width: 54%;
  margin: 0 0 0 auto;
  padding: 0 0 0 1rem;
  background-color: #fff;
}
.case-01 .case-txt-wrapper.wrapper-04 .case-txt-container-right {
  width: 54%;
  padding: 0 0 1rem 2rem;
  background-color: #fff;
  position: absolute;
  right: 0;
}
.case-01 .case-txt-wrapper .case-txt-container-center,
.case-03 .case-txt-wrapper .case-txt-container-center {
  width: 100%;
  background-color: #fff;
}
.case-01 .case-txt-wrapper:last-child {
  margin-bottom: calc(5vw * 3);
}
/* // END 導入事例 --------------------------------------------- */

/* 導入フロー -------------------------------------------------- */
#flow {
  width: 70%;
  margin: 0 auto;
  border-left: 3px dotted rgba(11, 193, 81, 0.4);
  position: relative;
}
.flow-wrapper:nth-child(even) {
  padding-left: 4rem;
}
#flow .flow-06 {
  padding-left: 0;
}
.flow-container {
  margin-bottom: 12rem;
  display: flex;
}
#flow .flow-06 .flow-container {
  height: 3rem;
}
#flow .flow-06 .flow-content {
  margin-top: 1.5rem;
}
.flow-number {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #0bc151;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 2rem;
}
.flow-content {
  width: 100%;
  margin-left: 5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
h3.flow-title {
  color: #0bc151;
  letter-spacing: 6.4px;
}
.flow-txt {
  width: 70%;
  margin: 1.5rem 0;
}
/* 縦書きラベル */
.flow-vertical-label {
  width: 2rem;
  height: 9rem;
  color: #fff;
  font-size: 1rem;
  text-indent: 0.5rem;
  line-height: 2;
  letter-spacing: 3.2px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #14923f;
  position: relative;
  left: -82px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.flow-02 .flow-vertical-label {
  height: 7rem;
}
.flow-06 .flow-vertical-label {
  height: 8.5rem;
  left: -30px;
  top: -190px;
}

/* アラートランプ */
.flow-wrapper .box-alert {
  position: relative;
  top: -9px;
  left: -7px;
}
.flow-wrapper .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.flow-wrapper .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.flow-wrapper:hover .ring {
  animation: pulsate-6 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-6 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-6 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-6 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-6 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-6 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.flow-03 .box-alert,
.flow-05 .box-alert,
.flow-06 .box-alert {
  top: 30px;
}
/* 背景画像 */
#flow .flow-bg {
  position: absolute;
}
#flow .flow-bg img {
  width: 100%;
  height: auto;
}
#flow .front_top {
  width: 20vw;
  top: 5rem;
  right: 0;
  z-index: -1;
}
#flow .rear_top {
  width: 47%;
  top: 0;
  right: 5vw;
  opacity: 0.2;
  z-index: -2;
}
#flow .front_middle {
  width: 18vw;
  top: 50%;
  right: 0;
  z-index: -1;
}
#flow .rear_middle {
  width: 44%;
  height: 20rem;
  top: 57%;
  left: 37%;
  opacity: 0.2;
  overflow: hidden;
  z-index: -2;
}
#flow .front_bottom {
  width: 20vw;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#flow .rear_bottom {
  width: 44%;
  height: 480px;
  bottom: -6rem;
  right: 5vw;
  opacity: 0.2;
  overflow: hidden;
  z-index: -2;
}
/* // END 導入フロー ------------------------------------------- */

/* ブログ ------------------------------------------------------ */
/* レイアウト */
nav.breadcrumb .crumb-page,
nav.breadcrumb .crumb-current {
  /* 投稿ページ＆固定カレントページのパンくず */
  letter-spacing: 2.5px;
}
.post-contents-wrapper-blog,
.post-contents-wrapper-blog-single {
  width: 100%;
  max-width: 1100px;
  margin: 5em auto;
  display: flex;
}
/* 日付とカテゴリー */
.content-option-wrapper {
  width: 100%;
  margin-bottom: 3em;
}
.category-title {
  /* カテゴリーを右へ */
  float: right;
}
span.cat-name {
  /* カテゴリー表示の枠 */
  /*	color: #fff;
	font-size: .85em;
	background-color: #a9a9a9;
	border-radius: 4px;
	padding: 1.2px 2.2px;
*/
}
span.cat-name a {
  /* カテゴリー表示の枠のリンク */
  color: #fff;
  font-size: 0.85em;
  background-color: #a9a9a9;
  border-radius: 4px;
  padding: 1.2px 2.2px;
}
span.cat-name a:hover {
  /* カテゴリー表示の枠のリンク:ホバー */
  background-color: #0bc151;
  border-radius: 4px;
}
.content-option-wrapper time.sigle-post-date::before {
  /* 日にちにアイコンをつける */
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(/wp/wp-content/themes/premium/img/icon-calendar.svg);
  background-size: contain;
  vertical-align: middle;
  margin: 0 4px 3px 0;
}
.post-contents-wrapper-blog.blog h1.h1 {
  /* ブログトップページのタイトルを消す */
  display: none;
}
.post-contents-container-left {
  width: 75%;
  padding-right: 2em;
}
.post-contents-container-right {
  width: 24%;
}
.wp-show-posts {
  width: 100%;
}
/*
.wp-show-posts-columns {
	margin-bottom: 3em;
	padding: 0 0 2em;
	border-bottom: 3px solid #e2e2e2;
}
*/

/* 記事一覧 */
.wp-show-posts-image img {
  /* 画像サイズ */
  width: 100%;
  transition: 0.5s all;
}
.wp-show-posts-image.wpsp-image-center {
  overflow: hidden;
}
/*
.wp-show-posts-image.wpsp-image-center:hover img {
	transform: scale(1.1,1.1);
	transition: 0.5s all;
}
*/
.wp-show-posts-inner img:hover {
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
}
/* 見出し */
.post-contents-wrapper > h2 {
  /* 一覧のコーナー（カテゴリー）タイトル */
  /*	color: #14923F;*/
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  margin-bottom: 0.6em;
  border-bottom: 2px solid #d2d2d2;
}
h2.wp-show-posts-entry-title {
  /* フォントサイズ */
  font-size: calc(0.5rem + 1.4vmin);
  font-weight: normal;
  line-height: 1.2;
}
h2.wp-show-posts-entry-title a {
  /* リンク文字色 */
  color: #0bc151;
}
h2.wp-show-posts-entry-title a:hover {
  /* リンク文字色（ホバー） */
  color: #222;
}
/* 続きを読む */
a.wp-show-posts-read-more {
  padding: 0 !important;
  border: none !important;
}
a.wp-show-posts-read-more:hover {
  color: #0bc151 !important;
  background: none !important;
}
.wp-show-posts-entry-header {
  margin: 0 !important;
}
.blog.wpsp-read-more {
  /* 位置調整（記事一覧） */
  margin: 1em 0 0.5em;
}
.blog.wpsp-read-more {
  /* 位置調整（ブログトップ） */
  margin: 1em 0 0.5em;
}
/* カテゴリ表示 */
span.wp-show-posts-terms.wp-show-posts-meta a {
  color: #fff;
  font-size: 0.85em;
  background-color: #a9a9a9;
  border-radius: 4px;
  padding: 1.2px 2.2px;
}
span.wp-show-posts-terms.wp-show-posts-meta a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* カテゴリ毎の一覧の設定 */
.wp-show-posts-image.wpsp-image-left {
  /* 1カラムの際の画像サイズ */
  width: 31%;
  overflow: hidden;
}
/* 記事一覧 */
.blog .wp-show-posts-entry-summary {
  margin-bottom: 1em !important;
}
.wp-show-posts-entry-summary {
  margin-bottom: 0 !important;
}
.post-contents-container-left article.wp-show-posts-single {
  border-bottom: 1px dotted #c7c7c7;
  padding-bottom: 1.5em;
}

/* アイキャッチ */
.single-eyecatch {
  text-align: center;
}
.single-eyecatch img {
  width: 100%;
  height: auto;
  max-width: 640px;
}
/* 記事本文 */
.post-contents-container-left .single-text-wrapper {
  padding-bottom: 2em;
  border-bottom: 1px dotted #d2d2d2;
}
.post-contents-container-left h1.h1 {
  /* 記事タイトル */
  width: 100%;
  font-size: 2rem;
  /*
	line-height: 1.2;
	margin-bottom: .6em;
	padding-bottom: 7px;
	border-bottom: 2px solid #d2d2d2;
*/
  line-height: 1.2;
  margin: 0 0 0.7em;
  padding: 0.2em 0 0.2em 0.4em;
  border-left: solid 6px #0bc151;
  border-bottom: 2px solid #d2d2d2;
}
.single-text-wrapper h2 {
  /* 章の見出し */
  font-weight: normal;
  line-height: 1.2;
  margin: 1em 0 0.7em;
  padding: 0.1em 0 0.1em 0.3em;
  border-left: 6px solid #0bc151;
}
.single-text-wrapper h3 {
  font-weight: normal;
  line-height: 1.2;
  margin: 1em 0 0.7em;
  padding: 0.2em 0 0.2em 0;
  border-bottom: 2px solid #0bc151;
}

.post-contents-container-left .single-text-wrapper p {
  margin: 0.5em 0 2em;
  line-height: 1.7;
}

/* popular widget */
div#widget-area-top,
div#widget-area-middle {
  overflow: auto;
  margin-bottom: 3em;
}
#popular-widget-2 {
  counter-reset: number;
}
.pop-widget-tabs {
  /* タブを消す */
  display: none;
}
div[class^="pop-inside-"].pop-inside {
  /* borderを消す */
  border: none;
}
div.pop-inside ul li {
  border-bottom: 1px solid #eee !important;
}
/* 記事エリアの見出し */
.post-contents-wrapper-blog-single .post-contents-container-left h3,
.post-contents-wrapper-blog-single .post-contents-container-left h4 {
  font-size: calc(0.5rem + 1vmin);
  font-weight: bold;
}
.post-contents-wrapper-blog-single .post-contents-container-left h3::before {
  content: "●";
}
/* ウィジェットの見出し */
.post-contents-container-right h3 {
  font-size: calc(0.5rem + 1vmin);
  font-weight: normal;
  padding: 2px 0 0 5px;
  background-color: #efefef;
  border-left: 3px solid #0bc151;
}
/* よく読まれている記事 */
div.pop-inside ul li {
  padding: 0.8em 5px !important;
}
div.pop-inside ul li:hover a {
  color: #222;
}
div.pop-inside ul li img {
  /* サムネイル */
  border: 1px solid #0bc151 !important;
  margin: 2px 10px 2px 0;
  padding: 3px !important;
}
div.pop-inside ul li:hover img {
  /* hover */
  border: 3px solid #0bc151 !important;
  padding: 0 !important;
  transition: all 0.2s ease;
}
div.pop-inside ul li .pop-title {
  /* 記事タイトル */
  font-size: calc(0.5rem + 0.6vmin);
  font-weight: normal !important;
  line-height: 1.3;
  display: block;
}
div.pop-inside ul li a::before {
  /* カウントラベル */
  counter-increment: number;
  content: counter(number);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  width: 20px;
  height: 20px;
  padding: 0px;
  background-color: #0bc151;
  border-radius: 15px;
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 30;
}
div.pop-inside ul li:last-child {
  border-bottom: 1px solid #eee;
}
/* なぜかカテゴリ記事のサマリーがマウス・ホバーでズレるので、margin-top:0;を入れる */
.wp-show-posts-inner :last-child {
  margin-top: 0;
}
.wp-show-posts-entry-summary p {
  margin: 0 0 1em;
}
/* オススメの記事 */
.rpwwt-widget li.recommend {
  /* 区切り線 */
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 0.8em 5px !important;
  list-style-type: none;
}
.rpwwt-widget li.recommend:hover {
  background: #f5f5f5;
}
.rpwwt-widget li.recommend:after {
  clear: both;
}
.rpwwt-widget li.recommend a {
  display: inline;
}
.rpwwt-widget li.recommend span.rpwwt-post-title {
  /* 記事タイトル */
  font-size: calc(0.5rem + 0.6vmin);
  line-height: 1.3;
  display: block;
}
.rpwwt-widget li.recommend img.wp-post-image {
  /* サムネイル */
  border: 1px solid #eee !important;
  margin: 2px 10px 2px 0;
  padding: 3px !important;
}
.rpwwt-widget li.recommend:hover img.wp-post-image {
  /* hover */
  border: 3px solid #0bc151 !important;
  padding: 0 !important;
  transition: all 0.2s ease;
}
.rpwwt-widget li.recommend .rpwe-summary {
  /* 抜粋 */
  font-size: 12px;
}
.rpwwt-post-categories a {
  /* カテゴリ */
  color: #a9a9a9;
  font-size: 6px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  padding: 1.2px 2.2px;
}
.rpwwt-post-categories a.recommend {
  /* お勧めカテゴリのラベルを非表示にする */
  display: none !important;
}
.rpwwt-widget li.recommend .rpwwt-post-date {
  /* 投稿日 */
  color: #bbb;
  font-size: 11px;
}
/* 記事一覧へのリンクボタン */
.articles {
  text-align: center;
  margin-bottom: 4em;
  padding: 1.5em 0 2.5em;
  /*	border-bottom: 2px dotted #e2e2e2;*/
}
.articles a {
  font-size: 0.9rem;
  letter-spacing: 0.3vw;
  color: #0bc151;
  margin: auto 0;
  padding: 0.8rem 5vw;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.articles a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* カテゴリ名クリックでの一覧 */
time.wp-show-posts-entry-date.published {
  /* 公開日 */
  color: rgba(0, 0, 0, 0.5);
}
.wpsp-read-more a {
  /* 記事を読む */
  color: #222;
  font-size: 0.8em;
  text-decoration: none;
}
/* ページャー */
.wpsp-load-more {
  margin: 4em auto 0 !important;
  text-align: center;
}
.wpsp-load-more span.page-numbers.current {
  color: #fff;
  margin: 0 4px;
  padding: 3px 4px;
  background-color: #0bc151;
  border: 1px solid #0bc151;
  border-radius: 4px;
}
.wpsp-load-more a.page-numbers {
  color: #0bc151;
  margin: 0 4px;
  padding: 3px 4px;
  border: 1px solid #0bc151;
  border-radius: 4px;
}
.wpsp-load-more a.page-numbers:hover {
  color: #fff;
  background-color: #0bc151;
}
/* 新しい記事/古い記事 */
.post-contents-container-left .d-flex {
  text-align: center;
  margin: 3em auto 0;
}
.post-contents-container-left .d-flex a {
  color: #0bc151;
  margin: 0 4px;
  padding: 3px 4px;
  border: 1px solid #0bc151;
  border-radius: 4px;
}
.post-contents-container-left .d-flex a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
  .wp-show-posts-image.wpsp-image-left {
    float: left !important;
    margin-right: 2vw !important;
  }
  .wp-show-posts-image {
    margin-bottom: 0 !important;
  }
}
/* // END ブログ ------------------------------------------------ */

/* FAQ -------------------------------------------------------- */
.faq {
  width: 70%;
  margin: 0 auto 7em;
  position: relative;
}
.faq h2 {
  color: #14923f;
  /*	font-weight: normal;*/
  text-align: center;
  letter-spacing: 6.4px;
}
.faq-container dl {
  font-size: 1.3rem;
  border-bottom: 1px solid #ddd;
}
.faq-container dt:first-of-type {
  border-top: none;
}
.faq-container dt {
  font-weight: bold;
  border-top: 1px solid #ddd;
  margin-left: 2em;
  padding-top: 2.2em;
  position: relative;
}
.faq-container dd {
  margin: 1em 0 2em 2em;
  position: relative;
}
.faq-container dt::before {
  content: "Ｑ．";
  color: #14923f;
  font-weight: 1000;
  position: absolute;
  left: -2em;
}
.faq-container dd::before {
  content: "Ａ．";
  color: #0bc151;
  font-weight: 1000;
  position: absolute;
  left: -2em;
}
/* // END FAQ ------------------------------------------------ */

/* // サポート ------------------------------------------------ */
section[id^="support-0"] {
  width: 80%;
  margin: 0 auto 7em;
  position: relative;
}

section[id^="support-0"] h2 {
  color: #14923f;
  /*	font-weight: normal;*/
  text-align: center;
  letter-spacing: 6.4px;
}
.support-intro {
  margin: 2rem 0 4rem;
  line-height: 2;
}
.support-container {
  width: 100%;
  margin-bottom: 4rem;
  padding: 2rem 1.5rem 1.5rem;
  line-height: 2;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
.support-container h3 {
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.support-container h3 .support-title {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 2.4px;
  color: #fff;
  padding: 0 0.2em;
  background-color: #14923f;
}
#support-site {
  width: 100%;
  margin: 0 auto 4rem;
}
.support-site-banner {
  width: 24vw;
  margin: 0 auto;
}
.support-site-banner img {
  width: 100%;
  height: 100%;
}
/* // END サポート -------------------------------------------- */
/* 会社概要・セキュリティ方針・プライバシーポリシー -------------- */
#info-header {
  width: 100%;
  text-align: center;
}
.info-header-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
h1.info-title {
  letter-spacing: 9.6px;
}
.info-sub-title {
  color: #0bc151;
  letter-spacing: 4px;
  margin-bottom: 45px;
}
.info-wrapper {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.info-container {
  width: 100%;
  margin: 0 auto 3rem;
  padding: calc(6vw * 0.8);
  position: relative;
  overflow: hidden;
}
/* 会社概要 */
.info-table {
  width: 100%;
  margin: 0 auto 3rem;
  padding: calc(6vw * 0.8);
}
.info-table table {
  border-collapse: collapse;
}
.info-table tr {
  border-top: 1px solid #dddddd;
}
.info-table table td.company_name br {
  display: none;
}
.info-table tr:nth-last-child(1) {
  border-top: none;
}
.info-table th {
  font-size: 1rem;
  font-weight: normal;
  vertical-align: top;
  line-height: 1.8;
  color: #0bc151;
  width: 12vw;
  text-align: left;
  padding: 1rem 0 1rem 1.5rem;
}
.info-table td {
  font-size: 1rem;
  vertical-align: top;
  line-height: 1.8;
  width: 80%;
  text-align: left;
  padding: 1rem 0;
}
.info-table table dl {
  width: 100%;
}
.info-table table dl.officer dt {
  width: 17vw;
  float: left;
  clear: left;
}
.info-table table dl.officer dd {
  float: left;
}
.info-table table dl.branch dt {
  font-weight: bold;
}
.info-table table dl.branch dd {
  margin-bottom: 1.5rem;
}
.info-table table dl.branch dd:last-child {
  margin-bottom: 0;
}
.info-table table .branch_map:nth-child(odd) {
  width: 45%;
  margin: 0 0 2rem 1.5rem;
  float: left;
}
.info-table table .branch_map:nth-child(even) {
  width: 45%;
  margin: 0 0 2rem 0;
  float: right;
}
.info-table table .branch_map h4 {
  color: #0bc151;
}
/* セキュリティー方針・プライバシーポリシー */
#security_policy,
#privacy_policy {
  font-size: 1rem;
  line-height: 1.8;
}
.security_policy_intro,
.privacy_policy_intro {
  width: 100%;
  margin: 1.5rem 0;
}
.security_policy_sub_txt,
.privacy_policy_sub_txt {
  /* width: 93%; */
  padding: 2rem 0 3rem 1.2rem;
  border-bottom: 1px solid #ddd;
}
.info-container ol {
  list-style-type: decimal;
}
.info-container ol li {
  margin: 1.5rem 0;
}
.info-container .enactment {
  margin: 2rem auto;
  float: right;
}
/* プライバシーポリシー */
#privacy_policy p {
  margin: 0 0 1.5rem !important;
}
#privacy_policy .info-container:first-child {
  margin: 0 auto -2rem;
}
h2.privacy_policy_title {
  font-weight: bold;
  border-bottom: 2px solid #0bc151;
}
#privacy_policy .info-container h3 {
  margin: 2rem 0 0.5rem;
}
#privacy_policy .info-container h2 + h3 {
  margin-top: 1rem;
}
#privacy_policy .privacy_policy_sub_txt dt {
  font-weight: bold;
  display: list-item;
  list-style-type: decimal;
}
#privacy_policy .privacy_policy_sub_txt ul {
  list-style-type: disc;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}
.info-wrapper .info-container:nth-child(2) .privacy_policy_sub_txt {
  border-bottom: none;
}
#privacy_policy .info-table {
  width: 100%;
  margin: 1.5rem auto 0;
  padding: 0;
}
#privacy_policy .info-table table {
  border-collapse: collapse;
}
#privacy_policy .info-table tr {
  border-top: 1px solid #dddddd;
}
#privacy_policy .info-table tr:last-child {
  border-bottom: 1px solid #dddddd;
}
#privacy_policy .info-table th {
  font-size: 1rem;
  font-weight: bold;
  vertical-align: top;
  color: #000;
  text-align: left;
  padding: 1rem 0 1rem 1.5rem;
}
#privacy_policy .info-table td {
  font-size: 1rem;
  vertical-align: top;
  text-align: left;
  padding: 1rem 0 0 1.5rem;
}
#privacy_policy .privacy_policy_intro.left {
  width: 75%;
  display: inline-block;
}
#privacy_policy .privacy_policy_mark {
  width: 15%;
  height: auto;
  text-align: center;
  vertical-align: top;
  margin-top: 4rem;
  padding: 1rem;
  display: inline-block;
}
#privacy_policy .privacy_policy_mark img {
  width: 100%;
  height: 100%;
}
/* // END 会社概要・セキュリティ方針・プライバシーポリシー -------- */

/* 問い合わせフォーム ------------------------------------------ */
.contact-wrapper {
  width: 80%;
  max-width: 1110px;
  margin: 0 auto;
}
.contact-container {
  width: 100%;
  margin: 0 auto 8rem;
  padding: calc(6vw * 0.8);
  background-color: #fff;
  position: relative;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
.contact_form > label {
  /* 左の見出しのラベル */
  width: 24%;
  min-width: 160px;
  text-align: left;
  display: inline-block;
}
.form_request,
.form_reply,
.form_consultation {
  width: 50vw;
  max-width: 680px;
  display: inline-block;
}
.contact_form input + label {
  text-align: center;
  margin: 0 0.4rem 0.8rem 0;
  padding: 0.8rem 0;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  cursor: pointer;
}
.contact_form .form_request input + label {
  width: 14vw;
  max-width: 210px;
  min-width: 110px;
}
#reply input + label {
  width: 21.5vw;
  max-width: 322px;
  min-width: 140px;
}
.contact_form {
  margin: 0 0 3rem 0;
}
.contact_form input,
.contact_form textarea {
  padding: 0.8rem 1rem;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
}

#request > label,
#reply > label,
#consultation > label {
  /* 選択肢が改行されても左の見出しラベルは上揃えにする */
  vertical-align: top;
}
input.company,
input.email,
input.phone,
input.address {
  width: 50vw;
  max-width: 680px;
}
input.last_name,
input.first_name {
  width: 20.5vw;
  max-width: 336px;
  padding: 0.8rem 1rem;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
}
.contact_form textarea {
  width: 50vw;
  max-width: 680px;
  height: 13rem;
}
.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form textarea:focus {
  background: #fff;
  border: 1px solid #0bc151;
  box-sizing: border-box;
}
/*
.agree_check label {
	position: relative;
	display: block;
	width: 100%;
}
*/
.mwform-checkbox-field input {
  margin-right: 10px !important;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.form_request input[type="radio"],
.form_reply input[type="radio"] {
  display: none;
}
.form_request input + span.mwform-radio-field-text {
  width: 14vw;
  max-width: 210px;
  min-width: 110px;
}
.form_request label input[type="radio"] + span,
.form_reply label input[type="radio"] + span {
  display: block;
  text-align: center;
  margin: 0 0.4rem 0.5rem 0;
  padding: 0.8rem 0;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  cursor: pointer;
}
.form_request label input[type="radio"]:checked + span,
.form_reply label input[type="radio"]:checked + span {
  color: #ffffff;
  background: #0bc151;
  transition: 0.2s;
}
.form_reply input + span.mwform-radio-field-text {
  width: 21.5vw;
  max-width: 322px;
  min-width: 140px;
}
.form_request span.mwform-radio-field,
.form_reply span.mwform-radio-field {
  display: inline-block;
}
.agree_check input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: -7px;
  width: 25px;
  height: 25px;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.agree_check input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #0bc151;
  border-right: 2px solid #0bc151;
  z-index: 2;
}
.agree_text {
  color: #777;
  font-size: 0.9rem;
  text-align: center;
}
.agree_check {
  /*	text-align: center;*/
  margin: 1rem auto 3rem;
  position: relative;
  display: table;
}
.back_box {
  text-align: center;
  margin: 6rem auto 2rem;
}
.submit_box {
  text-align: center;
}
.back_box button.form_back {
  width: 30vw;
  padding: 0.5rem 0;
  color: #0bc151;
  font-weight: 1000;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  cursor: pointer;
}
.back_box button.form_back:hover {
  color: #fff;
  background-color: #0bc151;
  transition: 0.2s;
}
.submit_box input[type="submit"] {
  width: 30vw;
  padding: 1rem 0;
  color: #0bc151;
  font-weight: 1000;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  cursor: pointer;
}
.submit_box input[type="submit"]:hover {
  color: #fff;
  background-color: #0bc151;
  transition: 0.2s;
}
.mw_wp_form_confirm .submit_box input[type="submit"] {
  width: 30vw;
  padding: 1rem 0;
  color: #fff;
  font-weight: 1000;
  background-color: #0bc151;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  cursor: pointer;
}
.mw_wp_form_confirm .submit_box input[type="submit"]:hover {
  color: #0bc151;
  background-color: #fff;
  transition: 0.2s;
}
/* エラーメッセージ */
.mw_wp_form #contact .error {
  font-size: 0.8rem;
}
/* 入力内容の確認で消す */
.mw_wp_form_confirm .agree_text,
.mw_wp_form_confirm .agree_check {
  display: none;
}

/* アラートランプ */
#contact .box-alert {
  position: relative;
  left: 0.5em;
  bottom: 1em;
}
#contact .contact-container .box-alert {
  display: inline-block;
  margin-left: 0.8em;
  left: 0;
  bottom: 0;
}
#contact .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #f0698d;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
#contact .contact-wrapper .box-alert .indicater {
  margin-right: 10px;
}
#contact .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(240, 105, 141, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.contact-container .contact_form:hover .ring {
  animation: pulsate-7 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-7 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-7 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-7 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-7 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-7 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
/* // END 問い合わせフォーム ----------------------------------- */

/* 問い合わせ用CSS
----------------------------------------------------------------------------- */
#contact-form {
  margin: 14em auto 4em;
}
.contact-form-title {
  font-size: calc(0.5rem + 1.5vmin);
  color: #0bc151;
  width: 80%;
  margin: 0 auto 2em;
  display: flex;
  display: -ms-flexbox;
  align-items: baseline;
}
.contact-form-title h2 {
  font-size: calc(0.5rem + 3vmin);
  font-weight: normal;
  margin-right: 0.8em;
}
.contact-form-sub-title {
  text-align: center;
}
.contact-form-sub-title h1 {
  font-size: calc(0.5rem + 2vmin);
  font-weight: normal;
  margin: 0 auto 0.5em;
}
#contact-form .required-txt {
  color: #a72627;
  text-align: center;
  margin: 3em auto 2em;
}
.contact-form-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 2.5vw 3vw 5vw;
  background-color: #fff;
  /*	box-shadow: 0px 0px 3px 3px rgba(146, 146, 146, 0.3);
	-webkit-box-shadow: 0px 0px 3px 3px rgba(146, 146, 146, 0.3);
*/
}
#contact-form label::after {
  /* ラベルに必須印を付ける */
  content: "*";
  color: #a72627;
}
#contact-form .form_request label::after,
#contact-form .form_reply label::after,
#contact-form .agree_check label::after {
  /* 選択項目のラベルから必須印を外す */
  content: "";
}
#contact-form .contact-container div[id] {
  margin: 0 auto 2em;
  display: flex;
  align-items: center;
}
#contact-form .contact-container div[id="request"],
#contact-form .contact-container div[id="reply"],
#contact-form .contact-container div[id="consultation"] {
  align-items: normal;
}
#contact-form .contact-container div[id] > div.labels {
  font-size: calc(0.5rem + 1vmin);
  width: 20%;
  max-width: 176px;
  min-width: 98px;
}
#contact-form .contact-container span.error {
  font-size: calc(0.5rem + 0.5vmin);
  color: #a72627;
}
#contact-form .contact-container div[id] div.labels + div {
  width: 75%;
}
#contact-form .contact-container input[type="text"],
#contact-form .contact-container input[type="email"],
#contact-form .contact-container input[type="tel"],
#contact-form .contact-container .form_consultation textarea {
  font-size: calc(0.5rem + 1vmin);
  width: 75%;
  max-width: 639px;
  padding: 0.7em 0.6em;
  background-color: #eee;
  border: 1px solid #eee;
}
#contact-form .contact-container input.last_name,
#contact-form .contact-container input.first_name {
  width: 36.1%;
  max-width: 311px;
  margin-right: 1em;
}
#contact-form .contact-container .form_consultation textarea {
  width: 100%;
}
#contact-form .contact-container input[type="text"]:focus,
#contact-form .contact-container input[type="email"]:focus,
#contact-form .contact-container input[type="tel"]:focus,
#contact-form .contact-container .form_consultation textarea:focus {
  background-color: #fff;
  border: 1px solid #0bc151;
}
#contact-form .contact-container .form_request ul,
#contact-form .contact-container .form_reply ul {
  margin-left: 1em;
}
#contact-form .contact-container .form_request li {
  width: calc(100% / 3.1);
  height: 3em;
  margin-bottom: 0.8em;
  display: inline-flex;
  /*	float: left;*/
}
#contact-form .contact-container .form_reply li {
  width: calc(100% / 2.1);
  height: 3em;
  display: inline-flex;
  /*	float: left;*/
}
#contact-form .contact-container .form_request label,
#contact-form .contact-container .form_reply label {
  position: relative;
  width: 100%;
  /*	display: block;*/
}
#contact-form .contact-container label input[type="radio"] {
  margin-right: 10px;
  vertical-align: middle;
}
#contact-form .contact-container label input[type="radio"] + span {
  cursor: pointer;
  vertical-align: middle;
}
/*
#contact-form .contact-container label input[type='radio'] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -7px;
	width: 25px;
	height: 25px;
	border: 1px solid #777;
	background-color: #fff;
	border-radius: 50%;
}
#contact-form .contact-container label input[type='radio']:checked + span::after {
	content: "";
	width: 13px;
	height: 13px;
	display: block;
	position: absolute;
	top: 6px;
	left: -1px;
	background: #a72627;
	border-radius: 50%;
}
*/
#contact-form .agree_text,
#contact-form .agree_check,
#contact-form .submit_box {
  text-align: center;
}
#contact-form .submit_box input[type="submit"] {
  padding: 0.8em 6em;
  background-color: #eee;
  border: 1px solid #eee;
}
#contact-form .submit_box input[type="submit"]:hover {
  color: #fff;
  cursor: pointer;
  background-color: #0bc151;
  border: 1px solid #0bc151;
}
#contact-form .agree_check {
  /*	margin: 1rem 0 3rem;*/
  position: relative;
  /*	display: table;*/
}
#contact-form .agree_check label {
  position: relative;
  /*	display: block;
	width: 100%;*/
}
#contact-form .agree_check label input[type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}
#contact-form .agree_check label input[type="checkbox"] + span {
  cursor: pointer;
  vertical-align: middle;
}
#contact-form .agree_check label input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -7px;
  width: 25px;
  height: 25px;
  border: 1px solid #777;
  background-color: #fff;
}
#contact-form .agree_check label input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 10px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #0bc151;
  border-right: 2px solid #0bc151;
  z-index: 2;
}
/* 確認画面 */
#contact-form.inputted .input_content {
  padding: 0 0 0.4em 0.1em;
  border-bottom: 1px solid #ccc;
}
#contact-form.inputted .split_name,
#contact-form.inputted .form_request,
#contact-form.inputted .form_reply {
  width: 25% !important;
  padding: 0 0 0.4em 0.1em;
  border-bottom: 1px solid #ccc;
}
#contact-form.inputted .split_name:nth-of-type(2) {
  margin-right: 2em;
}
#contact-form.inputted .form_consultation {
  padding: 0 0 0.4em 0.1em;
  border-bottom: 1px solid #ccc;
}
#contact-form.inputted .submit_box .java_back input[type="button"] {
  margin-bottom: 2em;
  padding: 0.4em 3em;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #eee;
}
#contact-form.inputted .submit_box .java_back input[type="button"]:hover {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
}
#contact-form.inputted .submit_box input[type="submit"] {
  color: #fff;
  padding: 0.8em 6em;
  cursor: pointer;
  background-color: #0bc151;
  border: 1px solid #0bc151;
}
#contact-form.inputted .submit_box input[type="submit"]:hover {
  color: #0bc151;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #0bc151;
}
#contact-form.thanks h1 {
  padding: 0 0 0 0.5em;
  border-bottom: 2px solid #000;
  display: table;
}
#contact-form.thanks .thanks-txt {
  margin-top: 3em;
}
/* ---- END 問い合わせ用CSS -------------------------------------------------- */

/* 問い合わせ完了画面 ------------------------------------------ */
.complete_button {
  margin: 2rem auto 1rem;
  position: relative;
  /*	display: flex;*/
  justify-content: center;
}
.sc_top_link {
  margin: 3vw 2vw 3vw 0;
  display: inline-block;
}
.sci_top_link {
  margin: 3vw 0;
  display: inline-block;
}
/* トップへ戻る・コーポレートサイトトップへ */
.sc_top_link a,
.sci_top_link a {
  padding: 1rem 4vw;
  color: #0bc151;
  font-size: 0.8rem;
  font-weight: 1000;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.sc_top_link a:hover,
.sci_top_link a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* // END 問い合わせ完了画面 ----------------------------------- */

/* お問い合わせ ------------------------------------------------ */
#top-inquiry {
  width: 100%;
  padding: 7rem 0;
  background-color: #fafafa;
  position: relative;
}
.top-inquiry-wrapper {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.inquiry-copy {
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
.inquiry-text {
  font-size: 0.9rem;
  margin: 2.5rem 0 1.5rem;
}
.inquiry-tel,
.inquiry-form {
  width: 45%;
  max-width: 576px;
  height: 280px;
  margin: 2rem 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
  display: inline-block;
  position: relative;
}
.inquiry-title {
  color: #0bc151;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin: 2.5rem 0 1rem;
}
.inquiry-title br {
  display: none;
}

/* 電話でのお問い合わせ */
/* 問い合わせ先電話番号 */
.inquiry-tel .tel-number a {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
}
/* アラートランプ */
.inquiry-tel .tel-number-alert {
  top: -6px;
  left: -6px;
  position: absolute;
}
.inquiry-tel .tel-number-alert .indicater {
  width: 50px;
  height: 50px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.inquiry-tel .tel-number-alert .indicater .ring {
  height: 70px;
  width: 70px;
  top: -10px; /*A.中心*/
  left: -10px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.inquiry-tel:hover .ring {
  animation: pulsate-2 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-2 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-2 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-2 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-2 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-2 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.inquiry-tel .indicater img {
  width: 38%;
  top: 14px;
  right: 16px;
  position: absolute;
  z-index: 3;
}

/* フォームからのお問い合わせ */
.inquiry-form .inquiry-case {
  margin: 2rem 0;
}
/* 問い合わせボタン */
.inquiry-form div.inquiry-button a {
  color: #fff;
  letter-spacing: 0.2rem;
  padding: 1rem 3.5rem;
  background-color: #0bc151;
  border-radius: 50vw;
  -webkit-border-radius: 50vw;
  -moz-border-radius: 50vw;
  background-image: none;
  margin-right: 0;
}
.inquiry-form div.inquiry-button a:hover {
  color: #fff;
  background-color: #0a7734;
}
.inquiry-form div.inquiry-button a[target=_blank]:after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png)
}

/* アラートランプ */
.inquiry-form .form-number-alert {
  top: -6px;
  left: -6px;
  position: absolute;
}
.inquiry-form .form-number-alert .indicater {
  width: 50px;
  height: 50px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.inquiry-form .form-number-alert .indicater .ring {
  height: 70px;
  width: 70px;
  top: -10px; /*A.中心*/
  left: -10px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.inquiry-form:hover .ring {
  animation: pulsate-2 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-2 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-2 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-2 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-2 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-2 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.inquiry-form .indicater img {
  width: 50%;
  top: 16px;
  right: 12px;
  position: absolute;
  z-index: 3;
}
/* // END お問い合わせ ------------------------------------------ */

/* フッター */
#footer {
  /* 2021.12.9 **********/
  /*	width: 90%;*/
  /********** 2021.12.9 */
  max-height: 1000px;
  margin: 0 auto;
  padding: 6rem 0 4rem;
}
/* グローバルメニュー＆会社メニュー */
.footer-menu-wrapper {
  display: table;
}
.footer-info-menu-wrapper ul {
  margin: 0;
}
.footer-nav-menu-wrapper ul li a,
.footer-info-menu-wrapper ul li a {
  color: #000;
}
.footer-nav-menu-wrapper ul li a:hover,
.footer-info-menu-wrapper ul li a:hover {
  color: #0bc151;
}
/* グローバルメニュー */
.footer-nav-menu-wrapper {
  /*	width: 60vw;*/
  width: 58%;
  display: inline-flex;
}
.footer-nav-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.footer-nav-menu-wrapper ul li {
  width: 25%;
  /*	width: 12vw;*/
  min-width: 125px;
  font-size: 0.9rem;
  /*	font-weight: bold;*/
  margin-bottom: 2rem;
  /*	display: inline-block;*/
}
.footer-nav-menu-wrapper ul li:before {
  content: "-";
  color: #0bc151;
  margin-right: 0.7rem;
}
.footer-nav-menu-wrapper ul li.x2cell {
  width: 50%;
}

/* 会社メニュー */
.footer-info-menu-wrapper {
  /*	width: 35vw;*/
  width: 40%;
  display: inline-flex;
}
.footer-info-menu-wrapper ul {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  white-space: nowrap;
  /*	justify-content: space-between;*/
  justify-content: flex-end;
}
.footer-info-menu-wrapper ul li {
  width: 50%;
  min-width: 180px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  /*	display: inline-block;*/
}
.footer-info-menu-wrapper ul li:before {
  content: "-";
  margin-right: 0.7rem;
}
.footer-info-menu-wrapper li:last-child,
.footer-info-menu-wrapper li:last-child a {
  color: #0bc151;
}

/* 会社ロゴ＆各種ISOロゴ */
.footer-logo-wrapper {
  margin-top: 5rem;
  position: relative;
}
/* 会社ロゴ */
.footer-logo {
  width: 20vw;
  min-width: 252px;
  font-size: 0.75rem;
  text-align: right;
  vertical-align: text-top;
  display: inline-block;
}
.footer-logo a {
  color: #fd6c26;
  margin-right: 0;
  padding-top: 0;
  padding-right: 0;
  background: none;
  font-size: 1.875rem;
  font-weight: 700;
}
.footer-logo a::after {
  content: none;
}
.footer-logo img {
  width: 100%;
}
/* ISOロゴ */
.iso-logo-wrapper {
  right: 0;
  padding-right: 4rem;
  position: absolute;
  display: inline-block;
}
.footer-p-mark,
.footer-JAB,
.footer-ISMS,
.footer-ANAB {
  vertical-align: top;
  display: inline-block;
}
.footer-p-mark img,
.footer-JAB img,
.footer-ISMS img,
.footer-ANAB img {
  width: 100%;
}
/* Ｐマーク */
.footer-p-mark {
  width: 6vw;
  max-height: 70px;
  min-width: 64px;
  vertical-align: baseline;
}
.footer-p-mark img {
  max-width: 68px;
  min-width: 64px;
}
/* ANAB */
.footer-ANAB {
  width: 17vw;
  max-height: 70px;
  min-width: 245px;
  vertical-align: baseline;
}
.footer-ANAB img {
  max-width: 262px;
  min-width: 245px;
}
/* JAB */
.footer-JAB {
  width: 9vw;
  padding: 0 1.5rem;
}
.footer-JAB img {
  max-width: 124px;
  min-width: 98px;
}
/* ISMS */
.footer-ISMS {
  width: 9vw;
  padding: 0 1.5rem;
}
.footer-ISMS img {
  max-width: 124px;
  min-width: 98px;
}
/* コピーライト */
.footer-copyright {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 5rem;
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
  #footer {
    padding: 2rem 0;
  }
  .footer-copyright {
    margin-top: 2rem;
  }
  .footer-nav-menu-wrapper ul {
    padding: 0;
  }
  .footer-nav-menu-wrapper ul li {
    display: flex;
    width: 100%;
  }
  .footer-info-menu-wrapper ul {
    padding: 0;
    justify-self: unset;
  }
}


/* －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－装飾
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－ */
.border-green {
  height: 1px;
  border: none;
  position: relative;
  top: 13rem;
  background-color: #14923f;
}

.onehr-news {
  position: relative;
  top: -40px;
  padding: 20px 40px;
  background-color: #fd6c26;
}
.onehr-news__inner {
  width: calc(50vw * 1.5);
  max-width: 1050px;
  min-width: 640px;
  margin: 0 auto;
}
.onehr-news__inner a {
  color: #fff;
}
.onehr-news__inner a:hover {
  text-decoration: underline;
}
.onehr-news__inner a::after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png);
}
@media (max-width: 767px) {
  .onehr-news {
    top: 0;
    padding: 20px 4vw;
  }
  .onehr-news__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
　レスポンシブ対応
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－ */
@media screen and (min-width: 1200px) {
  .case-content-enter a {
    font-size: 1rem;
  }
}

/* 低解像度PC＆タブレット向けの設定 */
@media screen and (max-width: 940px) {
  html {
    /* 画面を縮めた時にスクロールバーを出さなくする */
    overflow: overlay;
  }
  /* トップページ */
  .header-logo {
    /* ロゴ */
    margin-right: 10px;
  }
  /* メニュー */
  .nav-menu ul li {
    /* 項目の間隔 */
    margin: 0 1vw;
  }
  .nav-menu ul li.inquiry-button a {
    /* 問い合わせボタン */
    padding: 0.8rem 1.5rem;
  }
  /* 選ばれる理由 */
  #top-reason .box-number {
    /* 数字 */
    left: -17px;
  }
  #top-reason .box .box-heading {
    /* ４つの見出し */
    margin: 3% 0 10% 1.7rem;
  }

  /* お知らせ */
  /*	.info-box {
		width: calc(20vw * 1.5);
		height: calc(30vw / 0.65);
	}
	.info-box .info-news {
		padding: 1rem 1rem 0;
	}
*/
  /* 導入事例 */
  .example-logo-wrapper {
    width: 90%;
  }
  .case-logo img {
    max-width: 80px;
  }
  .case-content-txt {
    font-size: 0.75rem;
  }

  /* 活用シーン */
  .content-message-txt br {
    /* メインメッセージの改行 */
    display: none;
  }
  .scene-wrapper {
    /* セクションの幅 */
    width: 90%;
  }
  .scene-content-wrapper {
    width: 46vw;
  }
  #scene-01 .scene-content-wrapper,
  #scene-02 .scene-content-wrapper,
  #scene-03 .scene-content-wrapper,
  #scene-04 .scene-content-wrapper,
  #scene-05 .scene-content-wrapper,
  #scene-06 .scene-content-wrapper {
    bottom: 3vw;
  }
  #scene-sub-01 .scene-sub-title br {
    /*	display: none;*/
  }

  /* 機能一覧 */
  .system-wrapper {
    width: 90%;
  }
  .system-content-wrapper {
    width: 50vw;
  }

  /* 会社概要 */
  .info-header-wrapper,
  .info-wrapper {
    width: 90%;
  }
  .info-table td {
    width: 75%;
  }
  .info-table table dl.officer dt {
    width: 30vw;
  }

  /* お問い合わせ */
  .contact-wrapper {
    width: 90%;
    margin-left: 2.2rem;
  }
}

/* スマホ向けの設定 */
@media screen and (max-width: 767px) {
  /* ヘッダー */
  .header-logo {
    /* ロゴ */
    width: 32vw;
    position: fixed;
  }
  .content-header-wrapper {
    width: 90%;
  }
  .header-wrapper,
  body.action .active .header-wrapper {
    /* ヘッダー位置 */
    padding: 2.5rem 2rem 4rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* これで隠れる */
    width: 100%;
    height: 100vh;
    transition: all 0.3s;
    z-index: 1000;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  body.action .nav-menu {
    /* ハンバーガーメニュークリックで表示 */
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .nav-menu {
    width: 100%;
    margin: 0;
    padding: 40px 0 0;
    display: block;
  }
  .nav-menu a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 10px;
    padding: 0.5rem 0 0.5rem 3rem;
    display: block;
  }
  .nav-menu ul {
    display: block;
  }
  .nav-menu ul li {
    text-align: left;
    margin: 0;
    border-bottom: none !important;
  }
  .nav-menu ul li:hover,
  .nav-menu li.current {
    border: none;
  }
  .nav-menu ul li:last-child {
    /* 問い合わせボタン */
    margin: 1.5rem 0 0 3rem;
    display: inline-block;
  }
  body.action .active .nav-menu ul li.inquiry-button a {
    padding: 1rem 2rem;
  }

  .navToggle {
    /* ハンバーガーメニューを表示する */
    display: block;
  }
  .navToggle {
    /* 三本線を描く */
    display: block;
    position: fixed;
    right: 3rem;
    width: 52px;
    height: 46px;
    cursor: pointer;
    z-index: 9999;
    text-align: center;
    transform: scale(-1, 1);
  }
  .navToggle span {
    display: block;
    position: absolute;
    border-bottom: solid 2px #0bc151;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    width: 30px;
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    width: 40px;
    top: 22px;
  }
  .navToggle span:nth-child(3) {
    width: 20px;
    top: 36px;
  }
  /* タップ後の「×」にする */
  /* 最初のspanをマイナス45度に */
  .navToggle.action span:nth-child(1) {
    width: 40px;
    top: 18px;
    left: 6px;
    border-bottom: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  .navToggle.action span:nth-child(2) {
    top: 18px;
    border-bottom: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navToggle.action span:nth-child(3) {
    top: 18px;
    left: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  
  #global-nav #menu-item-57 a::after {
    background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png);
  }

  /* パンくず */
  .breadcrumb {
    /* 非表示にする */
    display: none;
  }

  /* メインイメージエリア */
  #main-image {
    /* 画像等のはみ出し分を隠す */
    overflow: hidden;
  }
  .main-img-wrapper {
    /* エリアの高さを与える */
    height: 125vw;
    max-height: 900px;
  }
  .main-img-wrapper .catchcopy {
    /* メインのキャッチコピー */
    top: -1rem;
    top: calc(98% / 1.9);
    left: 3rem;
  }
  .main-img-wrapper .catchcopy br {
    /* 文中の改行を復活させる */
    display: block;
  }
  .main-img-wrapper .main-img {
    /* メインイメージ */
    width: 80vw;
    right: -8rem;
    top: 12rem;
  }
  .main-subcopy {
    /* 背景の文字 */
    top: 0;
  }

  /* ABOUTエリア */
  #top-about {
    /* 高さを与える */
    height: auto;
    min-height: auto;
  }
  .top-about-wrapper {
    /* エリアのpaddingを再設定 */
    /* 2021.12.9 **********/
    /*		width: 83vw;
		padding: 1.5rem 2.5rem 4rem;*/
    width: 100%;
    padding: 1.5rem 1rem 4rem;
    /********** 2021.12.9 */
    min-width: 554px;
    position: relative;
  }
  .top-about-wrapper .rwd {
    display: inline-block;
  }
  .top-about-wrapper .smartcompany-logo {
    /* ロゴ */
    width: 45vw;
  }
  .top-about-wrapper .about-copy {
    /* 見出し */
    font-size: 1.5rem;
  }
  .top-about-wrapper .about-subcopy {
    /* 注釈文 */
    text-align: left;
    font-size: 1.3rem;
    letter-spacing: 0.5rem;
  }
  .top-about-wrapper .about-subcopy br {
    /* 文中の改行を削除する */
    display: none;
  }
  .top-about-wrapper .about-img {
    /* PC画像 */
    width: 100%;
  }
  .top-about-wrapper .about-txt {
    /* 紹介文 */
    width: 100%;
    font-size: 1.2rem;
    line-height: 2;
  }
  .top-about-wrapper .about-more a {
    /* 詳しくはこちら */
    font-size: 1.2rem;
    /* 2021.12.9 **********/
    /*		padding: 1rem 20vw;*/
    padding: 1rem;
    /********** 2021.12.9 */
  }
  .about-human04,
  .about-human05,
  .about-human06 {
    display: none;
  }
  #top-about .about-human01 img {
    /* 2021.12.9 **********/
    /*		top: 36rem;
		left: 40vh;
		z-index: 2;*/
    top: 4rem;
    left: 4rem;
    z-index: 4;
    /********** 2021.12.9 */
    width: 14vw;
  }
  #top-about .about-human02 img {
    /* 2021.12.9 **********/
    /*		top: 28rem;
		right: 4vh;*/
    top: 6rem;
    right: 0;
    /********** 2021.12.9 */
  }
  #top-about .about-human03 img {
    /* 2021.12.9 **********/
    /*		top: 37rem;*/
    top: 6rem;
    left: 0;
    /********** 2021.12.9 */
    z-index: 2;
  }
  .about-back-img {
    /* 背景の文字（ABOUT） */
    display: none;
  }

  /* 選ばれる理由 */
  #top-reason {
    /* 高さを与える */
    height: auto;
  }
  .reason-copy {
    /* 見出し文字 */
    font-size: 2rem;
  }
  .reason-copy span.what-smartcompany {
    /* キャッチコピー */
    font-size: 1.4rem;
  }
  .reason-txt {
    /* 紹介文 */
    font-size: 1.2rem;
    line-height: 2;
  }
  #top-reason .reason-01,
  #top-reason .reason-02,
  #top-reason .reason-03,
  #top-reason .reason-04 {
    /* エリアを拡げて並ばないようにする */
    width: 100%;
    height: auto;
    max-width: none;
    /*	float: initial;*/
    margin: 1rem 0;
    /* 2021.12.9 **********/
    /*		position: static;*/
  }
  #top-reason .reason-02 {
    top: unset;
    right: unset;
  }
  #top-reason .reason-03 {
    top: unset;
    left: unset;
  }
  #top-reason .reason-04 {
    top: unset;
  }
  /********** 2021.12.9 */
  #top-reason .box {
    /* 理由の箱を左基準で並べる */
    width: 100%;
    text-align: left;
    max-width: none;
    position: relative;
    float: right;
    display: inline-table;
  }
  #top-reason .box .box-heading {
    /* 各理由の見出し */
    font-size: 1.4rem;
    margin: -4rem 0 1.5rem 2rem;
  }
  #top-reason .box .box-txt {
    /* 各理由の文章 */
    font-size: 1.2rem;
  }
  #top-reason .box-number {
    /* 番号 */
    /* 2021.12.9 **********/
    /*		top: -2rem;
		left: -4.3rem;*/
    top: -2rem;
    left: -1.3rem;
    font-size: 400%;
    /********** 2021.12.9 */
  }
  #top-reason .box .box-alert {
    /* アラートランプ */
    bottom: 4.5rem;
  }
  #top-reason .single-human01 {
    /* 人のイラスト */
    top: 43rem;
  }

  /* 導入実績 */
  #top-example {
    /*	margin-top: 3rem;*/
    display: inline-block;
  }
  #top-example .three-human01 {
    /* 人のイラスト */
    /* 2021.12.9 **********/
    /*		top: 3rem;
		left: -6rem;*/
    top: 1rem;
    left: 0;
    /********** 2021.12.9 */
    width: auto;
  }
  .example-copy {
    /* 見出し文字 */
    width: auto;
    font-size: 3.5rem;
    position: relative;
    bottom: 1rem;
    display: block;
  }
  .example-copy span.from-to {
    /* キャッチコピー */
    font-size: 1.4rem;
  }
  .example-txt {
    /* 紹介文章 */
    font-size: 1.2rem;
    text-align: left;
  }
  #top-example img.logos {
    /* 事例ロゴの設定 */
    max-width: 30vw !important;
    max-height: 20vw !important;
  }

  /* お知らせ */
  .top-info-wrapper {
    /* ヘッダーの位置 */
    width: 90%;
  }
  .info-copy {
    /* 見出し */
    width: 60%;
    font-size: 3.5rem;
  }
  .swiper-nav-button {
    /* ボタンの格納箱 */
    width: 40%;
  }
  #top-info .swiper-button-prev,
  #top-info .swiper-button-next {
    /* 送りボタン */
    width: 80px;
    height: 60px;
    top: 1rem;
  }
  .info-box {
    /* お知らせのパネル */
    /*
		width: 38vw;
		max-width: 300px;
		height: calc(40vw / 0.65);
		max-height: 460px;
		*/
    width: 73vw;
    max-width: 73%;
    height: calc(55vw / 0.65);
    max-height: 630px;
  }
  .info-box .news-date {
    /* 日付 */
    font-size: 0.9rem;
  }
  .info-box .info-news {
    /* パネルの文字 */
    font-size: 1rem;
  }
  .news-back-img {
    /* NEWSの背景文字 */
    top: 33rem;
  }

  /* お問い合わせ */
  /* 2021.12.9 **********/
  #top-inquiry {
    padding: 1rem 0 0;
  }
  .top-inquiry-wrapper {
    /* エリアの設定 */
    /*		width: 80%;*/
    padding: 1rem;
  }
  /********** 2021.12.9 */
  .inquiry-copy {
    /* 見出し */
    font-size: 2rem;
  }
  .inquiry-text {
    /* 紹介文 */
    font-size: 1.2rem;
    line-height: 1.9;
    letter-spacing: 1.2px;
    text-align: left;
  }
  .inquiry-tel,
  .inquiry-form {
    /* 問い合わせのパネル */
    width: 100%;
    height: auto;
    max-width: 620px;
    margin: 2.5rem auto;
    padding: 1rem 0 4rem;
    display: block;
  }
  .inquiry-title {
    /* パネルの見出し */
    font-size: 1.6rem;
  }
  .inquiry-title br {
    /* 見出しを改行させる */
    display: block;
  }
  .inquiry-tel .tel-number a {
    /* 電話番号 */
    font-size: 8vw;
  }
  .tel-time,
  .inquiry-case {
    /* 受付時間＆フォーム注釈 */
    font-size: 1.5rem;
  }
  .inquiry-button {
    /* フォームボタン */
    display: inline-flex;
  }
  .inquiry-form div.inquiry-button a {
    /* フォームボタンラベル */
    font-size: 1.5rem;
  }

  /* フッター */
  .footer-nav-menu-wrapper,
  .footer-info-menu-wrapper {
    width: auto;
    display: block;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .footer-nav-menu-wrapper ul li,
  .footer-nav-menu-wrapper ul li.x2cell {
    /* グローバルメニュー */
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .footer-info-menu-wrapper ul li {
    /* インフォメーションメニュー */
    width: 100%;
    font-size: 1rem;
  }
  .iso-logo-wrapper {
    /* ISOロゴ */
    margin: 0 auto 2rem;
    position: relative;
    display: block;
  }
  .footer-logo {
    /* 社名ロゴ */
    width: 40vw;
    margin: 0 auto;
    display: block;
  }
  .iso-logo-wrapper {
    padding-right: 0;
  }
  .footer-logo-wrapper {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
    padding: 0 4vw;
  }

  /* 特長・強み */
  .feature-wrapper {
    width: 100%;
  }
  #feature-01,
  #feature-02,
  #feature-03,
  #feature-04,
  #feature-05 {
    height: 90rem;
    margin-bottom: 5rem;
  }
  .feature-title-container {
    width: 94%;
    height: 600px;
  }
  .feature-number {
    display: block;
  }
  .feature-title {
    font-size: 2.7rem;
  }
  h2.feature-title br {
    display: none;
  }
  #feature-01 .feature-title,
  #feature-05 .feature-title {
    padding: 0 0.5rem;
    display: block;
  }
  #feature-02 .feature-title,
  #feature-03 .feature-title,
  #feature-04 .feature-title {
    padding: 0 0.5rem;
    display: block;
  }
  #feature-01 .line-box,
  #feature-03 .line-box,
  #feature-05 .line-box {
    width: 60%;
    top: 20rem;
    overflow: hidden;
  }
  #feature-02 .line-box,
  #feature-04 .line-box {
    width: 60%;
    top: 20rem;
    left: -16rem;
  }
  .line-box img {
    width: 180%;
  }
  .feature-content-wrapper {
    height: auto;
    padding: 0 1rem;
    display: block;
    top: 25rem;
  }
  #feature-01 .feature-content-box,
  #feature-03 .feature-content-box {
    width: 100%;
  }
  #feature-01 .feature-content-img {
    width: 95%;
    margin: 1rem auto 3rem;
  }
  #feature-02 .feature-content-img {
    width: 90%;
    margin: 1rem auto 3rem;
  }
  #feature-03 .feature-content-img {
    width: 83%;
    margin: 1rem auto 3rem;
  }
  #feature-04 .feature-content-img {
    width: 88%;
  }
  #feature-04 .feature-content-img-txt {
    margin-bottom: 3rem;
  }
  #feature-05 .feature-content-img {
    width: 35%;
    margin: 7rem auto 8rem;
  }
  #feature-05 .about-human01 img {
    bottom: 8vw;
  }
  #feature-05 .about-human02 img {
    bottom: 36vw;
  }
  #feature-05 .about-human03 img {
    bottom: 32.5vw;
    left: 6vw;
  }
  .feature-content-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .feature-content-title br {
    display: block;
  }
  .feature-content-txt {
    font-size: 1.5rem;
  }

  /* 活用シーン */
  #scene-01,
  #scene-02,
  #scene-03,
  #scene-04,
  #scene-05,
  #scene-06 {
    height: 63rem;
    max-height: 1000px;
    overflow: hidden;
  }
  #scene-06 {
    margin-top: 3rem;
  }
  .scene-wrapper h2 {
    letter-spacing: 1vw;
  }
  .scene-sub .scene-wrapper {
    width: 100%;
    height: 55vw;
  }
  .scene-content-wrapper {
    width: 90%;
    height: 18rem;
    padding: 1rem 0 2rem 2rem;
    left: 0;
  }
  #scene-01 .scene-content-wrapper,
  #scene-03 .scene-content-wrapper,
  #scene-05 .scene-content-wrapper {
    /*	top: 24rem;*/
    top: 48vw;
    bottom: 0;
  }
  #scene-02 .scene-content-wrapper {
    top: 47vw;
    bottom: auto;
    right: 0;
    left: auto;
  }
  #scene-04 .scene-content-wrapper,
  #scene-06 .scene-content-wrapper {
    /*	top: 25rem;*/
    top: 49vw;
    bottom: auto;
    right: 0;
    left: auto;
  }
  #scene-06 .scene-content-wrapper {
    height: 14rem;
  }
  #scene-01 .scene-photo,
  #scene-03 .scene-photo,
  #scene-05 .scene-photo {
    width: 80%;
    height: auto;
    left: auto;
    right: 0;
  }
  #scene-02 .scene-photo,
  #scene-04 .scene-photo,
  #scene-06 .scene-photo {
    width: 80%;
    left: 0;
  }
  .scene-photo img {
    width: 100%;
  }
  .scene-content-list {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  #scene-01 .scene-line-box,
  #scene-03 .scene-line-box {
    width: 200%;
    height: 35rem;
    top: 18rem;
    right: auto;
  }
  #scene-05 .scene-line-box {
    width: 200%;
    height: 39rem;
    top: 19rem;
    right: auto;
  }
  #scene-02 .scene-line-box,
  #scene-04 .scene-line-box {
    width: 200%;
    height: 35rem;
    top: 18rem;
    left: 0;
  }
  #scene-06 .scene-line-box {
    width: 200%;
    height: 32rem;
    top: 15rem;
    left: 0;
  }
  .scene-line-box img {
    height: 100%;
  }
  .scene-content-enter {
    bottom: 13rem;
  }
  #scene-02 .scene-content-enter {
    bottom: 13rem;
  }
  #scene-03 .scene-content-enter {
    bottom: 13rem;
  }
  #scene-04 .scene-content-enter {
    bottom: 12rem;
  }
  #scene-05 .scene-content-enter {
    bottom: 8rem;
  }
  #scene-06 .scene-content-enter {
    bottom: 20rem;
  }
  .scene-content-enter br {
    display: block;
  }
  .scene-content-enter a {
    font-size: 1.2rem;
    padding: 0.8rem 10vw;
  }
  #scene-02 .scene-content-enter a,
  #scene-03 .scene-content-enter a,
  #scene-04 .scene-content-enter a,
  #scene-05 .scene-content-enter a {
    margin-top: 1rem;
  }
  /* サブシーン */
  #scene-sub-01,
  #scene-sub-02,
  #scene-sub-03,
  #scene-sub-04,
  #scene-sub-05,
  #scene-sub-06 {
    width: 100%;
    height: calc(106vw * 1.2);
    max-height: 870px;
    overflow: hidden;
  }
  /* 離職防止 */
  #scene-sub-01 .scene-sub-title,
  #scene-sub-02 .scene-sub-title,
  #scene-sub-03 .scene-sub-title,
  #scene-sub-04 .scene-sub-title,
  #scene-sub-05 .scene-sub-title,
  #scene-sub-06 .scene-sub-title {
    font-size: 1.5rem;
    width: 95%;
  }
  .scene-sub .scene-photo {
    width: 100%;
  }
  #scene-sub-01 .scene-photo {
    top: 18rem;
    right: 0;
  }
  #scene-sub-02 .scene-photo {
    top: 16rem;
    left: 0;
  }
  #scene-sub-03 .scene-photo,
  #scene-sub-05 .scene-photo {
    top: 16rem;
    right: 0;
  }
  #scene-sub-04 .scene-photo,
  #scene-sub-06 .scene-photo {
    top: 16rem;
    left: 0;
  }
  #scene-sub-01 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 25rem;
    right: auto;
    left: 0;
  }
  #scene-sub-02 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 25rem;
    right: -46px;
    left: auto;
  }
  #scene-sub-03 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 23rem;
    right: auto;
    left: 0;
  }
  #scene-sub-04 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 25rem;
    right: -46px;
    left: auto;
  }

  /* 人材適正配置 */
  #scene-sub-message-01 h2 br,
  #scene-sub-message-01 .sub-message-txt br {
    display: none;
  }
  #scene-sub-message-01 .sub-message-txt {
    font-size: 1.5rem;
    text-align: left;
  }
  #visual-parts {
    /* ヴィジュアルパーツ */
    width: 82%;
  }
  #visual-parts .scene-line-box {
    width: 85%;
    height: auto;
  }
  /* 働き方ポータル */
  #sub-portal-shots .portal-screen-shots {
    width: 90%;
    height: 100%;
  }
  #scene-sub-message-02 .scene-sub-message-box {
    width: 100%;
  }

  /* 機能一覧 */
  #system-01,
  #system-03,
  #system-08,
  #system-09 {
    height: 740px;
  }
  #system-02 {
    height: 1020px;
  }
  #system-04 {
    height: 840px;
  }
  #system-05 {
    height: 895px;
  }
  #system-06,
  #system-07 {
    height: 815px;
  }
  #system-10 {
    height: 770px;
  }
  #system-01,
  #system-02,
  #system-03,
  #system-04,
  #system-05,
  #system-06,
  #system-07,
  #system-08,
  #system-09,
  #system-10 {
    overflow: hidden;
  }
  #system-02 .scene-content-enter a {
    padding: 0.8rem 3vw;
  }
  #system-menu ul {
    display: block;
  }
  #system-menu ul li {
    font-size: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  #system-menu ul li:after {
    content: none;
  }
  #system-menu a {
    margin-left: 15px;
  }
  #system-menu ul li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px 4px 0;
    border-right: 1px solid #0bc151;
    border-bottom: 1px solid #0bc151;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .system-wrapper {
    width: 100%;
  }
  .system-image {
    width: 100vw;
    height: 72vw;
    max-width: 640px;
    max-height: 470px;
  }
  .system-content-wrapper {
    font-size: 1.2rem;
    width: 85%;
    top: 60vw;
  }
  .system-line-box {
    width: 200%;
    height: 87%;
    top: 9rem;
  }
  /* その他の活用 */
  .scene-panel-wrapper {
    width: 90%;
  }
  #scene-sub-panel {
    overflow: hidden;
  }
  #scene-sub-panel .single-human01 {
    width: 11vw;
    top: 11vw;
    right: -1vw;
  }
  .sub-panel {
    width: 100%;
    height: auto;
  }
  .sub-panel a {
    text-align: left;
    display: block;
  }
  .sub-panel .sub-panel-img {
    width: calc(100% / 5);
    height: 100%;
    display: table-cell;
    vertical-align: middle;
  }

  .sub-panel-menu {
    display: block;
  }
  .sub-panel img {
    width: 100%;
    height: auto;
    display: block;
  }
  #scene-sub-panel h2 {
    font-size: 2rem;
  }
  .sub-panel .sub-panel-title {
    width: calc(100% / 2);
    font-size: 4.5vw;
    letter-spacing: 0;
    padding: 0 0 0 1em;
    vertical-align: middle;
    display: table-cell;
  }

  /* 導入事例 */
  .case-wrapper {
    position: relative;
    height: 100%;
  }
  .case-container {
    width: 100%;
    padding: 2rem 0;
    display: block;
    overflow: hidden;
  }
  .case-container .swiper-container {
    overflow: visible;
  }
  .case-container .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .case-container section {
    width: calc(94% / 3);
    height: auto;
    max-height: 680px;
    /*		min-height: 560px;*/
    /*		min-height:90vw;*/
    margin: 0 0.5rem;
  }
  .case-content h2 {
    font-size: 2.7vw;
  }
  .case-content-txt {
    font-size: 2vw;
  }
  .case-content-enter a {
    font-size: 0.87rem;
  }
  .case-content-enter {
    bottom: 1.5rem;
  }
  .example-logo-wrapper {
    width: 100%;
    /* 2021.12.9 **********/
    padding: 0 1rem;
    /********** 2021.12.9 */
  }
  .example-logo-img {
    width: calc(90% / 4);
  }
  .example-logo-img img {
    max-width: 95px;
    max-height: 70px;
  }
  .example-copy,
  .info-copy {
    font-size: 2rem;
  }
  #example-logo .example-txt {
    width: 90%;
    margin: 2rem auto 4rem;
    font-size: 1.5rem;
    text-align: left;
  }

  /* 事例-個別ページ */
  .content-case {
    width: 100%;
  }
  .case-name {
    white-space: normal;
  }
  #case-info {
    overflow: visible;
  }
  .case-info-wrapper {
    width: 100%;
  }
  #content-header .single-human01 img {
    height: 10rem;
  }
  .case-info-title {
    width: 100%;
    height: 39rem;
    top: -5rem;
  }
  .case-title {
    width: 80%;
    padding: 1.5rem 1rem 1.5rem 2rem;
  }
  .case-list {
    width: 85%;
    font-size: 1.2rem;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 108vw;
  }
  .case-info-wrapper .case-list dt {
    width: 100px;
  }
  .case-info-wrapper .case-list dd {
    width: calc(100% - 100px);
    margin-left: 100px;
  }
  .case-basic-info dt {
    padding: 1rem 0 0;
  }
  .case-basic-info dd {
    padding: 0 0 1rem;
  }
  .case-basic-info dt {
    width: 100%;
    float: none;
  }
  .case-info-photo {
    top: 70px;
    width: auto;
  }
  .case-info-photo img {
    max-width: 100%;
    max-height: none;
  }
  .case-basic-info {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 8vw 3rem;
    font-size: 1.2rem;
    position: relative;
    top: 148vw;
  }
  .company-back-img {
    width: 100%;
    top: 134vw;
    left: auto;
    /*bottom: calc(-11rem * 0.5);*/
  }
  #case-info {
    height: calc(43rem + 140vw);
  }
  .case-txt-wrapper {
    width: 90%;
  }
  #case-details h3 {
    font-size: 2.3rem;
    margin-top: 15vw;
  }
  .case-txt-container,
  .case-txt-container-60,
  .case-txt-container-60b,
  .case-txt-container-95 {
    width: 100% !important;
    padding: 0 0 2rem 0 !important;
    position: relative !important;
    top: auto !important;
  }
  .case-txt-container-right,
  .case-txt-container-left,
  .case-txt-container-center {
    width: 100% !important;
    padding: 0 0 2rem 0 !important;
    position: relative !important;
    top: auto !important;
  }
  h4.case-txt-subtitle {
    font-size: 1.5rem;
  }
  .case-txt {
    font-size: 1.3rem;
  }
  .box-right .case-txt-photo,
  .box-left .case-txt-photo {
    position: relative;
    top: auto;
  }
  .case-txt-photo {
    width: 90%;
    margin: 0 auto 15vw;
  }

  /* 導入フロー */
  #flow {
    width: 90%;
  }
  .flow-container {
    margin-bottom: 8rem;
    display: block;
  }
  .flow-wrapper:nth-child(even) {
    padding-left: 0;
  }
  .flow-number {
    margin-left: 0.5rem;
  }
  .flow-01 .flow-number {
    margin: -3.5rem 0 0 0.5rem;
  }
  .flow-03 .flow-number {
    margin: -1.5rem 0 0 0.5rem;
  }
  .flow-05 .flow-number {
    margin: -1.5rem 0 0 0.5rem;
  }
  .flow-06 .flow-number {
    margin: -10rem 0 0 0.5rem;
  }
  .flow-content {
    width: 98%;
    margin-left: 2rem;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .flow-txt {
    width: 80%;
    font-size: 1.3rem;
    line-height: 2;
  }
  .flow-02 .flow-vertical-label {
    margin-left: 4rem;
  }
  .flow-04 .flow-vertical-label {
    height: 8.5rem;
    left: -18px;
  }
  .flow-06 .flow-vertical-label {
    height: 8.5rem;
    left: -18px;
    top: -190px;
  }
  #flow .front_top {
    width: 34vw;
    top: 24rem;
    right: 20px;
  }
  #flow .front_middle {
    width: 33vw;
    top: 45%;
    right: 0;
  }
  #flow .flow-bg.front_bottom {
    width: 80%;
    text-align: center;
    margin: 0 auto 6rem;
    position: relative;
    display: block;
  }
  #flow .rear_top {
    width: 74%;
    top: 7rem;
    right: 0;
    opacity: 0.3;
  }
  #flow .rear_middle {
    width: 65%;
    top: 41%;
    left: 29%;
    opacity: 0.3;
  }
  #flow .rear_bottom {
    width: 63%;
    right: auto;
    left: 4rem;
    bottom: 51rem;
    opacity: 0.3;
  }

  /* FAQ */
  .faq {
    width: 90%;
    margin-left: 1.5em;
  }

  /* サポート */
  #support {
    width: 90%;
  }
  .support-container {
    width: 95%;
    margin-left: 2vw;
    padding: 5rem 1.5rem 1.5rem;
  }
  .support-intro,
  .support-container {
    font-size: 1.3rem;
  }
  .support-container h3 .support-title {
    font-size: 1.8rem;
  }
  .support-site-banner {
    width: 52%;
  }

  /* ブログ */
  .post-contents-wrapper-blog-single {
    display: block;
  }
  .post-contents-wrapper-blog {
    /*		width: 92%;*/
    display: block;
  }
  .post-contents-container-left {
    width: 92%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .post-contents-container-right {
    width: 92%;
    margin: 6em auto;
  }
  div.pop-inside ul#pop-widget-recent-2 li {
    width: 100%;
    /*
		width: calc(99% / 2);
		height: 72px;
		float: left;
*/
  }
  div.pop-inside ul#pop-widget-recent-2 li a {
    width: 100%;
    height: 100%;
    display: inline-block;
  }
  .wp-show-posts-single.post {
    margin-bottom: 4em !important;
    border-bottom: 1px solid #e2e2e2;
  }
  .articles {
    margin-top: -3em;
  }

  /* 会社概要 */
  .info-table table td.company_name br {
    display: block;
  }
  .info-table table .branch_map {
    width: 100% !important;
    margin: 0 0 2rem 0 !important;
    padding-left: 1.5rem;
    float: none !important;
  }
  /* プライバシーポリシー */
  #privacy_policy .info-wrapper {
    width: 100%;
  }
  #privacy_policy .privacy_policy_mark {
    margin-top: 6rem;
  }

  /* お問い合わせ */
  .contact-wrapper {
    width: 95%;
    margin-left: 0.5rem;
  }
  .contact_form > label {
    width: 30vw;
    max-width: 160px;
    min-width: 115px;
  }
  input.company_name,
  input.mail,
  input.phone_number,
  input.address,
  .form_request,
  .form_reply,
  .contact_form textarea {
    width: 52vw;
  }
  input.last_name,
  input.first_name {
    width: 25.5vw;
  }
  .form_request label input[type="radio"] + span {
    width: 23vw;
    max-width: 110px;
    min-width: 80px;
  }
  #reply input + label {
    width: 24vw;
  }
  .submit_box input[type="submit"] {
    width: 38vw;
  }
}

/* 低解像度スマホ対応 */
@media screen and (max-width: 570px) {
  .row_flex {
    flex-direction: column;
  }
  .top-about-wrapper {
    /* 2021.12.9 **********/
    /*		width: 93%;
		margin-left: 1.8vw
		min-width: 370px;*/
    min-width: unset;
    /********** 2021.12.9 */
  }
  #top-info .swiper-button-prev,
  #top-info .swiper-button-next {
    width: 50px;
    height: 42px;
    top: 1.5rem;
  }
  #top-reason .box-number {
    /* 2021.12.9 **********/
    /*		left: -3rem;*/
    /********** 2021.12.9 */
  }
  .active .header-wrapper {
    padding: 1.25rem 1rem 1rem;
  }
  .navToggle {
    right: 1.5rem;
  }
  #reply input + span {
    width: 50vw;
  }
  .case-basic-info {
    width: 94%;
  }
  .case-info-title {
    height: 40rem;
  }
  .case-title {
    width: 90%;
  }
  .case-list {
    width: 94%;
  }
  /* 会社概要 */
  .info-table table dl.officer dt {
    width: 57%;
  }
  .info-table table dl.officer dd {
    width: 43%;
  }
  /* プライバシーポリシー */
  #privacy_policy .privacy_policy_intro.left {
    width: 100%;
    display: block;
  }
  #privacy_policy .privacy_policy_mark {
    width: 27%;
    height: auto;
    margin: 1rem auto 0;
    display: block;
  }

  .top-about-wrapper .about-more a {
    /* 2021.12.9 **********/
    /*		padding: 1rem 13vw;*/
    padding: 1rem;
    /********** 2021.12.9 */
  }
  #top-reason .single-human01 {
    right: 0;
    width: 48px;
    overflow: hidden;
  }
  #top-reason .single-human01 img {
    max-width: none;
  }
  #top-reason .box {
    padding: 16% 0.5rem 2rem 2rem;
  }
  #top-reason .box .box-heading {
    /* 2021.12.9 **********/
    /*		margin: -4rem 0 1.5rem 1.5rem;*/
    /********** 2021.12.9 */
  }
  #top-example {
    margin-bottom: 2rem;
  }
  #top-example .example-copy {
    letter-spacing: 0;
  }
  .inquiry-title {
    line-height: 1.2;
    letter-spacing: 0;
  }
  .inquiry-form div.inquiry-button a {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 0;
    padding: 1rem 3.5rem;
  }
  .tel-time,
  .inquiry-case {
    font-size: 1.2rem;
  }

  #scene-sub-panel h2 {
    font-size: 6vw;
  }

  .feature-title {
    font-size: 1.5rem;
  }
  .feature-content-txt {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .swiper-wrapper {
    /*
		display: block!important;
		*/
  }
  .info-box {
    height: calc(80vw / 0.65);
  }

  .case-container section {
    width: 92%;
    margin-bottom: 4rem;
  }
  .case-content-txt {
    font-size: 1rem;
  }
  .case-content-enter {
    bottom: 2.5rem;
  }
  .case-content h2 {
    font-size: 1.2rem;
  }
  .example-logo-img {
    width: calc(90% / 3.5);
  }

  #system-menu ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .system-content-wrapper {
    font-size: 1rem;
  }

  #sub-portal-shots .portal-screen-shots img {
    width: 100%;
    height: 100%;
    margin: 1.5rem 0px;
  }

  .scene-content-enter {
    bottom: 15rem;
  }
  #scene-01 .scene-content-enter {
    bottom: 17rem;
  }
  #scene-02 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-03 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-04 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-05 .scene-content-enter {
    bottom: 10rem;
  }
  #scene-06 .scene-content-enter {
    bottom: 23rem;
  }

  #scene-sub-01,
  #scene-sub-02,
  #scene-sub-03,
  #scene-sub-04,
  #scene-sub-05,
  #scene-sub-06 {
    height: calc(126vw * 1.2);
  }

  #scene-sub-01 .scene-photo {
    top: 87vw;
  }
  #scene-sub-01 .scene-line-box {
    top: 72vw;
  }
  #scene-sub-02 .scene-photo {
    top: 87vw;
  }
  #scene-sub-02 .scene-line-box {
    top: 72vw;
  }
  #scene-sub-03 .scene-photo {
    top: calc(43vw * 1.5);
    right: 0;
  }
  #scene-sub-03 .scene-line-box {
    top: 80vw;
  }
  #scene-sub-04 .scene-photo {
    top: 87vw;
    left: 0;
  }
  #scene-sub-04 .scene-line-box {
    top: 73vw;
  }
}

@media screen and (max-width: 540px) {
  .scene-photo {
    width: 90% !important;
  }
  .scene-content-wrapper {
    width: 100% !important;
  }
  .case-container section {
    max-width: 100%;
    height: auto;
    max-height: 680px;
    min-height: 560px;
  }
  .case-content-txt {
    font-size: 4vw;
    margin-bottom: 1.5em;
  }

  .inquiry-copy {
    font-size: 1.8rem;
  }
  .example-copy span.from-to {
    font-size: 1.5rem;
  }
  #example-logo .example-txt {
    width: 98%;
    margin: 2rem auto 4rem;
    font-size: 1.2rem;
    text-align: left;
  }
  .content-message {
    letter-spacing: 2.8px;
  }
  .case-title br {
    display: none;
  }
  #top-about .about-human01 img {
    /* 2021.12.9 **********/
    /*		top: 36rem;
		left: 28vh;*/
    /********** 2021.12.9 */
  }
  #top-about .about-human02 img {
    /* 2021.12.9 **********/
    /*		top: 33rem;
		right: 4vh;*/
    /********** 2021.12.9 */
    width: 22vw;
    min-width: 80px;
  }
  #top-about .about-human03 img {
    /* 2021.12.9 **********/
    /*		top: 35rem;
		left: 3vh;*/
    /********** 2021.12.9 */
    width: 26vw;
    min-width: 96px;
  }

  .scene-content-list {
    font-size: 4vw;
  }
  .scene-content-enter a {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 500px) {
  .scene-content-enter a {
    font-size: 3vw;
  }
}

@media screen and (max-width: 479px) {
  .company-back-img {
    /*bottom: calc(-3rem * 0.4);*/
  }
  h3 span.case-txt-title br {
    display: none;
  }
  #content-header .single-human01 img {
    height: 9rem;
  }
  .content-case {
    display: block;
  }
  .case-logo-img {
    width: 100%;
    text-align: center;
    display: block;
  }
  .case-name {
    width: 100%;
    letter-spacing: 2.4px;
    text-align: center;
    margin-top: 1.5rem;
    padding-left: 0;
    display: block;
  }
  #page-top-button {
    right: 42%;
    left: auto;
    bottom: 4rem;
  }
  .feature-content-wrapper {
    width: 86%;
    top: 23rem;
    /*	left: 47px;*/
    left: 10vw;
  }
  #feature-02 .feature-content-wrapper {
    top: 21rem;
  }
  #feature-02 .line-box,
  #feature-04 .line-box {
    top: 19rem;
    left: -11rem;
  }
  #feature-03 {
    height: 85rem;
  }
  #feature-03 .feature-content-wrapper {
    top: 19rem;
  }
  #feature-03 .line-box,
  #feature-05 .line-box {
    top: 15rem;
  }
  #feature-05 {
    height: 104rem;
  }
  #feature-05 .feature-content-img {
    width: 40%;
    margin: 7rem auto 6rem;
  }
  #feature-05 .about-human02 img {
    right: 7vw;
    bottom: 38vw;
  }
  #feature-05 .about-human03 img {
    bottom: 36.5vw;
  }
  .inquiry-form div.inquiry-button a {
    /* 2021.12.9 **********/
    /*		padding: .5rem 1rem;*/
    padding: 1rem;
    /********** 2021.12.9 */
    width: 100%;
    margin: 0 auto;
  }
  #scene-01,
  #scene-02,
  #scene-03,
  #scene-04,
  #scene-05,
  #scene-06 {
    height: 58rem;
  }
  .scene-content-enter {
    bottom: 16rem;
  }
  #scene-01 .scene-content-enter {
    bottom: 20rem;
  }
  #scene-02 .scene-content-enter {
    bottom: 18rem;
  }
  #scene-03 .scene-content-enter {
    bottom: 18rem;
  }
  #scene-04 .scene-content-enter {
    bottom: 18rem;
  }
  #scene-05 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-06 .scene-content-enter {
    bottom: 22rem;
  }

  .scene-wrapper h2,
  #scene-sub-message-01 h2 {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
  #scene-sub-message-01 .sub-message-txt {
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0;
  }

  #scene-sub-01,
  #scene-sub-02,
  #scene-sub-03,
  #scene-sub-04,
  #scene-sub-05,
  #scene-sub-06 {
    height: calc(145vw * 1.2);
  }

  .scene-sub .scene-wrapper span {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  #scene-01 .scene-content-wrapper,
  #scene-03 .scene-content-wrapper,
  #scene-05 .scene-content-wrapper {
    height: 50vw;
  }
  #scene-02 .scene-content-wrapper,
  #scene-04 .scene-content-wrapper {
    height: 50vw;
  }
  .support-container {
    padding: 7rem 1.5rem 1.5rem;
  }

  .scene-content-list {
    margin: 0 0 0 1rem;
  }
  #scene-01 .scene-line-box,
  #scene-02 .scene-line-box,
  #scene-03 .scene-line-box,
  #scene-04 .scene-line-box,
  #scene-05 .scene-line-box,
  #scene-06 .scene-line-box {
    height: 27rem;
  }

  #scene-sub-03 .scene-photo {
    top: 43vw;
  }
  #scene-sub-03 .scene-line-box {
    top: 65vw;
  }
  #scene-sub-04 .scene-photo {
    top: 55vw;
  }

  .system-content-list .option-label {
    letter-spacing: 1px;
  }
  .system-content-wrapper {
    width: 90%;
  }
  .system-content-list li {
    line-height: 1.4;
    margin: 0.7rem 0 0.7rem 1rem;
  }
  .system-content-list li:before {
    margin: 1rem 0 3rem -1rem;
  }

  /* 会社概要 */
  .info-header-wrapper,
  .info-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 412px) {
  .scene-wrapper h2 br {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .main-img-wrapper .catchcopy {
    /* メインのキャッチコピー */
    top: -1rem;
    top: calc(100% / 1.8);
    left: 3rem;
  }
}

img:is([sizes="auto" i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
@charset "UTF-8";.wp-block-archives{box-sizing:border-box}.wp-block-archives-dropdown label{display:block}.wp-block-avatar{line-height:0}.wp-block-avatar,.wp-block-avatar img{box-sizing:border-box}.wp-block-avatar.aligncenter{text-align:center}.wp-block-audio{box-sizing:border-box}.wp-block-audio :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-audio audio{min-width:300px;width:100%}.wp-block-button__link{align-content:center;box-sizing:border-box;cursor:pointer;display:inline-block;height:100%;text-align:center;word-break:break-word}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}.wp-block-button[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - var(--wp--style--block-gap, .5em)*.75)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - var(--wp--style--block-gap, .5em)*.5)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - var(--wp--style--block-gap, .5em)*.25)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{flex-basis:100%;width:100%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-25{width:25%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-50{width:50%}.wp-block-buttons.is-vertical>.wp-block-button.wp-block-button__width-75{width:75%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar td,.wp-block-calendar th{border:1px solid;padding:.25em}.wp-block-calendar th{font-weight:400}.wp-block-calendar caption{background-color:inherit}.wp-block-calendar table{border-collapse:collapse;width:100%}.wp-block-calendar table:where(:not(.has-text-color)){color:#40464d}.wp-block-calendar table:where(:not(.has-text-color)) td,.wp-block-calendar table:where(:not(.has-text-color)) th{border-color:#ddd}.wp-block-calendar table.has-background th{background-color:inherit}.wp-block-calendar table.has-text-color th{color:inherit}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-categories{box-sizing:border-box}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-categories.wp-block-categories-dropdown.aligncenter{text-align:center}.wp-block-categories .wp-block-categories__label{display:block;width:100%}.wp-block-code{box-sizing:border-box}.wp-block-code code{
  /*!rtl:begin:ignore*/direction:ltr;display:block;font-family:inherit;overflow-wrap:break-word;text-align:initial;white-space:pre-wrap
  /*!rtl:end:ignore*/}.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.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}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.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-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-post-comments{box-sizing:border-box}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{clear:both;content:"";display:table}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;margin-top:.5em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{display:block;margin-bottom:1em;margin-top:1em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-comments input[type=submit]){border:none}.wp-block-comments{box-sizing:border-box}.wp-block-comments-pagination>.wp-block-comments-pagination-next,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers,.wp-block-comments-pagination>.wp-block-comments-pagination-previous{font-size:inherit;margin-bottom:.5em;margin-right:.5em}.wp-block-comments-pagination>.wp-block-comments-pagination-next:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-numbers:last-child,.wp-block-comments-pagination>.wp-block-comments-pagination-previous:last-child{margin-right:0}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-comments-pagination .wp-block-comments-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-comments-pagination.aligncenter{justify-content:center}.wp-block-comment-template{box-sizing:border-box;list-style:none;margin-bottom:0;max-width:100%;padding:0}.wp-block-comment-template li{clear:both}.wp-block-comment-template ol{list-style:none;margin-bottom:0;max-width:100%;padding-left:2rem}.wp-block-comment-template.alignleft{float:left}.wp-block-comment-template.aligncenter{margin-left:auto;margin-right:auto;width:fit-content}.wp-block-comment-template.alignright{float:right}.wp-block-comment-date{box-sizing:border-box}.comment-awaiting-moderation{display:block;font-size:.875em;line-height:1.5}.wp-block-comment-author-name,.wp-block-comment-content,.wp-block-comment-edit-link,.wp-block-comment-reply-link{box-sizing:border-box}.wp-block-cover,.wp-block-cover-image{align-items:center;background-position:50%;box-sizing:border-box;display:flex;justify-content:center;min-height:430px;overflow:hidden;overflow:clip;padding:1em;position:relative}.wp-block-cover .has-background-dim:not([class*=-background-color]),.wp-block-cover-image .has-background-dim:not([class*=-background-color]),.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover .has-background-dim.has-background-gradient,.wp-block-cover-image .has-background-dim.has-background-gradient{background-color:initial}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{background-color:inherit;content:""}.wp-block-cover .wp-block-cover__background,.wp-block-cover .wp-block-cover__gradient-background,.wp-block-cover-image .wp-block-cover__background,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover.has-background-dim:not(.has-background-gradient):before{bottom:0;left:0;opacity:.5;position:absolute;right:0;top:0}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-0,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-0{opacity:0}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-10,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-10{opacity:.1}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-20,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-20{opacity:.2}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-30,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-30{opacity:.3}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-40,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-40{opacity:.4}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-50,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-50{opacity:.5}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-60,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-60{opacity:.6}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-70,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-70{opacity:.7}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-80,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-80{opacity:.8}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-90,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-90{opacity:.9}.wp-block-cover .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__background.has-background-dim.has-background-dim-100,.wp-block-cover-image .wp-block-cover__gradient-background.has-background-dim.has-background-dim-100{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.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 .wp-block-cover__inner-container,.wp-block-cover-image .wp-block-cover__inner-container{color:inherit;position:relative;width:100%}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0}.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover-image.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover .wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background,.wp-block-cover-image .wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background{border:none;bottom:0;box-shadow:none;height:100%;left:0;margin:0;max-height:none;max-width:none;object-fit:cover;outline:none;padding:0;position:absolute;right:0;top:0;width:100%}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:fixed;background-repeat:no-repeat;background-size:cover}@supports (-webkit-touch-callout:inherit){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax,.wp-block-cover__image-background.has-parallax,video.wp-block-cover__video-background.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated,.wp-block-cover__image-background.is-repeated,video.wp-block-cover__video-background.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{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}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover .wp-block-cover-text,.wp-block-cover-image .wp-block-cover-image-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;margin-bottom:0;max-width:840px;padding:.44em;text-align:center;z-index:1}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__image-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__video-background{z-index:0}body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__gradient-background,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container,body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)).has-background-dim:not(.has-background-gradient):before{z-index:1}.has-modal-open body:not(.editor-styles-wrapper) .wp-block-cover:not(.wp-block-cover:has(.wp-block-cover__background+.wp-block-cover__inner-container)) .wp-block-cover__inner-container{z-index:auto}.wp-block-details{box-sizing:border-box}.wp-block-details summary{cursor:pointer}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-height:240px;min-width:320px}.wp-block-embed{overflow-wrap:break-word}.wp-block-embed :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{box-sizing:border-box}.wp-block-file:not(.wp-element-button){font-size:.8em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file *+.wp-block-file__button{margin-left:.75em}:where(.wp-block-file){margin-bottom:1.5em}.wp-block-file__embed{margin-bottom:1em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-form-input__label{display:flex;flex-direction:column;gap:.25em;margin-bottom:.5em;width:100%}.wp-block-form-input__label.is-label-inline{align-items:center;flex-direction:row;gap:.5em}.wp-block-form-input__label.is-label-inline .wp-block-form-input__label-content{margin-bottom:.5em}.wp-block-form-input__label:has(input[type=checkbox]){flex-direction:row;width:fit-content}.wp-block-form-input__label:has(input[type=checkbox]) .wp-block-form-input__label-content{margin:0}.wp-block-form-input__label:has(.wp-block-form-input__label-content+input[type=checkbox]){flex-direction:row-reverse}.wp-block-form-input__label-content{width:fit-content}.wp-block-form-input__input{font-size:1em;margin-bottom:.5em;padding:0 .5em}.wp-block-form-input__input[type=date],.wp-block-form-input__input[type=datetime-local],.wp-block-form-input__input[type=datetime],.wp-block-form-input__input[type=email],.wp-block-form-input__input[type=month],.wp-block-form-input__input[type=number],.wp-block-form-input__input[type=password],.wp-block-form-input__input[type=search],.wp-block-form-input__input[type=tel],.wp-block-form-input__input[type=text],.wp-block-form-input__input[type=time],.wp-block-form-input__input[type=url],.wp-block-form-input__input[type=week]{border:1px solid;line-height:2;min-height:2em}textarea.wp-block-form-input__input{min-height:10em}.blocks-gallery-grid:not(.has-nested-images),.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item{display:flex;flex-direction:column;flex-grow:1;justify-content:center;margin:0 1em 1em 0;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figure,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figure,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figure{align-items:flex-end;display:flex;height:100%;justify-content:flex-start;margin:0}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item img{display:block;height:auto;max-width:100%;width:auto}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption{background:linear-gradient(0deg,#000000b3,#0000004d 70%,#0000);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image figcaption img,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image figcaption img,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid:not(.has-nested-images) figcaption,.wp-block-gallery:not(.has-nested-images) figcaption{flex-grow:1}.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-image img,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item a,.blocks-gallery-grid:not(.has-nested-images).is-cropped .blocks-gallery-item img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-image img,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item a,.wp-block-gallery:not(.has-nested-images).is-cropped .blocks-gallery-item img{flex:1;height:100%;object-fit:cover;width:100%}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item{margin-right:0;width:100%}@media (min-width:600px){.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item{margin-right:1em;width:calc(33.33333% - .66667em)}.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item{margin-right:1em;width:calc(25% - .75em)}.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item{margin-right:1em;width:calc(20% - .8em)}.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item{margin-right:1em;width:calc(16.66667% - .83333em)}.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item{margin-right:1em;width:calc(14.28571% - .85714em)}.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image,.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image,.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item{margin-right:1em;width:calc(12.5% - .875em)}.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery:not(.has-nested-images).columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-image:last-child,.blocks-gallery-grid:not(.has-nested-images) .blocks-gallery-item:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-image:last-child,.wp-block-gallery:not(.has-nested-images) .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid:not(.has-nested-images).alignleft,.blocks-gallery-grid:not(.has-nested-images).alignright,.wp-block-gallery:not(.has-nested-images).alignleft,.wp-block-gallery:not(.has-nested-images).alignright{max-width:420px;width:100%}.blocks-gallery-grid:not(.has-nested-images).aligncenter .blocks-gallery-item figure,.wp-block-gallery:not(.has-nested-images).aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-gallery:not(.is-cropped) .blocks-gallery-item{align-self:flex-start}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{bottom:0;left:0;max-height:100%;position:absolute;right:0}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);content:"";height:100%;-webkit-mask-image:linear-gradient(0deg,#000 20%,#0000);mask-image:linear-gradient(0deg,#000 20%,#0000);max-height:40%}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{background:linear-gradient(0deg,#0006,#0000);box-sizing:border-box;color:#fff;font-size:13px;margin:0;overflow:auto;padding:1em;scrollbar-color:#0000 #0000;scrollbar-gutter:stable both-edges;scrollbar-width:thin;text-align:center;text-shadow:0 0 1.5px #000;will-change:transform}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar{height:12px;width:12px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-track{background-color:initial}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:initial;border:3px solid #0000;border-radius:8px}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus::-webkit-scrollbar-thumb,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover::-webkit-scrollbar-thumb{background-color:#fffc}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:focus-within,.wp-block-gallery.has-nested-images figure.wp-block-image figcaption:hover{scrollbar-color:#fffc #0000}@media (hover:none){.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{scrollbar-color:#fffc #0000}}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption img{display:inline}.wp-block-gallery.has-nested-images figure.wp-block-image figcaption a{color:inherit}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>a,.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border>div,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>a,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded>div{flex:1 1 auto}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border figcaption,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded figcaption{background:none;color:inherit;flex:initial;margin:0;padding:10px 10px 9px;position:relative;text-shadow:none}.wp-block-gallery.has-nested-images figure.wp-block-image.has-custom-border:before,.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded:before{content:none}.wp-block-gallery.has-nested-images figcaption{flex-basis:100%;flex-grow:1;text-align:center}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;object-fit:cover;width:100%}.wp-block-gallery.has-nested-images.columns-1 figure.wp-block-image:not(#individual-image){width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image){width:calc(33.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image){width:calc(25% - var(--wp--style--unstable-gallery-gap, 16px)*.75)}.wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image){width:calc(20% - var(--wp--style--unstable-gallery-gap, 16px)*.8)}.wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image){width:calc(16.66667% - var(--wp--style--unstable-gallery-gap, 16px)*.83333)}.wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image){width:calc(14.28571% - var(--wp--style--unstable-gallery-gap, 16px)*.85714)}.wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image){width:calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px)*.875)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}.wp-block-gallery.has-nested-images.alignleft,.wp-block-gallery.has-nested-images.alignright{max-width:420px;width:100%}.wp-block-gallery.has-nested-images.aligncenter{justify-content:center}.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:show-content-image .4s}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image.has-custom-border img{box-sizing:border-box}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull>a,.wp-block-image.alignwide>a{width:100%}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height:auto;width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.aligncenter,.wp-block-image.alignleft,.wp-block-image.alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.aligncenter>figcaption,.wp-block-image.alignleft>figcaption,.wp-block-image.alignright>figcaption{caption-side:bottom;display:table-caption}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}.wp-block-image.is-style-circle-mask img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{border-radius:0;-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>');mask-mode:alpha;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain}}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}.wp-lightbox-container{display:flex;flex-direction:column;position:relative}.wp-lightbox-container img{cursor:zoom-in}.wp-lightbox-container img:hover+button{opacity:1}.wp-lightbox-container button{align-items:center;-webkit-backdrop-filter:blur(16px) saturate(180%);backdrop-filter:blur(16px) saturate(180%);background-color:#5a5a5a40;border:none;border-radius:4px;cursor:zoom-in;display:flex;height:20px;justify-content:center;opacity:0;padding:0;position:absolute;right:16px;text-align:center;top:16px;width:20px;z-index:100}@media not (prefers-reduced-motion){.wp-lightbox-container button{transition:opacity .2s ease}}.wp-lightbox-container button:focus-visible{outline:3px auto #5a5a5a40;outline:3px auto -webkit-focus-ring-color;outline-offset:3px}.wp-lightbox-container button:hover{cursor:pointer;opacity:1}.wp-lightbox-container button:focus{opacity:1}.wp-lightbox-container button:focus,.wp-lightbox-container button:hover,.wp-lightbox-container button:not(:hover):not(:active):not(.has-background){background-color:#5a5a5a40;border:none}.wp-lightbox-overlay{box-sizing:border-box;cursor:zoom-out;height:100vh;left:0;overflow:hidden;position:fixed;top:0;visibility:hidden;width:100%;z-index:100000}.wp-lightbox-overlay .close-button{align-items:center;cursor:pointer;display:flex;justify-content:center;min-height:40px;min-width:40px;padding:0;position:absolute;right:calc(env(safe-area-inset-right) + 16px);top:calc(env(safe-area-inset-top) + 16px);z-index:5000000}.wp-lightbox-overlay .close-button:focus,.wp-lightbox-overlay .close-button:hover,.wp-lightbox-overlay .close-button:not(:hover):not(:active):not(.has-background){background:none;border:none}.wp-lightbox-overlay .lightbox-image-container{height:var(--wp--lightbox-container-height);left:50%;overflow:hidden;position:absolute;top:50%;transform:translate(-50%,-50%);transform-origin:top left;width:var(--wp--lightbox-container-width);z-index:9999999999}.wp-lightbox-overlay .wp-block-image{align-items:center;box-sizing:border-box;display:flex;height:100%;justify-content:center;margin:0;position:relative;transform-origin:0 0;width:100%;z-index:3000000}.wp-lightbox-overlay .wp-block-image img{height:var(--wp--lightbox-image-height);min-height:var(--wp--lightbox-image-height);min-width:var(--wp--lightbox-image-width);width:var(--wp--lightbox-image-width)}.wp-lightbox-overlay .wp-block-image figcaption{display:none}.wp-lightbox-overlay button{background:none;border:none}.wp-lightbox-overlay .scrim{background-color:#fff;height:100%;opacity:.9;position:absolute;width:100%;z-index:2000000}.wp-lightbox-overlay.active{visibility:visible}@media not (prefers-reduced-motion){.wp-lightbox-overlay.active{animation:turn-on-visibility .25s both}.wp-lightbox-overlay.active img{animation:turn-on-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active){animation:turn-off-visibility .35s both}.wp-lightbox-overlay.show-closing-animation:not(.active) img{animation:turn-off-visibility .25s both}.wp-lightbox-overlay.zoom.active{animation:none;opacity:1;visibility:visible}.wp-lightbox-overlay.zoom.active .lightbox-image-container{animation:lightbox-zoom-in .4s}.wp-lightbox-overlay.zoom.active .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.active .scrim{animation:turn-on-visibility .4s forwards}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active){animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container{animation:lightbox-zoom-out .4s}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .lightbox-image-container img{animation:none}.wp-lightbox-overlay.zoom.show-closing-animation:not(.active) .scrim{animation:turn-off-visibility .4s forwards}}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}@keyframes turn-on-visibility{0%{opacity:0}to{opacity:1}}@keyframes turn-off-visibility{0%{opacity:1;visibility:visible}99%{opacity:0;visibility:visible}to{opacity:0;visibility:hidden}}@keyframes lightbox-zoom-in{0%{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale))}to{transform:translate(-50%,-50%) scale(1)}}@keyframes lightbox-zoom-out{0%{transform:translate(-50%,-50%) scale(1);visibility:visible}99%{visibility:visible}to{transform:translate(calc((-100vw + var(--wp--lightbox-scrollbar-width))/2 + var(--wp--lightbox-initial-left-position)),calc(-50vh + var(--wp--lightbox-initial-top-position))) scale(var(--wp--lightbox-scale));visibility:hidden}}ol.wp-block-latest-comments{box-sizing:border-box;margin-left:0}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}.has-dates :where(.wp-block-latest-comments:not([style*=line-height])),.has-excerpts :where(.wp-block-latest-comments:not([style*=line-height])){line-height:1.5}.wp-block-latest-comments .wp-block-latest-comments{padding-left:0}.wp-block-latest-comments__comment{list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{list-style:none;min-height:2.25em}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-comments[class*=-font-size] a,.wp-block-latest-comments[style*=font-size] a{font-size:inherit}.wp-block-latest-posts{box-sizing:border-box}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both;overflow-wrap:break-word}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;font-size:.8125em}.wp-block-latest-posts__post-excerpt,.wp-block-latest-posts__post-full-content{margin-bottom:1em;margin-top:.5em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;max-width:100%;width:auto}.wp-block-latest-posts__featured-image.alignleft{float:left;margin-right:1em}.wp-block-latest-posts__featured-image.alignright{float:right;margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}.wp-block-loginout,.wp-block-media-text{box-sizing:border-box}.wp-block-media-text{
  /*!rtl:begin:ignore*/direction:ltr;
  /*!rtl:end:ignore*/display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.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.is-vertically-aligned-center>.wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,.wp-block-media-text>.wp-block-media-text__content,.wp-block-media-text>.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{
  /*!rtl:begin:ignore*/grid-column:1;grid-row:1;
  /*!rtl:end:ignore*/margin:0}.wp-block-media-text>.wp-block-media-text__content{direction:ltr;
  /*!rtl:begin:ignore*/grid-column:2;grid-row:1;
  /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__media{
  /*!rtl:begin:ignore*/grid-column:2;grid-row:1
  /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right>.wp-block-media-text__content{
  /*!rtl:begin:ignore*/grid-column:1;grid-row:1
  /*!rtl:end:ignore*/}.wp-block-media-text__media a{display:block}.wp-block-media-text__media img,.wp-block-media-text__media video{height:auto;max-width:unset;vertical-align:middle;width:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media{background-size:cover;height:100%;min-height:250px}.wp-block-media-text.is-image-fill>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill>.wp-block-media-text__media img{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border:0}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media{height:100%;min-height:250px;position:relative}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill-element>.wp-block-media-text__media img{height:100%;object-fit:cover;position:absolute;width:100%}@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-navigation{position:relative;--navigation-layout-justification-setting:flex-start;--navigation-layout-direction:row;--navigation-layout-wrap:wrap;--navigation-layout-justify:flex-start;--navigation-layout-align:center}.wp-block-navigation ul{margin-bottom:0;margin-left:0;margin-top:0;padding-left:0}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-item{align-items:center;display:flex;position:relative}.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container:empty{display:none}.wp-block-navigation .wp-block-navigation-item__content{display:block}.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content{color:inherit}.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-underline .wp-block-navigation-item__content:focus{text-decoration:underline}.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:active,.wp-block-navigation.has-text-decoration-line-through .wp-block-navigation-item__content:focus{text-decoration:line-through}.wp-block-navigation :where(a),.wp-block-navigation :where(a:active),.wp-block-navigation :where(a:focus){text-decoration:none}.wp-block-navigation .wp-block-navigation__submenu-icon{align-self:center;background-color:inherit;border:none;color:currentColor;display:inline-block;font-size:inherit;height:.6em;line-height:0;margin-left:.25em;padding:0;width:.6em}.wp-block-navigation .wp-block-navigation__submenu-icon svg{display:inline-block;stroke:currentColor;height:inherit;margin-top:.075em;width:inherit}.wp-block-navigation.is-vertical{--navigation-layout-direction:column;--navigation-layout-justify:initial;--navigation-layout-align:flex-start}.wp-block-navigation.no-wrap{--navigation-layout-wrap:nowrap}.wp-block-navigation.items-justified-center{--navigation-layout-justification-setting:center;--navigation-layout-justify:center}.wp-block-navigation.items-justified-center.is-vertical{--navigation-layout-align:center}.wp-block-navigation.items-justified-right{--navigation-layout-justification-setting:flex-end;--navigation-layout-justify:flex-end}.wp-block-navigation.items-justified-right.is-vertical{--navigation-layout-align:flex-end}.wp-block-navigation.items-justified-space-between{--navigation-layout-justification-setting:space-between;--navigation-layout-justify:space-between}.wp-block-navigation .has-child .wp-block-navigation__submenu-container{align-items:normal;background-color:inherit;color:inherit;display:flex;flex-direction:column;height:0;left:-1px;opacity:0;overflow:hidden;position:absolute;top:100%;visibility:hidden;width:0;z-index:2}@media not (prefers-reduced-motion){.wp-block-navigation .has-child .wp-block-navigation__submenu-container{transition:opacity .1s linear}}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content{display:flex;flex-grow:1}.wp-block-navigation .has-child .wp-block-navigation__submenu-container>.wp-block-navigation-item>.wp-block-navigation-item__content .wp-block-navigation__submenu-icon{margin-left:auto;margin-right:0}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content{margin:0}@media (min-width:782px){.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:-1px}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container:before{background:#0000;content:"";display:block;height:100%;position:absolute;right:100%;width:.5em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon{margin-right:.25em}.wp-block-navigation .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true]~.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container,.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within>.wp-block-navigation__submenu-container{height:auto;min-width:200px;opacity:1;overflow:visible;visibility:visible;width:auto}.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container{left:0;top:100%}@media (min-width:782px){.wp-block-navigation.has-background .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:100%;top:0}}.wp-block-navigation-submenu{display:flex;position:relative}.wp-block-navigation-submenu .wp-block-navigation__submenu-icon svg{stroke:currentColor}button.wp-block-navigation-item__content{background-color:initial;border:none;color:currentColor;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-align:left;text-transform:inherit}.wp-block-navigation-submenu__toggle{cursor:pointer}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle{padding-left:0;padding-right:.85em}.wp-block-navigation-item.open-on-click .wp-block-navigation-submenu__toggle+.wp-block-navigation__submenu-icon{margin-left:-.6em;pointer-events:none}.wp-block-navigation-item.open-on-click button.wp-block-navigation-item__content:not(.wp-block-navigation-submenu__toggle){padding:0}.wp-block-navigation .wp-block-page-list,.wp-block-navigation__container,.wp-block-navigation__responsive-close,.wp-block-navigation__responsive-container,.wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-dialog{gap:inherit}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container{left:auto;right:0}.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:-1px;right:-1px}@media (min-width:782px){.wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-right .wp-block-page-list>.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between .wp-block-page-list>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container,.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container{left:auto;right:100%}}.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container{background-color:#fff;border:1px solid #00000026}.wp-block-navigation.has-background .wp-block-navigation__submenu-container{background-color:inherit}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container{color:#000}.wp-block-navigation__container{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial);list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}.wp-block-navigation__container:only-child,.wp-block-page-list:only-child{flex-grow:1}@keyframes overlay-menu__fade-in-animation{0%{opacity:0;transform:translateY(.5em)}to{opacity:1;transform:translateY(0)}}.wp-block-navigation__responsive-container{bottom:0;display:none;left:0;position:fixed;right:0;top:0}.wp-block-navigation__responsive-container :where(.wp-block-navigation-item a){color:inherit}.wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-align,initial);display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open){background-color:inherit!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open{background-color:inherit;display:flex;flex-direction:column;overflow:auto;padding:clamp(1rem,var(--wp--style--root--padding-top),20rem) clamp(1rem,var(--wp--style--root--padding-right),20rem) clamp(1rem,var(--wp--style--root--padding-bottom),20rem) clamp(1rem,var(--wp--style--root--padding-left),20rem);z-index:100000}@media not (prefers-reduced-motion){.wp-block-navigation__responsive-container.is-menu-open{animation:overlay-menu__fade-in-animation .1s ease-out;animation-fill-mode:forwards}}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content{align-items:var(--navigation-layout-justification-setting,inherit);display:flex;flex-direction:column;flex-wrap:nowrap;overflow:visible;padding-top:calc(2rem + 24px)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container{border:none;height:auto;min-width:200px;opacity:1;overflow:initial;padding-left:2rem;padding-right:2rem;position:static;visibility:visible;width:auto}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{gap:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container{padding-top:var(--wp--style--block-gap,2em)}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content{padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-page-list{align-items:var(--navigation-layout-justification-setting,initial);display:flex;flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item .wp-block-navigation__submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list{background:#0000!important;color:inherit!important}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:auto;right:auto}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open){background-color:inherit;display:block;position:relative;width:100%;z-index:auto}.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container.wp-block-navigation__submenu-container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff}.wp-block-navigation:not(.has-text-color) .wp-block-navigation__responsive-container.is-menu-open{color:#000}.wp-block-navigation__toggle_button_label{font-size:1rem;font-weight:700}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{background:#0000;border:none;color:currentColor;cursor:pointer;margin:0;padding:0;text-transform:inherit;vertical-align:middle}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;display:block;height:24px;pointer-events:none;width:24px}.wp-block-navigation__responsive-container-open{display:flex}.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open.wp-block-navigation__responsive-container-open{font-family:inherit;font-size:inherit;font-weight:inherit}@media (min-width:600px){.wp-block-navigation__responsive-container-open:not(.always-shown){display:none}}.wp-block-navigation__responsive-container-close{position:absolute;right:0;top:0;z-index:2}.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close.wp-block-navigation__responsive-container-close{font-family:inherit;font-size:inherit;font-weight:inherit}.wp-block-navigation__responsive-close{width:100%}.has-modal-open .wp-block-navigation__responsive-close{margin-left:auto;margin-right:auto;max-width:var(--wp--style--global--wide-size,100%)}.wp-block-navigation__responsive-close:focus{outline:none}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{box-sizing:border-box}.wp-block-navigation__responsive-dialog{position:relative}.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:46px}@media (min-width:782px){.has-modal-open .admin-bar .is-menu-open .wp-block-navigation__responsive-dialog{margin-top:32px}}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}.link-ui-tools{border-top:1px solid #f0f0f0;padding:8px}.link-ui-block-inserter{padding-top:8px}.link-ui-block-inserter__back{margin-left:8px;text-transform:uppercase}.wp-block-navigation .wp-block-page-list{align-items:var(--navigation-layout-align,initial);background-color:inherit;display:flex;flex-direction:var(--navigation-layout-direction,initial);flex-wrap:var(--navigation-layout-wrap,wrap);justify-content:var(--navigation-layout-justify,initial)}.wp-block-navigation .wp-block-navigation-item{background-color:inherit}.wp-block-page-list{box-sizing:border-box}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}.wp-block-post-author{box-sizing:border-box;display:flex;flex-wrap:wrap}.wp-block-post-author__byline{font-size:.5em;margin-bottom:0;margin-top:0;width:100%}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{font-size:.7em;margin-bottom:.7em}.wp-block-post-author__content{flex-basis:0;flex-grow:1}.wp-block-post-author__name{margin:0}.wp-block-post-author-biography{box-sizing:border-box}:where(.wp-block-post-comments-form) input:not([type=submit]),:where(.wp-block-post-comments-form) textarea{border:1px solid #949494;font-family:inherit;font-size:1em}:where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox])),:where(.wp-block-post-comments-form) textarea{padding:calc(.667em + 2px)}.wp-block-post-comments-form{box-sizing:border-box}.wp-block-post-comments-form[style*=font-weight] :where(.comment-reply-title){font-weight:inherit}.wp-block-post-comments-form[style*=font-family] :where(.comment-reply-title){font-family:inherit}.wp-block-post-comments-form[class*=-font-size] :where(.comment-reply-title),.wp-block-post-comments-form[style*=font-size] :where(.comment-reply-title){font-size:inherit}.wp-block-post-comments-form[style*=line-height] :where(.comment-reply-title){line-height:inherit}.wp-block-post-comments-form[style*=font-style] :where(.comment-reply-title){font-style:inherit}.wp-block-post-comments-form[style*=letter-spacing] :where(.comment-reply-title){letter-spacing:inherit}.wp-block-post-comments-form :where(input[type=submit]){box-shadow:none;cursor:pointer;display:inline-block;overflow-wrap:break-word;text-align:center}.wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]):not([type=hidden]),.wp-block-post-comments-form .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments-form .comment-form-author label,.wp-block-post-comments-form .comment-form-email label,.wp-block-post-comments-form .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments-form .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments-form .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments-form .comment-reply-title{margin-bottom:0}.wp-block-post-comments-form .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments-count{box-sizing:border-box}.wp-block-post-content{display:flow-root}.wp-block-post-comments-link,.wp-block-post-date{box-sizing:border-box}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__excerpt{margin-bottom:0;margin-top:0}.wp-block-post-excerpt__more-text{margin-bottom:0;margin-top:var(--wp--style--block-gap)}.wp-block-post-excerpt__more-link{display:inline-block}.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block;height:100%}.wp-block-post-featured-image :where(img){box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;width:100%}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{background-color:#000;inset:0;position:absolute}.wp-block-post-featured-image{position:relative}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{background-color:initial}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{opacity:0}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{opacity:.1}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{opacity:.2}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{opacity:.3}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{opacity:.4}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{opacity:.5}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{opacity:.6}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{opacity:.7}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{opacity:.8}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{opacity:.9}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{opacity:1}.wp-block-post-featured-image:where(.alignleft,.alignright){width:100%}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous{display:inline-block;margin-right:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next{display:inline-block;margin-left:1ch}.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-post-navigation-link.has-text-align-left[style*="writing-mode: vertical-lr"],.wp-block-post-navigation-link.has-text-align-right[style*="writing-mode: vertical-rl"]{rotate:180deg}.wp-block-post-terms{box-sizing:border-box}.wp-block-post-terms .wp-block-post-terms__separator{white-space:pre-wrap}.wp-block-post-time-to-read,.wp-block-post-title{box-sizing:border-box}.wp-block-post-title{word-break:break-word}.wp-block-post-title :where(a){display:inline-block;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}.wp-block-post-author-name{box-sizing:border-box}.wp-block-preformatted{box-sizing:border-box;white-space:pre-wrap}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}.wp-block-pullquote{box-sizing:border-box;margin:0 0 1em;overflow-wrap:break-word;padding:4em 0;text-align:center}.wp-block-pullquote blockquote,.wp-block-pullquote cite,.wp-block-pullquote p{color:inherit}.wp-block-pullquote blockquote{margin:0}.wp-block-pullquote p{margin-top:0}.wp-block-pullquote p:last-child{margin-bottom:0}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote.has-text-align-left blockquote{text-align:left}.wp-block-pullquote.has-text-align-right blockquote{text-align:right}.wp-block-pullquote.has-text-align-center blockquote{text-align:center}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{font-size:2em;margin-bottom:0;margin-top:0}.wp-block-pullquote.is-style-solid-color blockquote cite{font-style:normal;text-transform:none}.wp-block-pullquote cite{color:inherit;display:block}.wp-block-post-template{box-sizing:border-box;list-style:none;margin-bottom:0;margin-top:0;max-width:100%;padding:0}.wp-block-post-template.is-flex-container{display:flex;flex-direction:row;flex-wrap:wrap;gap:1.25em}.wp-block-post-template.is-flex-container>li{margin:0;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}}@media (max-width:600px){.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid{grid-template-columns:1fr}}.wp-block-post-template-is-layout-constrained>li>.alignright,.wp-block-post-template-is-layout-flow>li>.alignright{float:right;margin-inline-end:0;margin-inline-start:2em}.wp-block-post-template-is-layout-constrained>li>.alignleft,.wp-block-post-template-is-layout-flow>li>.alignleft{float:left;margin-inline-end:2em;margin-inline-start:0}.wp-block-post-template-is-layout-constrained>li>.aligncenter,.wp-block-post-template-is-layout-flow>li>.aligncenter{margin-inline-end:auto;margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-next:last-of-type{margin-inline-start:auto}.wp-block-query-pagination.is-content-justification-space-between>.wp-block-query-pagination-previous:first-child{margin-inline-end:auto}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow{display:inline-block;margin-right:1ch}.wp-block-query-pagination .wp-block-query-pagination-previous-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination .wp-block-query-pagination-next-arrow{display:inline-block;margin-left:1ch}.wp-block-query-pagination .wp-block-query-pagination-next-arrow:not(.is-arrow-chevron){transform:scaleX(1)}.wp-block-query-pagination.aligncenter{justify-content:center}.wp-block-query-title,.wp-block-query-total,.wp-block-quote{box-sizing:border-box}.wp-block-quote{overflow-wrap:break-word}.wp-block-quote.is-large:where(:not(.is-style-plain)),.wp-block-quote.is-style-large:where(:not(.is-style-plain)){margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large:where(:not(.is-style-plain)) p,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-large:where(:not(.is-style-plain)) footer,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite,.wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer{font-size:1.125em;text-align:right}.wp-block-quote>cite{display:block}.wp-block-read-more{display:block;width:fit-content}.wp-block-read-more:where(:not([style*=text-decoration])){text-decoration:none}.wp-block-read-more:where(:not([style*=text-decoration])):active,.wp-block-read-more:where(:not([style*=text-decoration])):focus{text-decoration:none}ul.wp-block-rss.alignleft{margin-right:2em}ul.wp-block-rss.alignright{margin-left:2em}ul.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0}ul.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){ul.wp-block-rss.columns-2 li{width:calc(50% - 1em)}ul.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}ul.wp-block-rss.columns-4 li{width:calc(25% - 1em)}ul.wp-block-rss.columns-5 li{width:calc(20% - 1em)}ul.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;font-size:.8125em}.wp-block-rss{box-sizing:border-box;list-style:none;padding:0}.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{height:1.25em;min-height:24px;min-width:24px;width:1.25em;fill:currentColor;vertical-align:text-bottom}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{appearance:none;border:1px solid #949494;flex-grow:1;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important}.wp-block-search.wp-block-search__button-only .wp-block-search__button{box-sizing:border-box;display:flex;flex-shrink:0;justify-content:center;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}.wp-block-separator{border:none;border-top:2px solid}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}.wp-block-separator.is-style-dots{background:none!important;border:none!important}.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block;line-height:0}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}.wp-block-site-tagline,.wp-block-site-title{box-sizing:border-box}.wp-block-site-title :where(a){color:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-decoration:inherit}.wp-block-social-links{background:none;box-sizing:border-box;margin-left:0;padding-left:0;padding-right:0;text-indent:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{border-bottom:0;box-shadow:none;text-decoration:none}.wp-block-social-links .wp-social-link svg{height:1em;width:1em}.wp-block-social-links .wp-social-link span:not(.screen-reader-text){font-size:.65em;margin-left:.5em;margin-right:.5em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{display:flex;justify-content:center}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{border-radius:9999px;display:block;height:auto}@media not (prefers-reduced-motion){.wp-block-social-link{transition:transform .1s ease}}.wp-block-social-link a{align-items:center;display:flex;line-height:0}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link.wp-social-link{display:inline-block;margin:0;padding:0}.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{color:currentColor;fill:currentColor}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:none}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{color:#fff;stroke:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}.wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{color:#000}.wp-block-spacer{clear:both}.wp-block-tag-cloud{box-sizing:border-box}.wp-block-tag-cloud.aligncenter{justify-content:center;text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-tag-cloud a{display:inline-block;margin-right:5px}.wp-block-tag-cloud span{display:inline-block;margin-left:5px;text-decoration:none}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}.wp-block-table{overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{border:1px solid;padding:.5em}.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.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft 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{background-color:initial;border-bottom:1px solid #f0f0f0;border-collapse:inherit;border-spacing:0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.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 td,.wp-block-table.is-style-stripes th{border-color:#0000}.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>*{border-color:inherit}.wp-block-table table[style*=border-top-color] tr:first-child,.wp-block-table table[style*=border-top-color] tr:first-child td,.wp-block-table table[style*=border-top-color] tr:first-child th,.wp-block-table table[style*=border-top-color]>*,.wp-block-table table[style*=border-top-color]>* td,.wp-block-table table[style*=border-top-color]>* th{border-top-color:inherit}.wp-block-table table[style*=border-top-color] tr:not(:first-child){border-top-color:initial}.wp-block-table table[style*=border-right-color] td:last-child,.wp-block-table table[style*=border-right-color] th,.wp-block-table table[style*=border-right-color] tr,.wp-block-table table[style*=border-right-color]>*{border-right-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:last-child,.wp-block-table table[style*=border-bottom-color] tr:last-child td,.wp-block-table table[style*=border-bottom-color] tr:last-child th,.wp-block-table table[style*=border-bottom-color]>*,.wp-block-table table[style*=border-bottom-color]>* td,.wp-block-table table[style*=border-bottom-color]>* th{border-bottom-color:inherit}.wp-block-table table[style*=border-bottom-color] tr:not(:last-child){border-bottom-color:initial}.wp-block-table table[style*=border-left-color] td:first-child,.wp-block-table table[style*=border-left-color] th,.wp-block-table table[style*=border-left-color] tr,.wp-block-table table[style*=border-left-color]>*{border-left-color:inherit}.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>*{border-style:inherit}.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>*{border-style:inherit;border-width:inherit}:root :where(.wp-block-table-of-contents){box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}.wp-block-term-description p{margin-bottom:0;margin-top:0}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;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:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.3333333333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{overflow:auto;white-space:pre-wrap}:where(pre.wp-block-verse){font-family:inherit}.wp-block-video{box-sizing:border-box}.wp-block-video video{vertical-align:middle;width:100%}@supports (position:sticky){.wp-block-video [poster]{object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video :where(figcaption){margin-bottom:1em;margin-top:.5em}.editor-styles-wrapper,.entry-content{counter-reset:footnotes}a[data-fn].fn{counter-increment:footnotes;display:inline-flex;font-size:smaller;text-decoration:none;text-indent:-9999999px;vertical-align:super}a[data-fn].fn:after{content:"[" counter(footnotes) "]";float:left;text-indent:0}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
.wp-block-audio :where(figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio :where(figcaption){color:#ffffffa6}.wp-block-audio{margin:0 0 1em}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed :where(figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed :where(figcaption){color:#ffffffa6}.wp-block-embed{margin:0 0 1em}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:#ffffffa6}:root :where(.wp-block-image figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme :root :where(.wp-block-image figcaption){color:#ffffffa6}.wp-block-image{margin:0 0 1em}.wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;font-style:normal;position:relative}.wp-block-quote:where(.has-text-align-right){border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote:where(.has-text-align-center){border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote:where(.is-style-plain){border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){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{margin:0 0 1em}.wp-block-table td,.wp-block-table th{word-break:normal}.wp-block-table :where(figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table :where(figcaption){color:#ffffffa6}.wp-block-video :where(figcaption){color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video :where(figcaption){color:#ffffffa6}.wp-block-video{margin:0 0 1em}:root :where(.wp-block-template-part.has-background){margin-bottom:0;margin-top:0;padding:1.25em 2.375em}
/**
 * Custom Color Overrides
 *
 * This file is automatically populated if the user chooses custom colors in the Customizer.
 */

@-webkit-keyframes bgslide{from{background-position-x:0}to{background-position-x:-200%}}@keyframes bgslide{from{background-position-x:0}to{background-position-x:-200%}}.wpp-widget-block-placeholder,.wpp-shortcode-placeholder{margin:0 auto;width:60px;height:3px;background:#dd3737;background:linear-gradient(90deg,#dd3737 0%,#571313 10%,#dd3737 100%);background-size:200% auto;border-radius:3px;-webkit-animation:bgslide 1s infinite linear;animation:bgslide 1s infinite linear}